fluekit 2.6.6 → 2.6.7

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.
@@ -0,0 +1,8 @@
1
+ import { LiquidGlassDialogProps } from './LiquidGlassDialog';
2
+ export interface LiquidGlassDialogOptions extends Omit<LiquidGlassDialogProps, "modelValue"> {
3
+ onClose?: () => void;
4
+ onAfterClose?: () => void;
5
+ }
6
+ export declare const showLiquidGlassDialog: (options: LiquidGlassDialogOptions) => {
7
+ close: () => void;
8
+ };
@@ -1,5 +1,6 @@
1
1
  import { CSSProperties } from 'vue';
2
2
  import { SizeType } from './Size';
3
+ export declare function useZIndex(): number;
3
4
  export interface Props {
4
5
  /** 距离顶部的距离 */
5
6
  top?: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluekit",
3
- "version": "2.6.6",
3
+ "version": "2.6.7",
4
4
  "description": "A Flutter-style Layout UI kit for Vue",
5
5
  "homepage": "https://fi2zz.github.io/fluekit/",
6
6
  "repository": {