@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
package/es/chat/src/Chat.d.ts
CHANGED
|
@@ -316,6 +316,13 @@ export declare const chatProps: {
|
|
|
316
316
|
borderFocus: string;
|
|
317
317
|
boxShadowFocus: string;
|
|
318
318
|
loadingColor: string;
|
|
319
|
+
loadingColorSuccess: string;
|
|
320
|
+
borderSuccess: string;
|
|
321
|
+
borderHoverSuccess: string;
|
|
322
|
+
colorFocusSuccess: string;
|
|
323
|
+
borderFocusSuccess: string;
|
|
324
|
+
boxShadowFocusSuccess: string;
|
|
325
|
+
caretColorSuccess: string;
|
|
319
326
|
loadingColorWarning: string;
|
|
320
327
|
borderWarning: string;
|
|
321
328
|
borderHoverWarning: string;
|
|
@@ -1014,6 +1021,13 @@ export declare const chatProps: {
|
|
|
1014
1021
|
borderFocus: string;
|
|
1015
1022
|
boxShadowFocus: string;
|
|
1016
1023
|
loadingColor: string;
|
|
1024
|
+
loadingColorSuccess: string;
|
|
1025
|
+
borderSuccess: string;
|
|
1026
|
+
borderHoverSuccess: string;
|
|
1027
|
+
colorFocusSuccess: string;
|
|
1028
|
+
borderFocusSuccess: string;
|
|
1029
|
+
boxShadowFocusSuccess: string;
|
|
1030
|
+
caretColorSuccess: string;
|
|
1017
1031
|
loadingColorWarning: string;
|
|
1018
1032
|
borderWarning: string;
|
|
1019
1033
|
borderHoverWarning: string;
|
|
@@ -1712,6 +1726,13 @@ export declare const chatProps: {
|
|
|
1712
1726
|
borderFocus: string;
|
|
1713
1727
|
boxShadowFocus: string;
|
|
1714
1728
|
loadingColor: string;
|
|
1729
|
+
loadingColorSuccess: string;
|
|
1730
|
+
borderSuccess: string;
|
|
1731
|
+
borderHoverSuccess: string;
|
|
1732
|
+
colorFocusSuccess: string;
|
|
1733
|
+
borderFocusSuccess: string;
|
|
1734
|
+
boxShadowFocusSuccess: string;
|
|
1735
|
+
caretColorSuccess: string;
|
|
1715
1736
|
loadingColorWarning: string;
|
|
1716
1737
|
borderWarning: string;
|
|
1717
1738
|
borderHoverWarning: string;
|
|
@@ -2649,6 +2670,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2649
2670
|
borderFocus: string;
|
|
2650
2671
|
boxShadowFocus: string;
|
|
2651
2672
|
loadingColor: string;
|
|
2673
|
+
loadingColorSuccess: string;
|
|
2674
|
+
borderSuccess: string;
|
|
2675
|
+
borderHoverSuccess: string;
|
|
2676
|
+
colorFocusSuccess: string;
|
|
2677
|
+
borderFocusSuccess: string;
|
|
2678
|
+
boxShadowFocusSuccess: string;
|
|
2679
|
+
caretColorSuccess: string;
|
|
2652
2680
|
loadingColorWarning: string;
|
|
2653
2681
|
borderWarning: string;
|
|
2654
2682
|
borderHoverWarning: string;
|
|
@@ -3347,6 +3375,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3347
3375
|
borderFocus: string;
|
|
3348
3376
|
boxShadowFocus: string;
|
|
3349
3377
|
loadingColor: string;
|
|
3378
|
+
loadingColorSuccess: string;
|
|
3379
|
+
borderSuccess: string;
|
|
3380
|
+
borderHoverSuccess: string;
|
|
3381
|
+
colorFocusSuccess: string;
|
|
3382
|
+
borderFocusSuccess: string;
|
|
3383
|
+
boxShadowFocusSuccess: string;
|
|
3384
|
+
caretColorSuccess: string;
|
|
3350
3385
|
loadingColorWarning: string;
|
|
3351
3386
|
borderWarning: string;
|
|
3352
3387
|
borderHoverWarning: string;
|
|
@@ -4045,6 +4080,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4045
4080
|
borderFocus: string;
|
|
4046
4081
|
boxShadowFocus: string;
|
|
4047
4082
|
loadingColor: string;
|
|
4083
|
+
loadingColorSuccess: string;
|
|
4084
|
+
borderSuccess: string;
|
|
4085
|
+
borderHoverSuccess: string;
|
|
4086
|
+
colorFocusSuccess: string;
|
|
4087
|
+
borderFocusSuccess: string;
|
|
4088
|
+
boxShadowFocusSuccess: string;
|
|
4089
|
+
caretColorSuccess: string;
|
|
4048
4090
|
loadingColorWarning: string;
|
|
4049
4091
|
borderWarning: string;
|
|
4050
4092
|
borderHoverWarning: string;
|
|
@@ -4748,6 +4790,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4748
4790
|
borderFocus: string;
|
|
4749
4791
|
boxShadowFocus: string;
|
|
4750
4792
|
loadingColor: string;
|
|
4793
|
+
loadingColorSuccess: string;
|
|
4794
|
+
borderSuccess: string;
|
|
4795
|
+
borderHoverSuccess: string;
|
|
4796
|
+
colorFocusSuccess: string;
|
|
4797
|
+
borderFocusSuccess: string;
|
|
4798
|
+
boxShadowFocusSuccess: string;
|
|
4799
|
+
caretColorSuccess: string;
|
|
4751
4800
|
loadingColorWarning: string;
|
|
4752
4801
|
borderWarning: string;
|
|
4753
4802
|
borderHoverWarning: string;
|
|
@@ -6057,6 +6106,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6057
6106
|
borderFocus: string;
|
|
6058
6107
|
boxShadowFocus: string;
|
|
6059
6108
|
loadingColor: string;
|
|
6109
|
+
loadingColorSuccess: string;
|
|
6110
|
+
borderSuccess: string;
|
|
6111
|
+
borderHoverSuccess: string;
|
|
6112
|
+
colorFocusSuccess: string;
|
|
6113
|
+
borderFocusSuccess: string;
|
|
6114
|
+
boxShadowFocusSuccess: string;
|
|
6115
|
+
caretColorSuccess: string;
|
|
6060
6116
|
loadingColorWarning: string;
|
|
6061
6117
|
borderWarning: string;
|
|
6062
6118
|
borderHoverWarning: string;
|
|
@@ -6755,6 +6811,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6755
6811
|
borderFocus: string;
|
|
6756
6812
|
boxShadowFocus: string;
|
|
6757
6813
|
loadingColor: string;
|
|
6814
|
+
loadingColorSuccess: string;
|
|
6815
|
+
borderSuccess: string;
|
|
6816
|
+
borderHoverSuccess: string;
|
|
6817
|
+
colorFocusSuccess: string;
|
|
6818
|
+
borderFocusSuccess: string;
|
|
6819
|
+
boxShadowFocusSuccess: string;
|
|
6820
|
+
caretColorSuccess: string;
|
|
6758
6821
|
loadingColorWarning: string;
|
|
6759
6822
|
borderWarning: string;
|
|
6760
6823
|
borderHoverWarning: string;
|
|
@@ -7453,6 +7516,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7453
7516
|
borderFocus: string;
|
|
7454
7517
|
boxShadowFocus: string;
|
|
7455
7518
|
loadingColor: string;
|
|
7519
|
+
loadingColorSuccess: string;
|
|
7520
|
+
borderSuccess: string;
|
|
7521
|
+
borderHoverSuccess: string;
|
|
7522
|
+
colorFocusSuccess: string;
|
|
7523
|
+
borderFocusSuccess: string;
|
|
7524
|
+
boxShadowFocusSuccess: string;
|
|
7525
|
+
caretColorSuccess: string;
|
|
7456
7526
|
loadingColorWarning: string;
|
|
7457
7527
|
borderWarning: string;
|
|
7458
7528
|
borderHoverWarning: string;
|
|
@@ -126,6 +126,13 @@ export declare const chatListItemsProps: {
|
|
|
126
126
|
borderFocus: string;
|
|
127
127
|
boxShadowFocus: string;
|
|
128
128
|
loadingColor: string;
|
|
129
|
+
loadingColorSuccess: string;
|
|
130
|
+
borderSuccess: string;
|
|
131
|
+
borderHoverSuccess: string;
|
|
132
|
+
colorFocusSuccess: string;
|
|
133
|
+
borderFocusSuccess: string;
|
|
134
|
+
boxShadowFocusSuccess: string;
|
|
135
|
+
caretColorSuccess: string;
|
|
129
136
|
loadingColorWarning: string;
|
|
130
137
|
borderWarning: string;
|
|
131
138
|
borderHoverWarning: string;
|
|
@@ -824,6 +831,13 @@ export declare const chatListItemsProps: {
|
|
|
824
831
|
borderFocus: string;
|
|
825
832
|
boxShadowFocus: string;
|
|
826
833
|
loadingColor: string;
|
|
834
|
+
loadingColorSuccess: string;
|
|
835
|
+
borderSuccess: string;
|
|
836
|
+
borderHoverSuccess: string;
|
|
837
|
+
colorFocusSuccess: string;
|
|
838
|
+
borderFocusSuccess: string;
|
|
839
|
+
boxShadowFocusSuccess: string;
|
|
840
|
+
caretColorSuccess: string;
|
|
827
841
|
loadingColorWarning: string;
|
|
828
842
|
borderWarning: string;
|
|
829
843
|
borderHoverWarning: string;
|
|
@@ -1522,6 +1536,13 @@ export declare const chatListItemsProps: {
|
|
|
1522
1536
|
borderFocus: string;
|
|
1523
1537
|
boxShadowFocus: string;
|
|
1524
1538
|
loadingColor: string;
|
|
1539
|
+
loadingColorSuccess: string;
|
|
1540
|
+
borderSuccess: string;
|
|
1541
|
+
borderHoverSuccess: string;
|
|
1542
|
+
colorFocusSuccess: string;
|
|
1543
|
+
borderFocusSuccess: string;
|
|
1544
|
+
boxShadowFocusSuccess: string;
|
|
1545
|
+
caretColorSuccess: string;
|
|
1525
1546
|
loadingColorWarning: string;
|
|
1526
1547
|
borderWarning: string;
|
|
1527
1548
|
borderHoverWarning: string;
|
|
@@ -2267,6 +2288,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2267
2288
|
borderFocus: string;
|
|
2268
2289
|
boxShadowFocus: string;
|
|
2269
2290
|
loadingColor: string;
|
|
2291
|
+
loadingColorSuccess: string;
|
|
2292
|
+
borderSuccess: string;
|
|
2293
|
+
borderHoverSuccess: string;
|
|
2294
|
+
colorFocusSuccess: string;
|
|
2295
|
+
borderFocusSuccess: string;
|
|
2296
|
+
boxShadowFocusSuccess: string;
|
|
2297
|
+
caretColorSuccess: string;
|
|
2270
2298
|
loadingColorWarning: string;
|
|
2271
2299
|
borderWarning: string;
|
|
2272
2300
|
borderHoverWarning: string;
|
|
@@ -2965,6 +2993,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2965
2993
|
borderFocus: string;
|
|
2966
2994
|
boxShadowFocus: string;
|
|
2967
2995
|
loadingColor: string;
|
|
2996
|
+
loadingColorSuccess: string;
|
|
2997
|
+
borderSuccess: string;
|
|
2998
|
+
borderHoverSuccess: string;
|
|
2999
|
+
colorFocusSuccess: string;
|
|
3000
|
+
borderFocusSuccess: string;
|
|
3001
|
+
boxShadowFocusSuccess: string;
|
|
3002
|
+
caretColorSuccess: string;
|
|
2968
3003
|
loadingColorWarning: string;
|
|
2969
3004
|
borderWarning: string;
|
|
2970
3005
|
borderHoverWarning: string;
|
|
@@ -3663,6 +3698,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3663
3698
|
borderFocus: string;
|
|
3664
3699
|
boxShadowFocus: string;
|
|
3665
3700
|
loadingColor: string;
|
|
3701
|
+
loadingColorSuccess: string;
|
|
3702
|
+
borderSuccess: string;
|
|
3703
|
+
borderHoverSuccess: string;
|
|
3704
|
+
colorFocusSuccess: string;
|
|
3705
|
+
borderFocusSuccess: string;
|
|
3706
|
+
boxShadowFocusSuccess: string;
|
|
3707
|
+
caretColorSuccess: string;
|
|
3666
3708
|
loadingColorWarning: string;
|
|
3667
3709
|
borderWarning: string;
|
|
3668
3710
|
borderHoverWarning: string;
|
|
@@ -4366,6 +4408,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4366
4408
|
borderFocus: string;
|
|
4367
4409
|
boxShadowFocus: string;
|
|
4368
4410
|
loadingColor: string;
|
|
4411
|
+
loadingColorSuccess: string;
|
|
4412
|
+
borderSuccess: string;
|
|
4413
|
+
borderHoverSuccess: string;
|
|
4414
|
+
colorFocusSuccess: string;
|
|
4415
|
+
borderFocusSuccess: string;
|
|
4416
|
+
boxShadowFocusSuccess: string;
|
|
4417
|
+
caretColorSuccess: string;
|
|
4369
4418
|
loadingColorWarning: string;
|
|
4370
4419
|
borderWarning: string;
|
|
4371
4420
|
borderHoverWarning: string;
|
|
@@ -5321,6 +5370,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5321
5370
|
borderFocus: string;
|
|
5322
5371
|
boxShadowFocus: string;
|
|
5323
5372
|
loadingColor: string;
|
|
5373
|
+
loadingColorSuccess: string;
|
|
5374
|
+
borderSuccess: string;
|
|
5375
|
+
borderHoverSuccess: string;
|
|
5376
|
+
colorFocusSuccess: string;
|
|
5377
|
+
borderFocusSuccess: string;
|
|
5378
|
+
boxShadowFocusSuccess: string;
|
|
5379
|
+
caretColorSuccess: string;
|
|
5324
5380
|
loadingColorWarning: string;
|
|
5325
5381
|
borderWarning: string;
|
|
5326
5382
|
borderHoverWarning: string;
|
|
@@ -6276,6 +6332,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6276
6332
|
borderFocus: string;
|
|
6277
6333
|
boxShadowFocus: string;
|
|
6278
6334
|
loadingColor: string;
|
|
6335
|
+
loadingColorSuccess: string;
|
|
6336
|
+
borderSuccess: string;
|
|
6337
|
+
borderHoverSuccess: string;
|
|
6338
|
+
colorFocusSuccess: string;
|
|
6339
|
+
borderFocusSuccess: string;
|
|
6340
|
+
boxShadowFocusSuccess: string;
|
|
6341
|
+
caretColorSuccess: string;
|
|
6279
6342
|
loadingColorWarning: string;
|
|
6280
6343
|
borderWarning: string;
|
|
6281
6344
|
borderHoverWarning: string;
|
|
@@ -7299,6 +7362,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7299
7362
|
borderFocus: string;
|
|
7300
7363
|
boxShadowFocus: string;
|
|
7301
7364
|
loadingColor: string;
|
|
7365
|
+
loadingColorSuccess: string;
|
|
7366
|
+
borderSuccess: string;
|
|
7367
|
+
borderHoverSuccess: string;
|
|
7368
|
+
colorFocusSuccess: string;
|
|
7369
|
+
borderFocusSuccess: string;
|
|
7370
|
+
boxShadowFocusSuccess: string;
|
|
7371
|
+
caretColorSuccess: string;
|
|
7302
7372
|
loadingColorWarning: string;
|
|
7303
7373
|
borderWarning: string;
|
|
7304
7374
|
borderHoverWarning: string;
|
|
@@ -7997,6 +8067,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7997
8067
|
borderFocus: string;
|
|
7998
8068
|
boxShadowFocus: string;
|
|
7999
8069
|
loadingColor: string;
|
|
8070
|
+
loadingColorSuccess: string;
|
|
8071
|
+
borderSuccess: string;
|
|
8072
|
+
borderHoverSuccess: string;
|
|
8073
|
+
colorFocusSuccess: string;
|
|
8074
|
+
borderFocusSuccess: string;
|
|
8075
|
+
boxShadowFocusSuccess: string;
|
|
8076
|
+
caretColorSuccess: string;
|
|
8000
8077
|
loadingColorWarning: string;
|
|
8001
8078
|
borderWarning: string;
|
|
8002
8079
|
borderHoverWarning: string;
|
|
@@ -8695,6 +8772,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8695
8772
|
borderFocus: string;
|
|
8696
8773
|
boxShadowFocus: string;
|
|
8697
8774
|
loadingColor: string;
|
|
8775
|
+
loadingColorSuccess: string;
|
|
8776
|
+
borderSuccess: string;
|
|
8777
|
+
borderHoverSuccess: string;
|
|
8778
|
+
colorFocusSuccess: string;
|
|
8779
|
+
borderFocusSuccess: string;
|
|
8780
|
+
boxShadowFocusSuccess: string;
|
|
8781
|
+
caretColorSuccess: string;
|
|
8698
8782
|
loadingColorWarning: string;
|
|
8699
8783
|
borderWarning: string;
|
|
8700
8784
|
borderHoverWarning: string;
|
|
@@ -128,6 +128,13 @@ export declare const chatMessagesProps: {
|
|
|
128
128
|
borderFocus: string;
|
|
129
129
|
boxShadowFocus: string;
|
|
130
130
|
loadingColor: string;
|
|
131
|
+
loadingColorSuccess: string;
|
|
132
|
+
borderSuccess: string;
|
|
133
|
+
borderHoverSuccess: string;
|
|
134
|
+
colorFocusSuccess: string;
|
|
135
|
+
borderFocusSuccess: string;
|
|
136
|
+
boxShadowFocusSuccess: string;
|
|
137
|
+
caretColorSuccess: string;
|
|
131
138
|
loadingColorWarning: string;
|
|
132
139
|
borderWarning: string;
|
|
133
140
|
borderHoverWarning: string;
|
|
@@ -826,6 +833,13 @@ export declare const chatMessagesProps: {
|
|
|
826
833
|
borderFocus: string;
|
|
827
834
|
boxShadowFocus: string;
|
|
828
835
|
loadingColor: string;
|
|
836
|
+
loadingColorSuccess: string;
|
|
837
|
+
borderSuccess: string;
|
|
838
|
+
borderHoverSuccess: string;
|
|
839
|
+
colorFocusSuccess: string;
|
|
840
|
+
borderFocusSuccess: string;
|
|
841
|
+
boxShadowFocusSuccess: string;
|
|
842
|
+
caretColorSuccess: string;
|
|
829
843
|
loadingColorWarning: string;
|
|
830
844
|
borderWarning: string;
|
|
831
845
|
borderHoverWarning: string;
|
|
@@ -1524,6 +1538,13 @@ export declare const chatMessagesProps: {
|
|
|
1524
1538
|
borderFocus: string;
|
|
1525
1539
|
boxShadowFocus: string;
|
|
1526
1540
|
loadingColor: string;
|
|
1541
|
+
loadingColorSuccess: string;
|
|
1542
|
+
borderSuccess: string;
|
|
1543
|
+
borderHoverSuccess: string;
|
|
1544
|
+
colorFocusSuccess: string;
|
|
1545
|
+
borderFocusSuccess: string;
|
|
1546
|
+
boxShadowFocusSuccess: string;
|
|
1547
|
+
caretColorSuccess: string;
|
|
1527
1548
|
loadingColorWarning: string;
|
|
1528
1549
|
borderWarning: string;
|
|
1529
1550
|
borderHoverWarning: string;
|
|
@@ -2273,6 +2294,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2273
2294
|
borderFocus: string;
|
|
2274
2295
|
boxShadowFocus: string;
|
|
2275
2296
|
loadingColor: string;
|
|
2297
|
+
loadingColorSuccess: string;
|
|
2298
|
+
borderSuccess: string;
|
|
2299
|
+
borderHoverSuccess: string;
|
|
2300
|
+
colorFocusSuccess: string;
|
|
2301
|
+
borderFocusSuccess: string;
|
|
2302
|
+
boxShadowFocusSuccess: string;
|
|
2303
|
+
caretColorSuccess: string;
|
|
2276
2304
|
loadingColorWarning: string;
|
|
2277
2305
|
borderWarning: string;
|
|
2278
2306
|
borderHoverWarning: string;
|
|
@@ -2971,6 +2999,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2971
2999
|
borderFocus: string;
|
|
2972
3000
|
boxShadowFocus: string;
|
|
2973
3001
|
loadingColor: string;
|
|
3002
|
+
loadingColorSuccess: string;
|
|
3003
|
+
borderSuccess: string;
|
|
3004
|
+
borderHoverSuccess: string;
|
|
3005
|
+
colorFocusSuccess: string;
|
|
3006
|
+
borderFocusSuccess: string;
|
|
3007
|
+
boxShadowFocusSuccess: string;
|
|
3008
|
+
caretColorSuccess: string;
|
|
2974
3009
|
loadingColorWarning: string;
|
|
2975
3010
|
borderWarning: string;
|
|
2976
3011
|
borderHoverWarning: string;
|
|
@@ -3669,6 +3704,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3669
3704
|
borderFocus: string;
|
|
3670
3705
|
boxShadowFocus: string;
|
|
3671
3706
|
loadingColor: string;
|
|
3707
|
+
loadingColorSuccess: string;
|
|
3708
|
+
borderSuccess: string;
|
|
3709
|
+
borderHoverSuccess: string;
|
|
3710
|
+
colorFocusSuccess: string;
|
|
3711
|
+
borderFocusSuccess: string;
|
|
3712
|
+
boxShadowFocusSuccess: string;
|
|
3713
|
+
caretColorSuccess: string;
|
|
3672
3714
|
loadingColorWarning: string;
|
|
3673
3715
|
borderWarning: string;
|
|
3674
3716
|
borderHoverWarning: string;
|
|
@@ -4372,6 +4414,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4372
4414
|
borderFocus: string;
|
|
4373
4415
|
boxShadowFocus: string;
|
|
4374
4416
|
loadingColor: string;
|
|
4417
|
+
loadingColorSuccess: string;
|
|
4418
|
+
borderSuccess: string;
|
|
4419
|
+
borderHoverSuccess: string;
|
|
4420
|
+
colorFocusSuccess: string;
|
|
4421
|
+
borderFocusSuccess: string;
|
|
4422
|
+
boxShadowFocusSuccess: string;
|
|
4423
|
+
caretColorSuccess: string;
|
|
4375
4424
|
loadingColorWarning: string;
|
|
4376
4425
|
borderWarning: string;
|
|
4377
4426
|
borderHoverWarning: string;
|
|
@@ -5327,6 +5376,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5327
5376
|
borderFocus: string;
|
|
5328
5377
|
boxShadowFocus: string;
|
|
5329
5378
|
loadingColor: string;
|
|
5379
|
+
loadingColorSuccess: string;
|
|
5380
|
+
borderSuccess: string;
|
|
5381
|
+
borderHoverSuccess: string;
|
|
5382
|
+
colorFocusSuccess: string;
|
|
5383
|
+
borderFocusSuccess: string;
|
|
5384
|
+
boxShadowFocusSuccess: string;
|
|
5385
|
+
caretColorSuccess: string;
|
|
5330
5386
|
loadingColorWarning: string;
|
|
5331
5387
|
borderWarning: string;
|
|
5332
5388
|
borderHoverWarning: string;
|
|
@@ -6282,6 +6338,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6282
6338
|
borderFocus: string;
|
|
6283
6339
|
boxShadowFocus: string;
|
|
6284
6340
|
loadingColor: string;
|
|
6341
|
+
loadingColorSuccess: string;
|
|
6342
|
+
borderSuccess: string;
|
|
6343
|
+
borderHoverSuccess: string;
|
|
6344
|
+
colorFocusSuccess: string;
|
|
6345
|
+
borderFocusSuccess: string;
|
|
6346
|
+
boxShadowFocusSuccess: string;
|
|
6347
|
+
caretColorSuccess: string;
|
|
6285
6348
|
loadingColorWarning: string;
|
|
6286
6349
|
borderWarning: string;
|
|
6287
6350
|
borderHoverWarning: string;
|
|
@@ -7324,6 +7387,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7324
7387
|
borderFocus: string;
|
|
7325
7388
|
boxShadowFocus: string;
|
|
7326
7389
|
loadingColor: string;
|
|
7390
|
+
loadingColorSuccess: string;
|
|
7391
|
+
borderSuccess: string;
|
|
7392
|
+
borderHoverSuccess: string;
|
|
7393
|
+
colorFocusSuccess: string;
|
|
7394
|
+
borderFocusSuccess: string;
|
|
7395
|
+
boxShadowFocusSuccess: string;
|
|
7396
|
+
caretColorSuccess: string;
|
|
7327
7397
|
loadingColorWarning: string;
|
|
7328
7398
|
borderWarning: string;
|
|
7329
7399
|
borderHoverWarning: string;
|
|
@@ -8022,6 +8092,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8022
8092
|
borderFocus: string;
|
|
8023
8093
|
boxShadowFocus: string;
|
|
8024
8094
|
loadingColor: string;
|
|
8095
|
+
loadingColorSuccess: string;
|
|
8096
|
+
borderSuccess: string;
|
|
8097
|
+
borderHoverSuccess: string;
|
|
8098
|
+
colorFocusSuccess: string;
|
|
8099
|
+
borderFocusSuccess: string;
|
|
8100
|
+
boxShadowFocusSuccess: string;
|
|
8101
|
+
caretColorSuccess: string;
|
|
8025
8102
|
loadingColorWarning: string;
|
|
8026
8103
|
borderWarning: string;
|
|
8027
8104
|
borderHoverWarning: string;
|
|
@@ -8720,6 +8797,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8720
8797
|
borderFocus: string;
|
|
8721
8798
|
boxShadowFocus: string;
|
|
8722
8799
|
loadingColor: string;
|
|
8800
|
+
loadingColorSuccess: string;
|
|
8801
|
+
borderSuccess: string;
|
|
8802
|
+
borderHoverSuccess: string;
|
|
8803
|
+
colorFocusSuccess: string;
|
|
8804
|
+
borderFocusSuccess: string;
|
|
8805
|
+
boxShadowFocusSuccess: string;
|
|
8806
|
+
caretColorSuccess: string;
|
|
8723
8807
|
loadingColorWarning: string;
|
|
8724
8808
|
borderWarning: string;
|
|
8725
8809
|
borderHoverWarning: string;
|