@mobilon-dev/chotto 0.3.67 → 0.3.69

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.
@@ -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: true;
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;
@@ -37,7 +43,13 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
37
43
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
38
44
  text: {
39
45
  type: StringConstructor;
40
- required: true;
46
+ required: false;
47
+ default: string;
48
+ };
49
+ texts: {
50
+ type: ArrayConstructor;
51
+ required: false;
52
+ default: () => never[];
41
53
  };
42
54
  position: {
43
55
  type: StringConstructor;
@@ -64,7 +76,9 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
64
76
  default: string;
65
77
  };
66
78
  }>> & Readonly<{}>, {
79
+ text: string;
67
80
  position: string;
81
+ texts: unknown[];
68
82
  offset: number;
69
83
  trigger: string;
70
84
  autoShowDuration: number;
@@ -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>;
@@ -238,6 +238,8 @@ export interface ChatListThemeCSSVariables {
238
238
  '--chotto-chatlist-placeholder-hint-font-size': string;
239
239
  /** Отступы подсказки плейсхолдера */
240
240
  '--chotto-chatlist-placeholder-hint-margin': string;
241
+ /** Отступы контейнера плейсхолдера */
242
+ '--chotto-chatlist-placeholder-padding': string;
241
243
  /** Высота строки обёртки тултипа бейджа beta заголовка */
242
244
  '--chotto-chatlist-title-beta-badge-tooltip-wrapper-line-height': string;
243
245
  /** Отображение обёртки тултипа бейджа beta заголовка */
@@ -7,6 +7,7 @@ declare const _default: import("vue").DefineComponent<{}, {
7
7
  settingsButtonMode: string;
8
8
  showSettingsIndicator: boolean;
9
9
  settingsIndicatorTooltip: string;
10
+ settingsIndicatorTooltipItems: unknown[];
10
11
  settingsIndicatorTooltipAutoShowMs: number;
11
12
  $props: {
12
13
  readonly sidebarItems?: unknown[] | undefined;
@@ -16,6 +17,7 @@ declare const _default: import("vue").DefineComponent<{}, {
16
17
  readonly settingsButtonMode?: string | undefined;
17
18
  readonly showSettingsIndicator?: boolean | undefined;
18
19
  readonly settingsIndicatorTooltip?: string | undefined;
20
+ readonly settingsIndicatorTooltipItems?: unknown[] | undefined;
19
21
  readonly settingsIndicatorTooltipAutoShowMs?: number | undefined;
20
22
  };
21
23
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mobilon-dev/chotto",
3
- "version": "0.3.67",
3
+ "version": "0.3.69",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",