storybook 9.0.12 → 9.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/index.cjs +43 -43
- package/dist/bin/index.js +43 -43
- package/dist/cli/bin/index.cjs +2 -2
- package/dist/cli/bin/index.js +2 -2
- package/dist/common/index.cjs +44 -44
- package/dist/common/index.js +44 -44
- package/dist/components/index.cjs +635 -631
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +394 -389
- package/dist/core-server/index.cjs +2 -2
- package/dist/core-server/index.js +2 -2
- package/dist/core-server/presets/common-manager.js +229 -228
- package/dist/core-server/presets/common-preset.cjs +1 -1
- package/dist/core-server/presets/common-preset.js +1 -1
- package/dist/instrumenter/index.cjs +1125 -1098
- package/dist/instrumenter/index.js +751 -729
- package/dist/manager/globals-runtime.js +20780 -23457
- package/dist/manager/runtime.js +1178 -1177
- package/dist/manager-api/index.cjs +1 -1
- package/dist/manager-api/index.js +1 -1
- package/dist/preview/runtime.js +13255 -15981
- package/dist/telemetry/index.cjs +2 -2
- package/dist/telemetry/index.js +2 -2
- package/dist/test/index.cjs +9136 -9815
- package/dist/test/index.js +8339 -9025
- package/package.json +4 -4
|
@@ -1063,6 +1063,7 @@ interface UnstyledBarProps extends ScrollAreaProps {
|
|
|
1063
1063
|
scrollable?: boolean;
|
|
1064
1064
|
}
|
|
1065
1065
|
interface BarProps extends UnstyledBarProps {
|
|
1066
|
+
backgroundColor?: string;
|
|
1066
1067
|
border?: boolean;
|
|
1067
1068
|
}
|
|
1068
1069
|
declare const Bar: storybook_theming.StyledComponent<UnstyledBarProps & {
|