@wizleap-inc/wiz-ui-next 0.7.7 → 0.7.9
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 +1 -1
- package/dist/components/base/inputs/checkbox/checkbox.vue.d.ts +12 -0
- package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +1 -1
- package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +1 -1
- package/dist/components/base/inputs/radio/radio.vue.d.ts +12 -0
- package/dist/components/base/inputs/search/search.vue.d.ts +1 -1
- package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +1 -1
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +12 -1
- package/dist/components/base/inputs/timepicker/time-picker.vue.d.ts +1 -1
- package/dist/components/base/popup/popup-container.vue.d.ts +0 -1
- package/dist/components/base/popup/popup.vue.d.ts +1 -0
- package/dist/components/base/skeleton/skeleton.vue.d.ts +12 -0
- package/dist/components/base/tables/unstyled/table.vue.d.ts +9 -0
- package/dist/components/base/tables/unstyled/thead.vue.d.ts +15 -1
- package/dist/components/base/tables/unstyled/tr.vue.d.ts +15 -1
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +13 -1
- package/dist/hooks/use-scroll.d.ts +10 -1
- package/dist/index.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +2109 -2047
- package/dist/wiz-ui.umd.js +10 -10
- package/package.json +1 -1
|
@@ -81,6 +81,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
81
81
|
};
|
|
82
82
|
updateBodyPxInfo: () => void;
|
|
83
83
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
84
|
+
removeScrollHandler: (() => void) | null;
|
|
84
85
|
observer: ResizeObserver;
|
|
85
86
|
popupRect: import("vue").ComputedRef<{
|
|
86
87
|
width: number;
|
|
@@ -163,7 +164,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
163
164
|
updateBodyPxInfo: () => void;
|
|
164
165
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
165
166
|
};
|
|
166
|
-
updateBodyPxInfo: () => void;
|
|
167
167
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
168
168
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
169
169
|
expand: {
|
|
@@ -23,6 +23,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
23
23
|
required: false;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
|
+
strikeThrough: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
required: false;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
26
31
|
}, {
|
|
27
32
|
props: any;
|
|
28
33
|
emit: (e: "update:modelValue", value: number[]) => void;
|
|
@@ -36,6 +41,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
36
41
|
readonly checkboxLabelCursorStyle: Record<"default" | "disabled", string>;
|
|
37
42
|
readonly checkboxIconStyle: string;
|
|
38
43
|
readonly checkboxBlockCheckedStyle: string;
|
|
44
|
+
readonly checkboxLabelStrikeThrough: string;
|
|
39
45
|
WizStack: import("vue").DefineComponent<{
|
|
40
46
|
direction: {
|
|
41
47
|
type: PropType<"horizontal" | "vertical">;
|
|
@@ -320,11 +326,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
320
326
|
required: false;
|
|
321
327
|
default: string;
|
|
322
328
|
};
|
|
329
|
+
strikeThrough: {
|
|
330
|
+
type: BooleanConstructor;
|
|
331
|
+
required: false;
|
|
332
|
+
default: boolean;
|
|
333
|
+
};
|
|
323
334
|
}>> & {
|
|
324
335
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
325
336
|
}, {
|
|
326
337
|
direction: "horizontal" | "vertical";
|
|
327
338
|
gap: "at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max";
|
|
328
339
|
disabled: boolean;
|
|
340
|
+
strikeThrough: boolean;
|
|
329
341
|
}>;
|
|
330
342
|
export default _sfc_main;
|
|
@@ -879,6 +879,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
879
879
|
};
|
|
880
880
|
updateBodyPxInfo: () => void;
|
|
881
881
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
882
|
+
removeScrollHandler: (() => void) | null;
|
|
882
883
|
observer: ResizeObserver;
|
|
883
884
|
popupRect: import("vue").ComputedRef<{
|
|
884
885
|
width: number;
|
|
@@ -961,7 +962,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
961
962
|
updateBodyPxInfo: () => void;
|
|
962
963
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
963
964
|
};
|
|
964
|
-
updateBodyPxInfo: () => void;
|
|
965
965
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
966
966
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
967
967
|
expand: {
|
|
@@ -942,6 +942,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
942
942
|
};
|
|
943
943
|
updateBodyPxInfo: () => void;
|
|
944
944
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
945
|
+
removeScrollHandler: (() => void) | null;
|
|
945
946
|
observer: ResizeObserver;
|
|
946
947
|
popupRect: import("vue").ComputedRef<{
|
|
947
948
|
width: number;
|
|
@@ -1024,7 +1025,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1024
1025
|
updateBodyPxInfo: () => void;
|
|
1025
1026
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1026
1027
|
};
|
|
1027
|
-
updateBodyPxInfo: () => void;
|
|
1028
1028
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
1029
1029
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1030
1030
|
expand: {
|
|
@@ -24,6 +24,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
24
24
|
required: false;
|
|
25
25
|
default: string;
|
|
26
26
|
};
|
|
27
|
+
strikeThrough: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
27
32
|
}, {
|
|
28
33
|
props: any;
|
|
29
34
|
emit: (e: "update:modelValue", value: number) => void;
|
|
@@ -37,6 +42,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
37
42
|
readonly radioLabelDisabledStyle: string;
|
|
38
43
|
readonly radioLabelColorStyle: Record<"default" | "checked", string>;
|
|
39
44
|
readonly radioLabelCursorStyle: Record<"default" | "disabled", string>;
|
|
45
|
+
readonly radioLabelStrikeThrough: string;
|
|
40
46
|
WizStack: import("vue").DefineComponent<{
|
|
41
47
|
direction: {
|
|
42
48
|
type: PropType<"horizontal" | "vertical">;
|
|
@@ -321,11 +327,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
321
327
|
required: false;
|
|
322
328
|
default: string;
|
|
323
329
|
};
|
|
330
|
+
strikeThrough: {
|
|
331
|
+
type: BooleanConstructor;
|
|
332
|
+
required: false;
|
|
333
|
+
default: boolean;
|
|
334
|
+
};
|
|
324
335
|
}>> & {
|
|
325
336
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
326
337
|
}, {
|
|
327
338
|
direction: "horizontal" | "vertical";
|
|
328
339
|
gap: "at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max";
|
|
329
340
|
disabled: boolean;
|
|
341
|
+
strikeThrough: boolean;
|
|
330
342
|
}>;
|
|
331
343
|
export default _sfc_main;
|
|
@@ -609,7 +609,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
609
609
|
updateBodyPxInfo: () => void;
|
|
610
610
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
611
611
|
};
|
|
612
|
-
updateBodyPxInfo: () => void;
|
|
613
612
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
614
613
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
615
614
|
expand: {
|
|
@@ -682,6 +681,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
682
681
|
};
|
|
683
682
|
updateBodyPxInfo: () => void;
|
|
684
683
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
684
|
+
removeScrollHandler: (() => void) | null;
|
|
685
685
|
observer: ResizeObserver;
|
|
686
686
|
popupRect: import("vue").ComputedRef<{
|
|
687
687
|
width: number;
|
|
@@ -120,7 +120,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
120
120
|
updateBodyPxInfo: () => void;
|
|
121
121
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
122
122
|
};
|
|
123
|
-
updateBodyPxInfo: () => void;
|
|
124
123
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
125
124
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
126
125
|
expand: {
|
|
@@ -193,6 +192,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
193
192
|
};
|
|
194
193
|
updateBodyPxInfo: () => void;
|
|
195
194
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
195
|
+
removeScrollHandler: (() => void) | null;
|
|
196
196
|
observer: ResizeObserver;
|
|
197
197
|
popupRect: import("vue").ComputedRef<{
|
|
198
198
|
width: number;
|
|
@@ -28,6 +28,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
28
28
|
type: BooleanConstructor;
|
|
29
29
|
required: false;
|
|
30
30
|
};
|
|
31
|
+
isOpen: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
31
36
|
}, {
|
|
32
37
|
props: any;
|
|
33
38
|
openSelectBox: import("vue").Ref<boolean>;
|
|
@@ -81,7 +86,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
81
86
|
updateBodyPxInfo: () => void;
|
|
82
87
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
83
88
|
};
|
|
84
|
-
updateBodyPxInfo: () => void;
|
|
85
89
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
86
90
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
87
91
|
expand: {
|
|
@@ -154,6 +158,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
154
158
|
};
|
|
155
159
|
updateBodyPxInfo: () => void;
|
|
156
160
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
161
|
+
removeScrollHandler: (() => void) | null;
|
|
157
162
|
observer: ResizeObserver;
|
|
158
163
|
popupRect: import("vue").ComputedRef<{
|
|
159
164
|
width: number;
|
|
@@ -1173,9 +1178,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1173
1178
|
type: BooleanConstructor;
|
|
1174
1179
|
required: false;
|
|
1175
1180
|
};
|
|
1181
|
+
isOpen: {
|
|
1182
|
+
type: BooleanConstructor;
|
|
1183
|
+
required: false;
|
|
1184
|
+
default: boolean;
|
|
1185
|
+
};
|
|
1176
1186
|
}>> & {
|
|
1177
1187
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1178
1188
|
}, {
|
|
1189
|
+
isOpen: boolean;
|
|
1179
1190
|
width: string;
|
|
1180
1191
|
disabled: boolean;
|
|
1181
1192
|
expand: boolean;
|
|
@@ -1130,6 +1130,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1130
1130
|
};
|
|
1131
1131
|
updateBodyPxInfo: () => void;
|
|
1132
1132
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1133
|
+
removeScrollHandler: (() => void) | null;
|
|
1133
1134
|
observer: ResizeObserver;
|
|
1134
1135
|
popupRect: import("vue").ComputedRef<{
|
|
1135
1136
|
width: number;
|
|
@@ -1212,7 +1213,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1212
1213
|
updateBodyPxInfo: () => void;
|
|
1213
1214
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1214
1215
|
};
|
|
1215
|
-
updateBodyPxInfo: () => void;
|
|
1216
1216
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
1217
1217
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1218
1218
|
expand: {
|
|
@@ -25,7 +25,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
25
25
|
updateBodyPxInfo: () => void;
|
|
26
26
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
27
27
|
};
|
|
28
|
-
updateBodyPxInfo: () => void;
|
|
29
28
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
30
29
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
30
|
expand: {
|
|
@@ -64,6 +64,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
64
64
|
};
|
|
65
65
|
updateBodyPxInfo: () => void;
|
|
66
66
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
67
|
+
removeScrollHandler: (() => void) | null;
|
|
67
68
|
observer: ResizeObserver;
|
|
68
69
|
popupRect: import("vue").ComputedRef<{
|
|
69
70
|
width: number;
|
|
@@ -10,6 +10,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
10
10
|
default: string;
|
|
11
11
|
required: false;
|
|
12
12
|
};
|
|
13
|
+
borderRadius: {
|
|
14
|
+
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
15
|
+
required: false;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
13
18
|
isLoading: {
|
|
14
19
|
type: PropType<boolean>;
|
|
15
20
|
default: boolean;
|
|
@@ -18,6 +23,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
18
23
|
}, {
|
|
19
24
|
readonly skeletonStyle: string;
|
|
20
25
|
readonly normalSkeletonStyle: string;
|
|
26
|
+
readonly borderRadiusStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
21
27
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
28
|
width: {
|
|
23
29
|
type: PropType<string>;
|
|
@@ -29,6 +35,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
29
35
|
default: string;
|
|
30
36
|
required: false;
|
|
31
37
|
};
|
|
38
|
+
borderRadius: {
|
|
39
|
+
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
40
|
+
required: false;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
32
43
|
isLoading: {
|
|
33
44
|
type: PropType<boolean>;
|
|
34
45
|
default: boolean;
|
|
@@ -37,6 +48,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
37
48
|
}>>, {
|
|
38
49
|
width: string;
|
|
39
50
|
height: string;
|
|
51
|
+
borderRadius: "at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max";
|
|
40
52
|
isLoading: boolean;
|
|
41
53
|
}>;
|
|
42
54
|
export default _sfc_main;
|
|
@@ -22,7 +22,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
22
22
|
type: StringConstructor;
|
|
23
23
|
required: false;
|
|
24
24
|
};
|
|
25
|
+
borderCollapse: {
|
|
26
|
+
type: PropType<"collapse" | "separate">;
|
|
27
|
+
required: false;
|
|
28
|
+
};
|
|
25
29
|
}, {
|
|
30
|
+
readonly unstyledTableBorderCollapseStyle: Record<"collapse" | "separate", string>;
|
|
26
31
|
readonly unstyledTableFixedStyle: string;
|
|
27
32
|
readonly borderSpacingStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
28
33
|
readonly borderSpacingXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
@@ -50,6 +55,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
50
55
|
type: StringConstructor;
|
|
51
56
|
required: false;
|
|
52
57
|
};
|
|
58
|
+
borderCollapse: {
|
|
59
|
+
type: PropType<"collapse" | "separate">;
|
|
60
|
+
required: false;
|
|
61
|
+
};
|
|
53
62
|
}>>, {
|
|
54
63
|
fixed: boolean;
|
|
55
64
|
space: "at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max";
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
divider: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
}, {
|
|
7
|
+
readonly unstyledTheadDividerStyle: string;
|
|
8
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
divider: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
default: boolean;
|
|
12
|
+
};
|
|
13
|
+
}>>, {
|
|
14
|
+
divider: boolean;
|
|
15
|
+
}>;
|
|
2
16
|
export default _sfc_main;
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
divider: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
}, {
|
|
7
|
+
readonly unstyledTrDividerStyle: string;
|
|
8
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
|
+
divider: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
default: boolean;
|
|
12
|
+
};
|
|
13
|
+
}>>, {
|
|
14
|
+
divider: boolean;
|
|
15
|
+
}>;
|
|
2
16
|
export default _sfc_main;
|
|
@@ -1333,6 +1333,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1333
1333
|
align: "stretch" | "center" | "end" | "start";
|
|
1334
1334
|
}>;
|
|
1335
1335
|
}> & {} & import("vue").ComponentCustomProperties & {}) | undefined>;
|
|
1336
|
+
updateFloatChatCardHeight: () => void;
|
|
1336
1337
|
displayMessages: import("vue").ComputedRef<DisplayMessage[]>;
|
|
1337
1338
|
textValue: import("vue").WritableComputedRef<string>;
|
|
1338
1339
|
statusValue: import("vue").WritableComputedRef<number>;
|
|
@@ -6097,6 +6098,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6097
6098
|
type: BooleanConstructor;
|
|
6098
6099
|
required: false;
|
|
6099
6100
|
};
|
|
6101
|
+
isOpen: {
|
|
6102
|
+
type: BooleanConstructor;
|
|
6103
|
+
required: false;
|
|
6104
|
+
default: boolean;
|
|
6105
|
+
};
|
|
6100
6106
|
}, {
|
|
6101
6107
|
props: any;
|
|
6102
6108
|
openSelectBox: import("vue").Ref<boolean>;
|
|
@@ -6150,7 +6156,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6150
6156
|
updateBodyPxInfo: () => void;
|
|
6151
6157
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
6152
6158
|
};
|
|
6153
|
-
updateBodyPxInfo: () => void;
|
|
6154
6159
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
6155
6160
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6156
6161
|
expand: {
|
|
@@ -6223,6 +6228,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6223
6228
|
};
|
|
6224
6229
|
updateBodyPxInfo: () => void;
|
|
6225
6230
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
6231
|
+
removeScrollHandler: (() => void) | null;
|
|
6226
6232
|
observer: ResizeObserver;
|
|
6227
6233
|
popupRect: import("vue").ComputedRef<{
|
|
6228
6234
|
width: number;
|
|
@@ -7242,9 +7248,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
7242
7248
|
type: BooleanConstructor;
|
|
7243
7249
|
required: false;
|
|
7244
7250
|
};
|
|
7251
|
+
isOpen: {
|
|
7252
|
+
type: BooleanConstructor;
|
|
7253
|
+
required: false;
|
|
7254
|
+
default: boolean;
|
|
7255
|
+
};
|
|
7245
7256
|
}>> & {
|
|
7246
7257
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7247
7258
|
}, {
|
|
7259
|
+
isOpen: boolean;
|
|
7248
7260
|
width: string;
|
|
7249
7261
|
disabled: boolean;
|
|
7250
7262
|
expand: boolean;
|
|
@@ -1 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* スクロールイベントを登録する
|
|
3
|
+
*
|
|
4
|
+
* targetを指定した場合、targetが属しているスクロールしうる全ての親要素にスクロールイベントを登録する
|
|
5
|
+
*
|
|
6
|
+
* @param cb イベントハンドラ
|
|
7
|
+
* @param target イベントを登録する要素
|
|
8
|
+
* @returns スクロールイベントを削除する関数
|
|
9
|
+
*/
|
|
10
|
+
export declare const useScroll: (cb: (event: Event) => void, target?: HTMLElement) => () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export * from "./components";
|
|
|
3
3
|
export * from "./hooks/use-snackbar";
|
|
4
4
|
export * from "@wizleap-inc/wiz-ui-constants";
|
|
5
5
|
export declare const install: (app: App) => void;
|
|
6
|
-
export declare const version = "0.7.
|
|
6
|
+
export declare const version = "0.7.9";
|
|
7
7
|
declare const _default: {
|
|
8
8
|
install: (app: App<any>) => void;
|
|
9
9
|
version: string;
|