@uzum-tech/ui 2.0.0-beta.8 → 2.0.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/index.js +485 -373
- package/dist/index.mjs +485 -373
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/_internal/icon/index.d.ts +2 -0
- package/es/_internal/icon/index.mjs +2 -1
- package/es/_internal/icon/src/UIcon.d.ts +126 -0
- package/es/_internal/icon/src/UIcon.mjs +131 -0
- package/es/_internal/select-menu/src/SelectOption.mjs +12 -4
- package/es/_mixins/use-config.d.ts +2 -1
- package/es/_mixins/use-config.mjs +1 -0
- 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 +1146 -39
- package/es/config-provider/src/ConfigProvider.d.ts +4 -1
- package/es/config-provider/src/ConfigProvider.mjs +8 -0
- package/es/config-provider/src/interface.d.ts +1 -1
- package/es/config-provider/src/internal-interface.d.ts +8 -0
- 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/icon/src/Icon.d.ts +2 -109
- package/es/icon/src/Icon.mjs +1 -93
- 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/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/icon/index.d.ts +2 -0
- package/lib/_internal/icon/index.js +4 -1
- package/lib/_internal/icon/src/UIcon.d.ts +126 -0
- package/lib/_internal/icon/src/UIcon.js +108 -0
- package/lib/_internal/select-menu/src/SelectOption.js +8 -4
- package/lib/_mixins/use-config.d.ts +2 -1
- package/lib/_mixins/use-config.js +1 -0
- 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 +1146 -39
- package/lib/config-provider/src/ConfigProvider.d.ts +4 -1
- package/lib/config-provider/src/ConfigProvider.js +8 -0
- package/lib/config-provider/src/interface.d.ts +1 -1
- package/lib/config-provider/src/internal-interface.d.ts +8 -0
- 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/icon/src/Icon.d.ts +2 -109
- package/lib/icon/src/Icon.js +3 -73
- 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/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 +8 -1
- package/web-types.json +18 -1
|
@@ -238,6 +238,13 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
238
238
|
borderFocus: string;
|
|
239
239
|
boxShadowFocus: string;
|
|
240
240
|
loadingColor: string;
|
|
241
|
+
loadingColorSuccess: string;
|
|
242
|
+
borderSuccess: string;
|
|
243
|
+
borderHoverSuccess: string;
|
|
244
|
+
colorFocusSuccess: string;
|
|
245
|
+
borderFocusSuccess: string;
|
|
246
|
+
boxShadowFocusSuccess: string;
|
|
247
|
+
caretColorSuccess: string;
|
|
241
248
|
loadingColorWarning: string;
|
|
242
249
|
borderWarning: string;
|
|
243
250
|
borderHoverWarning: string;
|
|
@@ -770,6 +777,13 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
|
|
|
770
777
|
borderFocus: string;
|
|
771
778
|
boxShadowFocus: string;
|
|
772
779
|
loadingColor: string;
|
|
780
|
+
loadingColorSuccess: string;
|
|
781
|
+
borderSuccess: string;
|
|
782
|
+
borderHoverSuccess: string;
|
|
783
|
+
colorFocusSuccess: string;
|
|
784
|
+
borderFocusSuccess: string;
|
|
785
|
+
boxShadowFocusSuccess: string;
|
|
786
|
+
caretColorSuccess: string;
|
|
773
787
|
loadingColorWarning: string;
|
|
774
788
|
borderWarning: string;
|
|
775
789
|
borderHoverWarning: string;
|
|
@@ -342,6 +342,13 @@ export declare const datePickerV2Props: {
|
|
|
342
342
|
borderFocus: string;
|
|
343
343
|
boxShadowFocus: string;
|
|
344
344
|
loadingColor: string;
|
|
345
|
+
loadingColorSuccess: string;
|
|
346
|
+
borderSuccess: string;
|
|
347
|
+
borderHoverSuccess: string;
|
|
348
|
+
colorFocusSuccess: string;
|
|
349
|
+
borderFocusSuccess: string;
|
|
350
|
+
boxShadowFocusSuccess: string;
|
|
351
|
+
caretColorSuccess: string;
|
|
345
352
|
loadingColorWarning: string;
|
|
346
353
|
borderWarning: string;
|
|
347
354
|
borderHoverWarning: string;
|
|
@@ -788,6 +795,13 @@ export declare const datePickerV2Props: {
|
|
|
788
795
|
borderFocus: string;
|
|
789
796
|
boxShadowFocus: string;
|
|
790
797
|
loadingColor: string;
|
|
798
|
+
loadingColorSuccess: string;
|
|
799
|
+
borderSuccess: string;
|
|
800
|
+
borderHoverSuccess: string;
|
|
801
|
+
colorFocusSuccess: string;
|
|
802
|
+
borderFocusSuccess: string;
|
|
803
|
+
boxShadowFocusSuccess: string;
|
|
804
|
+
caretColorSuccess: string;
|
|
791
805
|
loadingColorWarning: string;
|
|
792
806
|
borderWarning: string;
|
|
793
807
|
borderHoverWarning: string;
|
|
@@ -1234,6 +1248,13 @@ export declare const datePickerV2Props: {
|
|
|
1234
1248
|
borderFocus: string;
|
|
1235
1249
|
boxShadowFocus: string;
|
|
1236
1250
|
loadingColor: string;
|
|
1251
|
+
loadingColorSuccess: string;
|
|
1252
|
+
borderSuccess: string;
|
|
1253
|
+
borderHoverSuccess: string;
|
|
1254
|
+
colorFocusSuccess: string;
|
|
1255
|
+
borderFocusSuccess: string;
|
|
1256
|
+
boxShadowFocusSuccess: string;
|
|
1257
|
+
caretColorSuccess: string;
|
|
1237
1258
|
loadingColorWarning: string;
|
|
1238
1259
|
borderWarning: string;
|
|
1239
1260
|
borderHoverWarning: string;
|
|
@@ -1733,6 +1754,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1733
1754
|
borderFocus: string;
|
|
1734
1755
|
boxShadowFocus: string;
|
|
1735
1756
|
loadingColor: string;
|
|
1757
|
+
loadingColorSuccess: string;
|
|
1758
|
+
borderSuccess: string;
|
|
1759
|
+
borderHoverSuccess: string;
|
|
1760
|
+
colorFocusSuccess: string;
|
|
1761
|
+
borderFocusSuccess: string;
|
|
1762
|
+
boxShadowFocusSuccess: string;
|
|
1763
|
+
caretColorSuccess: string;
|
|
1736
1764
|
loadingColorWarning: string;
|
|
1737
1765
|
borderWarning: string;
|
|
1738
1766
|
borderHoverWarning: string;
|
|
@@ -2179,6 +2207,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2179
2207
|
borderFocus: string;
|
|
2180
2208
|
boxShadowFocus: string;
|
|
2181
2209
|
loadingColor: string;
|
|
2210
|
+
loadingColorSuccess: string;
|
|
2211
|
+
borderSuccess: string;
|
|
2212
|
+
borderHoverSuccess: string;
|
|
2213
|
+
colorFocusSuccess: string;
|
|
2214
|
+
borderFocusSuccess: string;
|
|
2215
|
+
boxShadowFocusSuccess: string;
|
|
2216
|
+
caretColorSuccess: string;
|
|
2182
2217
|
loadingColorWarning: string;
|
|
2183
2218
|
borderWarning: string;
|
|
2184
2219
|
borderHoverWarning: string;
|
|
@@ -2625,6 +2660,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2625
2660
|
borderFocus: string;
|
|
2626
2661
|
boxShadowFocus: string;
|
|
2627
2662
|
loadingColor: string;
|
|
2663
|
+
loadingColorSuccess: string;
|
|
2664
|
+
borderSuccess: string;
|
|
2665
|
+
borderHoverSuccess: string;
|
|
2666
|
+
colorFocusSuccess: string;
|
|
2667
|
+
borderFocusSuccess: string;
|
|
2668
|
+
boxShadowFocusSuccess: string;
|
|
2669
|
+
caretColorSuccess: string;
|
|
2628
2670
|
loadingColorWarning: string;
|
|
2629
2671
|
borderWarning: string;
|
|
2630
2672
|
borderHoverWarning: string;
|
|
@@ -3128,6 +3170,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3128
3170
|
borderFocus: string;
|
|
3129
3171
|
boxShadowFocus: string;
|
|
3130
3172
|
loadingColor: string;
|
|
3173
|
+
loadingColorSuccess: string;
|
|
3174
|
+
borderSuccess: string;
|
|
3175
|
+
borderHoverSuccess: string;
|
|
3176
|
+
colorFocusSuccess: string;
|
|
3177
|
+
borderFocusSuccess: string;
|
|
3178
|
+
boxShadowFocusSuccess: string;
|
|
3179
|
+
caretColorSuccess: string;
|
|
3131
3180
|
loadingColorWarning: string;
|
|
3132
3181
|
borderWarning: string;
|
|
3133
3182
|
borderHoverWarning: string;
|
|
@@ -3722,6 +3771,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3722
3771
|
borderFocus: string;
|
|
3723
3772
|
boxShadowFocus: string;
|
|
3724
3773
|
loadingColor: string;
|
|
3774
|
+
loadingColorSuccess: string;
|
|
3775
|
+
borderSuccess: string;
|
|
3776
|
+
borderHoverSuccess: string;
|
|
3777
|
+
colorFocusSuccess: string;
|
|
3778
|
+
borderFocusSuccess: string;
|
|
3779
|
+
boxShadowFocusSuccess: string;
|
|
3780
|
+
caretColorSuccess: string;
|
|
3725
3781
|
loadingColorWarning: string;
|
|
3726
3782
|
borderWarning: string;
|
|
3727
3783
|
borderHoverWarning: string;
|
|
@@ -4168,6 +4224,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4168
4224
|
borderFocus: string;
|
|
4169
4225
|
boxShadowFocus: string;
|
|
4170
4226
|
loadingColor: string;
|
|
4227
|
+
loadingColorSuccess: string;
|
|
4228
|
+
borderSuccess: string;
|
|
4229
|
+
borderHoverSuccess: string;
|
|
4230
|
+
colorFocusSuccess: string;
|
|
4231
|
+
borderFocusSuccess: string;
|
|
4232
|
+
boxShadowFocusSuccess: string;
|
|
4233
|
+
caretColorSuccess: string;
|
|
4171
4234
|
loadingColorWarning: string;
|
|
4172
4235
|
borderWarning: string;
|
|
4173
4236
|
borderHoverWarning: string;
|
|
@@ -4614,6 +4677,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4614
4677
|
borderFocus: string;
|
|
4615
4678
|
boxShadowFocus: string;
|
|
4616
4679
|
loadingColor: string;
|
|
4680
|
+
loadingColorSuccess: string;
|
|
4681
|
+
borderSuccess: string;
|
|
4682
|
+
borderHoverSuccess: string;
|
|
4683
|
+
colorFocusSuccess: string;
|
|
4684
|
+
borderFocusSuccess: string;
|
|
4685
|
+
boxShadowFocusSuccess: string;
|
|
4686
|
+
caretColorSuccess: string;
|
|
4617
4687
|
loadingColorWarning: string;
|
|
4618
4688
|
borderWarning: string;
|
|
4619
4689
|
borderHoverWarning: string;
|
|
@@ -284,6 +284,13 @@ declare const datePickerV2Dark: import("../../_mixins").Theme<"DatePickerV2", {
|
|
|
284
284
|
borderFocus: string;
|
|
285
285
|
boxShadowFocus: string;
|
|
286
286
|
loadingColor: string;
|
|
287
|
+
loadingColorSuccess: string;
|
|
288
|
+
borderSuccess: string;
|
|
289
|
+
borderHoverSuccess: string;
|
|
290
|
+
colorFocusSuccess: string;
|
|
291
|
+
borderFocusSuccess: string;
|
|
292
|
+
boxShadowFocusSuccess: string;
|
|
293
|
+
caretColorSuccess: string;
|
|
287
294
|
loadingColorWarning: string;
|
|
288
295
|
borderWarning: string;
|
|
289
296
|
borderHoverWarning: string;
|
|
@@ -313,6 +313,13 @@ declare const datePickerV2Light: import("../../_mixins").Theme<"DatePickerV2", {
|
|
|
313
313
|
borderFocus: string;
|
|
314
314
|
boxShadowFocus: string;
|
|
315
315
|
loadingColor: string;
|
|
316
|
+
loadingColorSuccess: string;
|
|
317
|
+
borderSuccess: string;
|
|
318
|
+
borderHoverSuccess: string;
|
|
319
|
+
colorFocusSuccess: string;
|
|
320
|
+
borderFocusSuccess: string;
|
|
321
|
+
boxShadowFocusSuccess: string;
|
|
322
|
+
caretColorSuccess: string;
|
|
316
323
|
loadingColorWarning: string;
|
|
317
324
|
borderWarning: string;
|
|
318
325
|
borderHoverWarning: string;
|
|
@@ -161,8 +161,7 @@ export const UDialogEnvironment = defineComponent({
|
|
|
161
161
|
transformOrigin: this.transformOrigin,
|
|
162
162
|
draggable: this.draggable,
|
|
163
163
|
internalAppear: true,
|
|
164
|
-
internalDialog: true
|
|
165
|
-
presetDisabled: true
|
|
164
|
+
internalDialog: true
|
|
166
165
|
}, {
|
|
167
166
|
default: () => h(UDialog, Object.assign({}, keep(this.$props, dialogPropKeys), {
|
|
168
167
|
style: this.internalStyle,
|
|
@@ -84,6 +84,13 @@ export declare const dynamicInputProps: {
|
|
|
84
84
|
borderFocus: string;
|
|
85
85
|
boxShadowFocus: string;
|
|
86
86
|
loadingColor: string;
|
|
87
|
+
loadingColorSuccess: string;
|
|
88
|
+
borderSuccess: string;
|
|
89
|
+
borderHoverSuccess: string;
|
|
90
|
+
colorFocusSuccess: string;
|
|
91
|
+
borderFocusSuccess: string;
|
|
92
|
+
boxShadowFocusSuccess: string;
|
|
93
|
+
caretColorSuccess: string;
|
|
87
94
|
loadingColorWarning: string;
|
|
88
95
|
borderWarning: string;
|
|
89
96
|
borderHoverWarning: string;
|
|
@@ -372,6 +379,13 @@ export declare const dynamicInputProps: {
|
|
|
372
379
|
borderFocus: string;
|
|
373
380
|
boxShadowFocus: string;
|
|
374
381
|
loadingColor: string;
|
|
382
|
+
loadingColorSuccess: string;
|
|
383
|
+
borderSuccess: string;
|
|
384
|
+
borderHoverSuccess: string;
|
|
385
|
+
colorFocusSuccess: string;
|
|
386
|
+
borderFocusSuccess: string;
|
|
387
|
+
boxShadowFocusSuccess: string;
|
|
388
|
+
caretColorSuccess: string;
|
|
375
389
|
loadingColorWarning: string;
|
|
376
390
|
borderWarning: string;
|
|
377
391
|
borderHoverWarning: string;
|
|
@@ -660,6 +674,13 @@ export declare const dynamicInputProps: {
|
|
|
660
674
|
borderFocus: string;
|
|
661
675
|
boxShadowFocus: string;
|
|
662
676
|
loadingColor: string;
|
|
677
|
+
loadingColorSuccess: string;
|
|
678
|
+
borderSuccess: string;
|
|
679
|
+
borderHoverSuccess: string;
|
|
680
|
+
colorFocusSuccess: string;
|
|
681
|
+
borderFocusSuccess: string;
|
|
682
|
+
boxShadowFocusSuccess: string;
|
|
683
|
+
caretColorSuccess: string;
|
|
663
684
|
loadingColorWarning: string;
|
|
664
685
|
borderWarning: string;
|
|
665
686
|
borderHoverWarning: string;
|
|
@@ -994,6 +1015,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
994
1015
|
borderFocus: string;
|
|
995
1016
|
boxShadowFocus: string;
|
|
996
1017
|
loadingColor: string;
|
|
1018
|
+
loadingColorSuccess: string;
|
|
1019
|
+
borderSuccess: string;
|
|
1020
|
+
borderHoverSuccess: string;
|
|
1021
|
+
colorFocusSuccess: string;
|
|
1022
|
+
borderFocusSuccess: string;
|
|
1023
|
+
boxShadowFocusSuccess: string;
|
|
1024
|
+
caretColorSuccess: string;
|
|
997
1025
|
loadingColorWarning: string;
|
|
998
1026
|
borderWarning: string;
|
|
999
1027
|
borderHoverWarning: string;
|
|
@@ -1282,6 +1310,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1282
1310
|
borderFocus: string;
|
|
1283
1311
|
boxShadowFocus: string;
|
|
1284
1312
|
loadingColor: string;
|
|
1313
|
+
loadingColorSuccess: string;
|
|
1314
|
+
borderSuccess: string;
|
|
1315
|
+
borderHoverSuccess: string;
|
|
1316
|
+
colorFocusSuccess: string;
|
|
1317
|
+
borderFocusSuccess: string;
|
|
1318
|
+
boxShadowFocusSuccess: string;
|
|
1319
|
+
caretColorSuccess: string;
|
|
1285
1320
|
loadingColorWarning: string;
|
|
1286
1321
|
borderWarning: string;
|
|
1287
1322
|
borderHoverWarning: string;
|
|
@@ -1570,6 +1605,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1570
1605
|
borderFocus: string;
|
|
1571
1606
|
boxShadowFocus: string;
|
|
1572
1607
|
loadingColor: string;
|
|
1608
|
+
loadingColorSuccess: string;
|
|
1609
|
+
borderSuccess: string;
|
|
1610
|
+
borderHoverSuccess: string;
|
|
1611
|
+
colorFocusSuccess: string;
|
|
1612
|
+
borderFocusSuccess: string;
|
|
1613
|
+
boxShadowFocusSuccess: string;
|
|
1614
|
+
caretColorSuccess: string;
|
|
1573
1615
|
loadingColorWarning: string;
|
|
1574
1616
|
borderWarning: string;
|
|
1575
1617
|
borderHoverWarning: string;
|
|
@@ -1881,6 +1923,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1881
1923
|
borderFocus: string;
|
|
1882
1924
|
boxShadowFocus: string;
|
|
1883
1925
|
loadingColor: string;
|
|
1926
|
+
loadingColorSuccess: string;
|
|
1927
|
+
borderSuccess: string;
|
|
1928
|
+
borderHoverSuccess: string;
|
|
1929
|
+
colorFocusSuccess: string;
|
|
1930
|
+
borderFocusSuccess: string;
|
|
1931
|
+
boxShadowFocusSuccess: string;
|
|
1932
|
+
caretColorSuccess: string;
|
|
1884
1933
|
loadingColorWarning: string;
|
|
1885
1934
|
borderWarning: string;
|
|
1886
1935
|
borderHoverWarning: string;
|
|
@@ -2226,6 +2275,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2226
2275
|
borderFocus: string;
|
|
2227
2276
|
boxShadowFocus: string;
|
|
2228
2277
|
loadingColor: string;
|
|
2278
|
+
loadingColorSuccess: string;
|
|
2279
|
+
borderSuccess: string;
|
|
2280
|
+
borderHoverSuccess: string;
|
|
2281
|
+
colorFocusSuccess: string;
|
|
2282
|
+
borderFocusSuccess: string;
|
|
2283
|
+
boxShadowFocusSuccess: string;
|
|
2284
|
+
caretColorSuccess: string;
|
|
2229
2285
|
loadingColorWarning: string;
|
|
2230
2286
|
borderWarning: string;
|
|
2231
2287
|
borderHoverWarning: string;
|
|
@@ -2514,6 +2570,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2514
2570
|
borderFocus: string;
|
|
2515
2571
|
boxShadowFocus: string;
|
|
2516
2572
|
loadingColor: string;
|
|
2573
|
+
loadingColorSuccess: string;
|
|
2574
|
+
borderSuccess: string;
|
|
2575
|
+
borderHoverSuccess: string;
|
|
2576
|
+
colorFocusSuccess: string;
|
|
2577
|
+
borderFocusSuccess: string;
|
|
2578
|
+
boxShadowFocusSuccess: string;
|
|
2579
|
+
caretColorSuccess: string;
|
|
2517
2580
|
loadingColorWarning: string;
|
|
2518
2581
|
borderWarning: string;
|
|
2519
2582
|
borderHoverWarning: string;
|
|
@@ -2802,6 +2865,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2802
2865
|
borderFocus: string;
|
|
2803
2866
|
boxShadowFocus: string;
|
|
2804
2867
|
loadingColor: string;
|
|
2868
|
+
loadingColorSuccess: string;
|
|
2869
|
+
borderSuccess: string;
|
|
2870
|
+
borderHoverSuccess: string;
|
|
2871
|
+
colorFocusSuccess: string;
|
|
2872
|
+
borderFocusSuccess: string;
|
|
2873
|
+
boxShadowFocusSuccess: string;
|
|
2874
|
+
caretColorSuccess: string;
|
|
2805
2875
|
loadingColorWarning: string;
|
|
2806
2876
|
borderWarning: string;
|
|
2807
2877
|
borderHoverWarning: string;
|
|
@@ -63,6 +63,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
63
63
|
borderFocus: string;
|
|
64
64
|
boxShadowFocus: string;
|
|
65
65
|
loadingColor: string;
|
|
66
|
+
loadingColorSuccess: string;
|
|
67
|
+
borderSuccess: string;
|
|
68
|
+
borderHoverSuccess: string;
|
|
69
|
+
colorFocusSuccess: string;
|
|
70
|
+
borderFocusSuccess: string;
|
|
71
|
+
boxShadowFocusSuccess: string;
|
|
72
|
+
caretColorSuccess: string;
|
|
66
73
|
loadingColorWarning: string;
|
|
67
74
|
borderWarning: string;
|
|
68
75
|
borderHoverWarning: string;
|
|
@@ -366,6 +373,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
366
373
|
borderFocus: string;
|
|
367
374
|
boxShadowFocus: string;
|
|
368
375
|
loadingColor: string;
|
|
376
|
+
loadingColorSuccess: string;
|
|
377
|
+
borderSuccess: string;
|
|
378
|
+
borderHoverSuccess: string;
|
|
379
|
+
colorFocusSuccess: string;
|
|
380
|
+
borderFocusSuccess: string;
|
|
381
|
+
boxShadowFocusSuccess: string;
|
|
382
|
+
caretColorSuccess: string;
|
|
369
383
|
loadingColorWarning: string;
|
|
370
384
|
borderWarning: string;
|
|
371
385
|
borderHoverWarning: string;
|
|
@@ -72,6 +72,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
72
72
|
borderFocus: string;
|
|
73
73
|
boxShadowFocus: string;
|
|
74
74
|
loadingColor: string;
|
|
75
|
+
loadingColorSuccess: string;
|
|
76
|
+
borderSuccess: string;
|
|
77
|
+
borderHoverSuccess: string;
|
|
78
|
+
colorFocusSuccess: string;
|
|
79
|
+
borderFocusSuccess: string;
|
|
80
|
+
boxShadowFocusSuccess: string;
|
|
81
|
+
caretColorSuccess: string;
|
|
75
82
|
loadingColorWarning: string;
|
|
76
83
|
borderWarning: string;
|
|
77
84
|
borderHoverWarning: string;
|
|
@@ -375,6 +382,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
375
382
|
borderFocus: string;
|
|
376
383
|
boxShadowFocus: string;
|
|
377
384
|
loadingColor: string;
|
|
385
|
+
loadingColorSuccess: string;
|
|
386
|
+
borderSuccess: string;
|
|
387
|
+
borderHoverSuccess: string;
|
|
388
|
+
colorFocusSuccess: string;
|
|
389
|
+
borderFocusSuccess: string;
|
|
390
|
+
boxShadowFocusSuccess: string;
|
|
391
|
+
caretColorSuccess: string;
|
|
378
392
|
loadingColorWarning: string;
|
|
379
393
|
borderWarning: string;
|
|
380
394
|
borderHoverWarning: string;
|
|
@@ -47,6 +47,13 @@ declare const dynamicInputLight: import("../../_mixins").Theme<"DynamicInput", {
|
|
|
47
47
|
borderFocus: string;
|
|
48
48
|
boxShadowFocus: string;
|
|
49
49
|
loadingColor: string;
|
|
50
|
+
loadingColorSuccess: string;
|
|
51
|
+
borderSuccess: string;
|
|
52
|
+
borderHoverSuccess: string;
|
|
53
|
+
colorFocusSuccess: string;
|
|
54
|
+
borderFocusSuccess: string;
|
|
55
|
+
boxShadowFocusSuccess: string;
|
|
56
|
+
caretColorSuccess: string;
|
|
50
57
|
loadingColorWarning: string;
|
|
51
58
|
borderWarning: string;
|
|
52
59
|
borderHoverWarning: string;
|
|
@@ -81,6 +81,13 @@ export declare const dynamicTagsProps: {
|
|
|
81
81
|
borderFocus: string;
|
|
82
82
|
boxShadowFocus: string;
|
|
83
83
|
loadingColor: string;
|
|
84
|
+
loadingColorSuccess: string;
|
|
85
|
+
borderSuccess: string;
|
|
86
|
+
borderHoverSuccess: string;
|
|
87
|
+
colorFocusSuccess: string;
|
|
88
|
+
borderFocusSuccess: string;
|
|
89
|
+
boxShadowFocusSuccess: string;
|
|
90
|
+
caretColorSuccess: string;
|
|
84
91
|
loadingColorWarning: string;
|
|
85
92
|
borderWarning: string;
|
|
86
93
|
borderHoverWarning: string;
|
|
@@ -435,6 +442,13 @@ export declare const dynamicTagsProps: {
|
|
|
435
442
|
borderFocus: string;
|
|
436
443
|
boxShadowFocus: string;
|
|
437
444
|
loadingColor: string;
|
|
445
|
+
loadingColorSuccess: string;
|
|
446
|
+
borderSuccess: string;
|
|
447
|
+
borderHoverSuccess: string;
|
|
448
|
+
colorFocusSuccess: string;
|
|
449
|
+
borderFocusSuccess: string;
|
|
450
|
+
boxShadowFocusSuccess: string;
|
|
451
|
+
caretColorSuccess: string;
|
|
438
452
|
loadingColorWarning: string;
|
|
439
453
|
borderWarning: string;
|
|
440
454
|
borderHoverWarning: string;
|
|
@@ -789,6 +803,13 @@ export declare const dynamicTagsProps: {
|
|
|
789
803
|
borderFocus: string;
|
|
790
804
|
boxShadowFocus: string;
|
|
791
805
|
loadingColor: string;
|
|
806
|
+
loadingColorSuccess: string;
|
|
807
|
+
borderSuccess: string;
|
|
808
|
+
borderHoverSuccess: string;
|
|
809
|
+
colorFocusSuccess: string;
|
|
810
|
+
borderFocusSuccess: string;
|
|
811
|
+
boxShadowFocusSuccess: string;
|
|
812
|
+
caretColorSuccess: string;
|
|
792
813
|
loadingColorWarning: string;
|
|
793
814
|
borderWarning: string;
|
|
794
815
|
borderHoverWarning: string;
|
|
@@ -1186,6 +1207,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1186
1207
|
borderFocus: string;
|
|
1187
1208
|
boxShadowFocus: string;
|
|
1188
1209
|
loadingColor: string;
|
|
1210
|
+
loadingColorSuccess: string;
|
|
1211
|
+
borderSuccess: string;
|
|
1212
|
+
borderHoverSuccess: string;
|
|
1213
|
+
colorFocusSuccess: string;
|
|
1214
|
+
borderFocusSuccess: string;
|
|
1215
|
+
boxShadowFocusSuccess: string;
|
|
1216
|
+
caretColorSuccess: string;
|
|
1189
1217
|
loadingColorWarning: string;
|
|
1190
1218
|
borderWarning: string;
|
|
1191
1219
|
borderHoverWarning: string;
|
|
@@ -1540,6 +1568,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1540
1568
|
borderFocus: string;
|
|
1541
1569
|
boxShadowFocus: string;
|
|
1542
1570
|
loadingColor: string;
|
|
1571
|
+
loadingColorSuccess: string;
|
|
1572
|
+
borderSuccess: string;
|
|
1573
|
+
borderHoverSuccess: string;
|
|
1574
|
+
colorFocusSuccess: string;
|
|
1575
|
+
borderFocusSuccess: string;
|
|
1576
|
+
boxShadowFocusSuccess: string;
|
|
1577
|
+
caretColorSuccess: string;
|
|
1543
1578
|
loadingColorWarning: string;
|
|
1544
1579
|
borderWarning: string;
|
|
1545
1580
|
borderHoverWarning: string;
|
|
@@ -1894,6 +1929,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1894
1929
|
borderFocus: string;
|
|
1895
1930
|
boxShadowFocus: string;
|
|
1896
1931
|
loadingColor: string;
|
|
1932
|
+
loadingColorSuccess: string;
|
|
1933
|
+
borderSuccess: string;
|
|
1934
|
+
borderHoverSuccess: string;
|
|
1935
|
+
colorFocusSuccess: string;
|
|
1936
|
+
borderFocusSuccess: string;
|
|
1937
|
+
boxShadowFocusSuccess: string;
|
|
1938
|
+
caretColorSuccess: string;
|
|
1897
1939
|
loadingColorWarning: string;
|
|
1898
1940
|
borderWarning: string;
|
|
1899
1941
|
borderHoverWarning: string;
|
|
@@ -2306,6 +2348,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2306
2348
|
borderFocus: string;
|
|
2307
2349
|
boxShadowFocus: string;
|
|
2308
2350
|
loadingColor: string;
|
|
2351
|
+
loadingColorSuccess: string;
|
|
2352
|
+
borderSuccess: string;
|
|
2353
|
+
borderHoverSuccess: string;
|
|
2354
|
+
colorFocusSuccess: string;
|
|
2355
|
+
borderFocusSuccess: string;
|
|
2356
|
+
boxShadowFocusSuccess: string;
|
|
2357
|
+
caretColorSuccess: string;
|
|
2309
2358
|
loadingColorWarning: string;
|
|
2310
2359
|
borderWarning: string;
|
|
2311
2360
|
borderHoverWarning: string;
|
|
@@ -2725,6 +2774,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2725
2774
|
borderFocus: string;
|
|
2726
2775
|
boxShadowFocus: string;
|
|
2727
2776
|
loadingColor: string;
|
|
2777
|
+
loadingColorSuccess: string;
|
|
2778
|
+
borderSuccess: string;
|
|
2779
|
+
borderHoverSuccess: string;
|
|
2780
|
+
colorFocusSuccess: string;
|
|
2781
|
+
borderFocusSuccess: string;
|
|
2782
|
+
boxShadowFocusSuccess: string;
|
|
2783
|
+
caretColorSuccess: string;
|
|
2728
2784
|
loadingColorWarning: string;
|
|
2729
2785
|
borderWarning: string;
|
|
2730
2786
|
borderHoverWarning: string;
|
|
@@ -3079,6 +3135,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3079
3135
|
borderFocus: string;
|
|
3080
3136
|
boxShadowFocus: string;
|
|
3081
3137
|
loadingColor: string;
|
|
3138
|
+
loadingColorSuccess: string;
|
|
3139
|
+
borderSuccess: string;
|
|
3140
|
+
borderHoverSuccess: string;
|
|
3141
|
+
colorFocusSuccess: string;
|
|
3142
|
+
borderFocusSuccess: string;
|
|
3143
|
+
boxShadowFocusSuccess: string;
|
|
3144
|
+
caretColorSuccess: string;
|
|
3082
3145
|
loadingColorWarning: string;
|
|
3083
3146
|
borderWarning: string;
|
|
3084
3147
|
borderHoverWarning: string;
|
|
@@ -3433,6 +3496,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3433
3496
|
borderFocus: string;
|
|
3434
3497
|
boxShadowFocus: string;
|
|
3435
3498
|
loadingColor: string;
|
|
3499
|
+
loadingColorSuccess: string;
|
|
3500
|
+
borderSuccess: string;
|
|
3501
|
+
borderHoverSuccess: string;
|
|
3502
|
+
colorFocusSuccess: string;
|
|
3503
|
+
borderFocusSuccess: string;
|
|
3504
|
+
boxShadowFocusSuccess: string;
|
|
3505
|
+
caretColorSuccess: string;
|
|
3436
3506
|
loadingColorWarning: string;
|
|
3437
3507
|
borderWarning: string;
|
|
3438
3508
|
borderHoverWarning: string;
|
|
@@ -41,6 +41,13 @@ declare const dynamicTagsLight: import("../../_mixins").Theme<"DynamicTags", {
|
|
|
41
41
|
borderFocus: string;
|
|
42
42
|
boxShadowFocus: string;
|
|
43
43
|
loadingColor: string;
|
|
44
|
+
loadingColorSuccess: string;
|
|
45
|
+
borderSuccess: string;
|
|
46
|
+
borderHoverSuccess: string;
|
|
47
|
+
colorFocusSuccess: string;
|
|
48
|
+
borderFocusSuccess: string;
|
|
49
|
+
boxShadowFocusSuccess: string;
|
|
50
|
+
caretColorSuccess: string;
|
|
44
51
|
loadingColorWarning: string;
|
|
45
52
|
borderWarning: string;
|
|
46
53
|
borderHoverWarning: string;
|
package/es/icon/src/Icon.d.ts
CHANGED
|
@@ -1,109 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export type Depth = 1 | 2 | 3 | 4 | 5 | '1' | '2' | '3' | '4' | '5' | undefined;
|
|
4
|
-
export declare const iconProps: {
|
|
5
|
-
readonly depth: PropType<Depth>;
|
|
6
|
-
readonly size: PropType<number | string>;
|
|
7
|
-
readonly color: StringConstructor;
|
|
8
|
-
readonly component: PropType<Component>;
|
|
9
|
-
readonly onClick: PropType<(e: MouseEvent) => void>;
|
|
10
|
-
readonly theme: PropType<import("../../_mixins").Theme<"Icon", {
|
|
11
|
-
color: string;
|
|
12
|
-
opacity1Depth: string;
|
|
13
|
-
opacity2Depth: string;
|
|
14
|
-
opacity3Depth: string;
|
|
15
|
-
opacity4Depth: string;
|
|
16
|
-
opacity5Depth: string;
|
|
17
|
-
}, any>>;
|
|
18
|
-
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
19
|
-
color: string;
|
|
20
|
-
opacity1Depth: string;
|
|
21
|
-
opacity2Depth: string;
|
|
22
|
-
opacity3Depth: string;
|
|
23
|
-
opacity4Depth: string;
|
|
24
|
-
opacity5Depth: string;
|
|
25
|
-
}, any>>>;
|
|
26
|
-
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
27
|
-
color: string;
|
|
28
|
-
opacity1Depth: string;
|
|
29
|
-
opacity2Depth: string;
|
|
30
|
-
opacity3Depth: string;
|
|
31
|
-
opacity4Depth: string;
|
|
32
|
-
opacity5Depth: string;
|
|
33
|
-
}, any>>>;
|
|
34
|
-
};
|
|
35
|
-
export type IconProps = ExtractPublicPropTypes<typeof iconProps>;
|
|
36
|
-
export declare const UIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
37
|
-
readonly depth: PropType<Depth>;
|
|
38
|
-
readonly size: PropType<number | string>;
|
|
39
|
-
readonly color: StringConstructor;
|
|
40
|
-
readonly component: PropType<Component>;
|
|
41
|
-
readonly onClick: PropType<(e: MouseEvent) => void>;
|
|
42
|
-
readonly theme: PropType<import("../../_mixins").Theme<"Icon", {
|
|
43
|
-
color: string;
|
|
44
|
-
opacity1Depth: string;
|
|
45
|
-
opacity2Depth: string;
|
|
46
|
-
opacity3Depth: string;
|
|
47
|
-
opacity4Depth: string;
|
|
48
|
-
opacity5Depth: string;
|
|
49
|
-
}, any>>;
|
|
50
|
-
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
51
|
-
color: string;
|
|
52
|
-
opacity1Depth: string;
|
|
53
|
-
opacity2Depth: string;
|
|
54
|
-
opacity3Depth: string;
|
|
55
|
-
opacity4Depth: string;
|
|
56
|
-
opacity5Depth: string;
|
|
57
|
-
}, any>>>;
|
|
58
|
-
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
59
|
-
color: string;
|
|
60
|
-
opacity1Depth: string;
|
|
61
|
-
opacity2Depth: string;
|
|
62
|
-
opacity3Depth: string;
|
|
63
|
-
opacity4Depth: string;
|
|
64
|
-
opacity5Depth: string;
|
|
65
|
-
}, any>>>;
|
|
66
|
-
}>, {
|
|
67
|
-
mergedClsPrefix: import("vue").Ref<string, string>;
|
|
68
|
-
mergedStyle: import("vue").ComputedRef<{
|
|
69
|
-
fontSize: string | undefined;
|
|
70
|
-
color: string | undefined;
|
|
71
|
-
}>;
|
|
72
|
-
cssVars: import("vue").ComputedRef<{
|
|
73
|
-
'--u-bezier': string;
|
|
74
|
-
'--u-color': string;
|
|
75
|
-
'--u-opacity': string;
|
|
76
|
-
}> | undefined;
|
|
77
|
-
themeClass: import("vue").Ref<string, string> | undefined;
|
|
78
|
-
onRender: (() => void) | undefined;
|
|
79
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
80
|
-
readonly depth: PropType<Depth>;
|
|
81
|
-
readonly size: PropType<number | string>;
|
|
82
|
-
readonly color: StringConstructor;
|
|
83
|
-
readonly component: PropType<Component>;
|
|
84
|
-
readonly onClick: PropType<(e: MouseEvent) => void>;
|
|
85
|
-
readonly theme: PropType<import("../../_mixins").Theme<"Icon", {
|
|
86
|
-
color: string;
|
|
87
|
-
opacity1Depth: string;
|
|
88
|
-
opacity2Depth: string;
|
|
89
|
-
opacity3Depth: string;
|
|
90
|
-
opacity4Depth: string;
|
|
91
|
-
opacity5Depth: string;
|
|
92
|
-
}, any>>;
|
|
93
|
-
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
94
|
-
color: string;
|
|
95
|
-
opacity1Depth: string;
|
|
96
|
-
opacity2Depth: string;
|
|
97
|
-
opacity3Depth: string;
|
|
98
|
-
opacity4Depth: string;
|
|
99
|
-
opacity5Depth: string;
|
|
100
|
-
}, any>>>;
|
|
101
|
-
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Icon", {
|
|
102
|
-
color: string;
|
|
103
|
-
opacity1Depth: string;
|
|
104
|
-
opacity2Depth: string;
|
|
105
|
-
opacity3Depth: string;
|
|
106
|
-
opacity4Depth: string;
|
|
107
|
-
opacity5Depth: string;
|
|
108
|
-
}, any>>>;
|
|
109
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1
|
+
export { iconProps, UIcon } from '../../_internal/icon';
|
|
2
|
+
export type { Depth, GenericUIcon, IconNameOf, IconProps } from '../../_internal/icon';
|