@uzum-tech/ui 1.12.19 → 1.12.21
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/README.md +73 -0
- package/dist/index.js +9 -4
- package/dist/index.prod.js +2 -2
- package/es/chat/src/ChatParts/ChatAttachment.js +2 -2
- package/es/header/src/Header.d.ts +1 -0
- package/es/header/src/Header.js +1 -0
- package/es/header/src/HeaderActions.d.ts +3 -0
- package/es/header/src/HeaderActions.js +2 -1
- package/es/header/src/interface.d.ts +3 -0
- package/es/header/src/styles/index.cssr.js +2 -0
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/chat/src/ChatParts/ChatAttachment.js +2 -2
- package/lib/header/src/Header.d.ts +1 -0
- package/lib/header/src/Header.js +1 -0
- package/lib/header/src/HeaderActions.d.ts +3 -0
- package/lib/header/src/HeaderActions.js +2 -1
- package/lib/header/src/interface.d.ts +3 -0
- package/lib/header/src/styles/index.cssr.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 +22 -22
- package/web-types.json +8 -1
|
@@ -54,10 +54,10 @@ export default defineComponent({
|
|
|
54
54
|
return true;
|
|
55
55
|
});
|
|
56
56
|
const renderAttachment = () => {
|
|
57
|
-
const fileList = props.attachments.map((attachment
|
|
57
|
+
const fileList = props.attachments.map((attachment) => {
|
|
58
58
|
var _a, _b, _c;
|
|
59
59
|
return ({
|
|
60
|
-
id: `${String(
|
|
60
|
+
id: `${String(attachment.id)}`,
|
|
61
61
|
name: attachment.name,
|
|
62
62
|
status: attachment.status || ChatAttachmentStatus.FINISHED,
|
|
63
63
|
percentage: (_a = attachment.percentage) !== null && _a !== void 0 ? _a : null,
|
|
@@ -398,6 +398,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
398
398
|
'--u-header-card-divider-color': string;
|
|
399
399
|
'--u-header-card-gap': string;
|
|
400
400
|
'--u-header-card-padding': string;
|
|
401
|
+
'--u-header-card-shadow': string;
|
|
401
402
|
'--u-header-badge-bg-color': string;
|
|
402
403
|
'--u-header-badge-text-color': string;
|
|
403
404
|
'--u-header-action-icon-color': string;
|
package/es/header/src/Header.js
CHANGED
|
@@ -176,6 +176,7 @@ export default defineComponent({
|
|
|
176
176
|
'--u-header-card-divider-color': self.cardDividerColor,
|
|
177
177
|
'--u-header-card-gap': self.cardGap,
|
|
178
178
|
'--u-header-card-padding': self.cardPadding,
|
|
179
|
+
'--u-header-card-shadow': self.cardShadow,
|
|
179
180
|
'--u-header-badge-bg-color': self.badgeBackgroundColor,
|
|
180
181
|
'--u-header-badge-text-color': self.badgeTextColor,
|
|
181
182
|
'--u-header-action-icon-color': self.actionIconColor,
|
|
@@ -30,6 +30,7 @@ export declare const headerActionsProps: {
|
|
|
30
30
|
readonly required: false;
|
|
31
31
|
};
|
|
32
32
|
readonly cssVars: PropType<HeaderActionsProps["cssVars"]>;
|
|
33
|
+
readonly langDropdownThemeOverrides: PropType<HeaderActionsProps["langDropdownThemeOverrides"]>;
|
|
33
34
|
readonly onSearch: PropType<HeaderActionsProps["onSearch"]>;
|
|
34
35
|
readonly onPreview: PropType<HeaderActionsProps["onPreview"]>;
|
|
35
36
|
readonly onLogout: PropType<HeaderActionsProps["onLogout"]>;
|
|
@@ -66,6 +67,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
66
67
|
readonly required: false;
|
|
67
68
|
};
|
|
68
69
|
readonly cssVars: PropType<HeaderActionsProps["cssVars"]>;
|
|
70
|
+
readonly langDropdownThemeOverrides: PropType<HeaderActionsProps["langDropdownThemeOverrides"]>;
|
|
69
71
|
readonly onSearch: PropType<HeaderActionsProps["onSearch"]>;
|
|
70
72
|
readonly onPreview: PropType<HeaderActionsProps["onPreview"]>;
|
|
71
73
|
readonly onLogout: PropType<HeaderActionsProps["onLogout"]>;
|
|
@@ -119,6 +121,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
119
121
|
readonly required: false;
|
|
120
122
|
};
|
|
121
123
|
readonly cssVars: PropType<HeaderActionsProps["cssVars"]>;
|
|
124
|
+
readonly langDropdownThemeOverrides: PropType<HeaderActionsProps["langDropdownThemeOverrides"]>;
|
|
122
125
|
readonly onSearch: PropType<HeaderActionsProps["onSearch"]>;
|
|
123
126
|
readonly onPreview: PropType<HeaderActionsProps["onPreview"]>;
|
|
124
127
|
readonly onLogout: PropType<HeaderActionsProps["onLogout"]>;
|
|
@@ -45,6 +45,7 @@ export const headerActionsProps = {
|
|
|
45
45
|
required: false
|
|
46
46
|
},
|
|
47
47
|
cssVars: Object,
|
|
48
|
+
langDropdownThemeOverrides: Object,
|
|
48
49
|
onSearch: Function,
|
|
49
50
|
onPreview: Function,
|
|
50
51
|
onLogout: Function,
|
|
@@ -130,7 +131,7 @@ export default defineComponent({
|
|
|
130
131
|
var _a;
|
|
131
132
|
if (((_a = this.actionsVisibility) === null || _a === void 0 ? void 0 : _a.lang) === false)
|
|
132
133
|
return null;
|
|
133
|
-
return $slots.lang ? ($slots.lang()) : (h(UDropdown, { options: this.langOptions, onSelect: this.onLanguageSelect }, {
|
|
134
|
+
return $slots.lang ? ($slots.lang()) : (h(UDropdown, { options: this.langOptions, onSelect: this.onLanguageSelect, themeOverrides: this.langDropdownThemeOverrides }, {
|
|
134
135
|
default: () => (h(UButton, { "icon-placement": "right", text: true, renderIcon: () => (h(UIcon, null, { default: () => h(ChevronDownOutline, null) })) }, {
|
|
135
136
|
default: () => {
|
|
136
137
|
var _a, _b, _c;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { CSSProperties, type VNodeChild } from 'vue';
|
|
2
|
+
import type { ExtractThemeOverrides } from '../../_mixins/use-theme';
|
|
3
|
+
import type { DropdownTheme } from '../../dropdown/styles';
|
|
2
4
|
import type { MenuOption as BaseMenuOption, MenuGroupOption, MenuDividerOption, Key } from '../../menu/src/interface';
|
|
3
5
|
import type { TabsProps } from '../../tabs';
|
|
4
6
|
import { ImageProps } from '../../image';
|
|
@@ -37,6 +39,7 @@ export interface HeaderActionsProps {
|
|
|
37
39
|
mobileActionsCollapse?: boolean;
|
|
38
40
|
actionsVisibility?: ActionsVisibility;
|
|
39
41
|
cssVars?: CSSProperties;
|
|
42
|
+
langDropdownThemeOverrides?: ExtractThemeOverrides<DropdownTheme>;
|
|
40
43
|
onSearch: HeaderSearchHandler;
|
|
41
44
|
onPreview: VoidFunction;
|
|
42
45
|
onLogout: VoidFunction;
|
|
@@ -128,6 +128,7 @@ export default cB('header', `
|
|
|
128
128
|
opacity: .5;
|
|
129
129
|
`), c('& .u-tabs-tab--checked', `
|
|
130
130
|
color: var(--u-header-tab-text-color-active);
|
|
131
|
+
border-color: var(--u-header-tab-indicator-color);
|
|
131
132
|
`), c('& .u-tabs-tab:hover', `
|
|
132
133
|
color: var(--u-header-tab-text-color-hover);
|
|
133
134
|
`), c('& .u-tabs-bar', `
|
|
@@ -182,6 +183,7 @@ export default cB('header', `
|
|
|
182
183
|
background-color: var(--u-header-card-bg-color);
|
|
183
184
|
border-radius: var(--u-header-card-radius);
|
|
184
185
|
padding: var(--u-header-card-padding);
|
|
186
|
+
box-shadow: var(--u-header-card-shadow);
|
|
185
187
|
`), cE('menu-grid', `
|
|
186
188
|
display: grid;
|
|
187
189
|
gap: var(--u-header-card-gap);
|
package/es/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.12.
|
|
1
|
+
declare const _default: "1.12.21";
|
|
2
2
|
export default _default;
|
package/es/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '1.12.
|
|
1
|
+
export default '1.12.21';
|
|
@@ -56,10 +56,10 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
56
56
|
return true;
|
|
57
57
|
});
|
|
58
58
|
const renderAttachment = () => {
|
|
59
|
-
const fileList = props.attachments.map((attachment
|
|
59
|
+
const fileList = props.attachments.map((attachment) => {
|
|
60
60
|
var _a, _b, _c;
|
|
61
61
|
return ({
|
|
62
|
-
id: `${String(
|
|
62
|
+
id: `${String(attachment.id)}`,
|
|
63
63
|
name: attachment.name,
|
|
64
64
|
status: attachment.status || interface_1.ChatAttachmentStatus.FINISHED,
|
|
65
65
|
percentage: (_a = attachment.percentage) !== null && _a !== void 0 ? _a : null,
|
|
@@ -398,6 +398,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
398
398
|
'--u-header-card-divider-color': string;
|
|
399
399
|
'--u-header-card-gap': string;
|
|
400
400
|
'--u-header-card-padding': string;
|
|
401
|
+
'--u-header-card-shadow': string;
|
|
401
402
|
'--u-header-badge-bg-color': string;
|
|
402
403
|
'--u-header-badge-text-color': string;
|
|
403
404
|
'--u-header-action-icon-color': string;
|
package/lib/header/src/Header.js
CHANGED
|
@@ -205,6 +205,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
205
205
|
'--u-header-card-divider-color': self.cardDividerColor,
|
|
206
206
|
'--u-header-card-gap': self.cardGap,
|
|
207
207
|
'--u-header-card-padding': self.cardPadding,
|
|
208
|
+
'--u-header-card-shadow': self.cardShadow,
|
|
208
209
|
'--u-header-badge-bg-color': self.badgeBackgroundColor,
|
|
209
210
|
'--u-header-badge-text-color': self.badgeTextColor,
|
|
210
211
|
'--u-header-action-icon-color': self.actionIconColor,
|
|
@@ -30,6 +30,7 @@ export declare const headerActionsProps: {
|
|
|
30
30
|
readonly required: false;
|
|
31
31
|
};
|
|
32
32
|
readonly cssVars: PropType<HeaderActionsProps["cssVars"]>;
|
|
33
|
+
readonly langDropdownThemeOverrides: PropType<HeaderActionsProps["langDropdownThemeOverrides"]>;
|
|
33
34
|
readonly onSearch: PropType<HeaderActionsProps["onSearch"]>;
|
|
34
35
|
readonly onPreview: PropType<HeaderActionsProps["onPreview"]>;
|
|
35
36
|
readonly onLogout: PropType<HeaderActionsProps["onLogout"]>;
|
|
@@ -66,6 +67,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
66
67
|
readonly required: false;
|
|
67
68
|
};
|
|
68
69
|
readonly cssVars: PropType<HeaderActionsProps["cssVars"]>;
|
|
70
|
+
readonly langDropdownThemeOverrides: PropType<HeaderActionsProps["langDropdownThemeOverrides"]>;
|
|
69
71
|
readonly onSearch: PropType<HeaderActionsProps["onSearch"]>;
|
|
70
72
|
readonly onPreview: PropType<HeaderActionsProps["onPreview"]>;
|
|
71
73
|
readonly onLogout: PropType<HeaderActionsProps["onLogout"]>;
|
|
@@ -119,6 +121,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
119
121
|
readonly required: false;
|
|
120
122
|
};
|
|
121
123
|
readonly cssVars: PropType<HeaderActionsProps["cssVars"]>;
|
|
124
|
+
readonly langDropdownThemeOverrides: PropType<HeaderActionsProps["langDropdownThemeOverrides"]>;
|
|
122
125
|
readonly onSearch: PropType<HeaderActionsProps["onSearch"]>;
|
|
123
126
|
readonly onPreview: PropType<HeaderActionsProps["onPreview"]>;
|
|
124
127
|
readonly onLogout: PropType<HeaderActionsProps["onLogout"]>;
|
|
@@ -51,6 +51,7 @@ exports.headerActionsProps = {
|
|
|
51
51
|
required: false
|
|
52
52
|
},
|
|
53
53
|
cssVars: Object,
|
|
54
|
+
langDropdownThemeOverrides: Object,
|
|
54
55
|
onSearch: Function,
|
|
55
56
|
onPreview: Function,
|
|
56
57
|
onLogout: Function,
|
|
@@ -136,7 +137,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
136
137
|
var _a;
|
|
137
138
|
if (((_a = this.actionsVisibility) === null || _a === void 0 ? void 0 : _a.lang) === false)
|
|
138
139
|
return null;
|
|
139
|
-
return $slots.lang ? ($slots.lang()) : ((0, vue_1.h)(dropdown_1.UDropdown, { options: this.langOptions, onSelect: this.onLanguageSelect }, {
|
|
140
|
+
return $slots.lang ? ($slots.lang()) : ((0, vue_1.h)(dropdown_1.UDropdown, { options: this.langOptions, onSelect: this.onLanguageSelect, themeOverrides: this.langDropdownThemeOverrides }, {
|
|
140
141
|
default: () => ((0, vue_1.h)(button_1.UButton, { "icon-placement": "right", text: true, renderIcon: () => ((0, vue_1.h)(icon_1.UIcon, null, { default: () => (0, vue_1.h)(icons_1.ChevronDownOutline, null) })) }, {
|
|
141
142
|
default: () => {
|
|
142
143
|
var _a, _b, _c;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { CSSProperties, type VNodeChild } from 'vue';
|
|
2
|
+
import type { ExtractThemeOverrides } from '../../_mixins/use-theme';
|
|
3
|
+
import type { DropdownTheme } from '../../dropdown/styles';
|
|
2
4
|
import type { MenuOption as BaseMenuOption, MenuGroupOption, MenuDividerOption, Key } from '../../menu/src/interface';
|
|
3
5
|
import type { TabsProps } from '../../tabs';
|
|
4
6
|
import { ImageProps } from '../../image';
|
|
@@ -37,6 +39,7 @@ export interface HeaderActionsProps {
|
|
|
37
39
|
mobileActionsCollapse?: boolean;
|
|
38
40
|
actionsVisibility?: ActionsVisibility;
|
|
39
41
|
cssVars?: CSSProperties;
|
|
42
|
+
langDropdownThemeOverrides?: ExtractThemeOverrides<DropdownTheme>;
|
|
40
43
|
onSearch: HeaderSearchHandler;
|
|
41
44
|
onPreview: VoidFunction;
|
|
42
45
|
onLogout: VoidFunction;
|
|
@@ -134,6 +134,7 @@ exports.default = (0, cssr_1.cB)('header', `
|
|
|
134
134
|
opacity: .5;
|
|
135
135
|
`), (0, cssr_1.c)('& .u-tabs-tab--checked', `
|
|
136
136
|
color: var(--u-header-tab-text-color-active);
|
|
137
|
+
border-color: var(--u-header-tab-indicator-color);
|
|
137
138
|
`), (0, cssr_1.c)('& .u-tabs-tab:hover', `
|
|
138
139
|
color: var(--u-header-tab-text-color-hover);
|
|
139
140
|
`), (0, cssr_1.c)('& .u-tabs-bar', `
|
|
@@ -188,6 +189,7 @@ exports.default = (0, cssr_1.cB)('header', `
|
|
|
188
189
|
background-color: var(--u-header-card-bg-color);
|
|
189
190
|
border-radius: var(--u-header-card-radius);
|
|
190
191
|
padding: var(--u-header-card-padding);
|
|
192
|
+
box-shadow: var(--u-header-card-shadow);
|
|
191
193
|
`), (0, cssr_1.cE)('menu-grid', `
|
|
192
194
|
display: grid;
|
|
193
195
|
gap: var(--u-header-card-gap);
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.12.
|
|
1
|
+
declare const _default: "1.12.21";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
package/volar.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
// Auto generated component declarations
|
|
2
2
|
declare module 'vue' {
|
|
3
3
|
export interface GlobalComponents {
|
|
4
|
-
UActionCard: typeof import('@uzum-tech/ui')['UActionCard']
|
|
5
4
|
UAffix: typeof import('@uzum-tech/ui')['UAffix']
|
|
6
5
|
UAlert: typeof import('@uzum-tech/ui')['UAlert']
|
|
7
6
|
UAnchor: typeof import('@uzum-tech/ui')['UAnchor']
|
|
@@ -22,9 +21,6 @@ declare module 'vue' {
|
|
|
22
21
|
UCarousel: typeof import('@uzum-tech/ui')['UCarousel']
|
|
23
22
|
UCarouselItem: typeof import('@uzum-tech/ui')['UCarouselItem']
|
|
24
23
|
UCascader: typeof import('@uzum-tech/ui')['UCascader']
|
|
25
|
-
UChat: typeof import('@uzum-tech/ui')['UChat']
|
|
26
|
-
UChatListItems: typeof import('@uzum-tech/ui')['UChatListItems']
|
|
27
|
-
UChatMessages: typeof import('@uzum-tech/ui')['UChatMessages']
|
|
28
24
|
UCheckbox: typeof import('@uzum-tech/ui')['UCheckbox']
|
|
29
25
|
UCheckboxGroup: typeof import('@uzum-tech/ui')['UCheckboxGroup']
|
|
30
26
|
UCode: typeof import('@uzum-tech/ui')['UCode']
|
|
@@ -35,7 +31,6 @@ declare module 'vue' {
|
|
|
35
31
|
UColorPicker: typeof import('@uzum-tech/ui')['UColorPicker']
|
|
36
32
|
UConfigProvider: typeof import('@uzum-tech/ui')['UConfigProvider']
|
|
37
33
|
UCountdown: typeof import('@uzum-tech/ui')['UCountdown']
|
|
38
|
-
UCrop: typeof import('@uzum-tech/ui')['UCrop']
|
|
39
34
|
UDataTable: typeof import('@uzum-tech/ui')['UDataTable']
|
|
40
35
|
UDatePicker: typeof import('@uzum-tech/ui')['UDatePicker']
|
|
41
36
|
UDescriptions: typeof import('@uzum-tech/ui')['UDescriptions']
|
|
@@ -71,23 +66,11 @@ declare module 'vue' {
|
|
|
71
66
|
UH4: typeof import('@uzum-tech/ui')['UH4']
|
|
72
67
|
UH5: typeof import('@uzum-tech/ui')['UH5']
|
|
73
68
|
UH6: typeof import('@uzum-tech/ui')['UH6']
|
|
74
|
-
UHeader: typeof import('@uzum-tech/ui')['UHeader']
|
|
75
|
-
UHeaderActions: typeof import('@uzum-tech/ui')['UHeaderActions']
|
|
76
|
-
UHeaderDesktopLayout: typeof import('@uzum-tech/ui')['UHeaderDesktopLayout']
|
|
77
|
-
UHeaderMobile: typeof import('@uzum-tech/ui')['UHeaderMobile']
|
|
78
|
-
UHeaderMobileLayout: typeof import('@uzum-tech/ui')['UHeaderMobileLayout']
|
|
79
|
-
UHeaderNavigation: typeof import('@uzum-tech/ui')['UHeaderNavigation']
|
|
80
|
-
UHeaderSearchDesktop: typeof import('@uzum-tech/ui')['UHeaderSearchDesktop']
|
|
81
|
-
UHeaderSearchMobile: typeof import('@uzum-tech/ui')['UHeaderSearchMobile']
|
|
82
|
-
UHeaderSearchResults: typeof import('@uzum-tech/ui')['UHeaderSearchResults']
|
|
83
69
|
UHr: typeof import('@uzum-tech/ui')['UHr']
|
|
84
70
|
UIcon: typeof import('@uzum-tech/ui')['UIcon']
|
|
85
|
-
UIconBar: typeof import('@uzum-tech/ui')['UIconBar']
|
|
86
|
-
UIconBarItem: typeof import('@uzum-tech/ui')['UIconBarItem']
|
|
87
71
|
UIconWrapper: typeof import('@uzum-tech/ui')['UIconWrapper']
|
|
88
72
|
UImage: typeof import('@uzum-tech/ui')['UImage']
|
|
89
73
|
UImageGroup: typeof import('@uzum-tech/ui')['UImageGroup']
|
|
90
|
-
UInfiniteScroll: typeof import('@uzum-tech/ui')['UInfiniteScroll']
|
|
91
74
|
UInput: typeof import('@uzum-tech/ui')['UInput']
|
|
92
75
|
UInputGroup: typeof import('@uzum-tech/ui')['UInputGroup']
|
|
93
76
|
UInputGroupLabel: typeof import('@uzum-tech/ui')['UInputGroupLabel']
|
|
@@ -108,7 +91,6 @@ declare module 'vue' {
|
|
|
108
91
|
UMenu: typeof import('@uzum-tech/ui')['UMenu']
|
|
109
92
|
UMessageProvider: typeof import('@uzum-tech/ui')['UMessageProvider']
|
|
110
93
|
UModal: typeof import('@uzum-tech/ui')['UModal']
|
|
111
|
-
UModalFullscreen: typeof import('@uzum-tech/ui')['UModalFullscreen']
|
|
112
94
|
UNotificationProvider: typeof import('@uzum-tech/ui')['UNotificationProvider']
|
|
113
95
|
UNumberAnimation: typeof import('@uzum-tech/ui')['UNumberAnimation']
|
|
114
96
|
UOl: typeof import('@uzum-tech/ui')['UOl']
|
|
@@ -119,14 +101,12 @@ declare module 'vue' {
|
|
|
119
101
|
UPopover: typeof import('@uzum-tech/ui')['UPopover']
|
|
120
102
|
UPopselect: typeof import('@uzum-tech/ui')['UPopselect']
|
|
121
103
|
UProgress: typeof import('@uzum-tech/ui')['UProgress']
|
|
122
|
-
UQrCode: typeof import('@uzum-tech/ui')['UQrCode']
|
|
123
104
|
URadio: typeof import('@uzum-tech/ui')['URadio']
|
|
124
105
|
URadioButton: typeof import('@uzum-tech/ui')['URadioButton']
|
|
125
106
|
URadioGroup: typeof import('@uzum-tech/ui')['URadioGroup']
|
|
126
107
|
URate: typeof import('@uzum-tech/ui')['URate']
|
|
127
108
|
UResult: typeof import('@uzum-tech/ui')['UResult']
|
|
128
109
|
URow: typeof import('@uzum-tech/ui')['URow']
|
|
129
|
-
USafeTopScrollbar: typeof import('@uzum-tech/ui')['USafeTopScrollbar']
|
|
130
110
|
UScrollbar: typeof import('@uzum-tech/ui')['UScrollbar']
|
|
131
111
|
USelect: typeof import('@uzum-tech/ui')['USelect']
|
|
132
112
|
USkeleton: typeof import('@uzum-tech/ui')['USkeleton']
|
|
@@ -143,7 +123,6 @@ declare module 'vue' {
|
|
|
143
123
|
UTable: typeof import('@uzum-tech/ui')['UTable']
|
|
144
124
|
UTabs: typeof import('@uzum-tech/ui')['UTabs']
|
|
145
125
|
UTag: typeof import('@uzum-tech/ui')['UTag']
|
|
146
|
-
UTagGroup: typeof import('@uzum-tech/ui')['UTagGroup']
|
|
147
126
|
UTbody: typeof import('@uzum-tech/ui')['UTbody']
|
|
148
127
|
UTd: typeof import('@uzum-tech/ui')['UTd']
|
|
149
128
|
UText: typeof import('@uzum-tech/ui')['UText']
|
|
@@ -165,8 +144,29 @@ declare module 'vue' {
|
|
|
165
144
|
UUploadDragger: typeof import('@uzum-tech/ui')['UUploadDragger']
|
|
166
145
|
UUploadFileList: typeof import('@uzum-tech/ui')['UUploadFileList']
|
|
167
146
|
UUploadTrigger: typeof import('@uzum-tech/ui')['UUploadTrigger']
|
|
168
|
-
UVirtualList: typeof import('@uzum-tech/ui')['UVirtualList']
|
|
169
147
|
UWatermark: typeof import('@uzum-tech/ui')['UWatermark']
|
|
148
|
+
UActionCard: typeof import('@uzum-tech/ui')['UActionCard']
|
|
149
|
+
UChat: typeof import('@uzum-tech/ui')['UChat']
|
|
150
|
+
UChatListItems: typeof import('@uzum-tech/ui')['UChatListItems']
|
|
151
|
+
UChatMessages: typeof import('@uzum-tech/ui')['UChatMessages']
|
|
152
|
+
UInfiniteScroll: typeof import('@uzum-tech/ui')['UInfiniteScroll']
|
|
153
|
+
UVirtualList: typeof import('@uzum-tech/ui')['UVirtualList']
|
|
154
|
+
UModalFullscreen: typeof import('@uzum-tech/ui')['UModalFullscreen']
|
|
155
|
+
UCrop: typeof import('@uzum-tech/ui')['UCrop']
|
|
156
|
+
UTagGroup: typeof import('@uzum-tech/ui')['UTagGroup']
|
|
157
|
+
UIconBar: typeof import('@uzum-tech/ui')['UIconBar']
|
|
158
|
+
UIconBarItem: typeof import('@uzum-tech/ui')['UIconBarItem']
|
|
159
|
+
UQrCode: typeof import('@uzum-tech/ui')['UQrCode']
|
|
160
|
+
UHeader: typeof import('@uzum-tech/ui')['UHeader']
|
|
161
|
+
USafeTopScrollbar: typeof import('@uzum-tech/ui')['USafeTopScrollbar']
|
|
162
|
+
UHeaderActions: typeof import('@uzum-tech/ui')['UHeaderActions']
|
|
163
|
+
UHeaderMobile: typeof import('@uzum-tech/ui')['UHeaderMobile']
|
|
164
|
+
UHeaderNavigation: typeof import('@uzum-tech/ui')['UHeaderNavigation']
|
|
165
|
+
UHeaderDesktopLayout: typeof import('@uzum-tech/ui')['UHeaderDesktopLayout']
|
|
166
|
+
UHeaderMobileLayout: typeof import('@uzum-tech/ui')['UHeaderMobileLayout']
|
|
167
|
+
UHeaderSearchDesktop: typeof import('@uzum-tech/ui')['UHeaderSearchDesktop']
|
|
168
|
+
UHeaderSearchMobile: typeof import('@uzum-tech/ui')['UHeaderSearchMobile']
|
|
169
|
+
UHeaderSearchResults: typeof import('@uzum-tech/ui')['UHeaderSearchResults']
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
172
|
export {}
|
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.12.
|
|
5
|
+
"version": "1.12.21",
|
|
6
6
|
"js-types-syntax": "typescript",
|
|
7
7
|
"contributions": {
|
|
8
8
|
"html": {
|
|
@@ -18760,6 +18760,13 @@
|
|
|
18760
18760
|
"name": "css-vars",
|
|
18761
18761
|
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/header",
|
|
18762
18762
|
"type": "object"
|
|
18763
|
+
},
|
|
18764
|
+
{
|
|
18765
|
+
"name": "lang-dropdown-theme-overrides",
|
|
18766
|
+
"doc-url": "https://uzum-ui.kapitalbank.uz/en-US/os-theme/components/header",
|
|
18767
|
+
"type": "ExtractThemeOverrides<DropdownTheme>",
|
|
18768
|
+
"description": "Theme overrides for the language `u-dropdown` (e.g. Popover `boxShadow`).",
|
|
18769
|
+
"default": "undefined"
|
|
18763
18770
|
}
|
|
18764
18771
|
],
|
|
18765
18772
|
"js": {
|