@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
|
@@ -109,6 +109,13 @@ export declare const colorPickerProps: {
|
|
|
109
109
|
borderFocus: string;
|
|
110
110
|
boxShadowFocus: string;
|
|
111
111
|
loadingColor: string;
|
|
112
|
+
loadingColorSuccess: string;
|
|
113
|
+
borderSuccess: string;
|
|
114
|
+
borderHoverSuccess: string;
|
|
115
|
+
colorFocusSuccess: string;
|
|
116
|
+
borderFocusSuccess: string;
|
|
117
|
+
boxShadowFocusSuccess: string;
|
|
118
|
+
caretColorSuccess: string;
|
|
112
119
|
loadingColorWarning: string;
|
|
113
120
|
borderWarning: string;
|
|
114
121
|
borderHoverWarning: string;
|
|
@@ -413,6 +420,13 @@ export declare const colorPickerProps: {
|
|
|
413
420
|
borderFocus: string;
|
|
414
421
|
boxShadowFocus: string;
|
|
415
422
|
loadingColor: string;
|
|
423
|
+
loadingColorSuccess: string;
|
|
424
|
+
borderSuccess: string;
|
|
425
|
+
borderHoverSuccess: string;
|
|
426
|
+
colorFocusSuccess: string;
|
|
427
|
+
borderFocusSuccess: string;
|
|
428
|
+
boxShadowFocusSuccess: string;
|
|
429
|
+
caretColorSuccess: string;
|
|
416
430
|
loadingColorWarning: string;
|
|
417
431
|
borderWarning: string;
|
|
418
432
|
borderHoverWarning: string;
|
|
@@ -717,6 +731,13 @@ export declare const colorPickerProps: {
|
|
|
717
731
|
borderFocus: string;
|
|
718
732
|
boxShadowFocus: string;
|
|
719
733
|
loadingColor: string;
|
|
734
|
+
loadingColorSuccess: string;
|
|
735
|
+
borderSuccess: string;
|
|
736
|
+
borderHoverSuccess: string;
|
|
737
|
+
colorFocusSuccess: string;
|
|
738
|
+
borderFocusSuccess: string;
|
|
739
|
+
boxShadowFocusSuccess: string;
|
|
740
|
+
caretColorSuccess: string;
|
|
720
741
|
loadingColorWarning: string;
|
|
721
742
|
borderWarning: string;
|
|
722
743
|
borderHoverWarning: string;
|
|
@@ -1077,6 +1098,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1077
1098
|
borderFocus: string;
|
|
1078
1099
|
boxShadowFocus: string;
|
|
1079
1100
|
loadingColor: string;
|
|
1101
|
+
loadingColorSuccess: string;
|
|
1102
|
+
borderSuccess: string;
|
|
1103
|
+
borderHoverSuccess: string;
|
|
1104
|
+
colorFocusSuccess: string;
|
|
1105
|
+
borderFocusSuccess: string;
|
|
1106
|
+
boxShadowFocusSuccess: string;
|
|
1107
|
+
caretColorSuccess: string;
|
|
1080
1108
|
loadingColorWarning: string;
|
|
1081
1109
|
borderWarning: string;
|
|
1082
1110
|
borderHoverWarning: string;
|
|
@@ -1381,6 +1409,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1381
1409
|
borderFocus: string;
|
|
1382
1410
|
boxShadowFocus: string;
|
|
1383
1411
|
loadingColor: string;
|
|
1412
|
+
loadingColorSuccess: string;
|
|
1413
|
+
borderSuccess: string;
|
|
1414
|
+
borderHoverSuccess: string;
|
|
1415
|
+
colorFocusSuccess: string;
|
|
1416
|
+
borderFocusSuccess: string;
|
|
1417
|
+
boxShadowFocusSuccess: string;
|
|
1418
|
+
caretColorSuccess: string;
|
|
1384
1419
|
loadingColorWarning: string;
|
|
1385
1420
|
borderWarning: string;
|
|
1386
1421
|
borderHoverWarning: string;
|
|
@@ -1685,6 +1720,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1685
1720
|
borderFocus: string;
|
|
1686
1721
|
boxShadowFocus: string;
|
|
1687
1722
|
loadingColor: string;
|
|
1723
|
+
loadingColorSuccess: string;
|
|
1724
|
+
borderSuccess: string;
|
|
1725
|
+
borderHoverSuccess: string;
|
|
1726
|
+
colorFocusSuccess: string;
|
|
1727
|
+
borderFocusSuccess: string;
|
|
1728
|
+
boxShadowFocusSuccess: string;
|
|
1729
|
+
caretColorSuccess: string;
|
|
1688
1730
|
loadingColorWarning: string;
|
|
1689
1731
|
borderWarning: string;
|
|
1690
1732
|
borderHoverWarning: string;
|
|
@@ -2065,6 +2107,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2065
2107
|
borderFocus: string;
|
|
2066
2108
|
boxShadowFocus: string;
|
|
2067
2109
|
loadingColor: string;
|
|
2110
|
+
loadingColorSuccess: string;
|
|
2111
|
+
borderSuccess: string;
|
|
2112
|
+
borderHoverSuccess: string;
|
|
2113
|
+
colorFocusSuccess: string;
|
|
2114
|
+
borderFocusSuccess: string;
|
|
2115
|
+
boxShadowFocusSuccess: string;
|
|
2116
|
+
caretColorSuccess: string;
|
|
2068
2117
|
loadingColorWarning: string;
|
|
2069
2118
|
borderWarning: string;
|
|
2070
2119
|
borderHoverWarning: string;
|
|
@@ -2369,6 +2418,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2369
2418
|
borderFocus: string;
|
|
2370
2419
|
boxShadowFocus: string;
|
|
2371
2420
|
loadingColor: string;
|
|
2421
|
+
loadingColorSuccess: string;
|
|
2422
|
+
borderSuccess: string;
|
|
2423
|
+
borderHoverSuccess: string;
|
|
2424
|
+
colorFocusSuccess: string;
|
|
2425
|
+
borderFocusSuccess: string;
|
|
2426
|
+
boxShadowFocusSuccess: string;
|
|
2427
|
+
caretColorSuccess: string;
|
|
2372
2428
|
loadingColorWarning: string;
|
|
2373
2429
|
borderWarning: string;
|
|
2374
2430
|
borderHoverWarning: string;
|
|
@@ -2673,6 +2729,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2673
2729
|
borderFocus: string;
|
|
2674
2730
|
boxShadowFocus: string;
|
|
2675
2731
|
loadingColor: string;
|
|
2732
|
+
loadingColorSuccess: string;
|
|
2733
|
+
borderSuccess: string;
|
|
2734
|
+
borderHoverSuccess: string;
|
|
2735
|
+
colorFocusSuccess: string;
|
|
2736
|
+
borderFocusSuccess: string;
|
|
2737
|
+
boxShadowFocusSuccess: string;
|
|
2738
|
+
caretColorSuccess: string;
|
|
2676
2739
|
loadingColorWarning: string;
|
|
2677
2740
|
borderWarning: string;
|
|
2678
2741
|
borderHoverWarning: string;
|
|
@@ -80,6 +80,13 @@ declare const colorPickerLight: import("../../_mixins").Theme<"ColorPicker", {
|
|
|
80
80
|
borderFocus: string;
|
|
81
81
|
boxShadowFocus: string;
|
|
82
82
|
loadingColor: string;
|
|
83
|
+
loadingColorSuccess: string;
|
|
84
|
+
borderSuccess: string;
|
|
85
|
+
borderHoverSuccess: string;
|
|
86
|
+
colorFocusSuccess: string;
|
|
87
|
+
borderFocusSuccess: string;
|
|
88
|
+
boxShadowFocusSuccess: string;
|
|
89
|
+
caretColorSuccess: string;
|
|
83
90
|
loadingColorWarning: string;
|
|
84
91
|
borderWarning: string;
|
|
85
92
|
borderHoverWarning: string;
|