@sabrenski/spire-ui 0.0.5 → 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 +3 -0
- package/dist/spire-ui.css +1 -1
- package/dist/spire-ui.es.js +383 -380
- package/dist/spire-ui.umd.js +2 -2
- package/package.json +1 -1
- package/src/components/Drawer/Drawer.vue +9 -2
package/dist/index.d.ts
CHANGED
|
@@ -385,6 +385,7 @@ 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;
|
|
@@ -2705,6 +2706,8 @@ export declare interface DrawerProps {
|
|
|
2705
2706
|
showClose?: boolean;
|
|
2706
2707
|
/** Force specified placement on mobile (disable bottom sheet behavior) */
|
|
2707
2708
|
forcePlacement?: boolean;
|
|
2709
|
+
/** Remove body padding for flush content */
|
|
2710
|
+
flush?: boolean;
|
|
2708
2711
|
}
|
|
2709
2712
|
|
|
2710
2713
|
export declare type DrawerSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|