reshaped 3.3.12 → 3.3.13
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/CHANGELOG.md +3 -0
- package/dist/bundle.css +1 -1
- package/dist/bundle.d.ts +1 -1
- package/dist/bundle.js +11 -11
- package/dist/components/Carousel/Carousel.js +52 -4
- package/dist/components/Carousel/Carousel.types.d.ts +4 -0
- package/dist/components/Carousel/tests/Carousel.stories.d.ts +20 -4
- package/dist/components/Carousel/tests/Carousel.stories.js +195 -102
- package/dist/components/Container/Container.module.css +1 -1
- package/dist/components/Table/index.d.ts +1 -1
- package/dist/components/Table/tests/Table.stories.d.ts +5 -5
- package/dist/components/Table/tests/Table.test.stories.d.ts +5 -5
- package/dist/index.d.ts +1 -1
- package/package.json +32 -32
- package/dist/components/Carousel/tests/Carousel.test.stories.d.ts +0 -17
- package/dist/components/Carousel/tests/Carousel.test.stories.js +0 -52
package/dist/bundle.d.ts
CHANGED
@@ -96,7 +96,7 @@ export type { StepperProps } from "./components/Stepper";
|
|
96
96
|
export { default as Switch } from "./components/Switch";
|
97
97
|
export type { SwitchProps } from "./components/Switch";
|
98
98
|
export { default as Table } from "./components/Table";
|
99
|
-
export type { TableProps } from "./components/Table";
|
99
|
+
export type { TableProps, TableBodyProps, TableHeadProps, TableHeadingProps, TableCellProps, TableRowProps, } from "./components/Table";
|
100
100
|
export { default as Tabs } from "./components/Tabs";
|
101
101
|
export type { TabsProps } from "./components/Tabs";
|
102
102
|
export { default as Text } from "./components/Text";
|