You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all of our components and form elements are in the top level directory in storybook and part of a single build. However, these current components have a host of issues (see #201, #202, #205) that make them more experimental, so we want to mark them as such in the 2.0.0 release.
We want to move all the current components to an experimental section of storybook. This means we need to:
Create a new section in storybook for experimental and move all the current components and form components under that section
Update the documentation in storybook (under 'COD UXDS' section) to explain that the experimental components are not considered stable and should be considered "use at your own risk"
Rename the current component index (src/index.js) to be experimental (src/index-experimental.js) and move the build output to a subdirectory (build/experimental) by updating the webpack config
Rename the yarn build script to show that it's building the experimental components package (yarn build:experimental)
sreidthomas
changed the title
Move all exsiting components to experimental directory and build
Move all existing components to experimental directory and build
Dec 20, 2024
Context
Currently, all of our components and form elements are in the top level directory in storybook and part of a single build. However, these current components have a host of issues (see #201, #202, #205) that make them more experimental, so we want to mark them as such in the 2.0.0 release.
Top level directory with all components:
The single build:
/build
directory, generated by the webpack config.What we want to change
We want to move all the current components to an
experimental
section of storybook. This means we need to:experimental
and move all the current components and form components under that sectionsrc/index.js
) to be experimental (src/index-experimental.js
) and move the build output to a subdirectory (build/experimental
) by updating the webpack configyarn build:experimental
)Resources
The text was updated successfully, but these errors were encountered: