@sabrenski/spire-ui 0.0.4 → 0.0.6
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 +6 -0
- package/dist/spire-ui.css +1 -1
- package/dist/spire-ui.es.js +694 -690
- package/dist/spire-ui.umd.js +9 -9
- package/package.json +1 -1
- package/src/components/Drawer/Drawer.vue +17 -6
package/dist/index.d.ts
CHANGED
|
@@ -385,9 +385,11 @@ modelValue: boolean;
|
|
|
385
385
|
variant: DrawerVariant;
|
|
386
386
|
size: DrawerSize;
|
|
387
387
|
placement: DrawerPlacement;
|
|
388
|
+
flush: boolean;
|
|
388
389
|
closeOnEscape: boolean;
|
|
389
390
|
maskClosable: boolean;
|
|
390
391
|
showClose: boolean;
|
|
392
|
+
forcePlacement: boolean;
|
|
391
393
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
392
394
|
drawerRef: HTMLDivElement;
|
|
393
395
|
}, any>;
|
|
@@ -2702,6 +2704,10 @@ export declare interface DrawerProps {
|
|
|
2702
2704
|
closeOnEscape?: boolean;
|
|
2703
2705
|
/** Show close button in header */
|
|
2704
2706
|
showClose?: boolean;
|
|
2707
|
+
/** Force specified placement on mobile (disable bottom sheet behavior) */
|
|
2708
|
+
forcePlacement?: boolean;
|
|
2709
|
+
/** Remove body padding for flush content */
|
|
2710
|
+
flush?: boolean;
|
|
2705
2711
|
}
|
|
2706
2712
|
|
|
2707
2713
|
export declare type DrawerSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|