@skalar-saas/design-system 0.1.115 → 0.1.117
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/index.d.ts +3 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2190 -2148
- package/dist/index.mjs.map +1 -1
- package/dist/shared/ui/ColumnHeader/ColumnHeader.d.ts +8 -0
- package/dist/shared/ui/ColumnHeader/index.d.ts +2 -0
- package/dist/shared/ui/VisualComposer/VisualComposer.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -33,6 +33,8 @@ export { Checkbox } from './shared/ui/Checkbox/Checkbox';
|
|
|
33
33
|
export { Chip } from './shared/ui/Chip/Chip';
|
|
34
34
|
export { ColorPalette } from './shared/ui/ColorPalette/ColorPalette';
|
|
35
35
|
export { ColumnHandler, type ColumnHandlerProps } from './shared/ui/ColumnHandler/ColumnHandler';
|
|
36
|
+
export { ColumnHeader } from './shared/ui/ColumnHeader/ColumnHeader';
|
|
37
|
+
export type { ColumnHeaderProps } from './shared/ui/ColumnHeader/ColumnHeader';
|
|
36
38
|
export { ComboBox } from './shared/ui/ComboBox/ComboBox';
|
|
37
39
|
export * from './shared/ui/ContextualMenu/ContextualMenu';
|
|
38
40
|
export { DragAndDropListItem } from './shared/ui/DragAndDropListItem/DragAndDropListItem';
|
|
@@ -113,7 +115,7 @@ export type { CardActionProps } from './shared/ui/CardAction/CardAction';
|
|
|
113
115
|
export { FormFieldGroup } from './shared/ui/FormFieldGroup/FormFieldGroup';
|
|
114
116
|
export type { FormFieldGroupProps } from './shared/ui/FormFieldGroup/FormFieldGroup';
|
|
115
117
|
export { VisualComposer } from './shared/ui/VisualComposer/VisualComposer';
|
|
116
|
-
export type { VisualComposerProps, VisualComposerData, SectionData, ColumnData, WidgetData, } from './shared/ui/VisualComposer/VisualComposer';
|
|
118
|
+
export type { VisualComposerProps, VisualComposerData, SectionData, ColumnData, WidgetData, SectionAction, ColumnAction, WidgetAction, } from './shared/ui/VisualComposer/VisualComposer';
|
|
117
119
|
export { DropMenu } from './shared/ui/DropMenu/DropMenu';
|
|
118
120
|
export type { DropMenuProps, DropMenuItemProps, DropMenuSize } from './shared/ui/DropMenu/DropMenu';
|
|
119
121
|
export { DropModal, DropModalTrigger, DropModalContent, DropModalHeader, DropModalTitle, DropModalBody, DropModalFooter, DropModalFooterActions, DropModalClose, } from './shared/ui/DropModal/DropModal';
|