@delightui/components 0.1.84 → 0.1.86
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/cjs/components/organisms/SlideOutPanel/SlideOutPanel.types.d.ts +2 -1
- package/dist/cjs/library.css +2 -0
- package/dist/cjs/library.js +1 -1
- package/dist/cjs/library.js.map +1 -1
- package/dist/esm/components/organisms/SlideOutPanel/SlideOutPanel.types.d.ts +2 -1
- package/dist/esm/library.css +2 -0
- package/dist/esm/library.js +2 -2
- package/dist/esm/library.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2163,7 +2163,7 @@ declare const TabContent: (props: TabContentProps) => react_jsx_runtime.JSX.Elem
|
|
|
2163
2163
|
|
|
2164
2164
|
type SlideOutPanelSizeEnum = 'Small' | 'Medium' | 'Large';
|
|
2165
2165
|
type SlideOutPanelDirectionEnum = 'Top' | 'Left' | 'Bottom' | 'Right';
|
|
2166
|
-
type SlideOutPanelProps = Omit<ModalProps, 'size' | 'header' | 'footer' | 'component-variant'> & {
|
|
2166
|
+
type SlideOutPanelProps = Omit<ModalProps, 'size' | 'header' | 'footer' | 'component-variant'> & FormProviderProps & {
|
|
2167
2167
|
size?: SlideOutPanelSizeEnum;
|
|
2168
2168
|
direction?: SlideOutPanelDirectionEnum;
|
|
2169
2169
|
};
|