@mobilon-dev/chotto 0.3.66 → 0.3.68
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/chotto.css +1 -1
- package/dist/components/1_atoms/Tooltip/Tooltip.vue.js +1 -1
- package/dist/components/1_atoms/Tooltip/Tooltip.vue2.js +120 -69
- package/dist/components/3_compounds/SideBar/SideBar.vue.js +213 -128
- package/dist/themes/dark.css +1 -1
- package/dist/themes/default.css +1 -1
- package/dist/themes/glass.css +1 -1
- package/dist/themes/green.css +1 -1
- package/dist/themes/mobilon1.css +1 -1
- package/dist/types/components/1_atoms/Tooltip/Tooltip.vue.d.ts +25 -2
- package/dist/types/components/2_feed_elements/DelimiterMessage/DelimiterMessage.vue.d.ts +1 -1
- package/dist/types/components/3_compounds/SideBar/SideBar.vue.d.ts +8 -0
- package/dist/types/components/3_compounds/SideBar/styles/types.d.ts +24 -0
- package/package.json +1 -1
|
@@ -5,7 +5,13 @@ type __VLS_Slots = {} & {
|
|
|
5
5
|
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
6
|
text: {
|
|
7
7
|
type: StringConstructor;
|
|
8
|
-
required:
|
|
8
|
+
required: false;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
texts: {
|
|
12
|
+
type: ArrayConstructor;
|
|
13
|
+
required: false;
|
|
14
|
+
default: () => never[];
|
|
9
15
|
};
|
|
10
16
|
position: {
|
|
11
17
|
type: StringConstructor;
|
|
@@ -27,13 +33,23 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
27
33
|
type: NumberConstructor;
|
|
28
34
|
default: number;
|
|
29
35
|
};
|
|
36
|
+
maxWidth: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
30
40
|
}>, {
|
|
31
41
|
startAutoShow: () => void;
|
|
32
42
|
clearAutoTimer: () => void;
|
|
33
43
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
44
|
text: {
|
|
35
45
|
type: StringConstructor;
|
|
36
|
-
required:
|
|
46
|
+
required: false;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
texts: {
|
|
50
|
+
type: ArrayConstructor;
|
|
51
|
+
required: false;
|
|
52
|
+
default: () => never[];
|
|
37
53
|
};
|
|
38
54
|
position: {
|
|
39
55
|
type: StringConstructor;
|
|
@@ -55,12 +71,19 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
55
71
|
type: NumberConstructor;
|
|
56
72
|
default: number;
|
|
57
73
|
};
|
|
74
|
+
maxWidth: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
58
78
|
}>> & Readonly<{}>, {
|
|
79
|
+
text: string;
|
|
59
80
|
position: string;
|
|
81
|
+
texts: unknown[];
|
|
60
82
|
offset: number;
|
|
61
83
|
trigger: string;
|
|
62
84
|
autoShowDuration: number;
|
|
63
85
|
delay: number;
|
|
86
|
+
maxWidth: string;
|
|
64
87
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
65
88
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
66
89
|
export default _default;
|
|
@@ -54,8 +54,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
54
54
|
}>> & Readonly<{
|
|
55
55
|
onRead?: ((messageId: string) => any) | undefined;
|
|
56
56
|
}>, {
|
|
57
|
-
tooltipPosition: string;
|
|
58
57
|
tooltipText: string;
|
|
58
|
+
tooltipPosition: string;
|
|
59
59
|
tooltipOffset: number;
|
|
60
60
|
tooltipDelay: number;
|
|
61
61
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -5,12 +5,20 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
menuActions: unknown[];
|
|
6
6
|
showSettings: boolean;
|
|
7
7
|
settingsButtonMode: string;
|
|
8
|
+
showSettingsIndicator: boolean;
|
|
9
|
+
settingsIndicatorTooltip: string;
|
|
10
|
+
settingsIndicatorTooltipItems: unknown[];
|
|
11
|
+
settingsIndicatorTooltipAutoShowMs: number;
|
|
8
12
|
$props: {
|
|
9
13
|
readonly sidebarItems?: unknown[] | undefined;
|
|
10
14
|
readonly horizontal?: boolean | undefined;
|
|
11
15
|
readonly menuActions?: unknown[] | undefined;
|
|
12
16
|
readonly showSettings?: boolean | undefined;
|
|
13
17
|
readonly settingsButtonMode?: string | undefined;
|
|
18
|
+
readonly showSettingsIndicator?: boolean | undefined;
|
|
19
|
+
readonly settingsIndicatorTooltip?: string | undefined;
|
|
20
|
+
readonly settingsIndicatorTooltipItems?: unknown[] | undefined;
|
|
21
|
+
readonly settingsIndicatorTooltipAutoShowMs?: number | undefined;
|
|
14
22
|
};
|
|
15
23
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
24
|
export default _default;
|
|
@@ -210,6 +210,30 @@ export interface SideBarThemeCSSVariables {
|
|
|
210
210
|
'--chotto-sidebar-settings-btn-hover-background-color': string;
|
|
211
211
|
/** Цвет иконки настроек */
|
|
212
212
|
'--chotto-sidebar-settings-icon-color': string;
|
|
213
|
+
/** Позиционирование кнопки настроек */
|
|
214
|
+
'--chotto-sidebar-settings-btn-position': string;
|
|
215
|
+
/** Отображение индикатора настроек */
|
|
216
|
+
'--chotto-sidebar-settings-indicator-display': string;
|
|
217
|
+
/** Ширина индикатора настроек */
|
|
218
|
+
'--chotto-sidebar-settings-indicator-width': string;
|
|
219
|
+
/** Высота индикатора настроек */
|
|
220
|
+
'--chotto-sidebar-settings-indicator-height': string;
|
|
221
|
+
/** Радиус границы индикатора настроек */
|
|
222
|
+
'--chotto-sidebar-settings-indicator-border-radius': string;
|
|
223
|
+
/** Цвет фона индикатора настроек */
|
|
224
|
+
'--chotto-sidebar-settings-indicator-background-color': string;
|
|
225
|
+
/** Z-index индикатора настроек */
|
|
226
|
+
'--chotto-sidebar-settings-indicator-z-index': string;
|
|
227
|
+
/** Позиционирование якоря индикатора настроек */
|
|
228
|
+
'--chotto-sidebar-settings-indicator-position': string;
|
|
229
|
+
/** Позиция якоря индикатора настроек сверху */
|
|
230
|
+
'--chotto-sidebar-settings-indicator-top': string;
|
|
231
|
+
/** Позиция якоря индикатора настроек справа */
|
|
232
|
+
'--chotto-sidebar-settings-indicator-right': string;
|
|
233
|
+
/** Трансформация якоря индикатора настроек */
|
|
234
|
+
'--chotto-sidebar-settings-indicator-transform': string;
|
|
235
|
+
/** Высота строки якоря индикатора настроек */
|
|
236
|
+
'--chotto-sidebar-settings-indicator-tooltip-line-height': string;
|
|
213
237
|
/** Позиционирование выбранной полосы */
|
|
214
238
|
'--chotto-sidebar-selected-bar-position': string;
|
|
215
239
|
/** Ширина выбранной полосы */
|