Generating a new component

The fastest way to get started with creating a new component is to generate it from the command line. Run the following command to have your new component scaffolded for you:

$ yarn new-package

? SWC package name (i.e. color-area)
> package-name
   > src/
       index.ts
       SpectrumPackageName.ts
       package-name.css
       package-name-overrides.css
       spectrum-package-name.css
       spectrum-package-name-overrides.css
       spectrum-config.js
   > test/
       > benchmark/
           basic-test.ts
       package-name.test.ts
   > stories/
       package-name.stories.ts
   sp-package-name.ts
   README.md
   tsconfig.json
   package.json

Outside of your new package, you will need to manually add information about your new package to the tsconfig-all.json and tsconfig-react-wrapper.json files, as well as the bundle package:

Open tsconfig-all.json, find "references", and add an entry for your package ({ "path": "packages/package-name" }) alphabetically (replacing "package-name" with the pattern you're implementing, such as "action-button" or "progress-bar"). The tsconfig-all.json config is used to build types for the project in parallel with the JS build that is handled outside of tsc. This will ensure that the types for your new package are available throughout the library, include at demonstration and test time.

Open tsconfig-react-wrapper.json, find "references", and add an entry for your package ({ "path": "react/package-name" }) alphabetically (replacing "package-name" with the pattern you're implementing, such as "action-button" or "progress-bar"). The tsconfig-react-wrapper.json config is used to build types for the @swc-react project, so that consumers can benefit of type definitions for SWC components even when using the React wrapper.

Include a listing for your package in bundle/elements.ts and bundle/src/index.js. Then, confirm that your new package is already listed in tools/bundle/package.json. The bundle package makes it possible to build demo projects with all of the components from the library registered in a single place, and is also leveraged for ease of component consumption in the documentation site build.

Finally, run yarn in your terminal. This will grab any newly-added packages, as well as to ensure that you have the provided CSS processed for use in your component. You can now see your component in the Storybook, using the command yarn storybook, or test its functionality via yarn test.

If you run into any issues with the instructions above, or the ones linked across this documentation site, please feel free to raise questions or issues on GitHub. You can do this either by creating a brand new issue when it specifically relates to the process of generating a component, or by leaving a comment on an already-created issue for a specific pattern when it concerns bringing that component to life.

Thanks for stopping by. We look forward to your contribution!