@sabrenski/spire-ui 0.0.4 → 0.0.5
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 +341 -340
- package/dist/spire-ui.umd.js +9 -9
- package/package.json +1 -1
- package/src/components/Drawer/Drawer.vue +9 -5
package/dist/index.d.ts
CHANGED
|
@@ -388,6 +388,7 @@ placement: DrawerPlacement;
|
|
|
388
388
|
closeOnEscape: boolean;
|
|
389
389
|
maskClosable: boolean;
|
|
390
390
|
showClose: boolean;
|
|
391
|
+
forcePlacement: boolean;
|
|
391
392
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
392
393
|
drawerRef: HTMLDivElement;
|
|
393
394
|
}, any>;
|
|
@@ -2702,6 +2703,8 @@ export declare interface DrawerProps {
|
|
|
2702
2703
|
closeOnEscape?: boolean;
|
|
2703
2704
|
/** Show close button in header */
|
|
2704
2705
|
showClose?: boolean;
|
|
2706
|
+
/** Force specified placement on mobile (disable bottom sheet behavior) */
|
|
2707
|
+
forcePlacement?: boolean;
|
|
2705
2708
|
}
|
|
2706
2709
|
|
|
2707
2710
|
export declare type DrawerSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|