react-magma-dom 3.5.1 → 3.6.0
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/components/Accordion/AccordionButton.d.ts +5 -0
- package/dist/components/ButtonGroup/ButtonGroup.stories.d.ts +2 -2
- package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +4 -4
- package/dist/components/Datagrid/Datagrid.stories.d.ts +8 -8
- package/dist/components/Dropdown/Dropdown.stories.d.ts +3 -1
- package/dist/components/Dropdown/DropdownExpandableMenuButton.d.ts +8 -0
- package/dist/components/Dropdown/DropdownExpandableMenuGroup.d.ts +7 -0
- package/dist/components/Dropdown/DropdownExpandableMenuItem.d.ts +18 -0
- package/dist/components/Dropdown/DropdownExpandableMenuListItem.d.ts +8 -0
- package/dist/components/Dropdown/DropdownExpandableMenuPanel.d.ts +5 -0
- package/dist/components/Dropdown/index.d.ts +6 -0
- package/dist/components/Input/Input.stories.d.ts +348 -21
- package/dist/components/InputBase/index.d.ts +5 -0
- package/dist/components/PasswordInput/PasswordInput.stories.d.ts +1 -0
- package/dist/components/PasswordInput/index.d.ts +6 -0
- package/dist/components/Table/Table.stories.d.ts +13 -12
- package/dist/components/Table/TablePagination.d.ts +2 -1
- package/dist/components/Tag/Tag.stories.d.ts +4 -4
- package/dist/components/Textarea/Textarea.stories.d.ts +4 -4
- package/dist/components/ToggleButton/ToggleButton.stories.d.ts +8 -8
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +4 -4
- package/dist/esm/index.js +9681 -12469
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/properties.json +331 -93
- package/dist/react-magma-dom.cjs.development.js +7122 -8339
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -23,6 +23,11 @@ export { DropdownMenuItem, DropdownMenuItemProps, } from './components/Dropdown/
|
|
|
23
23
|
export { DropdownMenuNavItem, DropdownMenuNavItemProps, } from './components/Dropdown/DropdownMenuNavItem';
|
|
24
24
|
export { DropdownSplitButton, DropdownSplitButtonProps, } from './components/Dropdown/DropdownSplitButton';
|
|
25
25
|
export { DropdownButton, DropdownButtonProps, } from './components/Dropdown/DropdownButton';
|
|
26
|
+
export { DropdownExpandableMenuGroup } from './components/Dropdown/DropdownExpandableMenuGroup';
|
|
27
|
+
export { DropdownExpandableMenuItem, DropdownExpandableMenuItemProps, } from './components/Dropdown/DropdownExpandableMenuItem';
|
|
28
|
+
export { DropdownExpandableMenuListItem, DropdownExpandableMenuListItemProps, } from './components/Dropdown/DropdownExpandableMenuListItem';
|
|
29
|
+
export { DropdownExpandableMenuButton, DropdownExpandableMenuButtonProps, } from './components/Dropdown/DropdownExpandableMenuButton';
|
|
30
|
+
export { DropdownExpandableMenuPanel, DropdownExpandableMenuPanelProps, } from './components/Dropdown/DropdownExpandableMenuPanel';
|
|
26
31
|
export * from './components/Flex';
|
|
27
32
|
export { Form, FormProps } from './components/Form';
|
|
28
33
|
export { FormGroup, FormGroupProps } from './components/FormGroup';
|