@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
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { ModalProps } from '../../molecules';
|
|
2
|
+
import { FormProviderProps } from '../Form';
|
|
2
3
|
export type SlideOutPanelSizeEnum = 'Small' | 'Medium' | 'Large';
|
|
3
4
|
export type SlideOutPanelDirectionEnum = 'Top' | 'Left' | 'Bottom' | 'Right';
|
|
4
|
-
export type SlideOutPanelProps = Omit<ModalProps, 'size' | 'header' | 'footer' | 'component-variant'> & {
|
|
5
|
+
export type SlideOutPanelProps = Omit<ModalProps, 'size' | 'header' | 'footer' | 'component-variant'> & FormProviderProps & {
|
|
5
6
|
size?: SlideOutPanelSizeEnum;
|
|
6
7
|
direction?: SlideOutPanelDirectionEnum;
|
|
7
8
|
};
|
package/dist/cjs/library.css
CHANGED
|
@@ -4223,6 +4223,7 @@ span.flatpickr-weekday {
|
|
|
4223
4223
|
display: flex;
|
|
4224
4224
|
width: 100%;
|
|
4225
4225
|
height: 100%;
|
|
4226
|
+
min-height: 0;
|
|
4226
4227
|
flex-direction: var(--tabs-direction);
|
|
4227
4228
|
padding-left: var(--tabs-padding-left);
|
|
4228
4229
|
padding-right: var(--tabs-padding-right);
|
|
@@ -4256,6 +4257,7 @@ span.flatpickr-weekday {
|
|
|
4256
4257
|
display: flex;
|
|
4257
4258
|
width: 100%;
|
|
4258
4259
|
height: 100%;
|
|
4260
|
+
min-height: 0;
|
|
4259
4261
|
}
|
|
4260
4262
|
.Tabs-module_tabs__HyJLr .Tabs-module_tabsContent__XoAby > * {
|
|
4261
4263
|
width: 100%;
|