@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
|
@@ -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;
|
|
@@ -178,6 +178,13 @@ declare const transferLight: import("../../_mixins").Theme<"Transfer", {
|
|
|
178
178
|
borderFocus: string;
|
|
179
179
|
boxShadowFocus: string;
|
|
180
180
|
loadingColor: string;
|
|
181
|
+
loadingColorSuccess: string;
|
|
182
|
+
borderSuccess: string;
|
|
183
|
+
borderHoverSuccess: string;
|
|
184
|
+
colorFocusSuccess: string;
|
|
185
|
+
borderFocusSuccess: string;
|
|
186
|
+
boxShadowFocusSuccess: string;
|
|
187
|
+
caretColorSuccess: string;
|
|
181
188
|
loadingColorWarning: string;
|
|
182
189
|
borderWarning: string;
|
|
183
190
|
borderHoverWarning: string;
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.0.0
|
|
1
|
+
declare const _default: "2.0.0";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uzum-tech/ui",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "KapitalLab",
|
|
@@ -87,8 +87,14 @@
|
|
|
87
87
|
},
|
|
88
88
|
"web-types": "./web-types.json",
|
|
89
89
|
"peerDependencies": {
|
|
90
|
+
"@uzum-tech/icons": "^1.0.0",
|
|
90
91
|
"vue": "^3.0.0"
|
|
91
92
|
},
|
|
93
|
+
"peerDependenciesMeta": {
|
|
94
|
+
"@uzum-tech/icons": {
|
|
95
|
+
"optional": true
|
|
96
|
+
}
|
|
97
|
+
},
|
|
92
98
|
"dependencies": {
|
|
93
99
|
"@css-render/plugin-bem": "0.15.14",
|
|
94
100
|
"@css-render/vue3-ssr": "0.15.14",
|
|
@@ -131,6 +137,7 @@
|
|
|
131
137
|
"@types/fs-extra": "11.0.4",
|
|
132
138
|
"@types/node": "24.0.12",
|
|
133
139
|
"@types/superagent": "8.1.9",
|
|
140
|
+
"@uzum-tech/icons": "1.0.0",
|
|
134
141
|
"@vicons/fluent": "0.13.0",
|
|
135
142
|
"@vicons/ionicons4": "0.13.0",
|
|
136
143
|
"@vicons/ionicons5": "0.13.0",
|
package/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@uzum-tech/ui",
|
|
5
|
-
"version": "2.0.0
|
|
5
|
+
"version": "2.0.0",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"contributions": {
|
|
8
8
|
"html": {
|
|
@@ -7598,6 +7598,16 @@
|
|
|
7598
7598
|
"description-sections": {
|
|
7599
7599
|
"since": "2.24.6"
|
|
7600
7600
|
}
|
|
7601
|
+
},
|
|
7602
|
+
{
|
|
7603
|
+
"name": "name",
|
|
7604
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/icon",
|
|
7605
|
+
"type": "string"
|
|
7606
|
+
},
|
|
7607
|
+
{
|
|
7608
|
+
"name": "pack",
|
|
7609
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/icon",
|
|
7610
|
+
"type": "string"
|
|
7601
7611
|
}
|
|
7602
7612
|
],
|
|
7603
7613
|
"js": {
|
|
@@ -9218,6 +9228,13 @@
|
|
|
9218
9228
|
"description": "Hide the copy button in the header.",
|
|
9219
9229
|
"default": "false"
|
|
9220
9230
|
},
|
|
9231
|
+
{
|
|
9232
|
+
"name": "hide-header-actions",
|
|
9233
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/mapping-card",
|
|
9234
|
+
"type": "boolean",
|
|
9235
|
+
"description": "Hide the entire header actions group (switch, edit, delete buttons).",
|
|
9236
|
+
"default": "false"
|
|
9237
|
+
},
|
|
9221
9238
|
{
|
|
9222
9239
|
"name": "copy",
|
|
9223
9240
|
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/mapping-card",
|