@uzum-tech/ui 1.12.21 → 1.13.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 +2789 -510
- package/dist/index.prod.js +4 -4
- package/es/_styles/common/dark.js +1 -1
- package/es/_styles/common/light.d.ts +1 -0
- package/es/_styles/common/light.js +1 -1
- package/es/chat/src/ChatMessages.js +6 -1
- package/es/chat/src/styles/index.cssr.js +5 -1
- package/es/components.d.ts +1 -0
- package/es/components.js +1 -0
- package/es/config-provider/src/internal-interface.d.ts +3 -0
- package/es/date-picker-v2/index.d.ts +5 -0
- package/es/date-picker-v2/index.js +2 -0
- package/es/date-picker-v2/src/DatePickerV2.d.ts +4765 -0
- package/es/date-picker-v2/src/DatePickerV2.js +750 -0
- package/es/date-picker-v2/src/composables/useCalendarScroll.d.ts +1133 -0
- package/es/date-picker-v2/src/composables/useCalendarScroll.js +61 -0
- package/es/date-picker-v2/src/config.d.ts +14 -0
- package/es/date-picker-v2/src/config.js +34 -0
- package/es/date-picker-v2/src/interface.d.ts +42 -0
- package/es/date-picker-v2/src/interface.js +1 -0
- package/es/date-picker-v2/src/panel/CalendarPanel.d.ts +1222 -0
- package/es/date-picker-v2/src/panel/CalendarPanel.js +186 -0
- package/es/date-picker-v2/src/panel/CalendarRangePanel.d.ts +1246 -0
- package/es/date-picker-v2/src/panel/CalendarRangePanel.js +205 -0
- package/es/date-picker-v2/src/styles/index.cssr.d.ts +2 -0
- package/es/date-picker-v2/src/styles/index.cssr.js +190 -0
- package/es/date-picker-v2/src/utils.d.ts +12 -0
- package/es/date-picker-v2/src/utils.js +92 -0
- package/es/date-picker-v2/styles/dark.d.ts +447 -0
- package/es/date-picker-v2/styles/dark.js +19 -0
- package/es/date-picker-v2/styles/index.d.ts +3 -0
- package/es/date-picker-v2/styles/index.js +2 -0
- package/es/date-picker-v2/styles/light.d.ts +477 -0
- package/es/date-picker-v2/styles/light.js +56 -0
- package/es/dialog/src/DialogProvider.d.ts +2 -0
- package/es/header/src/Header.js +4 -1
- package/es/header/src/HeaderSearchDesktop.d.ts +12 -0
- package/es/header/src/HeaderSearchDesktop.js +21 -4
- package/es/header/src/HeaderSearchMobile.d.ts +12 -0
- package/es/header/src/HeaderSearchMobile.js +8 -2
- package/es/header/src/mobile/HeaderMobile.js +18 -3
- package/es/locales/common/enUS.js +1 -1
- package/es/theme-editor/src/ThemeEditor.d.ts +1 -0
- package/es/themes/dark.js +2 -0
- package/es/themes/light.js +2 -0
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_styles/common/dark.js +1 -1
- package/lib/_styles/common/light.d.ts +1 -0
- package/lib/_styles/common/light.js +1 -1
- package/lib/chat/src/ChatMessages.js +6 -1
- package/lib/chat/src/styles/index.cssr.js +5 -1
- package/lib/components.d.ts +1 -0
- package/lib/components.js +1 -0
- package/lib/config-provider/src/internal-interface.d.ts +3 -0
- package/lib/date-picker-v2/index.d.ts +5 -0
- package/lib/date-picker-v2/index.js +11 -0
- package/lib/date-picker-v2/src/DatePickerV2.d.ts +4765 -0
- package/lib/date-picker-v2/src/DatePickerV2.js +756 -0
- package/lib/date-picker-v2/src/composables/useCalendarScroll.d.ts +1133 -0
- package/lib/date-picker-v2/src/composables/useCalendarScroll.js +64 -0
- package/lib/date-picker-v2/src/config.d.ts +14 -0
- package/lib/date-picker-v2/src/config.js +37 -0
- package/lib/date-picker-v2/src/interface.d.ts +42 -0
- package/lib/date-picker-v2/src/interface.js +4 -0
- package/lib/date-picker-v2/src/panel/CalendarPanel.d.ts +1222 -0
- package/lib/date-picker-v2/src/panel/CalendarPanel.js +188 -0
- package/lib/date-picker-v2/src/panel/CalendarRangePanel.d.ts +1246 -0
- package/lib/date-picker-v2/src/panel/CalendarRangePanel.js +207 -0
- package/lib/date-picker-v2/src/styles/index.cssr.d.ts +2 -0
- package/lib/date-picker-v2/src/styles/index.cssr.js +195 -0
- package/lib/date-picker-v2/src/utils.d.ts +12 -0
- package/lib/date-picker-v2/src/utils.js +101 -0
- package/lib/date-picker-v2/styles/dark.d.ts +447 -0
- package/lib/date-picker-v2/styles/dark.js +21 -0
- package/lib/date-picker-v2/styles/index.d.ts +3 -0
- package/lib/date-picker-v2/styles/index.js +10 -0
- package/lib/date-picker-v2/styles/light.d.ts +477 -0
- package/lib/date-picker-v2/styles/light.js +60 -0
- package/lib/dialog/src/DialogProvider.d.ts +2 -0
- package/lib/header/src/Header.js +4 -1
- package/lib/header/src/HeaderSearchDesktop.d.ts +12 -0
- package/lib/header/src/HeaderSearchDesktop.js +20 -3
- package/lib/header/src/HeaderSearchMobile.d.ts +12 -0
- package/lib/header/src/HeaderSearchMobile.js +7 -1
- package/lib/header/src/mobile/HeaderMobile.js +18 -3
- package/lib/locales/common/enUS.js +1 -1
- package/lib/theme-editor/src/ThemeEditor.d.ts +1 -0
- package/lib/themes/dark.js +2 -0
- package/lib/themes/light.js +2 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +1 -0
- package/web-types.json +161 -1
|
@@ -47,6 +47,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
47
47
|
const searchValue = (0, vue_1.ref)('');
|
|
48
48
|
const searchResults = (0, vue_1.ref)([]);
|
|
49
49
|
const searchLoading = (0, vue_1.ref)(false);
|
|
50
|
+
const inputInstRef = (0, vue_1.ref)(null);
|
|
50
51
|
const placeholder = (0, vue_1.computed)(() => localeRef.value.searchPlaceholder);
|
|
51
52
|
const handleSearch = () => __awaiter(this, void 0, void 0, function* () {
|
|
52
53
|
const query = searchValue.value.trim();
|
|
@@ -90,11 +91,16 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
90
91
|
void handleSearch();
|
|
91
92
|
}, constants_1.SEARCH_DEBOUNCE_MS);
|
|
92
93
|
});
|
|
94
|
+
(0, vue_1.onMounted)(() => {
|
|
95
|
+
var _a;
|
|
96
|
+
(_a = inputInstRef.value) === null || _a === void 0 ? void 0 : _a.focus();
|
|
97
|
+
});
|
|
93
98
|
return {
|
|
94
99
|
placeholder,
|
|
95
100
|
searchValue,
|
|
96
101
|
searchResults,
|
|
97
102
|
searchLoading,
|
|
103
|
+
inputInstRef,
|
|
98
104
|
handleSearchInput,
|
|
99
105
|
handleSearch,
|
|
100
106
|
handleClose,
|
|
@@ -112,7 +118,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
112
118
|
(0, vue_1.h)(button_1.UButton, { text: true, class: `${blockClass}__back`, onClick: this.handleClose }, () => (0, vue_1.h)(icon_1.UIcon, { size: 24 }, () => (0, vue_1.h)(icons_1.ChevronLeftIcon, null))),
|
|
113
119
|
(0, vue_1.h)("div", { class: `${blockClass}__input-wrapper` },
|
|
114
120
|
(0, vue_1.h)(icon_1.UIcon, { size: 20, class: `${blockClass}__input-icon` }, () => (0, vue_1.h)(icons_1.SearchIcon, null)),
|
|
115
|
-
(0, vue_1.h)(input_1.UInput, { value: this.searchValue, placeholder: this.placeholder, onKeyup: (e) => {
|
|
121
|
+
(0, vue_1.h)(input_1.UInput, { ref: "inputInstRef", value: this.searchValue, placeholder: this.placeholder, onKeyup: (e) => {
|
|
116
122
|
if (e.key === 'Enter') {
|
|
117
123
|
void this.handleSearch();
|
|
118
124
|
}
|
|
@@ -200,6 +200,21 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
200
200
|
(0, utils_1.renderBadge)(option, `${blockClass}__badge`)),
|
|
201
201
|
isExpandable && isExpanded && option.children && ((0, vue_1.h)("div", { class: `${mobileMenuClass}__children` }, option.children.map((child, index) => renderGroupItem(child, item.key, index))))));
|
|
202
202
|
};
|
|
203
|
+
const renderSearchAction = () => {
|
|
204
|
+
if (this.$slots.search)
|
|
205
|
+
return this.$slots.search();
|
|
206
|
+
return ((0, vue_1.h)(button_1.UButton, { text: true, onClick: this.onSearchClick }, () => (0, vue_1.h)(icon_1.UIcon, { size: 24 }, () => (0, vue_1.h)(icons_1.SearchIcon, null))));
|
|
207
|
+
};
|
|
208
|
+
const renderPreviewAction = () => {
|
|
209
|
+
if (this.$slots.preview)
|
|
210
|
+
return this.$slots.preview();
|
|
211
|
+
return ((0, vue_1.h)(button_1.UButton, { text: true, onClick: this.onPreview }, () => (0, vue_1.h)(icon_1.UIcon, { size: 24 }, () => (0, vue_1.h)(icons_1.EyeIcon, null))));
|
|
212
|
+
};
|
|
213
|
+
const renderLogoutAction = () => {
|
|
214
|
+
if (this.$slots.logout)
|
|
215
|
+
return this.$slots.logout();
|
|
216
|
+
return ((0, vue_1.h)(button_1.UButton, { text: true, onClick: this.onLogout }, () => (0, vue_1.h)(icon_1.UIcon, { size: 24 }, () => (0, vue_1.h)(icons_1.LogoutIcon, null))));
|
|
217
|
+
};
|
|
203
218
|
const mobileMenuContent = ((0, vue_1.h)("div", { class: mobileMenuClass, style: this.cssVars },
|
|
204
219
|
(0, vue_1.h)("div", { class: `${mobileMenuClass}__header` },
|
|
205
220
|
this.$slots.actions ? ((0, vue_1.h)("div", { class: `${mobileMenuClass}__actions` }, this.$slots.actions())) : this.showHeaderActions ? ((0, vue_1.h)("div", { class: `${mobileMenuClass}__actions` },
|
|
@@ -219,9 +234,9 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
219
234
|
}),
|
|
220
235
|
(0, vue_1.h)(flex_1.UFlex, { size: 24 }, {
|
|
221
236
|
default: () => ((0, vue_1.h)(vue_1.Fragment, null,
|
|
222
|
-
(
|
|
223
|
-
(
|
|
224
|
-
(
|
|
237
|
+
renderSearchAction(),
|
|
238
|
+
renderPreviewAction(),
|
|
239
|
+
renderLogoutAction()))
|
|
225
240
|
}))) : null,
|
|
226
241
|
(0, vue_1.h)(button_1.UButton, { text: true, class: `${mobileMenuClass}__close`, onClick: this.onClose }, () => (0, vue_1.h)(icon_1.UIcon, { size: 24 }, () => (0, vue_1.h)(icons_1.CloseIcon, null)))),
|
|
227
242
|
(0, vue_1.h)("div", { class: `${mobileMenuClass}__body` },
|
package/lib/themes/dark.js
CHANGED
|
@@ -100,6 +100,7 @@ const dark_1 = __importDefault(require("../_internal/safe-top-scrollbar/styles/d
|
|
|
100
100
|
const styles_92 = require("../header/styles");
|
|
101
101
|
const styles_93 = require("../icon-bar/styles");
|
|
102
102
|
const styles_94 = require("../qr-code/styles");
|
|
103
|
+
const components_1 = require("../components");
|
|
103
104
|
exports.darkTheme = {
|
|
104
105
|
name: 'dark',
|
|
105
106
|
common: common_1.commonDark,
|
|
@@ -127,6 +128,7 @@ exports.darkTheme = {
|
|
|
127
128
|
ColorPicker: styles_20.colorPickerDark,
|
|
128
129
|
DataTable: styles_21.dataTableDark,
|
|
129
130
|
DatePicker: styles_22.datePickerDark,
|
|
131
|
+
DatePickerV2: components_1.datePickerV2Dark,
|
|
130
132
|
Descriptions: styles_23.descriptionsDark,
|
|
131
133
|
Dialog: styles_24.dialogDark,
|
|
132
134
|
Divider: styles_25.dividerDark,
|
package/lib/themes/light.js
CHANGED
|
@@ -102,6 +102,7 @@ const styles_92 = require("../qr-code/styles");
|
|
|
102
102
|
const light_1 = __importDefault(require("../_internal/safe-top-scrollbar/styles/light"));
|
|
103
103
|
const styles_93 = require("../header/styles");
|
|
104
104
|
const styles_94 = require("../icon-bar/styles");
|
|
105
|
+
const components_1 = require("../components");
|
|
105
106
|
exports.lightTheme = {
|
|
106
107
|
name: 'light',
|
|
107
108
|
common: common_1.commonLight,
|
|
@@ -129,6 +130,7 @@ exports.lightTheme = {
|
|
|
129
130
|
ColorPicker: styles_20.colorPickerLight,
|
|
130
131
|
DataTable: styles_21.dataTableLight,
|
|
131
132
|
DatePicker: styles_22.datePickerLight,
|
|
133
|
+
DatePickerV2: components_1.datePickerV2Light,
|
|
132
134
|
Descriptions: styles_23.descriptionsLight,
|
|
133
135
|
Dialog: styles_24.dialogLight,
|
|
134
136
|
Divider: styles_25.dividerLight,
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.
|
|
1
|
+
declare const _default: "1.13.0";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
package/volar.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ declare module 'vue' {
|
|
|
33
33
|
UCountdown: typeof import('@uzum-tech/ui')['UCountdown']
|
|
34
34
|
UDataTable: typeof import('@uzum-tech/ui')['UDataTable']
|
|
35
35
|
UDatePicker: typeof import('@uzum-tech/ui')['UDatePicker']
|
|
36
|
+
UDatePickerV2: typeof import('@uzum-tech/ui')['UDatePickerV2']
|
|
36
37
|
UDescriptions: typeof import('@uzum-tech/ui')['UDescriptions']
|
|
37
38
|
UDescriptionsItem: typeof import('@uzum-tech/ui')['UDescriptionsItem']
|
|
38
39
|
UDialog: typeof import('@uzum-tech/ui')['UDialog']
|
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": "1.
|
|
5
|
+
"version": "1.13.0",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"contributions": {
|
|
8
8
|
"html": {
|
|
@@ -4468,6 +4468,12 @@
|
|
|
4468
4468
|
"description-sections": {
|
|
4469
4469
|
"since": "2.29.0"
|
|
4470
4470
|
}
|
|
4471
|
+
},
|
|
4472
|
+
{
|
|
4473
|
+
"name": "trigger",
|
|
4474
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4475
|
+
"type": "{ open: () => void, value: string }",
|
|
4476
|
+
"description": "Custom trigger"
|
|
4471
4477
|
}
|
|
4472
4478
|
],
|
|
4473
4479
|
"attributes": [],
|
|
@@ -4722,6 +4728,145 @@
|
|
|
4722
4728
|
]
|
|
4723
4729
|
}
|
|
4724
4730
|
},
|
|
4731
|
+
{
|
|
4732
|
+
"name": "UDatePickerV2",
|
|
4733
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4734
|
+
"source": {
|
|
4735
|
+
"symbol": "UDatePickerV2"
|
|
4736
|
+
},
|
|
4737
|
+
"slots": [],
|
|
4738
|
+
"attributes": [],
|
|
4739
|
+
"props": [
|
|
4740
|
+
{
|
|
4741
|
+
"name": "to",
|
|
4742
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4743
|
+
"type": "string | object | boolean"
|
|
4744
|
+
},
|
|
4745
|
+
{
|
|
4746
|
+
"name": "type",
|
|
4747
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4748
|
+
"type": "string"
|
|
4749
|
+
},
|
|
4750
|
+
{
|
|
4751
|
+
"name": "bordered",
|
|
4752
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4753
|
+
"type": "boolean"
|
|
4754
|
+
},
|
|
4755
|
+
{
|
|
4756
|
+
"name": "round",
|
|
4757
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4758
|
+
"type": "boolean"
|
|
4759
|
+
},
|
|
4760
|
+
{
|
|
4761
|
+
"name": "clearable",
|
|
4762
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4763
|
+
"type": "boolean"
|
|
4764
|
+
},
|
|
4765
|
+
{
|
|
4766
|
+
"name": "default-value",
|
|
4767
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4768
|
+
"type": "number | Array"
|
|
4769
|
+
},
|
|
4770
|
+
{
|
|
4771
|
+
"name": "disabled",
|
|
4772
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4773
|
+
"type": "boolean"
|
|
4774
|
+
},
|
|
4775
|
+
{
|
|
4776
|
+
"name": "placement",
|
|
4777
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4778
|
+
"type": "string"
|
|
4779
|
+
},
|
|
4780
|
+
{
|
|
4781
|
+
"name": "value",
|
|
4782
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4783
|
+
"type": "number | Array"
|
|
4784
|
+
},
|
|
4785
|
+
{
|
|
4786
|
+
"name": "size",
|
|
4787
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4788
|
+
"type": "string"
|
|
4789
|
+
},
|
|
4790
|
+
{
|
|
4791
|
+
"name": "placeholder",
|
|
4792
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4793
|
+
"type": "string"
|
|
4794
|
+
},
|
|
4795
|
+
{
|
|
4796
|
+
"name": "start-placeholder",
|
|
4797
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4798
|
+
"type": "string"
|
|
4799
|
+
},
|
|
4800
|
+
{
|
|
4801
|
+
"name": "end-placeholder",
|
|
4802
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4803
|
+
"type": "string"
|
|
4804
|
+
},
|
|
4805
|
+
{
|
|
4806
|
+
"name": "separator",
|
|
4807
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4808
|
+
"type": "string"
|
|
4809
|
+
},
|
|
4810
|
+
{
|
|
4811
|
+
"name": "format",
|
|
4812
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4813
|
+
"type": "string"
|
|
4814
|
+
},
|
|
4815
|
+
{
|
|
4816
|
+
"name": "trigger-preset",
|
|
4817
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4818
|
+
"type": "string"
|
|
4819
|
+
},
|
|
4820
|
+
{
|
|
4821
|
+
"name": "is-date-disabled",
|
|
4822
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4823
|
+
"type": "Function"
|
|
4824
|
+
},
|
|
4825
|
+
{
|
|
4826
|
+
"name": "show",
|
|
4827
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4828
|
+
"type": "boolean"
|
|
4829
|
+
},
|
|
4830
|
+
{
|
|
4831
|
+
"name": "status",
|
|
4832
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4833
|
+
"type": "string"
|
|
4834
|
+
},
|
|
4835
|
+
{
|
|
4836
|
+
"name": "input-readonly",
|
|
4837
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker",
|
|
4838
|
+
"type": "boolean"
|
|
4839
|
+
}
|
|
4840
|
+
],
|
|
4841
|
+
"js": {
|
|
4842
|
+
"events": [
|
|
4843
|
+
{
|
|
4844
|
+
"name": "update-show",
|
|
4845
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker"
|
|
4846
|
+
},
|
|
4847
|
+
{
|
|
4848
|
+
"name": "update-show",
|
|
4849
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker"
|
|
4850
|
+
},
|
|
4851
|
+
{
|
|
4852
|
+
"name": "update-value",
|
|
4853
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker"
|
|
4854
|
+
},
|
|
4855
|
+
{
|
|
4856
|
+
"name": "update-value",
|
|
4857
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker"
|
|
4858
|
+
},
|
|
4859
|
+
{
|
|
4860
|
+
"name": "focus",
|
|
4861
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker"
|
|
4862
|
+
},
|
|
4863
|
+
{
|
|
4864
|
+
"name": "blur",
|
|
4865
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/date-picker"
|
|
4866
|
+
}
|
|
4867
|
+
]
|
|
4868
|
+
}
|
|
4869
|
+
},
|
|
4725
4870
|
{
|
|
4726
4871
|
"name": "UDescriptions",
|
|
4727
4872
|
"description": "<!--single-column-->\n\nDisplay items of content easily.",
|
|
@@ -18290,6 +18435,21 @@
|
|
|
18290
18435
|
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/header",
|
|
18291
18436
|
"description": "Custom actions content for mobile menu header."
|
|
18292
18437
|
},
|
|
18438
|
+
{
|
|
18439
|
+
"name": "mobile-search",
|
|
18440
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/header",
|
|
18441
|
+
"description": "Custom mobile search action button content."
|
|
18442
|
+
},
|
|
18443
|
+
{
|
|
18444
|
+
"name": "mobile-preview",
|
|
18445
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/header",
|
|
18446
|
+
"description": "Custom mobile preview action button content."
|
|
18447
|
+
},
|
|
18448
|
+
{
|
|
18449
|
+
"name": "mobile-logout",
|
|
18450
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/header",
|
|
18451
|
+
"description": "Custom mobile logout action button content."
|
|
18452
|
+
},
|
|
18293
18453
|
{
|
|
18294
18454
|
"name": "mobile-footer",
|
|
18295
18455
|
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/header",
|