Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
The component failed to render properly, likely due to a configuration issue in Storybook. Here are some common causes and how you can address them:
This project versions components independently, meaning each component has its own version number, updated independently of other components. We follow semantic versioning and as such, each release is versioned according to the following rules:
--mod
custom propertiesVersioning (and package publishing) is handled by Changesets, which lets contributors declare how their changes should be released.
Additionally, we use the Conventional Commits specification for writing our commit messages to help communicate the types of changes we're making to the codebase.
A changeset is a piece of information about changes made in a branch or a commit. It holds three bits of information:
Not every change to the codebase will require a release, but any changes to files within the /components
directory will require a release. Generally, when thinking about versioning and releases, it's a good idea to consider the question: "does this change need to be consumed by someone or something outside of Spectrum CSS?" If the answer to that question is "yes", then the changes will likely require a changeset.
A changeset can be added locally by the author by invoking the command line script, or it can be added during the Pull Request process by a project maintainer via the Changesets GitHub bot. The result of either method will be a single commit that adds a markdown file with YAML frontmatter describing the changes.
Additionally, multiple changesets can be added to a Pull Request.
Releases are handled via Changesets. Specifically, via the Changesets GitHub action. When there are new changesets on the configured baseBranch (usually main
in our repo), the action will create a new Pull Request with all of the package versions updated and changelogs updated. The Pull Request can then be merged back into main
and the updated packages can be published manually or automatically via the action.
This allows for maintainers and contributors to review the proposed version and changelog updates and make changes as necessary before the publish step.
Information about Changesets and prereleases can be found here.
Snapshot releases are a way to release changes for testing without updating versions. Information about Changesets and snapshot releases can be found here.
Spectrum CSS snapshot releases can be published via two different workflows:
write
access to the Spectrum CSS GitHub repository.Our recommended workflow for publishing snapshot releases is through our GitHub Action. Releasing snapshots via this method has several advantages over local publishing and poses less risk for publication failures.
Any contributor with write
access to the Spectrum CSS repository can publish snapshot releases.
Steps for publishing snapshot releases
s2-action-button
), or optionally, leave this field blank and the workflow will attempt to automatically create a tag name based on your branch's name.changeset version
to version the affected components with the proper snapshot version name and tags (based upon what you specified in the text field). The workflow also automatically publishes to npm with the snapshot version and tags.Alternate steps for publishing snapshot releases locally
yarn changeset version --snapshot SOME_MEANINGFUL_TAG_NAME_HERE && && yarn --mode="update-lockfile"
to update the affected package versions to 0.0.0-SOME_MEANINGFUL_TAG_NAME_HERE-THE_TIME_YOU_DID_THISyarn ci
to run a full, cacheless build.yarn changeset publish --tag SOME_MEANINGFUL_TAG_NAME_HERE
to invoke the publish step. This will publish your versioned packages to npm using the SOME_MEANINGFUL_TAG_NAME_HERE
tag instead of latest
on npm which is VERY important for the npm ecosystem.