reshaped 2.9.5 → 2.10.1
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 +1 -10
- package/bundle.css +1 -1
- package/bundle.d.ts +2 -0
- package/bundle.js +10 -10
- package/cli/theming/index.js +2 -0
- package/components/Button/Button.js +2 -2
- package/components/Button/Button.types.d.ts +1 -1
- package/components/FormControl/FormControl.client.d.ts +3 -0
- package/components/FormControl/FormControl.client.js +28 -0
- package/components/FormControl/FormControl.d.ts +8 -5
- package/components/FormControl/FormControl.js +9 -62
- package/components/FormControl/FormControl.utilities.d.ts +2 -0
- package/components/FormControl/FormControl.utilities.js +1 -0
- package/components/FormControl/FormControlCaption.d.ts +3 -0
- package/components/FormControl/FormControlCaption.js +15 -0
- package/components/FormControl/FormControlError.d.ts +3 -0
- package/components/FormControl/FormControlError.js +12 -0
- package/components/FormControl/FormControlHelper.d.ts +3 -0
- package/components/FormControl/FormControlHelper.js +10 -0
- package/components/FormControl/FormControlLabel.d.ts +3 -0
- package/components/FormControl/FormControlLabel.js +18 -0
- package/components/FormControl/tests/FormControl.stories.d.ts +4 -5
- package/components/MenuItem/MenuItem.js +2 -2
- package/components/MenuItem/MenuItem.types.d.ts +1 -1
- package/components/Pagination/Pagination.d.ts +3 -0
- package/components/Pagination/Pagination.js +10 -0
- package/components/Pagination/Pagination.types.d.ts +52 -0
- package/components/Pagination/Pagination.types.js +1 -0
- package/components/Pagination/PaginationControlled.d.ts +3 -0
- package/components/Pagination/PaginationControlled.js +47 -0
- package/components/Pagination/PaginationUncontrolled.d.ts +3 -0
- package/components/Pagination/PaginationUncontrolled.js +25 -0
- package/components/Pagination/index.d.ts +2 -0
- package/components/Pagination/index.js +1 -0
- package/components/Pagination/tests/Pagination.stories.d.ts +11 -0
- package/components/Pagination/tests/Pagination.stories.js +24 -0
- package/components/Table/Table.js +2 -2
- package/components/Table/Table.module.css +1 -1
- package/components/Table/Table.types.d.ts +1 -0
- package/components/Table/tests/Table.stories.js +17 -0
- package/components/Text/Text.js +2 -2
- package/components/Text/Text.module.css +1 -1
- package/components/Text/Text.types.d.ts +1 -0
- package/components/Text/tests/Text.stories.d.ts +1 -0
- package/components/Text/tests/Text.stories.js +7 -0
- package/components/_private/Expandable/Expandable.js +7 -28
- package/components/_private/Expandable/Expandable.module.css +1 -1
- package/index.d.ts +2 -0
- package/index.js +1 -0
- package/package.json +1 -1
- package/themes/figma/media.css +1 -1
- package/themes/reshaped/media.css +1 -1
- package/themes/reshaped/theme.css +1 -1
- package/themes/slate/media.css +1 -1
- package/utilities/helpers.d.ts +1 -0
- package/utilities/helpers.js +5 -0
package/bundle.d.ts
CHANGED
@@ -61,6 +61,8 @@ export { default as Modal } from "./components/Modal";
|
|
61
61
|
export type { ModalProps } from "./components/Modal";
|
62
62
|
export { default as Overlay } from "./components/Overlay";
|
63
63
|
export type { OverlayProps } from "./components/Overlay";
|
64
|
+
export { default as Pagination } from "./components/Pagination";
|
65
|
+
export type { PaginationProps } from "./components/Pagination";
|
64
66
|
export { default as Popover } from "./components/Popover";
|
65
67
|
export type { PopoverProps } from "./components/Popover";
|
66
68
|
export { default as Progress } from "./components/Progress";
|