@uzum-tech/ui 2.0.0-beta.7 → 2.0.0-beta.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/index.js +268 -180
- package/dist/index.mjs +268 -180
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/_internal/select-menu/src/SelectOption.mjs +12 -4
- package/es/_utils/wrap-component.mjs +3 -1
- package/es/auto-complete/src/AutoComplete.d.ts +70 -0
- package/es/auto-complete/styles/light.d.ts +7 -0
- package/es/carousel/src/Carousel.mjs +39 -13
- package/es/chat/src/Chat.d.ts +70 -0
- package/es/chat/src/ChatListItems.d.ts +84 -0
- package/es/chat/src/ChatMessages.d.ts +84 -0
- package/es/chat/src/ChatParts/MainArea.mjs +104 -112
- package/es/chat/src/ChatParts/Sidebar.d.ts +14 -0
- package/es/chat/src/styles/index.cssr.mjs +24 -10
- package/es/chat/styles/dark.d.ts +7 -0
- package/es/chat/styles/light.d.ts +7 -0
- package/es/chat/styles/light.mjs +1 -0
- package/es/color-picker/src/ColorInputUnit.d.ts +7 -0
- package/es/color-picker/src/ColorPicker.d.ts +63 -0
- package/es/color-picker/styles/light.d.ts +7 -0
- package/es/components.d.ts +1042 -5
- package/es/data-table/src/DataTable.d.ts +56 -0
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +28 -0
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +28 -0
- package/es/data-table/src/TableParts/Body.d.ts +28 -0
- package/es/data-table/src/TableParts/Header.d.ts +28 -0
- package/es/data-table/src/interface.d.ts +21 -0
- package/es/data-table/styles/light.d.ts +7 -0
- package/es/date-picker/src/DatePicker.d.ts +147 -0
- package/es/date-picker/src/panel/date.d.ts +42 -0
- package/es/date-picker/src/panel/daterange.d.ts +42 -0
- package/es/date-picker/src/panel/datetime.d.ts +42 -0
- package/es/date-picker/src/panel/datetimerange.d.ts +42 -0
- package/es/date-picker/src/panel/panelMonth.d.ts +168 -0
- package/es/date-picker/src/panel/panelMonthContent.d.ts +42 -0
- package/es/date-picker/src/panel/panelYear.d.ts +168 -0
- package/es/date-picker/src/panel/panelYearContent.d.ts +42 -0
- package/es/date-picker/src/panel/use-calendar.d.ts +42 -0
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +42 -0
- package/es/date-picker/src/panel/use-panel-common.d.ts +42 -0
- package/es/date-picker/styles/light.d.ts +14 -0
- package/es/date-picker-v2/src/DatePickerV2.d.ts +70 -0
- package/es/date-picker-v2/styles/dark.d.ts +7 -0
- package/es/date-picker-v2/styles/light.d.ts +7 -0
- package/es/dialog/src/DialogEnvironment.mjs +1 -2
- package/es/dynamic-input/src/DynamicInput.d.ts +70 -0
- package/es/dynamic-input/src/InputPreset.d.ts +14 -0
- package/es/dynamic-input/src/PairPreset.d.ts +14 -0
- package/es/dynamic-input/styles/light.d.ts +7 -0
- package/es/dynamic-tags/src/DynamicTags.d.ts +70 -0
- package/es/dynamic-tags/styles/light.d.ts +7 -0
- package/es/input/src/Input.d.ts +77 -0
- package/es/input/src/Input.mjs +15 -0
- package/es/input/src/InputGroupLabel.d.ts +63 -0
- package/es/input/src/styles/input.cssr.mjs +1 -1
- package/es/input/styles/light.d.ts +7 -0
- package/es/input/styles/light.mjs +11 -0
- package/es/input-number/src/InputNumber.d.ts +70 -0
- package/es/input-number/styles/light.d.ts +7 -0
- package/es/input-otp/src/InputOtp.d.ts +70 -0
- package/es/input-otp/styles/light.d.ts +7 -0
- package/es/legacy-transfer/src/Transfer.d.ts +70 -0
- package/es/legacy-transfer/src/TransferFilter.d.ts +14 -0
- package/es/legacy-transfer/src/TransferList.d.ts +14 -0
- package/es/legacy-transfer/src/TransferListItem.d.ts +14 -0
- package/es/legacy-transfer/styles/light.d.ts +7 -0
- package/es/mapping-card/src/MappingCard.d.ts +9 -0
- package/es/mapping-card/src/MappingCardParts/Header.mjs +1 -1
- package/es/mapping-card/src/interface.d.ts +5 -0
- package/es/mapping-card/src/interface.mjs +4 -0
- package/es/mention/src/Mention.d.ts +70 -0
- package/es/mention/styles/light.d.ts +7 -0
- package/es/modal/src/BodyWrapper.d.ts +0 -3
- package/es/modal/src/Modal.d.ts +13 -7
- package/es/modal/src/Modal.mjs +5 -2
- package/es/modal/src/ModalEnvironment.d.ts +9 -5
- package/es/modal/src/presetProps.d.ts +1 -2
- package/es/modal/src/presetProps.mjs +0 -1
- package/es/pagination/src/Pagination.d.ts +70 -0
- package/es/pagination/styles/light.d.ts +7 -0
- package/es/time-picker/src/Panel.d.ts +14 -0
- package/es/time-picker/src/TimePicker.d.ts +70 -0
- package/es/time-picker/styles/light.d.ts +7 -0
- package/es/tooltip/index.d.ts +1 -1
- package/es/tooltip/src/Tooltip.d.ts +84 -70
- package/es/tooltip/src/Tooltip.mjs +18 -3
- package/es/transfer/src/Transfer.d.ts +70 -0
- package/es/transfer/src/TransferFilter.d.ts +14 -0
- package/es/transfer/src/TransferList.d.ts +14 -0
- package/es/transfer/src/TransferListItem.d.ts +14 -0
- package/es/transfer/styles/light.d.ts +7 -0
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/_internal/select-menu/src/SelectOption.js +8 -4
- package/lib/_utils/wrap-component.js +3 -1
- package/lib/auto-complete/src/AutoComplete.d.ts +70 -0
- package/lib/auto-complete/styles/light.d.ts +7 -0
- package/lib/carousel/src/Carousel.js +26 -13
- package/lib/chat/src/Chat.d.ts +70 -0
- package/lib/chat/src/ChatListItems.d.ts +84 -0
- package/lib/chat/src/ChatMessages.d.ts +84 -0
- package/lib/chat/src/ChatParts/MainArea.js +53 -61
- package/lib/chat/src/ChatParts/Sidebar.d.ts +14 -0
- package/lib/chat/src/styles/index.cssr.js +24 -10
- package/lib/chat/styles/dark.d.ts +7 -0
- package/lib/chat/styles/light.d.ts +7 -0
- package/lib/chat/styles/light.js +1 -1
- package/lib/color-picker/src/ColorInputUnit.d.ts +7 -0
- package/lib/color-picker/src/ColorPicker.d.ts +63 -0
- package/lib/color-picker/styles/light.d.ts +7 -0
- package/lib/components.d.ts +1042 -5
- package/lib/data-table/src/DataTable.d.ts +56 -0
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +28 -0
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +28 -0
- package/lib/data-table/src/TableParts/Body.d.ts +28 -0
- package/lib/data-table/src/TableParts/Header.d.ts +28 -0
- package/lib/data-table/src/interface.d.ts +21 -0
- package/lib/data-table/styles/light.d.ts +7 -0
- package/lib/date-picker/src/DatePicker.d.ts +147 -0
- package/lib/date-picker/src/panel/date.d.ts +42 -0
- package/lib/date-picker/src/panel/daterange.d.ts +42 -0
- package/lib/date-picker/src/panel/datetime.d.ts +42 -0
- package/lib/date-picker/src/panel/datetimerange.d.ts +42 -0
- package/lib/date-picker/src/panel/panelMonth.d.ts +168 -0
- package/lib/date-picker/src/panel/panelMonthContent.d.ts +42 -0
- package/lib/date-picker/src/panel/panelYear.d.ts +168 -0
- package/lib/date-picker/src/panel/panelYearContent.d.ts +42 -0
- package/lib/date-picker/src/panel/use-calendar.d.ts +42 -0
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +42 -0
- package/lib/date-picker/src/panel/use-panel-common.d.ts +42 -0
- package/lib/date-picker/styles/light.d.ts +14 -0
- package/lib/date-picker-v2/src/DatePickerV2.d.ts +70 -0
- package/lib/date-picker-v2/styles/dark.d.ts +7 -0
- package/lib/date-picker-v2/styles/light.d.ts +7 -0
- package/lib/dialog/src/DialogEnvironment.js +1 -1
- package/lib/dynamic-input/src/DynamicInput.d.ts +70 -0
- package/lib/dynamic-input/src/InputPreset.d.ts +14 -0
- package/lib/dynamic-input/src/PairPreset.d.ts +14 -0
- package/lib/dynamic-input/styles/light.d.ts +7 -0
- package/lib/dynamic-tags/src/DynamicTags.d.ts +70 -0
- package/lib/dynamic-tags/styles/light.d.ts +7 -0
- package/lib/input/src/Input.d.ts +77 -0
- package/lib/input/src/Input.js +9 -1
- package/lib/input/src/InputGroupLabel.d.ts +63 -0
- package/lib/input/src/styles/input.cssr.js +1 -1
- package/lib/input/styles/light.d.ts +7 -0
- package/lib/input/styles/light.js +11 -1
- package/lib/input-number/src/InputNumber.d.ts +70 -0
- package/lib/input-number/styles/light.d.ts +7 -0
- package/lib/input-otp/src/InputOtp.d.ts +70 -0
- package/lib/input-otp/styles/light.d.ts +7 -0
- package/lib/legacy-transfer/src/Transfer.d.ts +70 -0
- package/lib/legacy-transfer/src/TransferFilter.d.ts +14 -0
- package/lib/legacy-transfer/src/TransferList.d.ts +14 -0
- package/lib/legacy-transfer/src/TransferListItem.d.ts +14 -0
- package/lib/legacy-transfer/styles/light.d.ts +7 -0
- package/lib/mapping-card/src/MappingCard.d.ts +9 -0
- package/lib/mapping-card/src/MappingCardParts/Header.js +2 -2
- package/lib/mapping-card/src/interface.d.ts +5 -0
- package/lib/mapping-card/src/interface.js +4 -0
- package/lib/mention/src/Mention.d.ts +70 -0
- package/lib/mention/styles/light.d.ts +7 -0
- package/lib/modal/src/BodyWrapper.d.ts +0 -3
- package/lib/modal/src/Modal.d.ts +13 -7
- package/lib/modal/src/Modal.js +5 -2
- package/lib/modal/src/ModalEnvironment.d.ts +9 -5
- package/lib/modal/src/presetProps.d.ts +1 -2
- package/lib/modal/src/presetProps.js +1 -1
- package/lib/pagination/src/Pagination.d.ts +70 -0
- package/lib/pagination/styles/light.d.ts +7 -0
- package/lib/time-picker/src/Panel.d.ts +14 -0
- package/lib/time-picker/src/TimePicker.d.ts +70 -0
- package/lib/time-picker/styles/light.d.ts +7 -0
- package/lib/tooltip/index.d.ts +1 -1
- package/lib/tooltip/src/Tooltip.d.ts +84 -70
- package/lib/tooltip/src/Tooltip.js +9 -3
- package/lib/transfer/src/Transfer.d.ts +70 -0
- package/lib/transfer/src/TransferFilter.d.ts +14 -0
- package/lib/transfer/src/TransferList.d.ts +14 -0
- package/lib/transfer/src/TransferListItem.d.ts +14 -0
- package/lib/transfer/styles/light.d.ts +7 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +39 -3
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
import type { SlotsType, VNode } from 'vue';
|
|
1
|
+
import type { PropType, SlotsType, VNode } from 'vue';
|
|
2
2
|
import type { ExtractPublicPropTypes } from '../../_utils';
|
|
3
3
|
import type { PopoverInst } from '../../popover';
|
|
4
4
|
export type TooltipInst = PopoverInst;
|
|
5
|
+
export type TooltipVariant = 'default' | 'plain';
|
|
5
6
|
export declare const tooltipProps: {
|
|
6
|
-
|
|
7
|
+
variant: {
|
|
8
|
+
type: PropType<TooltipVariant>;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
theme: PropType<import("../../_mixins").Theme<"Tooltip", {
|
|
7
12
|
padding: string;
|
|
8
13
|
textPadding: string;
|
|
9
14
|
titleSize: string;
|
|
@@ -35,7 +40,7 @@ export declare const tooltipProps: {
|
|
|
35
40
|
boxShadow: string;
|
|
36
41
|
}, any>;
|
|
37
42
|
}>>;
|
|
38
|
-
themeOverrides:
|
|
43
|
+
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tooltip", {
|
|
39
44
|
padding: string;
|
|
40
45
|
textPadding: string;
|
|
41
46
|
titleSize: string;
|
|
@@ -67,7 +72,7 @@ export declare const tooltipProps: {
|
|
|
67
72
|
boxShadow: string;
|
|
68
73
|
}, any>;
|
|
69
74
|
}>>>;
|
|
70
|
-
builtinThemeOverrides:
|
|
75
|
+
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tooltip", {
|
|
71
76
|
padding: string;
|
|
72
77
|
textPadding: string;
|
|
73
78
|
titleSize: string;
|
|
@@ -100,7 +105,7 @@ export declare const tooltipProps: {
|
|
|
100
105
|
}, any>;
|
|
101
106
|
}>>>;
|
|
102
107
|
show: {
|
|
103
|
-
type:
|
|
108
|
+
type: PropType<boolean | undefined>;
|
|
104
109
|
default: undefined;
|
|
105
110
|
};
|
|
106
111
|
defaultShow: BooleanConstructor;
|
|
@@ -109,7 +114,7 @@ export declare const tooltipProps: {
|
|
|
109
114
|
default: boolean;
|
|
110
115
|
};
|
|
111
116
|
trigger: {
|
|
112
|
-
type:
|
|
117
|
+
type: PropType<import("../../popover").PopoverTrigger>;
|
|
113
118
|
default: string;
|
|
114
119
|
};
|
|
115
120
|
delay: {
|
|
@@ -122,22 +127,22 @@ export declare const tooltipProps: {
|
|
|
122
127
|
};
|
|
123
128
|
raw: BooleanConstructor;
|
|
124
129
|
placement: {
|
|
125
|
-
type:
|
|
130
|
+
type: PropType<import("vueuc/lib/binder/src/interface").Placement>;
|
|
126
131
|
default: string;
|
|
127
132
|
};
|
|
128
133
|
x: NumberConstructor;
|
|
129
134
|
y: NumberConstructor;
|
|
130
135
|
arrowPointToCenter: BooleanConstructor;
|
|
131
136
|
disabled: BooleanConstructor;
|
|
132
|
-
getDisabled:
|
|
137
|
+
getDisabled: PropType<() => boolean>;
|
|
133
138
|
displayDirective: {
|
|
134
|
-
type:
|
|
139
|
+
type: PropType<"if" | "show">;
|
|
135
140
|
default: string;
|
|
136
141
|
};
|
|
137
142
|
arrowClass: StringConstructor;
|
|
138
|
-
arrowStyle:
|
|
143
|
+
arrowStyle: PropType<string | import("vue").CSSProperties>;
|
|
139
144
|
arrowWrapperClass: StringConstructor;
|
|
140
|
-
arrowWrapperStyle:
|
|
145
|
+
arrowWrapperStyle: PropType<string | import("vue").CSSProperties>;
|
|
141
146
|
flip: {
|
|
142
147
|
type: BooleanConstructor;
|
|
143
148
|
default: boolean;
|
|
@@ -147,7 +152,7 @@ export declare const tooltipProps: {
|
|
|
147
152
|
default: boolean;
|
|
148
153
|
};
|
|
149
154
|
width: {
|
|
150
|
-
type:
|
|
155
|
+
type: PropType<number | string | "trigger">;
|
|
151
156
|
default: undefined;
|
|
152
157
|
};
|
|
153
158
|
overlap: BooleanConstructor;
|
|
@@ -157,34 +162,34 @@ export declare const tooltipProps: {
|
|
|
157
162
|
};
|
|
158
163
|
zIndex: NumberConstructor;
|
|
159
164
|
to: {
|
|
160
|
-
type:
|
|
165
|
+
type: PropType<HTMLElement | string | boolean>;
|
|
161
166
|
default: undefined;
|
|
162
167
|
};
|
|
163
168
|
scrollable: BooleanConstructor;
|
|
164
169
|
contentClass: StringConstructor;
|
|
165
|
-
contentStyle:
|
|
170
|
+
contentStyle: PropType<import("vue").CSSProperties | string>;
|
|
166
171
|
headerClass: StringConstructor;
|
|
167
|
-
headerStyle:
|
|
172
|
+
headerStyle: PropType<import("vue").CSSProperties | string>;
|
|
168
173
|
footerClass: StringConstructor;
|
|
169
|
-
footerStyle:
|
|
170
|
-
onClickoutside:
|
|
171
|
-
'onUpdate:show':
|
|
172
|
-
onUpdateShow:
|
|
174
|
+
footerStyle: PropType<import("vue").CSSProperties | string>;
|
|
175
|
+
onClickoutside: PropType<(e: MouseEvent) => void>;
|
|
176
|
+
'onUpdate:show': PropType<import("../../_utils").MaybeArray<(value: boolean) => void>>;
|
|
177
|
+
onUpdateShow: PropType<import("../../_utils").MaybeArray<(value: boolean) => void>>;
|
|
173
178
|
internalDeactivateImmediately: BooleanConstructor;
|
|
174
179
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
175
180
|
internalInheritedEventHandlers: {
|
|
176
|
-
type:
|
|
181
|
+
type: PropType<import("../../popover/src/Popover").TriggerEventHandlers[]>;
|
|
177
182
|
default: () => never[];
|
|
178
183
|
};
|
|
179
184
|
internalTrapFocus: BooleanConstructor;
|
|
180
185
|
internalExtraClass: {
|
|
181
|
-
type:
|
|
186
|
+
type: PropType<string[]>;
|
|
182
187
|
default: () => never[];
|
|
183
188
|
};
|
|
184
|
-
onShow:
|
|
185
|
-
onHide:
|
|
189
|
+
onShow: PropType<import("../../_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
190
|
+
onHide: PropType<import("../../_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
186
191
|
arrow: {
|
|
187
|
-
type:
|
|
192
|
+
type: PropType<boolean | undefined>;
|
|
188
193
|
default: undefined;
|
|
189
194
|
};
|
|
190
195
|
minWidth: NumberConstructor;
|
|
@@ -198,7 +203,11 @@ export interface TooltipSlots {
|
|
|
198
203
|
icon?: () => VNode[];
|
|
199
204
|
}
|
|
200
205
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
201
|
-
|
|
206
|
+
variant: {
|
|
207
|
+
type: PropType<TooltipVariant>;
|
|
208
|
+
default: string;
|
|
209
|
+
};
|
|
210
|
+
theme: PropType<import("../../_mixins").Theme<"Tooltip", {
|
|
202
211
|
padding: string;
|
|
203
212
|
textPadding: string;
|
|
204
213
|
titleSize: string;
|
|
@@ -230,7 +239,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
230
239
|
boxShadow: string;
|
|
231
240
|
}, any>;
|
|
232
241
|
}>>;
|
|
233
|
-
themeOverrides:
|
|
242
|
+
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tooltip", {
|
|
234
243
|
padding: string;
|
|
235
244
|
textPadding: string;
|
|
236
245
|
titleSize: string;
|
|
@@ -262,7 +271,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
262
271
|
boxShadow: string;
|
|
263
272
|
}, any>;
|
|
264
273
|
}>>>;
|
|
265
|
-
builtinThemeOverrides:
|
|
274
|
+
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tooltip", {
|
|
266
275
|
padding: string;
|
|
267
276
|
textPadding: string;
|
|
268
277
|
titleSize: string;
|
|
@@ -295,7 +304,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
295
304
|
}, any>;
|
|
296
305
|
}>>>;
|
|
297
306
|
show: {
|
|
298
|
-
type:
|
|
307
|
+
type: PropType<boolean | undefined>;
|
|
299
308
|
default: undefined;
|
|
300
309
|
};
|
|
301
310
|
defaultShow: BooleanConstructor;
|
|
@@ -304,7 +313,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
304
313
|
default: boolean;
|
|
305
314
|
};
|
|
306
315
|
trigger: {
|
|
307
|
-
type:
|
|
316
|
+
type: PropType<import("../../popover").PopoverTrigger>;
|
|
308
317
|
default: string;
|
|
309
318
|
};
|
|
310
319
|
delay: {
|
|
@@ -317,22 +326,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
317
326
|
};
|
|
318
327
|
raw: BooleanConstructor;
|
|
319
328
|
placement: {
|
|
320
|
-
type:
|
|
329
|
+
type: PropType<import("vueuc/lib/binder/src/interface").Placement>;
|
|
321
330
|
default: string;
|
|
322
331
|
};
|
|
323
332
|
x: NumberConstructor;
|
|
324
333
|
y: NumberConstructor;
|
|
325
334
|
arrowPointToCenter: BooleanConstructor;
|
|
326
335
|
disabled: BooleanConstructor;
|
|
327
|
-
getDisabled:
|
|
336
|
+
getDisabled: PropType<() => boolean>;
|
|
328
337
|
displayDirective: {
|
|
329
|
-
type:
|
|
338
|
+
type: PropType<"if" | "show">;
|
|
330
339
|
default: string;
|
|
331
340
|
};
|
|
332
341
|
arrowClass: StringConstructor;
|
|
333
|
-
arrowStyle:
|
|
342
|
+
arrowStyle: PropType<string | import("vue").CSSProperties>;
|
|
334
343
|
arrowWrapperClass: StringConstructor;
|
|
335
|
-
arrowWrapperStyle:
|
|
344
|
+
arrowWrapperStyle: PropType<string | import("vue").CSSProperties>;
|
|
336
345
|
flip: {
|
|
337
346
|
type: BooleanConstructor;
|
|
338
347
|
default: boolean;
|
|
@@ -342,7 +351,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
342
351
|
default: boolean;
|
|
343
352
|
};
|
|
344
353
|
width: {
|
|
345
|
-
type:
|
|
354
|
+
type: PropType<number | string | "trigger">;
|
|
346
355
|
default: undefined;
|
|
347
356
|
};
|
|
348
357
|
overlap: BooleanConstructor;
|
|
@@ -352,34 +361,34 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
352
361
|
};
|
|
353
362
|
zIndex: NumberConstructor;
|
|
354
363
|
to: {
|
|
355
|
-
type:
|
|
364
|
+
type: PropType<HTMLElement | string | boolean>;
|
|
356
365
|
default: undefined;
|
|
357
366
|
};
|
|
358
367
|
scrollable: BooleanConstructor;
|
|
359
368
|
contentClass: StringConstructor;
|
|
360
|
-
contentStyle:
|
|
369
|
+
contentStyle: PropType<import("vue").CSSProperties | string>;
|
|
361
370
|
headerClass: StringConstructor;
|
|
362
|
-
headerStyle:
|
|
371
|
+
headerStyle: PropType<import("vue").CSSProperties | string>;
|
|
363
372
|
footerClass: StringConstructor;
|
|
364
|
-
footerStyle:
|
|
365
|
-
onClickoutside:
|
|
366
|
-
'onUpdate:show':
|
|
367
|
-
onUpdateShow:
|
|
373
|
+
footerStyle: PropType<import("vue").CSSProperties | string>;
|
|
374
|
+
onClickoutside: PropType<(e: MouseEvent) => void>;
|
|
375
|
+
'onUpdate:show': PropType<import("../../_utils").MaybeArray<(value: boolean) => void>>;
|
|
376
|
+
onUpdateShow: PropType<import("../../_utils").MaybeArray<(value: boolean) => void>>;
|
|
368
377
|
internalDeactivateImmediately: BooleanConstructor;
|
|
369
378
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
370
379
|
internalInheritedEventHandlers: {
|
|
371
|
-
type:
|
|
380
|
+
type: PropType<import("../../popover/src/Popover").TriggerEventHandlers[]>;
|
|
372
381
|
default: () => never[];
|
|
373
382
|
};
|
|
374
383
|
internalTrapFocus: BooleanConstructor;
|
|
375
384
|
internalExtraClass: {
|
|
376
|
-
type:
|
|
385
|
+
type: PropType<string[]>;
|
|
377
386
|
default: () => never[];
|
|
378
387
|
};
|
|
379
|
-
onShow:
|
|
380
|
-
onHide:
|
|
388
|
+
onShow: PropType<import("../../_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
389
|
+
onHide: PropType<import("../../_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
381
390
|
arrow: {
|
|
382
|
-
type:
|
|
391
|
+
type: PropType<boolean | undefined>;
|
|
383
392
|
default: undefined;
|
|
384
393
|
};
|
|
385
394
|
minWidth: NumberConstructor;
|
|
@@ -468,7 +477,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
468
477
|
syncPosition: () => void;
|
|
469
478
|
setShow: (value: boolean) => void;
|
|
470
479
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
471
|
-
|
|
480
|
+
variant: {
|
|
481
|
+
type: PropType<TooltipVariant>;
|
|
482
|
+
default: string;
|
|
483
|
+
};
|
|
484
|
+
theme: PropType<import("../../_mixins").Theme<"Tooltip", {
|
|
472
485
|
padding: string;
|
|
473
486
|
textPadding: string;
|
|
474
487
|
titleSize: string;
|
|
@@ -500,7 +513,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
500
513
|
boxShadow: string;
|
|
501
514
|
}, any>;
|
|
502
515
|
}>>;
|
|
503
|
-
themeOverrides:
|
|
516
|
+
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tooltip", {
|
|
504
517
|
padding: string;
|
|
505
518
|
textPadding: string;
|
|
506
519
|
titleSize: string;
|
|
@@ -532,7 +545,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
532
545
|
boxShadow: string;
|
|
533
546
|
}, any>;
|
|
534
547
|
}>>>;
|
|
535
|
-
builtinThemeOverrides:
|
|
548
|
+
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tooltip", {
|
|
536
549
|
padding: string;
|
|
537
550
|
textPadding: string;
|
|
538
551
|
titleSize: string;
|
|
@@ -565,7 +578,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
565
578
|
}, any>;
|
|
566
579
|
}>>>;
|
|
567
580
|
show: {
|
|
568
|
-
type:
|
|
581
|
+
type: PropType<boolean | undefined>;
|
|
569
582
|
default: undefined;
|
|
570
583
|
};
|
|
571
584
|
defaultShow: BooleanConstructor;
|
|
@@ -574,7 +587,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
574
587
|
default: boolean;
|
|
575
588
|
};
|
|
576
589
|
trigger: {
|
|
577
|
-
type:
|
|
590
|
+
type: PropType<import("../../popover").PopoverTrigger>;
|
|
578
591
|
default: string;
|
|
579
592
|
};
|
|
580
593
|
delay: {
|
|
@@ -587,22 +600,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
587
600
|
};
|
|
588
601
|
raw: BooleanConstructor;
|
|
589
602
|
placement: {
|
|
590
|
-
type:
|
|
603
|
+
type: PropType<import("vueuc/lib/binder/src/interface").Placement>;
|
|
591
604
|
default: string;
|
|
592
605
|
};
|
|
593
606
|
x: NumberConstructor;
|
|
594
607
|
y: NumberConstructor;
|
|
595
608
|
arrowPointToCenter: BooleanConstructor;
|
|
596
609
|
disabled: BooleanConstructor;
|
|
597
|
-
getDisabled:
|
|
610
|
+
getDisabled: PropType<() => boolean>;
|
|
598
611
|
displayDirective: {
|
|
599
|
-
type:
|
|
612
|
+
type: PropType<"if" | "show">;
|
|
600
613
|
default: string;
|
|
601
614
|
};
|
|
602
615
|
arrowClass: StringConstructor;
|
|
603
|
-
arrowStyle:
|
|
616
|
+
arrowStyle: PropType<string | import("vue").CSSProperties>;
|
|
604
617
|
arrowWrapperClass: StringConstructor;
|
|
605
|
-
arrowWrapperStyle:
|
|
618
|
+
arrowWrapperStyle: PropType<string | import("vue").CSSProperties>;
|
|
606
619
|
flip: {
|
|
607
620
|
type: BooleanConstructor;
|
|
608
621
|
default: boolean;
|
|
@@ -612,7 +625,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
612
625
|
default: boolean;
|
|
613
626
|
};
|
|
614
627
|
width: {
|
|
615
|
-
type:
|
|
628
|
+
type: PropType<number | string | "trigger">;
|
|
616
629
|
default: undefined;
|
|
617
630
|
};
|
|
618
631
|
overlap: BooleanConstructor;
|
|
@@ -622,34 +635,34 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
622
635
|
};
|
|
623
636
|
zIndex: NumberConstructor;
|
|
624
637
|
to: {
|
|
625
|
-
type:
|
|
638
|
+
type: PropType<HTMLElement | string | boolean>;
|
|
626
639
|
default: undefined;
|
|
627
640
|
};
|
|
628
641
|
scrollable: BooleanConstructor;
|
|
629
642
|
contentClass: StringConstructor;
|
|
630
|
-
contentStyle:
|
|
643
|
+
contentStyle: PropType<import("vue").CSSProperties | string>;
|
|
631
644
|
headerClass: StringConstructor;
|
|
632
|
-
headerStyle:
|
|
645
|
+
headerStyle: PropType<import("vue").CSSProperties | string>;
|
|
633
646
|
footerClass: StringConstructor;
|
|
634
|
-
footerStyle:
|
|
635
|
-
onClickoutside:
|
|
636
|
-
'onUpdate:show':
|
|
637
|
-
onUpdateShow:
|
|
647
|
+
footerStyle: PropType<import("vue").CSSProperties | string>;
|
|
648
|
+
onClickoutside: PropType<(e: MouseEvent) => void>;
|
|
649
|
+
'onUpdate:show': PropType<import("../../_utils").MaybeArray<(value: boolean) => void>>;
|
|
650
|
+
onUpdateShow: PropType<import("../../_utils").MaybeArray<(value: boolean) => void>>;
|
|
638
651
|
internalDeactivateImmediately: BooleanConstructor;
|
|
639
652
|
internalSyncTargetWithParent: BooleanConstructor;
|
|
640
653
|
internalInheritedEventHandlers: {
|
|
641
|
-
type:
|
|
654
|
+
type: PropType<import("../../popover/src/Popover").TriggerEventHandlers[]>;
|
|
642
655
|
default: () => never[];
|
|
643
656
|
};
|
|
644
657
|
internalTrapFocus: BooleanConstructor;
|
|
645
658
|
internalExtraClass: {
|
|
646
|
-
type:
|
|
659
|
+
type: PropType<string[]>;
|
|
647
660
|
default: () => never[];
|
|
648
661
|
};
|
|
649
|
-
onShow:
|
|
650
|
-
onHide:
|
|
662
|
+
onShow: PropType<import("../../_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
663
|
+
onHide: PropType<import("../../_utils").MaybeArray<(value: boolean) => void> | undefined>;
|
|
651
664
|
arrow: {
|
|
652
|
-
type:
|
|
665
|
+
type: PropType<boolean | undefined>;
|
|
653
666
|
default: undefined;
|
|
654
667
|
};
|
|
655
668
|
minWidth: NumberConstructor;
|
|
@@ -679,5 +692,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
679
692
|
internalInheritedEventHandlers: import("../../popover/src/Popover").TriggerEventHandlers[];
|
|
680
693
|
internalTrapFocus: boolean;
|
|
681
694
|
internalExtraClass: string[];
|
|
695
|
+
variant: TooltipVariant;
|
|
682
696
|
}, SlotsType<TooltipSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
683
697
|
export default _default;
|
|
@@ -13,7 +13,10 @@ const Popover_1 = require("../../popover/src/Popover");
|
|
|
13
13
|
const styles_1 = require("../styles");
|
|
14
14
|
const index_cssr_1 = __importDefault(require("./styles/index.cssr"));
|
|
15
15
|
const TooltipArrow_1 = require("./TooltipArrow");
|
|
16
|
-
exports.tooltipProps = Object.assign(Object.assign({}, Popover_1.popoverBaseProps), _mixins_1.useTheme.props)
|
|
16
|
+
exports.tooltipProps = Object.assign(Object.assign(Object.assign({}, Popover_1.popoverBaseProps), _mixins_1.useTheme.props), { variant: {
|
|
17
|
+
type: String,
|
|
18
|
+
default: 'default'
|
|
19
|
+
} });
|
|
17
20
|
exports.default = (0, vue_1.defineComponent)({
|
|
18
21
|
name: 'Tooltip',
|
|
19
22
|
props: exports.tooltipProps,
|
|
@@ -21,7 +24,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
21
24
|
__popover__: true,
|
|
22
25
|
setup(props, { slots }) {
|
|
23
26
|
const { mergedClsPrefixRef } = (0, _mixins_1.useConfig)(props);
|
|
24
|
-
const themeRef = (0, _mixins_1.useTheme)('Tooltip', '-tooltip', index_cssr_1.default, styles_1.tooltipLight, props, mergedClsPrefixRef);
|
|
27
|
+
const themeRef = (0, _mixins_1.useTheme)('Tooltip', '-tooltip', props.variant === 'plain' ? undefined : index_cssr_1.default, styles_1.tooltipLight, props, mergedClsPrefixRef);
|
|
25
28
|
const cssVarsRef = (0, vue_1.computed)(() => {
|
|
26
29
|
const { self: { iconSize, titleSize, titleWeight, titleLineHeight, subtitleMargin, subtitleSize, subtitleWeight, subtitleLineHeight, textPadding, noArrowSpace, arrowSpace } } = themeRef.value;
|
|
27
30
|
return {
|
|
@@ -77,7 +80,10 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
77
80
|
renderContentNode });
|
|
78
81
|
},
|
|
79
82
|
render() {
|
|
80
|
-
const { mergedTheme, internalExtraClass, renderContentNode, cssVarsRef, placement } = this;
|
|
83
|
+
const { mergedTheme, internalExtraClass, renderContentNode, cssVarsRef, placement, variant } = this;
|
|
84
|
+
if (variant === 'plain') {
|
|
85
|
+
return (0, vue_1.h)(popover_1.UPopover, Object.assign(Object.assign({}, this.$props), { theme: mergedTheme.peers.Popover, themeOverrides: mergedTheme.peerOverrides.Popover, builtinThemeOverrides: this.popoverThemeOverrides, internalExtraClass: internalExtraClass.concat('tooltip'), ref: 'popoverRef' }), this.$slots);
|
|
86
|
+
}
|
|
81
87
|
return (0, vue_1.h)(popover_1.UPopover, Object.assign(Object.assign({}, this.$props), { theme: mergedTheme.peers.Popover, themeOverrides: mergedTheme.peerOverrides.Popover, builtinThemeOverrides: this.popoverThemeOverrides, internalExtraClass: [
|
|
82
88
|
...internalExtraClass,
|
|
83
89
|
'tooltip',
|
|
@@ -185,6 +185,13 @@ export declare const transferProps: {
|
|
|
185
185
|
borderFocus: string;
|
|
186
186
|
boxShadowFocus: string;
|
|
187
187
|
loadingColor: string;
|
|
188
|
+
loadingColorSuccess: string;
|
|
189
|
+
borderSuccess: string;
|
|
190
|
+
borderHoverSuccess: string;
|
|
191
|
+
colorFocusSuccess: string;
|
|
192
|
+
borderFocusSuccess: string;
|
|
193
|
+
boxShadowFocusSuccess: string;
|
|
194
|
+
caretColorSuccess: string;
|
|
188
195
|
loadingColorWarning: string;
|
|
189
196
|
borderWarning: string;
|
|
190
197
|
borderHoverWarning: string;
|
|
@@ -589,6 +596,13 @@ export declare const transferProps: {
|
|
|
589
596
|
borderFocus: string;
|
|
590
597
|
boxShadowFocus: string;
|
|
591
598
|
loadingColor: string;
|
|
599
|
+
loadingColorSuccess: string;
|
|
600
|
+
borderSuccess: string;
|
|
601
|
+
borderHoverSuccess: string;
|
|
602
|
+
colorFocusSuccess: string;
|
|
603
|
+
borderFocusSuccess: string;
|
|
604
|
+
boxShadowFocusSuccess: string;
|
|
605
|
+
caretColorSuccess: string;
|
|
592
606
|
loadingColorWarning: string;
|
|
593
607
|
borderWarning: string;
|
|
594
608
|
borderHoverWarning: string;
|
|
@@ -993,6 +1007,13 @@ export declare const transferProps: {
|
|
|
993
1007
|
borderFocus: string;
|
|
994
1008
|
boxShadowFocus: string;
|
|
995
1009
|
loadingColor: string;
|
|
1010
|
+
loadingColorSuccess: string;
|
|
1011
|
+
borderSuccess: string;
|
|
1012
|
+
borderHoverSuccess: string;
|
|
1013
|
+
colorFocusSuccess: string;
|
|
1014
|
+
borderFocusSuccess: string;
|
|
1015
|
+
boxShadowFocusSuccess: string;
|
|
1016
|
+
caretColorSuccess: string;
|
|
996
1017
|
loadingColorWarning: string;
|
|
997
1018
|
borderWarning: string;
|
|
998
1019
|
borderHoverWarning: string;
|
|
@@ -1442,6 +1463,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1442
1463
|
borderFocus: string;
|
|
1443
1464
|
boxShadowFocus: string;
|
|
1444
1465
|
loadingColor: string;
|
|
1466
|
+
loadingColorSuccess: string;
|
|
1467
|
+
borderSuccess: string;
|
|
1468
|
+
borderHoverSuccess: string;
|
|
1469
|
+
colorFocusSuccess: string;
|
|
1470
|
+
borderFocusSuccess: string;
|
|
1471
|
+
boxShadowFocusSuccess: string;
|
|
1472
|
+
caretColorSuccess: string;
|
|
1445
1473
|
loadingColorWarning: string;
|
|
1446
1474
|
borderWarning: string;
|
|
1447
1475
|
borderHoverWarning: string;
|
|
@@ -1846,6 +1874,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1846
1874
|
borderFocus: string;
|
|
1847
1875
|
boxShadowFocus: string;
|
|
1848
1876
|
loadingColor: string;
|
|
1877
|
+
loadingColorSuccess: string;
|
|
1878
|
+
borderSuccess: string;
|
|
1879
|
+
borderHoverSuccess: string;
|
|
1880
|
+
colorFocusSuccess: string;
|
|
1881
|
+
borderFocusSuccess: string;
|
|
1882
|
+
boxShadowFocusSuccess: string;
|
|
1883
|
+
caretColorSuccess: string;
|
|
1849
1884
|
loadingColorWarning: string;
|
|
1850
1885
|
borderWarning: string;
|
|
1851
1886
|
borderHoverWarning: string;
|
|
@@ -2250,6 +2285,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2250
2285
|
borderFocus: string;
|
|
2251
2286
|
boxShadowFocus: string;
|
|
2252
2287
|
loadingColor: string;
|
|
2288
|
+
loadingColorSuccess: string;
|
|
2289
|
+
borderSuccess: string;
|
|
2290
|
+
borderHoverSuccess: string;
|
|
2291
|
+
colorFocusSuccess: string;
|
|
2292
|
+
borderFocusSuccess: string;
|
|
2293
|
+
boxShadowFocusSuccess: string;
|
|
2294
|
+
caretColorSuccess: string;
|
|
2253
2295
|
loadingColorWarning: string;
|
|
2254
2296
|
borderWarning: string;
|
|
2255
2297
|
borderHoverWarning: string;
|
|
@@ -2662,6 +2704,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2662
2704
|
borderFocus: string;
|
|
2663
2705
|
boxShadowFocus: string;
|
|
2664
2706
|
loadingColor: string;
|
|
2707
|
+
loadingColorSuccess: string;
|
|
2708
|
+
borderSuccess: string;
|
|
2709
|
+
borderHoverSuccess: string;
|
|
2710
|
+
colorFocusSuccess: string;
|
|
2711
|
+
borderFocusSuccess: string;
|
|
2712
|
+
boxShadowFocusSuccess: string;
|
|
2713
|
+
caretColorSuccess: string;
|
|
2665
2714
|
loadingColorWarning: string;
|
|
2666
2715
|
borderWarning: string;
|
|
2667
2716
|
borderHoverWarning: string;
|
|
@@ -3177,6 +3226,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3177
3226
|
borderFocus: string;
|
|
3178
3227
|
boxShadowFocus: string;
|
|
3179
3228
|
loadingColor: string;
|
|
3229
|
+
loadingColorSuccess: string;
|
|
3230
|
+
borderSuccess: string;
|
|
3231
|
+
borderHoverSuccess: string;
|
|
3232
|
+
colorFocusSuccess: string;
|
|
3233
|
+
borderFocusSuccess: string;
|
|
3234
|
+
boxShadowFocusSuccess: string;
|
|
3235
|
+
caretColorSuccess: string;
|
|
3180
3236
|
loadingColorWarning: string;
|
|
3181
3237
|
borderWarning: string;
|
|
3182
3238
|
borderHoverWarning: string;
|
|
@@ -3581,6 +3637,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3581
3637
|
borderFocus: string;
|
|
3582
3638
|
boxShadowFocus: string;
|
|
3583
3639
|
loadingColor: string;
|
|
3640
|
+
loadingColorSuccess: string;
|
|
3641
|
+
borderSuccess: string;
|
|
3642
|
+
borderHoverSuccess: string;
|
|
3643
|
+
colorFocusSuccess: string;
|
|
3644
|
+
borderFocusSuccess: string;
|
|
3645
|
+
boxShadowFocusSuccess: string;
|
|
3646
|
+
caretColorSuccess: string;
|
|
3584
3647
|
loadingColorWarning: string;
|
|
3585
3648
|
borderWarning: string;
|
|
3586
3649
|
borderHoverWarning: string;
|
|
@@ -3985,6 +4048,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3985
4048
|
borderFocus: string;
|
|
3986
4049
|
boxShadowFocus: string;
|
|
3987
4050
|
loadingColor: string;
|
|
4051
|
+
loadingColorSuccess: string;
|
|
4052
|
+
borderSuccess: string;
|
|
4053
|
+
borderHoverSuccess: string;
|
|
4054
|
+
colorFocusSuccess: string;
|
|
4055
|
+
borderFocusSuccess: string;
|
|
4056
|
+
boxShadowFocusSuccess: string;
|
|
4057
|
+
caretColorSuccess: string;
|
|
3988
4058
|
loadingColorWarning: string;
|
|
3989
4059
|
borderWarning: string;
|
|
3990
4060
|
borderHoverWarning: string;
|
|
@@ -153,6 +153,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
153
153
|
borderFocus: string;
|
|
154
154
|
boxShadowFocus: string;
|
|
155
155
|
loadingColor: string;
|
|
156
|
+
loadingColorSuccess: string;
|
|
157
|
+
borderSuccess: string;
|
|
158
|
+
borderHoverSuccess: string;
|
|
159
|
+
colorFocusSuccess: string;
|
|
160
|
+
borderFocusSuccess: string;
|
|
161
|
+
boxShadowFocusSuccess: string;
|
|
162
|
+
caretColorSuccess: string;
|
|
156
163
|
loadingColorWarning: string;
|
|
157
164
|
borderWarning: string;
|
|
158
165
|
borderHoverWarning: string;
|
|
@@ -587,6 +594,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
587
594
|
borderFocus: string;
|
|
588
595
|
boxShadowFocus: string;
|
|
589
596
|
loadingColor: string;
|
|
597
|
+
loadingColorSuccess: string;
|
|
598
|
+
borderSuccess: string;
|
|
599
|
+
borderHoverSuccess: string;
|
|
600
|
+
colorFocusSuccess: string;
|
|
601
|
+
borderFocusSuccess: string;
|
|
602
|
+
boxShadowFocusSuccess: string;
|
|
603
|
+
caretColorSuccess: string;
|
|
590
604
|
loadingColorWarning: string;
|
|
591
605
|
borderWarning: string;
|
|
592
606
|
borderHoverWarning: string;
|
|
@@ -165,6 +165,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
165
165
|
borderFocus: string;
|
|
166
166
|
boxShadowFocus: string;
|
|
167
167
|
loadingColor: string;
|
|
168
|
+
loadingColorSuccess: string;
|
|
169
|
+
borderSuccess: string;
|
|
170
|
+
borderHoverSuccess: string;
|
|
171
|
+
colorFocusSuccess: string;
|
|
172
|
+
borderFocusSuccess: string;
|
|
173
|
+
boxShadowFocusSuccess: string;
|
|
174
|
+
caretColorSuccess: string;
|
|
168
175
|
loadingColorWarning: string;
|
|
169
176
|
borderWarning: string;
|
|
170
177
|
borderHoverWarning: string;
|
|
@@ -599,6 +606,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
599
606
|
borderFocus: string;
|
|
600
607
|
boxShadowFocus: string;
|
|
601
608
|
loadingColor: string;
|
|
609
|
+
loadingColorSuccess: string;
|
|
610
|
+
borderSuccess: string;
|
|
611
|
+
borderHoverSuccess: string;
|
|
612
|
+
colorFocusSuccess: string;
|
|
613
|
+
borderFocusSuccess: string;
|
|
614
|
+
boxShadowFocusSuccess: string;
|
|
615
|
+
caretColorSuccess: string;
|
|
602
616
|
loadingColorWarning: string;
|
|
603
617
|
borderWarning: string;
|
|
604
618
|
borderHoverWarning: string;
|
|
@@ -161,6 +161,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
161
161
|
borderFocus: string;
|
|
162
162
|
boxShadowFocus: string;
|
|
163
163
|
loadingColor: string;
|
|
164
|
+
loadingColorSuccess: string;
|
|
165
|
+
borderSuccess: string;
|
|
166
|
+
borderHoverSuccess: string;
|
|
167
|
+
colorFocusSuccess: string;
|
|
168
|
+
borderFocusSuccess: string;
|
|
169
|
+
boxShadowFocusSuccess: string;
|
|
170
|
+
caretColorSuccess: string;
|
|
164
171
|
loadingColorWarning: string;
|
|
165
172
|
borderWarning: string;
|
|
166
173
|
borderHoverWarning: string;
|
|
@@ -595,6 +602,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
595
602
|
borderFocus: string;
|
|
596
603
|
boxShadowFocus: string;
|
|
597
604
|
loadingColor: string;
|
|
605
|
+
loadingColorSuccess: string;
|
|
606
|
+
borderSuccess: string;
|
|
607
|
+
borderHoverSuccess: string;
|
|
608
|
+
colorFocusSuccess: string;
|
|
609
|
+
borderFocusSuccess: string;
|
|
610
|
+
boxShadowFocusSuccess: string;
|
|
611
|
+
caretColorSuccess: string;
|
|
598
612
|
loadingColorWarning: string;
|
|
599
613
|
borderWarning: string;
|
|
600
614
|
borderHoverWarning: string;
|