react-magma-dom 3.8.0 → 3.9.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/DatePicker/DatePicker.stories.d.ts +1 -0
- package/dist/components/Hyperlink/Hyperlink.stories.d.ts +30 -2
- package/dist/components/Hyperlink/index.d.ts +19 -3
- package/dist/components/Input/Input.stories.d.ts +19 -0
- package/dist/components/InputBase/index.d.ts +8 -0
- package/dist/components/Modal/Modal.d.ts +4 -0
- package/dist/components/ProgressBar/ProgressBar.stories.d.ts +15 -0
- package/dist/components/ProgressBar/index.d.ts +1 -1
- package/dist/components/Stepper/Step.d.ts +53 -0
- package/dist/components/Stepper/Stepper.d.ts +53 -0
- package/dist/components/Stepper/Stepper.stories.d.ts +6 -0
- package/dist/components/Stepper/index.d.ts +2 -0
- package/dist/esm/index.js +603 -190
- package/dist/esm/index.js.map +1 -1
- package/dist/i18n/interface.d.ts +5 -0
- package/dist/index.d.ts +3 -1
- package/dist/properties.json +351 -101
- package/dist/react-magma-dom.cjs.development.js +595 -188
- 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/i18n/interface.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ export { Form, FormProps } from './components/Form';
|
|
|
34
34
|
export { FormGroup, FormGroupProps } from './components/FormGroup';
|
|
35
35
|
export { Heading, HeadingProps } from './components/Heading';
|
|
36
36
|
export { HideAtBreakpoint, HideAtBreakpointDisplayType, HideAtBreakpointProps, } from './components/HideAtBreakpoint';
|
|
37
|
-
export { Hyperlink, HyperlinkProps } from './components/Hyperlink';
|
|
37
|
+
export { Hyperlink, HyperlinkIconPosition, HyperlinkProps } from './components/Hyperlink';
|
|
38
38
|
export { IconButton, ButtonIconPosition, IconButtonProps, } from './components/IconButton';
|
|
39
39
|
export { IndeterminateCheckbox, IndeterminateCheckboxProps, IndeterminateCheckboxStatus, } from './components/IndeterminateCheckbox';
|
|
40
40
|
export { Input, InputProps } from './components/Input';
|
|
@@ -60,6 +60,8 @@ export { SkipLink, SkipLinkProps } from './components/SkipLink';
|
|
|
60
60
|
export { SkipLinkContent, SkipLinkContentProps, } from './components/SkipLinkContent';
|
|
61
61
|
export { Spacer, SpacerProps, SpacerAxis } from './components/Spacer';
|
|
62
62
|
export { Spinner, SpinnerProps } from './components/Spinner';
|
|
63
|
+
export { Stepper, StepperLayout, StepperProps } from './components/Stepper';
|
|
64
|
+
export { Step, StepProps } from './components/Stepper/Step';
|
|
63
65
|
export { Table, TableProps, TableDensity, TableCellAlign, TableContext, TableSortDirection, TableBody, TableBodyProps, TableCell, TableCellProps, TableHead, TableHeadProps, TableHeaderCell, TableHeaderCellProps, TableHeaderCellScope, TablePagination, TablePaginationProps, TableRow, TableRowColor, TableRowProps, } from './components/Table';
|
|
64
66
|
export { TabsContainer } from './components/Tabs/TabsContainer';
|
|
65
67
|
export { Tabs, TabsAlignment, TabsBorderPosition, TabsIconPosition, TabsOrientation, } from './components/Tabs';
|