@wizleap-inc/wiz-ui-next 2.26.0 → 2.27.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 +6 -4
- package/dist/components/base/inputs/base/base.vue.d.ts +1 -2
- package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +6 -4
- package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +6 -4
- package/dist/components/base/inputs/password/password.vue.d.ts +1 -2
- package/dist/components/base/inputs/search-input/search-input.vue.d.ts +6 -4
- package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +6 -4
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +6 -4
- package/dist/components/base/inputs/text/text.vue.d.ts +1 -2
- package/dist/components/base/inputs/timepicker/time-picker.vue.d.ts +6 -4
- package/dist/components/base/navigation/item.vue.d.ts +12 -8
- package/dist/components/base/popup/popup-container.vue.d.ts +1 -1
- package/dist/components/base/popup/popup.vue.d.ts +5 -3
- package/dist/components/base/popup/provider.d.ts +1 -1
- package/dist/components/base/progress-bar/progress-bar.vue.d.ts +6 -4
- package/dist/components/base/textarea/text-area.vue.d.ts +1 -2
- package/dist/components/base/tooltip/tooltip.vue.d.ts +6 -4
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +13 -10
- package/dist/components/custom/chat/form/chat-form.vue.d.ts +1 -2
- package/dist/components/custom/chat/item/chat-item.vue.d.ts +6 -4
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +3317 -3307
- package/dist/wiz-ui.umd.js +18 -18
- package/package.json +2 -2
|
@@ -76,6 +76,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
76
76
|
width: number;
|
|
77
77
|
height: number;
|
|
78
78
|
};
|
|
79
|
+
updatePopupSize: () => void;
|
|
80
|
+
popupSizeObserver: ResizeObserver;
|
|
79
81
|
injected: {
|
|
80
82
|
initialPxInfo: {
|
|
81
83
|
top: number;
|
|
@@ -93,7 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
93
95
|
readonly width: number;
|
|
94
96
|
readonly height: number;
|
|
95
97
|
};
|
|
96
|
-
updateBodyPxInfo: () => void;
|
|
98
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
97
99
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
98
100
|
};
|
|
99
101
|
bodyPxInfo: {
|
|
@@ -104,10 +106,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
104
106
|
readonly width: number;
|
|
105
107
|
readonly height: number;
|
|
106
108
|
};
|
|
107
|
-
updateBodyPxInfo: () => void;
|
|
109
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
108
110
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
109
111
|
togglePopup: () => boolean | undefined;
|
|
110
112
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
113
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
111
114
|
removeScrollHandler: (() => void) | null;
|
|
112
115
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
113
116
|
observer: ResizeObserver;
|
|
@@ -129,7 +132,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
129
132
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
130
133
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
131
134
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
132
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
133
135
|
inset: import("vue").ComputedRef<string>;
|
|
134
136
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
135
137
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -220,7 +222,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
220
222
|
readonly width: number;
|
|
221
223
|
readonly height: number;
|
|
222
224
|
};
|
|
223
|
-
updateBodyPxInfo: () => void;
|
|
225
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
224
226
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
225
227
|
};
|
|
226
228
|
readonly popupContainerStyle: string;
|
|
@@ -51,9 +51,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
51
51
|
(e: "focusout", value: FocusEvent): void;
|
|
52
52
|
};
|
|
53
53
|
textValue: import("vue").WritableComputedRef<string>;
|
|
54
|
-
hasFocus: import("vue").Ref<boolean>;
|
|
55
54
|
computedWidth: import("vue").ComputedRef<string>;
|
|
56
|
-
state: import("vue").ComputedRef<"default" | "
|
|
55
|
+
state: import("vue").ComputedRef<"default" | "error">;
|
|
57
56
|
onFocusIn: (e: FocusEvent) => void;
|
|
58
57
|
onFocusOut: (e: FocusEvent) => void;
|
|
59
58
|
readonly baseInputStyle: string;
|
|
@@ -826,6 +826,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
826
826
|
width: number;
|
|
827
827
|
height: number;
|
|
828
828
|
};
|
|
829
|
+
updatePopupSize: () => void;
|
|
830
|
+
popupSizeObserver: ResizeObserver;
|
|
829
831
|
injected: {
|
|
830
832
|
initialPxInfo: {
|
|
831
833
|
top: number;
|
|
@@ -843,7 +845,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
843
845
|
readonly width: number;
|
|
844
846
|
readonly height: number;
|
|
845
847
|
};
|
|
846
|
-
updateBodyPxInfo: () => void;
|
|
848
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
847
849
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
848
850
|
};
|
|
849
851
|
bodyPxInfo: {
|
|
@@ -854,10 +856,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
854
856
|
readonly width: number;
|
|
855
857
|
readonly height: number;
|
|
856
858
|
};
|
|
857
|
-
updateBodyPxInfo: () => void;
|
|
859
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
858
860
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
859
861
|
togglePopup: () => boolean | undefined;
|
|
860
862
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
863
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
861
864
|
removeScrollHandler: (() => void) | null;
|
|
862
865
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
863
866
|
observer: ResizeObserver;
|
|
@@ -879,7 +882,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
879
882
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
880
883
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
881
884
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
882
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
883
885
|
inset: import("vue").ComputedRef<string>;
|
|
884
886
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
885
887
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -970,7 +972,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
970
972
|
readonly width: number;
|
|
971
973
|
readonly height: number;
|
|
972
974
|
};
|
|
973
|
-
updateBodyPxInfo: () => void;
|
|
975
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
974
976
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
975
977
|
};
|
|
976
978
|
readonly popupContainerStyle: string;
|
|
@@ -933,6 +933,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
933
933
|
width: number;
|
|
934
934
|
height: number;
|
|
935
935
|
};
|
|
936
|
+
updatePopupSize: () => void;
|
|
937
|
+
popupSizeObserver: ResizeObserver;
|
|
936
938
|
injected: {
|
|
937
939
|
initialPxInfo: {
|
|
938
940
|
top: number;
|
|
@@ -950,7 +952,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
950
952
|
readonly width: number;
|
|
951
953
|
readonly height: number;
|
|
952
954
|
};
|
|
953
|
-
updateBodyPxInfo: () => void;
|
|
955
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
954
956
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
955
957
|
};
|
|
956
958
|
bodyPxInfo: {
|
|
@@ -961,10 +963,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
961
963
|
readonly width: number;
|
|
962
964
|
readonly height: number;
|
|
963
965
|
};
|
|
964
|
-
updateBodyPxInfo: () => void;
|
|
966
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
965
967
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
966
968
|
togglePopup: () => boolean | undefined;
|
|
967
969
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
970
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
968
971
|
removeScrollHandler: (() => void) | null;
|
|
969
972
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
970
973
|
observer: ResizeObserver;
|
|
@@ -986,7 +989,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
986
989
|
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
990
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
988
991
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
989
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
990
992
|
inset: import("vue").ComputedRef<string>;
|
|
991
993
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
992
994
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -1077,7 +1079,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1077
1079
|
readonly width: number;
|
|
1078
1080
|
readonly height: number;
|
|
1079
1081
|
};
|
|
1080
|
-
updateBodyPxInfo: () => void;
|
|
1082
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
1081
1083
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1082
1084
|
};
|
|
1083
1085
|
readonly popupContainerStyle: string;
|
|
@@ -142,9 +142,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
142
142
|
(e: "focusout", value: FocusEvent): void;
|
|
143
143
|
};
|
|
144
144
|
textValue: import("vue").WritableComputedRef<string>;
|
|
145
|
-
hasFocus: import("vue").Ref<boolean>;
|
|
146
145
|
computedWidth: import("vue").ComputedRef<string>;
|
|
147
|
-
state: import("vue").ComputedRef<"default" | "
|
|
146
|
+
state: import("vue").ComputedRef<"default" | "error">;
|
|
148
147
|
onFocusIn: (e: FocusEvent) => void;
|
|
149
148
|
onFocusOut: (e: FocusEvent) => void;
|
|
150
149
|
readonly baseInputStyle: string;
|
|
@@ -811,6 +811,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
811
811
|
width: number;
|
|
812
812
|
height: number;
|
|
813
813
|
};
|
|
814
|
+
updatePopupSize: () => void;
|
|
815
|
+
popupSizeObserver: ResizeObserver;
|
|
814
816
|
injected: {
|
|
815
817
|
initialPxInfo: {
|
|
816
818
|
top: number;
|
|
@@ -828,7 +830,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
828
830
|
readonly width: number;
|
|
829
831
|
readonly height: number;
|
|
830
832
|
};
|
|
831
|
-
updateBodyPxInfo: () => void;
|
|
833
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
832
834
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
833
835
|
};
|
|
834
836
|
bodyPxInfo: {
|
|
@@ -839,10 +841,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
839
841
|
readonly width: number;
|
|
840
842
|
readonly height: number;
|
|
841
843
|
};
|
|
842
|
-
updateBodyPxInfo: () => void;
|
|
844
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
843
845
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
844
846
|
togglePopup: () => boolean | undefined;
|
|
845
847
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
848
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
846
849
|
removeScrollHandler: (() => void) | null;
|
|
847
850
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
848
851
|
observer: ResizeObserver;
|
|
@@ -864,7 +867,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
864
867
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
865
868
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
866
869
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
867
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
868
870
|
inset: import("vue").ComputedRef<string>;
|
|
869
871
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
870
872
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -955,7 +957,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
955
957
|
readonly width: number;
|
|
956
958
|
readonly height: number;
|
|
957
959
|
};
|
|
958
|
-
updateBodyPxInfo: () => void;
|
|
960
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
959
961
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
960
962
|
};
|
|
961
963
|
readonly popupContainerStyle: string;
|
|
@@ -254,6 +254,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
254
254
|
width: number;
|
|
255
255
|
height: number;
|
|
256
256
|
};
|
|
257
|
+
updatePopupSize: () => void;
|
|
258
|
+
popupSizeObserver: ResizeObserver;
|
|
257
259
|
injected: {
|
|
258
260
|
initialPxInfo: {
|
|
259
261
|
top: number;
|
|
@@ -271,7 +273,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
271
273
|
readonly width: number;
|
|
272
274
|
readonly height: number;
|
|
273
275
|
};
|
|
274
|
-
updateBodyPxInfo: () => void;
|
|
276
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
275
277
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
276
278
|
};
|
|
277
279
|
bodyPxInfo: {
|
|
@@ -282,10 +284,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
282
284
|
readonly width: number;
|
|
283
285
|
readonly height: number;
|
|
284
286
|
};
|
|
285
|
-
updateBodyPxInfo: () => void;
|
|
287
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
286
288
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
287
289
|
togglePopup: () => boolean | undefined;
|
|
288
290
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
291
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
289
292
|
removeScrollHandler: (() => void) | null;
|
|
290
293
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
291
294
|
observer: ResizeObserver;
|
|
@@ -307,7 +310,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
307
310
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
308
311
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
309
312
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
310
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
311
313
|
inset: import("vue").ComputedRef<string>;
|
|
312
314
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
313
315
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -1245,7 +1247,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1245
1247
|
readonly width: number;
|
|
1246
1248
|
readonly height: number;
|
|
1247
1249
|
};
|
|
1248
|
-
updateBodyPxInfo: () => void;
|
|
1250
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
1249
1251
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1250
1252
|
};
|
|
1251
1253
|
readonly popupContainerStyle: string;
|
|
@@ -127,6 +127,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
127
127
|
width: number;
|
|
128
128
|
height: number;
|
|
129
129
|
};
|
|
130
|
+
updatePopupSize: () => void;
|
|
131
|
+
popupSizeObserver: ResizeObserver;
|
|
130
132
|
injected: {
|
|
131
133
|
initialPxInfo: {
|
|
132
134
|
top: number;
|
|
@@ -144,7 +146,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
144
146
|
readonly width: number;
|
|
145
147
|
readonly height: number;
|
|
146
148
|
};
|
|
147
|
-
updateBodyPxInfo: () => void;
|
|
149
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
148
150
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
149
151
|
};
|
|
150
152
|
bodyPxInfo: {
|
|
@@ -155,10 +157,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
155
157
|
readonly width: number;
|
|
156
158
|
readonly height: number;
|
|
157
159
|
};
|
|
158
|
-
updateBodyPxInfo: () => void;
|
|
160
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
159
161
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
160
162
|
togglePopup: () => boolean | undefined;
|
|
161
163
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
164
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
162
165
|
removeScrollHandler: (() => void) | null;
|
|
163
166
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
164
167
|
observer: ResizeObserver;
|
|
@@ -180,7 +183,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
180
183
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
181
184
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
182
185
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
183
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
184
186
|
inset: import("vue").ComputedRef<string>;
|
|
185
187
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
186
188
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -271,7 +273,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
271
273
|
readonly width: number;
|
|
272
274
|
readonly height: number;
|
|
273
275
|
};
|
|
274
|
-
updateBodyPxInfo: () => void;
|
|
276
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
275
277
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
276
278
|
};
|
|
277
279
|
readonly popupContainerStyle: string;
|
|
@@ -106,9 +106,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
106
106
|
(e: "focusout", value: FocusEvent): void;
|
|
107
107
|
};
|
|
108
108
|
textValue: import("vue").WritableComputedRef<string>;
|
|
109
|
-
hasFocus: import("vue").Ref<boolean>;
|
|
110
109
|
computedWidth: import("vue").ComputedRef<string>;
|
|
111
|
-
state: import("vue").ComputedRef<"default" | "
|
|
110
|
+
state: import("vue").ComputedRef<"default" | "error">;
|
|
112
111
|
onFocusIn: (e: FocusEvent) => void;
|
|
113
112
|
onFocusOut: (e: FocusEvent) => void;
|
|
114
113
|
readonly baseInputStyle: string;
|
|
@@ -1125,6 +1125,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1125
1125
|
width: number;
|
|
1126
1126
|
height: number;
|
|
1127
1127
|
};
|
|
1128
|
+
updatePopupSize: () => void;
|
|
1129
|
+
popupSizeObserver: ResizeObserver;
|
|
1128
1130
|
injected: {
|
|
1129
1131
|
initialPxInfo: {
|
|
1130
1132
|
top: number;
|
|
@@ -1142,7 +1144,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1142
1144
|
readonly width: number;
|
|
1143
1145
|
readonly height: number;
|
|
1144
1146
|
};
|
|
1145
|
-
updateBodyPxInfo: () => void;
|
|
1147
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
1146
1148
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1147
1149
|
};
|
|
1148
1150
|
bodyPxInfo: {
|
|
@@ -1153,10 +1155,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1153
1155
|
readonly width: number;
|
|
1154
1156
|
readonly height: number;
|
|
1155
1157
|
};
|
|
1156
|
-
updateBodyPxInfo: () => void;
|
|
1158
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
1157
1159
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1158
1160
|
togglePopup: () => boolean | undefined;
|
|
1159
1161
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
1162
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
1160
1163
|
removeScrollHandler: (() => void) | null;
|
|
1161
1164
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
1162
1165
|
observer: ResizeObserver;
|
|
@@ -1178,7 +1181,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1178
1181
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
1179
1182
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
1180
1183
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
1181
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
1182
1184
|
inset: import("vue").ComputedRef<string>;
|
|
1183
1185
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
1184
1186
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -1269,7 +1271,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1269
1271
|
readonly width: number;
|
|
1270
1272
|
readonly height: number;
|
|
1271
1273
|
};
|
|
1272
|
-
updateBodyPxInfo: () => void;
|
|
1274
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
1273
1275
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1274
1276
|
};
|
|
1275
1277
|
readonly popupContainerStyle: string;
|
|
@@ -95,7 +95,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
95
95
|
readonly width: number;
|
|
96
96
|
readonly height: number;
|
|
97
97
|
};
|
|
98
|
-
updateBodyPxInfo: () => void;
|
|
98
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
99
99
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
100
100
|
};
|
|
101
101
|
readonly popupContainerStyle: string;
|
|
@@ -166,6 +166,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
166
166
|
width: number;
|
|
167
167
|
height: number;
|
|
168
168
|
};
|
|
169
|
+
updatePopupSize: () => void;
|
|
170
|
+
popupSizeObserver: ResizeObserver;
|
|
169
171
|
injected: {
|
|
170
172
|
initialPxInfo: {
|
|
171
173
|
top: number;
|
|
@@ -183,7 +185,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
183
185
|
readonly width: number;
|
|
184
186
|
readonly height: number;
|
|
185
187
|
};
|
|
186
|
-
updateBodyPxInfo: () => void;
|
|
188
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
187
189
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
188
190
|
};
|
|
189
191
|
bodyPxInfo: {
|
|
@@ -194,10 +196,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
194
196
|
readonly width: number;
|
|
195
197
|
readonly height: number;
|
|
196
198
|
};
|
|
197
|
-
updateBodyPxInfo: () => void;
|
|
199
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
198
200
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
199
201
|
togglePopup: () => boolean | undefined;
|
|
200
202
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
203
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
201
204
|
removeScrollHandler: (() => void) | null;
|
|
202
205
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
203
206
|
observer: ResizeObserver;
|
|
@@ -219,7 +222,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
219
222
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
220
223
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
221
224
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
222
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
223
225
|
inset: import("vue").ComputedRef<string>;
|
|
224
226
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
225
227
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -1215,6 +1217,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1215
1217
|
width: number;
|
|
1216
1218
|
height: number;
|
|
1217
1219
|
};
|
|
1220
|
+
updatePopupSize: () => void;
|
|
1221
|
+
popupSizeObserver: ResizeObserver;
|
|
1218
1222
|
injected: {
|
|
1219
1223
|
initialPxInfo: {
|
|
1220
1224
|
top: number;
|
|
@@ -1232,7 +1236,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1232
1236
|
readonly width: number;
|
|
1233
1237
|
readonly height: number;
|
|
1234
1238
|
};
|
|
1235
|
-
updateBodyPxInfo: () => void;
|
|
1239
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
1236
1240
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1237
1241
|
};
|
|
1238
1242
|
bodyPxInfo: {
|
|
@@ -1243,10 +1247,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1243
1247
|
readonly width: number;
|
|
1244
1248
|
readonly height: number;
|
|
1245
1249
|
};
|
|
1246
|
-
updateBodyPxInfo: () => void;
|
|
1250
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
1247
1251
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1248
1252
|
togglePopup: () => boolean | undefined;
|
|
1249
1253
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
1254
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
1250
1255
|
removeScrollHandler: (() => void) | null;
|
|
1251
1256
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
1252
1257
|
observer: ResizeObserver;
|
|
@@ -1268,7 +1273,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1268
1273
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
1269
1274
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
1270
1275
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
1271
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
1272
1276
|
inset: import("vue").ComputedRef<string>;
|
|
1273
1277
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
1274
1278
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -1359,7 +1363,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1359
1363
|
readonly width: number;
|
|
1360
1364
|
readonly height: number;
|
|
1361
1365
|
};
|
|
1362
|
-
updateBodyPxInfo: () => void;
|
|
1366
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
1363
1367
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1364
1368
|
};
|
|
1365
1369
|
readonly popupContainerStyle: string;
|
|
@@ -27,7 +27,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
27
27
|
readonly width: number;
|
|
28
28
|
readonly height: number;
|
|
29
29
|
};
|
|
30
|
-
updateBodyPxInfo: () => void;
|
|
30
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
31
31
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
32
32
|
};
|
|
33
33
|
readonly popupContainerStyle: string;
|
|
@@ -59,6 +59,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
59
59
|
width: number;
|
|
60
60
|
height: number;
|
|
61
61
|
};
|
|
62
|
+
updatePopupSize: () => void;
|
|
63
|
+
popupSizeObserver: ResizeObserver;
|
|
62
64
|
injected: {
|
|
63
65
|
initialPxInfo: {
|
|
64
66
|
top: number;
|
|
@@ -76,7 +78,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
76
78
|
readonly width: number;
|
|
77
79
|
readonly height: number;
|
|
78
80
|
};
|
|
79
|
-
updateBodyPxInfo: () => void;
|
|
81
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
80
82
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
81
83
|
};
|
|
82
84
|
bodyPxInfo: {
|
|
@@ -87,10 +89,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
87
89
|
readonly width: number;
|
|
88
90
|
readonly height: number;
|
|
89
91
|
};
|
|
90
|
-
updateBodyPxInfo: () => void;
|
|
92
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
91
93
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
92
94
|
togglePopup: () => boolean | undefined;
|
|
93
95
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
96
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
94
97
|
removeScrollHandler: (() => void) | null;
|
|
95
98
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
96
99
|
observer: ResizeObserver;
|
|
@@ -112,7 +115,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
112
115
|
directionToTuple: (direction: Direction) => [DirectionChar, DirectionChar];
|
|
113
116
|
convertDirection: (char: DirectionChar) => "c" | "b" | "t" | "r" | "l";
|
|
114
117
|
computedDirection: import("vue").ComputedRef<Direction>;
|
|
115
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
116
118
|
inset: import("vue").ComputedRef<string>;
|
|
117
119
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
118
120
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -16,7 +16,7 @@ export declare const usePopupProvider: (containerRef: Ref<HTMLElement | undefine
|
|
|
16
16
|
readonly width: number;
|
|
17
17
|
readonly height: number;
|
|
18
18
|
};
|
|
19
|
-
updateBodyPxInfo: () => void;
|
|
19
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
20
20
|
containerRef: Ref<HTMLElement | undefined>;
|
|
21
21
|
};
|
|
22
22
|
export declare const POPUP_KEY: InjectionKey<ReturnType<typeof usePopupProvider>>;
|
|
@@ -251,6 +251,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
251
251
|
width: number;
|
|
252
252
|
height: number;
|
|
253
253
|
};
|
|
254
|
+
updatePopupSize: () => void;
|
|
255
|
+
popupSizeObserver: ResizeObserver;
|
|
254
256
|
injected: {
|
|
255
257
|
initialPxInfo: {
|
|
256
258
|
top: number;
|
|
@@ -268,7 +270,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
268
270
|
readonly width: number;
|
|
269
271
|
readonly height: number;
|
|
270
272
|
};
|
|
271
|
-
updateBodyPxInfo: () => void;
|
|
273
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
272
274
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
273
275
|
};
|
|
274
276
|
bodyPxInfo: {
|
|
@@ -279,10 +281,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
279
281
|
readonly width: number;
|
|
280
282
|
readonly height: number;
|
|
281
283
|
};
|
|
282
|
-
updateBodyPxInfo: () => void;
|
|
284
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
283
285
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
284
286
|
togglePopup: () => boolean | undefined;
|
|
285
287
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
288
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
286
289
|
removeScrollHandler: (() => void) | null;
|
|
287
290
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
288
291
|
observer: ResizeObserver;
|
|
@@ -304,7 +307,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
304
307
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
305
308
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
306
309
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
307
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
308
310
|
inset: import("vue").ComputedRef<string>;
|
|
309
311
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
310
312
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -395,7 +397,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
395
397
|
readonly width: number;
|
|
396
398
|
readonly height: number;
|
|
397
399
|
};
|
|
398
|
-
updateBodyPxInfo: () => void;
|
|
400
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
399
401
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
400
402
|
};
|
|
401
403
|
readonly popupContainerStyle: string;
|
|
@@ -54,8 +54,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
54
|
setIsError: (value: boolean) => void;
|
|
55
55
|
} | undefined;
|
|
56
56
|
isError: import("vue").ComputedRef<boolean>;
|
|
57
|
-
|
|
58
|
-
state: import("vue").ComputedRef<"default" | "active" | "error">;
|
|
57
|
+
state: import("vue").ComputedRef<"default" | "error">;
|
|
59
58
|
readonly textAreaExpandStyle: string;
|
|
60
59
|
readonly textAreaStyle: string;
|
|
61
60
|
readonly textAreaVariantStyle: Record<"default" | "disabled", string>;
|
|
@@ -86,6 +86,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
86
86
|
width: number;
|
|
87
87
|
height: number;
|
|
88
88
|
};
|
|
89
|
+
updatePopupSize: () => void;
|
|
90
|
+
popupSizeObserver: ResizeObserver;
|
|
89
91
|
injected: {
|
|
90
92
|
initialPxInfo: {
|
|
91
93
|
top: number;
|
|
@@ -103,7 +105,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
103
105
|
readonly width: number;
|
|
104
106
|
readonly height: number;
|
|
105
107
|
};
|
|
106
|
-
updateBodyPxInfo: () => void;
|
|
108
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
107
109
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
108
110
|
};
|
|
109
111
|
bodyPxInfo: {
|
|
@@ -114,10 +116,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
114
116
|
readonly width: number;
|
|
115
117
|
readonly height: number;
|
|
116
118
|
};
|
|
117
|
-
updateBodyPxInfo: () => void;
|
|
119
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
118
120
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
119
121
|
togglePopup: () => boolean | undefined;
|
|
120
122
|
existsFixedOrStickyParent: (el: HTMLElement | null) => HTMLElement | null;
|
|
123
|
+
isFixed: import("vue").ComputedRef<boolean>;
|
|
121
124
|
removeScrollHandler: (() => void) | null;
|
|
122
125
|
onChangeIsOpen: (newValue: boolean) => void;
|
|
123
126
|
observer: ResizeObserver;
|
|
@@ -139,7 +142,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
139
142
|
directionToTuple: (direction: "tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc") => ["t" | "l" | "r" | "c" | "b", "t" | "l" | "r" | "c" | "b"];
|
|
140
143
|
convertDirection: (char: "t" | "l" | "r" | "c" | "b") => "c" | "b" | "t" | "r" | "l";
|
|
141
144
|
computedDirection: import("vue").ComputedRef<"tl" | "tr" | "tc" | "bl" | "br" | "bc" | "rt" | "rb" | "rc" | "lt" | "lb" | "lc">;
|
|
142
|
-
isFixed: import("vue").ComputedRef<boolean>;
|
|
143
145
|
inset: import("vue").ComputedRef<string>;
|
|
144
146
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
145
147
|
mouseLeave: (e: MouseEvent) => void;
|
|
@@ -230,7 +232,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
230
232
|
readonly width: number;
|
|
231
233
|
readonly height: number;
|
|
232
234
|
};
|
|
233
|
-
updateBodyPxInfo: () => void;
|
|
235
|
+
updateBodyPxInfo: (isPopupFixed: boolean) => void;
|
|
234
236
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
235
237
|
};
|
|
236
238
|
readonly popupContainerStyle: string;
|