prlg-ui 1.7.64 → 1.7.65
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 +9 -0
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +1354 -1348
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -80,6 +80,10 @@ modelValue: {
|
|
|
80
80
|
type: BooleanConstructor;
|
|
81
81
|
default: undefined;
|
|
82
82
|
};
|
|
83
|
+
zIndex: {
|
|
84
|
+
type: NumberConstructor;
|
|
85
|
+
default: number;
|
|
86
|
+
};
|
|
83
87
|
}>, {
|
|
84
88
|
open: () => void;
|
|
85
89
|
close: () => void;
|
|
@@ -109,6 +113,10 @@ modelValue: {
|
|
|
109
113
|
type: BooleanConstructor;
|
|
110
114
|
default: undefined;
|
|
111
115
|
};
|
|
116
|
+
zIndex: {
|
|
117
|
+
type: NumberConstructor;
|
|
118
|
+
default: number;
|
|
119
|
+
};
|
|
112
120
|
}>> & Readonly<{
|
|
113
121
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
114
122
|
}>, {
|
|
@@ -116,6 +124,7 @@ modelValue: boolean;
|
|
|
116
124
|
placement: Placement;
|
|
117
125
|
arrowVisible: boolean;
|
|
118
126
|
closeMode: PopoverCloseMode;
|
|
127
|
+
zIndex: number;
|
|
119
128
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
120
129
|
reference: HTMLDivElement;
|
|
121
130
|
floating: HTMLDivElement;
|