@wizleap-inc/wiz-ui-next 1.6.0 → 1.7.0
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/components/base/dropdown/dropdown.vue.d.ts +3 -0
- package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +3 -0
- package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +3 -0
- package/dist/components/base/inputs/search/search.vue.d.ts +3 -0
- package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +3 -0
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +3 -0
- package/dist/components/base/inputs/timepicker/time-picker.vue.d.ts +3 -0
- package/dist/components/base/navigation/item.vue.d.ts +6 -0
- package/dist/components/base/popup/popup.vue.d.ts +3 -0
- package/dist/components/base/progress-bar/progress-bar.vue.d.ts +3 -0
- package/dist/components/base/tables/flat/td.vue.d.ts +120 -0
- package/dist/components/base/tables/flat/th.vue.d.ts +120 -0
- package/dist/components/base/tooltip/tooltip.vue.d.ts +3 -0
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +6 -0
- package/dist/components/custom/chat/item/chat-item.vue.d.ts +3 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/use-snackbar.d.ts +9 -1
- package/dist/index.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +2441 -2422
- package/dist/wiz-ui.umd.js +17 -17
- package/package.json +2 -2
|
@@ -102,6 +102,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
102
102
|
updateBodyPxInfo: () => void;
|
|
103
103
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
104
104
|
togglePopup: () => boolean | undefined;
|
|
105
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
105
106
|
removeScrollHandler: (() => void) | null;
|
|
106
107
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
107
108
|
observer: ResizeObserver;
|
|
@@ -123,12 +124,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
123
124
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
124
125
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
125
126
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
127
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
126
128
|
inset: import("vue").ComputedRef<string>;
|
|
127
129
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
128
130
|
mouseLeave: (e: MouseEvent) => void;
|
|
129
131
|
readonly popupStyle: string;
|
|
130
132
|
readonly popupShadowStyle: string;
|
|
131
133
|
readonly popupHiddenStyle: string;
|
|
134
|
+
readonly popupFixedStyle: string;
|
|
132
135
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
133
136
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
134
137
|
isOpen: {
|
|
@@ -1375,6 +1375,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1375
1375
|
updateBodyPxInfo: () => void;
|
|
1376
1376
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1377
1377
|
togglePopup: () => boolean | undefined;
|
|
1378
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
1378
1379
|
removeScrollHandler: (() => void) | null;
|
|
1379
1380
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
1380
1381
|
observer: ResizeObserver;
|
|
@@ -1396,12 +1397,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1396
1397
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
1397
1398
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
1398
1399
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
1400
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
1399
1401
|
inset: import("vue").ComputedRef<string>;
|
|
1400
1402
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
1401
1403
|
mouseLeave: (e: MouseEvent) => void;
|
|
1402
1404
|
readonly popupStyle: string;
|
|
1403
1405
|
readonly popupShadowStyle: string;
|
|
1404
1406
|
readonly popupHiddenStyle: string;
|
|
1407
|
+
readonly popupFixedStyle: string;
|
|
1405
1408
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
1406
1409
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1407
1410
|
isOpen: {
|
|
@@ -965,6 +965,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
965
965
|
updateBodyPxInfo: () => void;
|
|
966
966
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
967
967
|
togglePopup: () => boolean | undefined;
|
|
968
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
968
969
|
removeScrollHandler: (() => void) | null;
|
|
969
970
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
970
971
|
observer: ResizeObserver;
|
|
@@ -986,12 +987,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
986
987
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
987
988
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
988
989
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
990
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
989
991
|
inset: import("vue").ComputedRef<string>;
|
|
990
992
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
991
993
|
mouseLeave: (e: MouseEvent) => void;
|
|
992
994
|
readonly popupStyle: string;
|
|
993
995
|
readonly popupShadowStyle: string;
|
|
994
996
|
readonly popupHiddenStyle: string;
|
|
997
|
+
readonly popupFixedStyle: string;
|
|
995
998
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
996
999
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
997
1000
|
isOpen: {
|
|
@@ -706,6 +706,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
706
706
|
updateBodyPxInfo: () => void;
|
|
707
707
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
708
708
|
togglePopup: () => boolean | undefined;
|
|
709
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
709
710
|
removeScrollHandler: (() => void) | null;
|
|
710
711
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
711
712
|
observer: ResizeObserver;
|
|
@@ -727,12 +728,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
727
728
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
728
729
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
729
730
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
731
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
730
732
|
inset: import("vue").ComputedRef<string>;
|
|
731
733
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
732
734
|
mouseLeave: (e: MouseEvent) => void;
|
|
733
735
|
readonly popupStyle: string;
|
|
734
736
|
readonly popupShadowStyle: string;
|
|
735
737
|
readonly popupHiddenStyle: string;
|
|
738
|
+
readonly popupFixedStyle: string;
|
|
736
739
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
737
740
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
738
741
|
isOpen: {
|
|
@@ -228,6 +228,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
228
228
|
updateBodyPxInfo: () => void;
|
|
229
229
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
230
230
|
togglePopup: () => boolean | undefined;
|
|
231
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
231
232
|
removeScrollHandler: (() => void) | null;
|
|
232
233
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
233
234
|
observer: ResizeObserver;
|
|
@@ -249,12 +250,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
249
250
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
250
251
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
251
252
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
253
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
252
254
|
inset: import("vue").ComputedRef<string>;
|
|
253
255
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
254
256
|
mouseLeave: (e: MouseEvent) => void;
|
|
255
257
|
readonly popupStyle: string;
|
|
256
258
|
readonly popupShadowStyle: string;
|
|
257
259
|
readonly popupHiddenStyle: string;
|
|
260
|
+
readonly popupFixedStyle: string;
|
|
258
261
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
259
262
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
260
263
|
isOpen: {
|
|
@@ -179,6 +179,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
179
179
|
updateBodyPxInfo: () => void;
|
|
180
180
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
181
181
|
togglePopup: () => boolean | undefined;
|
|
182
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
182
183
|
removeScrollHandler: (() => void) | null;
|
|
183
184
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
184
185
|
observer: ResizeObserver;
|
|
@@ -200,12 +201,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
200
201
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
201
202
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
202
203
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
204
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
203
205
|
inset: import("vue").ComputedRef<string>;
|
|
204
206
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
205
207
|
mouseLeave: (e: MouseEvent) => void;
|
|
206
208
|
readonly popupStyle: string;
|
|
207
209
|
readonly popupShadowStyle: string;
|
|
208
210
|
readonly popupHiddenStyle: string;
|
|
211
|
+
readonly popupFixedStyle: string;
|
|
209
212
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
210
213
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
211
214
|
isOpen: {
|
|
@@ -1151,6 +1151,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1151
1151
|
updateBodyPxInfo: () => void;
|
|
1152
1152
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1153
1153
|
togglePopup: () => boolean | undefined;
|
|
1154
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
1154
1155
|
removeScrollHandler: (() => void) | null;
|
|
1155
1156
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
1156
1157
|
observer: ResizeObserver;
|
|
@@ -1172,12 +1173,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1172
1173
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
1173
1174
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
1174
1175
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
1176
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
1175
1177
|
inset: import("vue").ComputedRef<string>;
|
|
1176
1178
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
1177
1179
|
mouseLeave: (e: MouseEvent) => void;
|
|
1178
1180
|
readonly popupStyle: string;
|
|
1179
1181
|
readonly popupShadowStyle: string;
|
|
1180
1182
|
readonly popupHiddenStyle: string;
|
|
1183
|
+
readonly popupFixedStyle: string;
|
|
1181
1184
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
1182
1185
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1183
1186
|
isOpen: {
|
|
@@ -186,6 +186,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
186
186
|
updateBodyPxInfo: () => void;
|
|
187
187
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
188
188
|
togglePopup: () => boolean | undefined;
|
|
189
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
189
190
|
removeScrollHandler: (() => void) | null;
|
|
190
191
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
191
192
|
observer: ResizeObserver;
|
|
@@ -207,12 +208,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
207
208
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
208
209
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
209
210
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
211
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
210
212
|
inset: import("vue").ComputedRef<string>;
|
|
211
213
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
212
214
|
mouseLeave: (e: MouseEvent) => void;
|
|
213
215
|
readonly popupStyle: string;
|
|
214
216
|
readonly popupShadowStyle: string;
|
|
215
217
|
readonly popupHiddenStyle: string;
|
|
218
|
+
readonly popupFixedStyle: string;
|
|
216
219
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
217
220
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
218
221
|
isOpen: {
|
|
@@ -1226,6 +1229,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1226
1229
|
updateBodyPxInfo: () => void;
|
|
1227
1230
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1228
1231
|
togglePopup: () => boolean | undefined;
|
|
1232
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
1229
1233
|
removeScrollHandler: (() => void) | null;
|
|
1230
1234
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
1231
1235
|
observer: ResizeObserver;
|
|
@@ -1247,12 +1251,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1247
1251
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
1248
1252
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
1249
1253
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
1254
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
1250
1255
|
inset: import("vue").ComputedRef<string>;
|
|
1251
1256
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
1252
1257
|
mouseLeave: (e: MouseEvent) => void;
|
|
1253
1258
|
readonly popupStyle: string;
|
|
1254
1259
|
readonly popupShadowStyle: string;
|
|
1255
1260
|
readonly popupHiddenStyle: string;
|
|
1261
|
+
readonly popupFixedStyle: string;
|
|
1256
1262
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
1257
1263
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1258
1264
|
isOpen: {
|
|
@@ -90,6 +90,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
90
90
|
updateBodyPxInfo: () => void;
|
|
91
91
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
92
92
|
togglePopup: () => boolean | undefined;
|
|
93
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
93
94
|
removeScrollHandler: (() => void) | null;
|
|
94
95
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
95
96
|
observer: ResizeObserver;
|
|
@@ -111,12 +112,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
111
112
|
directionToTuple: (direction: Direction) => [DirectionChar, DirectionChar];
|
|
112
113
|
convertDirection: (char: DirectionChar) => "c" | "b" | "t" | "r" | "l";
|
|
113
114
|
computedDirection: import("vue").ComputedRef<Direction>;
|
|
115
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
114
116
|
inset: import("vue").ComputedRef<string>;
|
|
115
117
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
116
118
|
mouseLeave: (e: MouseEvent) => void;
|
|
117
119
|
readonly popupStyle: string;
|
|
118
120
|
readonly popupShadowStyle: string;
|
|
119
121
|
readonly popupHiddenStyle: string;
|
|
122
|
+
readonly popupFixedStyle: string;
|
|
120
123
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
121
124
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
122
125
|
isOpen: {
|
|
@@ -268,6 +268,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
268
268
|
updateBodyPxInfo: () => void;
|
|
269
269
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
270
270
|
togglePopup: () => boolean | undefined;
|
|
271
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
271
272
|
removeScrollHandler: (() => void) | null;
|
|
272
273
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
273
274
|
observer: ResizeObserver;
|
|
@@ -289,12 +290,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
289
290
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
290
291
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
291
292
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
293
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
292
294
|
inset: import("vue").ComputedRef<string>;
|
|
293
295
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
294
296
|
mouseLeave: (e: MouseEvent) => void;
|
|
295
297
|
readonly popupStyle: string;
|
|
296
298
|
readonly popupShadowStyle: string;
|
|
297
299
|
readonly popupHiddenStyle: string;
|
|
300
|
+
readonly popupFixedStyle: string;
|
|
298
301
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
299
302
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
300
303
|
isOpen: {
|
|
@@ -13,7 +13,121 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
13
13
|
type: NumberConstructor;
|
|
14
14
|
required: false;
|
|
15
15
|
};
|
|
16
|
+
fontSize: {
|
|
17
|
+
type: PropType<"xs2" | "xs" | "sm" | "md">;
|
|
18
|
+
required: false;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
16
21
|
}, {
|
|
22
|
+
readonly THEME: {
|
|
23
|
+
readonly color: {
|
|
24
|
+
gradient: string;
|
|
25
|
+
transparent: string;
|
|
26
|
+
green: {
|
|
27
|
+
"300": string;
|
|
28
|
+
"400": string;
|
|
29
|
+
"500": string;
|
|
30
|
+
"600": string;
|
|
31
|
+
"700": string;
|
|
32
|
+
"800": string;
|
|
33
|
+
};
|
|
34
|
+
blue: {
|
|
35
|
+
"300": string;
|
|
36
|
+
"400": string;
|
|
37
|
+
"500": string;
|
|
38
|
+
"600": string;
|
|
39
|
+
"700": string;
|
|
40
|
+
"800": string;
|
|
41
|
+
};
|
|
42
|
+
red: {
|
|
43
|
+
"300": string;
|
|
44
|
+
"400": string;
|
|
45
|
+
"500": string;
|
|
46
|
+
"600": string;
|
|
47
|
+
"700": string;
|
|
48
|
+
"800": string;
|
|
49
|
+
};
|
|
50
|
+
yellow: {
|
|
51
|
+
"300": string;
|
|
52
|
+
"400": string;
|
|
53
|
+
"500": string;
|
|
54
|
+
"600": string;
|
|
55
|
+
"700": string;
|
|
56
|
+
"800": string;
|
|
57
|
+
};
|
|
58
|
+
gray: {
|
|
59
|
+
"200": string;
|
|
60
|
+
"300": string;
|
|
61
|
+
"400": string;
|
|
62
|
+
"500": string;
|
|
63
|
+
"600": string;
|
|
64
|
+
"700": string;
|
|
65
|
+
"800": string;
|
|
66
|
+
"900": string;
|
|
67
|
+
};
|
|
68
|
+
white: {
|
|
69
|
+
"500": string;
|
|
70
|
+
"800": string;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
readonly spacing: {
|
|
74
|
+
readonly no: "0";
|
|
75
|
+
readonly xs2: "0.25rem";
|
|
76
|
+
readonly xs: "0.5rem";
|
|
77
|
+
readonly sm: "0.75rem";
|
|
78
|
+
readonly md: "1rem";
|
|
79
|
+
readonly lg: "1.25rem";
|
|
80
|
+
readonly xl: "1.5rem";
|
|
81
|
+
readonly xl2: "2rem";
|
|
82
|
+
readonly xl3: "2.5rem";
|
|
83
|
+
readonly xl4: "3rem";
|
|
84
|
+
readonly max: "9999px";
|
|
85
|
+
readonly at: "auto";
|
|
86
|
+
};
|
|
87
|
+
readonly fontSize: {
|
|
88
|
+
readonly xs3: "0.5rem";
|
|
89
|
+
readonly xs2: "0.625rem";
|
|
90
|
+
readonly xs: "0.75rem";
|
|
91
|
+
readonly sm: "0.875rem";
|
|
92
|
+
readonly md: "1rem";
|
|
93
|
+
readonly lg: "1.125rem";
|
|
94
|
+
readonly xl: "1.25rem";
|
|
95
|
+
readonly xl2: "1.5rem";
|
|
96
|
+
readonly xl3: "1.75rem";
|
|
97
|
+
readonly xl4: "2rem";
|
|
98
|
+
readonly xl5: "2.25rem";
|
|
99
|
+
readonly xl6: "2.5rem";
|
|
100
|
+
};
|
|
101
|
+
readonly fontWeight: {
|
|
102
|
+
readonly thin: 100;
|
|
103
|
+
readonly extralight: 200;
|
|
104
|
+
readonly light: 300;
|
|
105
|
+
readonly normal: 400;
|
|
106
|
+
readonly medium: 500;
|
|
107
|
+
readonly semibold: 600;
|
|
108
|
+
readonly bold: 700;
|
|
109
|
+
};
|
|
110
|
+
readonly breakpoint: {
|
|
111
|
+
readonly sm: "576px";
|
|
112
|
+
readonly md: "768px";
|
|
113
|
+
readonly lg: "992px";
|
|
114
|
+
readonly xl: "1200px";
|
|
115
|
+
};
|
|
116
|
+
readonly shadow: {
|
|
117
|
+
none: string;
|
|
118
|
+
sm: string;
|
|
119
|
+
md: string;
|
|
120
|
+
};
|
|
121
|
+
readonly zIndex: {
|
|
122
|
+
readonly base: "0";
|
|
123
|
+
readonly floating: "1000";
|
|
124
|
+
readonly dialog: "2000";
|
|
125
|
+
readonly popover: "3000";
|
|
126
|
+
};
|
|
127
|
+
readonly share: {
|
|
128
|
+
HEADER_HEIGHT: string;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
17
131
|
readonly flatTdStyle: string;
|
|
18
132
|
readonly flatTdAlignStyle: Record<"left" | "right" | "center", string>;
|
|
19
133
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -30,7 +144,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
30
144
|
type: NumberConstructor;
|
|
31
145
|
required: false;
|
|
32
146
|
};
|
|
147
|
+
fontSize: {
|
|
148
|
+
type: PropType<"xs2" | "xs" | "sm" | "md">;
|
|
149
|
+
required: false;
|
|
150
|
+
default: string;
|
|
151
|
+
};
|
|
33
152
|
}>>, {
|
|
153
|
+
fontSize: "xs2" | "xs" | "sm" | "md";
|
|
34
154
|
align: "left" | "right" | "center";
|
|
35
155
|
}>;
|
|
36
156
|
export default _sfc_main;
|
|
@@ -18,7 +18,121 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
18
18
|
type: NumberConstructor;
|
|
19
19
|
required: false;
|
|
20
20
|
};
|
|
21
|
+
fontSize: {
|
|
22
|
+
type: PropType<"xs2" | "xs" | "sm" | "md">;
|
|
23
|
+
required: false;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
21
26
|
}, {
|
|
27
|
+
readonly THEME: {
|
|
28
|
+
readonly color: {
|
|
29
|
+
gradient: string;
|
|
30
|
+
transparent: string;
|
|
31
|
+
green: {
|
|
32
|
+
"300": string;
|
|
33
|
+
"400": string;
|
|
34
|
+
"500": string;
|
|
35
|
+
"600": string;
|
|
36
|
+
"700": string;
|
|
37
|
+
"800": string;
|
|
38
|
+
};
|
|
39
|
+
blue: {
|
|
40
|
+
"300": string;
|
|
41
|
+
"400": string;
|
|
42
|
+
"500": string;
|
|
43
|
+
"600": string;
|
|
44
|
+
"700": string;
|
|
45
|
+
"800": string;
|
|
46
|
+
};
|
|
47
|
+
red: {
|
|
48
|
+
"300": string;
|
|
49
|
+
"400": string;
|
|
50
|
+
"500": string;
|
|
51
|
+
"600": string;
|
|
52
|
+
"700": string;
|
|
53
|
+
"800": string;
|
|
54
|
+
};
|
|
55
|
+
yellow: {
|
|
56
|
+
"300": string;
|
|
57
|
+
"400": string;
|
|
58
|
+
"500": string;
|
|
59
|
+
"600": string;
|
|
60
|
+
"700": string;
|
|
61
|
+
"800": string;
|
|
62
|
+
};
|
|
63
|
+
gray: {
|
|
64
|
+
"200": string;
|
|
65
|
+
"300": string;
|
|
66
|
+
"400": string;
|
|
67
|
+
"500": string;
|
|
68
|
+
"600": string;
|
|
69
|
+
"700": string;
|
|
70
|
+
"800": string;
|
|
71
|
+
"900": string;
|
|
72
|
+
};
|
|
73
|
+
white: {
|
|
74
|
+
"500": string;
|
|
75
|
+
"800": string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
readonly spacing: {
|
|
79
|
+
readonly no: "0";
|
|
80
|
+
readonly xs2: "0.25rem";
|
|
81
|
+
readonly xs: "0.5rem";
|
|
82
|
+
readonly sm: "0.75rem";
|
|
83
|
+
readonly md: "1rem";
|
|
84
|
+
readonly lg: "1.25rem";
|
|
85
|
+
readonly xl: "1.5rem";
|
|
86
|
+
readonly xl2: "2rem";
|
|
87
|
+
readonly xl3: "2.5rem";
|
|
88
|
+
readonly xl4: "3rem";
|
|
89
|
+
readonly max: "9999px";
|
|
90
|
+
readonly at: "auto";
|
|
91
|
+
};
|
|
92
|
+
readonly fontSize: {
|
|
93
|
+
readonly xs3: "0.5rem";
|
|
94
|
+
readonly xs2: "0.625rem";
|
|
95
|
+
readonly xs: "0.75rem";
|
|
96
|
+
readonly sm: "0.875rem";
|
|
97
|
+
readonly md: "1rem";
|
|
98
|
+
readonly lg: "1.125rem";
|
|
99
|
+
readonly xl: "1.25rem";
|
|
100
|
+
readonly xl2: "1.5rem";
|
|
101
|
+
readonly xl3: "1.75rem";
|
|
102
|
+
readonly xl4: "2rem";
|
|
103
|
+
readonly xl5: "2.25rem";
|
|
104
|
+
readonly xl6: "2.5rem";
|
|
105
|
+
};
|
|
106
|
+
readonly fontWeight: {
|
|
107
|
+
readonly thin: 100;
|
|
108
|
+
readonly extralight: 200;
|
|
109
|
+
readonly light: 300;
|
|
110
|
+
readonly normal: 400;
|
|
111
|
+
readonly medium: 500;
|
|
112
|
+
readonly semibold: 600;
|
|
113
|
+
readonly bold: 700;
|
|
114
|
+
};
|
|
115
|
+
readonly breakpoint: {
|
|
116
|
+
readonly sm: "576px";
|
|
117
|
+
readonly md: "768px";
|
|
118
|
+
readonly lg: "992px";
|
|
119
|
+
readonly xl: "1200px";
|
|
120
|
+
};
|
|
121
|
+
readonly shadow: {
|
|
122
|
+
none: string;
|
|
123
|
+
sm: string;
|
|
124
|
+
md: string;
|
|
125
|
+
};
|
|
126
|
+
readonly zIndex: {
|
|
127
|
+
readonly base: "0";
|
|
128
|
+
readonly floating: "1000";
|
|
129
|
+
readonly dialog: "2000";
|
|
130
|
+
readonly popover: "3000";
|
|
131
|
+
};
|
|
132
|
+
readonly share: {
|
|
133
|
+
HEADER_HEIGHT: string;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
22
136
|
readonly flatTh: string;
|
|
23
137
|
readonly flatThVariantStyle: Record<"row" | "col", string>;
|
|
24
138
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -40,8 +154,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
40
154
|
type: NumberConstructor;
|
|
41
155
|
required: false;
|
|
42
156
|
};
|
|
157
|
+
fontSize: {
|
|
158
|
+
type: PropType<"xs2" | "xs" | "sm" | "md">;
|
|
159
|
+
required: false;
|
|
160
|
+
default: string;
|
|
161
|
+
};
|
|
43
162
|
}>>, {
|
|
44
163
|
width: string;
|
|
164
|
+
fontSize: "xs2" | "xs" | "sm" | "md";
|
|
45
165
|
scope: "row" | "col";
|
|
46
166
|
}>;
|
|
47
167
|
export default _sfc_main;
|
|
@@ -112,6 +112,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
112
112
|
updateBodyPxInfo: () => void;
|
|
113
113
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
114
114
|
togglePopup: () => boolean | undefined;
|
|
115
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
115
116
|
removeScrollHandler: (() => void) | null;
|
|
116
117
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
117
118
|
observer: ResizeObserver;
|
|
@@ -133,12 +134,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
133
134
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
134
135
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
135
136
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
137
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
136
138
|
inset: import("vue").ComputedRef<string>;
|
|
137
139
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
138
140
|
mouseLeave: (e: MouseEvent) => void;
|
|
139
141
|
readonly popupStyle: string;
|
|
140
142
|
readonly popupShadowStyle: string;
|
|
141
143
|
readonly popupHiddenStyle: string;
|
|
144
|
+
readonly popupFixedStyle: string;
|
|
142
145
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
143
146
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
144
147
|
isOpen: {
|
|
@@ -6002,6 +6002,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6002
6002
|
updateBodyPxInfo: () => void;
|
|
6003
6003
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
6004
6004
|
togglePopup: () => boolean | undefined;
|
|
6005
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
6005
6006
|
removeScrollHandler: (() => void) | null;
|
|
6006
6007
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
6007
6008
|
observer: ResizeObserver;
|
|
@@ -6023,12 +6024,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6023
6024
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
6024
6025
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
6025
6026
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
6027
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
6026
6028
|
inset: import("vue").ComputedRef<string>;
|
|
6027
6029
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
6028
6030
|
mouseLeave: (e: MouseEvent) => void;
|
|
6029
6031
|
readonly popupStyle: string;
|
|
6030
6032
|
readonly popupShadowStyle: string;
|
|
6031
6033
|
readonly popupHiddenStyle: string;
|
|
6034
|
+
readonly popupFixedStyle: string;
|
|
6032
6035
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
6033
6036
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6034
6037
|
isOpen: {
|
|
@@ -6466,6 +6469,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6466
6469
|
updateBodyPxInfo: () => void;
|
|
6467
6470
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
6468
6471
|
togglePopup: () => boolean | undefined;
|
|
6472
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
6469
6473
|
removeScrollHandler: (() => void) | null;
|
|
6470
6474
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
6471
6475
|
observer: ResizeObserver;
|
|
@@ -6487,12 +6491,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6487
6491
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
6488
6492
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
6489
6493
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
6494
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
6490
6495
|
inset: import("vue").ComputedRef<string>;
|
|
6491
6496
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
6492
6497
|
mouseLeave: (e: MouseEvent) => void;
|
|
6493
6498
|
readonly popupStyle: string;
|
|
6494
6499
|
readonly popupShadowStyle: string;
|
|
6495
6500
|
readonly popupHiddenStyle: string;
|
|
6501
|
+
readonly popupFixedStyle: string;
|
|
6496
6502
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
6497
6503
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6498
6504
|
isOpen: {
|
|
@@ -1801,6 +1801,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1801
1801
|
updateBodyPxInfo: () => void;
|
|
1802
1802
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1803
1803
|
togglePopup: () => boolean | undefined;
|
|
1804
|
+
existsFixedParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
1804
1805
|
removeScrollHandler: (() => void) | null;
|
|
1805
1806
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
1806
1807
|
observer: ResizeObserver;
|
|
@@ -1822,12 +1823,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1822
1823
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
1823
1824
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
1824
1825
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
1826
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
1825
1827
|
inset: import("vue").ComputedRef<string>;
|
|
1826
1828
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
1827
1829
|
mouseLeave: (e: MouseEvent) => void;
|
|
1828
1830
|
readonly popupStyle: string;
|
|
1829
1831
|
readonly popupShadowStyle: string;
|
|
1830
1832
|
readonly popupHiddenStyle: string;
|
|
1833
|
+
readonly popupFixedStyle: string;
|
|
1831
1834
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
1832
1835
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onTurn" | "mouseLeave")[], "onClose" | "onTurn" | "mouseLeave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1833
1836
|
isOpen: {
|