{"id":17382491,"url":"https://github.com/usrrname/fast-foundation-repro","last_synced_at":"2025-06-28T11:04:31.503Z","repository":{"id":156538935,"uuid":"633042497","full_name":"usrrname/fast-foundation-repro","owner":"usrrname","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-26T17:31:01.000Z","size":70431,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-27T20:47:40.134Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/usrrname.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.json","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-26T16:51:46.000Z","updated_at":"2023-04-26T16:53:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"b4abb4c5-5395-41a2-bc96-3ade3a3a523e","html_url":"https://github.com/usrrname/fast-foundation-repro","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/usrrname/fast-foundation-repro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usrrname%2Ffast-foundation-repro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usrrname%2Ffast-foundation-repro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usrrname%2Ffast-foundation-repro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usrrname%2Ffast-foundation-repro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/usrrname","download_url":"https://codeload.github.com/usrrname/fast-foundation-repro/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usrrname%2Ffast-foundation-repro/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262419748,"owners_count":23308098,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-16T07:36:37.310Z","updated_at":"2025-06-28T11:04:31.475Z","avatar_url":"https://github.com/usrrname.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nThis is a reproduction of `@microsoft/fast-foundation` web components project using:\n-  `@storybook/html@6.5.9`\n-  `rollup@^2.7.1`\n-  yarn\n-  `typescript@^4.7.0`\n-  `@microsoft/fast-element@^2.0.0-beta.21`,\n\nIt is plucked straight from the monorepo at [@microsoft/fast](https://github.com/microsoft/fast)\n\n## Run it\n\n`yarn` to install deps\n\n`yarn start` to run Storybook\n\n## Related OSS issues:\n- https://github.com/storybookjs/storybook/issues/22219\n- https://github.com/microsoft/fast/issues/6698\n\n-----------\n\n# FAST Foundation\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![npm version](https://badge.fury.io/js/%40microsoft%2Ffast-foundation.svg)](https://badge.fury.io/js/%40microsoft%2Ffast-foundation)\n\nThe `fast-foundation` package is a library of Web Component classes, templates, and other utilities intended to be composed into registered Web Components by design systems (e.g. Fluent Design, Material Design, etc.). The exports of this package can generally be thought of as un-styled base components that implement semantic and accessible markup and behavior.\n\nThis package does not export Web Components registered as [custom elements](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements) - it exports parts and pieces intended to be *composed* into Web Components, allowing you to implement your own design language by simply applying CSS styles and behaviors without having to write all the JavaScript that's involved in building production-quality component implementations.\n\n## Installation\n\n### From NPM\n\nTo install the `fast-foundation` library, use either `npm` or `yarn` as follows:\n\n```shell\nnpm install --save @microsoft/fast-foundation\n```\n\n```shell\nyarn add @microsoft/fast-foundation\n```\n\nWithin your JavaScript or TypeScript code, you can then import library APIs like this:\n\n```ts\nimport { Anchor } from '@microsoft/fast-foundation';\n```\n\nLooking for a setup that integrates with a particular front-end framework or bundler? Check out [our integration docs](https://fast.design/docs/integrations/introduction).\n\n### From CDN\n\nA pre-bundled script that contains all APIs needed to use FAST Foundation is available on CDN. You can use this script by adding [`type=\"module\"`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) to the script element and then importing from the CDN.\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n    \u003chead\u003e\n        \u003cscript type=\"module\"\u003e\n          import { Anchor } from \"https://cdn.jsdelivr.net/npm/@microsoft/fast-foundation/dist/fast-foundation.min.js\";\n\n          // your code here\n        \u003c/script\u003e\n    \u003c/head\u003e\n    \u003c!-- ... --\u003e\n\u003c/html\u003e\n```\n\nThe markup above always references the latest release. When deploying to production, you will want to ship with a specific version. Here's an example of the markup for that:\n\n```html\n\u003cscript type=\"module\" src=\"https://cdn.jsdelivr.net/npm/@microsoft/fast-foundation@2.26.2/dist/fast-foundation.min.js\"\u003e\u003c/script\u003e\n```\n\n:::note\nFor simplicity, examples throughout the documentation will assume the library has been installed from NPM, but you can always replace the import location with the CDN URL.\n:::","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fusrrname%2Ffast-foundation-repro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fusrrname%2Ffast-foundation-repro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fusrrname%2Ffast-foundation-repro/lists"}