@open-xamu-co/ui-components-vue 2.0.0 → 3.0.0-next.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  Xamu UI
2
2
 
3
+ # [@open-xamu-co/ui-components-vue-v3.0.0-next.1](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v2.0.1...@open-xamu-co/ui-components-vue-v3.0.0-next.1) (2023-12-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * make prop breaking form ([acc4fa0](https://github.com/xamu-co/ui/commit/acc4fa0704e3354408762b2f127d5c7b056e048e))
9
+ * required types as dependencies ([f360fc1](https://github.com/xamu-co/ui/commit/f360fc17446208a9a5e045dc56ff43bc207d5580))
10
+
11
+
12
+ ### Features
13
+
14
+ * form option type ([0fdfb53](https://github.com/xamu-co/ui/commit/0fdfb53640f02138f9a48e36ce10552dc1d7ade5))
15
+ * useSwal composable ([fd4616a](https://github.com/xamu-co/ui/commit/fd4616a62e61b1bf23d1f566b2269331d8bfac68))
16
+ * vue theme composable ([463ebc1](https://github.com/xamu-co/ui/commit/463ebc19da06dfff9060421b228bcb1aca584afc))
17
+
18
+
19
+ ### BREAKING CHANGES
20
+
21
+ * select option type is now simpler and form require the new form type instead
22
+
23
+ # [@open-xamu-co/ui-components-vue-v2.0.1](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v2.0.0...@open-xamu-co/ui-components-vue-v2.0.1) (2023-12-18)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * transpile components on nuxt module ([9b28776](https://github.com/xamu-co/ui/commit/9b2877681d17cbe7f9fe6cbd16d85a883ea0c957))
29
+
3
30
  # [@open-xamu-co/ui-components-vue-v2.0.0](https://github.com/xamu-co/ui/compare/@open-xamu-co/ui-components-vue-v1.0.2...@open-xamu-co/ui-components-vue-v2.0.0) (2023-12-18)
4
31
 
5
32
 
@@ -1,6 +1,6 @@
1
- import type { iSelectOption, tProp, tProps, tThemeModifier, tThemeTuple } from "@open-xamu-co/ui-common-types";
1
+ import type { iNodeFn, iProperty, tProp, tProps, tThemeModifier, tThemeTuple } from "@open-xamu-co/ui-common-types";
2
2
  import type { iUseThemeProps } from "../types/props";
3
- export interface iTableProps<Ti> extends iUseThemeProps {
3
+ export interface iTableProps<Ti extends Record<string, any>> extends iUseThemeProps {
4
4
  /**
5
5
  * Table nodes
6
6
  * an array of nodes
@@ -14,7 +14,7 @@ export interface iTableProps<Ti> extends iUseThemeProps {
14
14
  *
15
15
  * @old columns
16
16
  */
17
- properties?: iSelectOption[];
17
+ properties?: iProperty<Ti>[];
18
18
  /**
19
19
  * read only table
20
20
  * @old editable(inverse)
@@ -27,19 +27,21 @@ export interface iTableProps<Ti> extends iUseThemeProps {
27
27
  /**
28
28
  * Function used to update a node
29
29
  */
30
- updateNode?: (n: Ti) => boolean | undefined | Promise<boolean | undefined>;
30
+ updateNode?: iNodeFn<Ti>;
31
31
  /**
32
32
  * Function used to delete a node
33
33
  */
34
- deleteNode?: (n: Ti) => boolean | undefined | Promise<boolean | undefined>;
34
+ deleteNode?: iNodeFn<Ti>;
35
35
  /**
36
36
  * Function used to duplicate a node
37
37
  */
38
- cloneNode?: (n: Ti) => boolean | undefined | Promise<boolean | undefined>;
38
+ cloneNode?: iNodeFn<Ti>;
39
39
  /**
40
40
  * Function used to create a node children
41
+ *
42
+ * Useful to display the add button for the slot contents
41
43
  */
42
- createNodeChildren?: (n: Ti) => boolean | undefined | Promise<boolean | undefined>;
44
+ createNodeChildren?: iNodeFn<Ti>;
43
45
  /**
44
46
  * Content clasess
45
47
  */
@@ -63,17 +65,17 @@ declare const _default: <T extends Record<string, any>>(__VLS_props: {
63
65
  theme?: tThemeTuple | tProp<tThemeModifier> | undefined;
64
66
  readOnly?: boolean | undefined;
65
67
  modalTheme?: tThemeTuple | tProp<tThemeModifier> | undefined;
68
+ omitRefresh?: boolean | undefined;
66
69
  nodes: T[];
67
- properties?: iSelectOption[] | undefined;
70
+ properties?: iProperty<T>[] | undefined;
68
71
  canSort?: boolean | undefined;
69
- updateNode?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
70
- deleteNode?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
71
- cloneNode?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
72
- createNodeChildren?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
72
+ updateNode?: iNodeFn<T> | undefined;
73
+ deleteNode?: iNodeFn<T> | undefined;
74
+ cloneNode?: iNodeFn<T> | undefined;
75
+ createNodeChildren?: iNodeFn<T> | undefined;
73
76
  extraCols?: boolean | undefined;
74
77
  childrenName?: string | undefined;
75
78
  childrenCountKey?: keyof T | undefined;
76
- omitRefresh?: boolean | undefined;
77
79
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
78
80
  attrs: any;
79
81
  slots: {
@@ -90,17 +92,17 @@ declare const _default: <T extends Record<string, any>>(__VLS_props: {
90
92
  theme?: tThemeTuple | tProp<tThemeModifier> | undefined;
91
93
  readOnly?: boolean | undefined;
92
94
  modalTheme?: tThemeTuple | tProp<tThemeModifier> | undefined;
95
+ omitRefresh?: boolean | undefined;
93
96
  nodes: T[];
94
- properties?: iSelectOption[] | undefined;
97
+ properties?: iProperty<T>[] | undefined;
95
98
  canSort?: boolean | undefined;
96
- updateNode?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
97
- deleteNode?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
98
- cloneNode?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
99
- createNodeChildren?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
99
+ updateNode?: iNodeFn<T> | undefined;
100
+ deleteNode?: iNodeFn<T> | undefined;
101
+ cloneNode?: iNodeFn<T> | undefined;
102
+ createNodeChildren?: iNodeFn<T> | undefined;
100
103
  extraCols?: boolean | undefined;
101
104
  childrenName?: string | undefined;
102
105
  childrenCountKey?: keyof T | undefined;
103
- omitRefresh?: boolean | undefined;
104
106
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
105
107
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
106
108
  attrs: any;
@@ -121,17 +123,17 @@ declare const _default: <T extends Record<string, any>>(__VLS_props: {
121
123
  theme?: tThemeTuple | tProp<tThemeModifier> | undefined;
122
124
  readOnly?: boolean | undefined;
123
125
  modalTheme?: tThemeTuple | tProp<tThemeModifier> | undefined;
126
+ omitRefresh?: boolean | undefined;
124
127
  nodes: T[];
125
- properties?: iSelectOption[] | undefined;
128
+ properties?: iProperty<T>[] | undefined;
126
129
  canSort?: boolean | undefined;
127
- updateNode?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
128
- deleteNode?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
129
- cloneNode?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
130
- createNodeChildren?: ((n: T) => boolean | Promise<boolean | undefined> | undefined) | undefined;
130
+ updateNode?: iNodeFn<T> | undefined;
131
+ deleteNode?: iNodeFn<T> | undefined;
132
+ cloneNode?: iNodeFn<T> | undefined;
133
+ createNodeChildren?: iNodeFn<T> | undefined;
131
134
  extraCols?: boolean | undefined;
132
135
  childrenName?: string | undefined;
133
136
  childrenCountKey?: keyof T | undefined;
134
- omitRefresh?: boolean | undefined;
135
137
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
136
138
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
137
139
  attrs: any;
@@ -4,7 +4,7 @@ interface iFormInputOptions {
4
4
  }
5
5
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<iFormInputOptions>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<iFormInputOptions>>>, {}, {}>, {
6
6
  default?(_: {
7
- options: import("@open-xamu-co/ui-common-types").iSelectOption[];
7
+ options: import("@open-xamu-co/ui-common-types").iFormOption[];
8
8
  }): any;
9
9
  }>;
10
10
  export default _default;
@@ -34,7 +34,7 @@ declare const _default: <T, C extends string | number = string>(__VLS_props: {
34
34
  slots: {
35
35
  default?(_: {
36
36
  content: T[];
37
- pagination: iPagination | undefined;
37
+ pagination: iPagination<tOrderBy> | undefined;
38
38
  currentPage: import("@open-xamu-co/ui-common-types").iPage<T, C>;
39
39
  refresh: (fallback?: import("@open-xamu-co/ui-common-types").iPage<T, C> | null | undefined) => Promise<void>;
40
40
  }): any;
@@ -57,7 +57,7 @@ declare const _default: <T, C extends string | number = string>(__VLS_props: {
57
57
  slots: {
58
58
  default?(_: {
59
59
  content: T[];
60
- pagination: iPagination | undefined;
60
+ pagination: iPagination<tOrderBy> | undefined;
61
61
  currentPage: import("@open-xamu-co/ui-common-types").iPage<T, C>;
62
62
  refresh: (fallback?: import("@open-xamu-co/ui-common-types").iPage<T, C> | null | undefined) => Promise<void>;
63
63
  }): any;
@@ -83,7 +83,7 @@ declare const _default: <T, C extends string | number = string>(__VLS_props: {
83
83
  slots: {
84
84
  default?(_: {
85
85
  content: T[];
86
- pagination: iPagination | undefined;
86
+ pagination: iPagination<tOrderBy> | undefined;
87
87
  currentPage: import("@open-xamu-co/ui-common-types").iPage<T, C>;
88
88
  refresh: (fallback?: import("@open-xamu-co/ui-common-types").iPage<T, C> | null | undefined) => Promise<void>;
89
89
  }): any;
@@ -19,7 +19,7 @@ declare const _default: <T, C extends string | number>(__VLS_props: {
19
19
  theme?: import("@open-xamu-co/ui-common-types").tThemeTuple | import("@open-xamu-co/ui-common-types").tProp<import("@open-xamu-co/ui-common-types").tThemeModifier> | undefined;
20
20
  withRoute?: boolean | undefined;
21
21
  hidePageLength?: boolean | undefined;
22
- pagination?: iPagination | undefined;
22
+ pagination?: iPagination<import("@open-xamu-co/ui-common-types").tOrderBy> | undefined;
23
23
  currentPage: iPage<T, C> | null;
24
24
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
25
25
  attrs: any;
@@ -30,7 +30,7 @@ declare const _default: <T, C extends string | number>(__VLS_props: {
30
30
  theme?: import("@open-xamu-co/ui-common-types").tThemeTuple | import("@open-xamu-co/ui-common-types").tProp<import("@open-xamu-co/ui-common-types").tThemeModifier> | undefined;
31
31
  withRoute?: boolean | undefined;
32
32
  hidePageLength?: boolean | undefined;
33
- pagination?: iPagination | undefined;
33
+ pagination?: iPagination<import("@open-xamu-co/ui-common-types").tOrderBy> | undefined;
34
34
  currentPage: iPage<T, C> | null;
35
35
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
36
36
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
@@ -45,7 +45,7 @@ declare const _default: <T, C extends string | number>(__VLS_props: {
45
45
  theme?: import("@open-xamu-co/ui-common-types").tThemeTuple | import("@open-xamu-co/ui-common-types").tProp<import("@open-xamu-co/ui-common-types").tThemeModifier> | undefined;
46
46
  withRoute?: boolean | undefined;
47
47
  hidePageLength?: boolean | undefined;
48
- pagination?: iPagination | undefined;
48
+ pagination?: iPagination<import("@open-xamu-co/ui-common-types").tOrderBy> | undefined;
49
49
  currentPage: iPage<T, C> | null;
50
50
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
51
51
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
@@ -1,39 +1,57 @@
1
1
  import type { RendererElement } from "vue";
2
- import type { iSelectOption, tProp, tProps, tThemeModifier, tThemeTuple } from "@open-xamu-co/ui-common-types";
3
- import type { iUseThemeProps } from "../../types/props";
4
- interface iValueComplexProps extends iUseThemeProps {
5
- /**
6
- * Cell value
7
- */
8
- value: unknown;
9
- /**
10
- * Cell column property
11
- */
12
- property?: iSelectOption;
13
- /**
14
- * Cell node
15
- */
16
- node?: Record<string, unknown>;
17
- readOnly?: boolean;
18
- readFn?: () => Promise<boolean>;
19
- createFn?: () => Promise<boolean>;
20
- deleteFn?: () => Promise<boolean>;
21
- classes?: tProps<string>;
22
- /**
23
- * Refresh the content
24
- */
25
- refresh?: () => unknown;
26
- modalTarget?: string | RendererElement;
27
- modalTheme?: tThemeTuple | tProp<tThemeModifier>;
28
- }
29
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<iValueComplexProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<iValueComplexProps>>>, {}, {}>;
30
- export default _default;
31
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
32
- type __VLS_TypePropsToRuntimeProps<T> = {
33
- [K in keyof T]-?: {} extends Pick<T, K> ? {
34
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
35
- } : {
36
- type: import('vue').PropType<T[K]>;
37
- required: true;
38
- };
2
+ import type { iProperty, tProp, tProps, tThemeModifier, tThemeTuple } from "@open-xamu-co/ui-common-types";
3
+ declare const _default: <P extends Record<string, any>, T>(__VLS_props: {
4
+ node?: P | undefined;
5
+ refresh?: (() => unknown) | undefined;
6
+ classes?: tProps<string> | undefined;
7
+ theme?: tThemeTuple | tProp<tThemeModifier> | undefined;
8
+ value: T;
9
+ property?: iProperty<P> | undefined;
10
+ readOnly?: boolean | undefined;
11
+ modalTarget?: string | RendererElement | undefined;
12
+ modalTheme?: tThemeTuple | tProp<tThemeModifier> | undefined;
13
+ omitRefresh?: boolean | undefined;
14
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
15
+ attrs: any;
16
+ slots: {};
17
+ emit: any;
18
+ } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
19
+ props: {
20
+ node?: P | undefined;
21
+ refresh?: (() => unknown) | undefined;
22
+ classes?: tProps<string> | undefined;
23
+ theme?: tThemeTuple | tProp<tThemeModifier> | undefined;
24
+ value: T;
25
+ property?: iProperty<P> | undefined;
26
+ readOnly?: boolean | undefined;
27
+ modalTarget?: string | RendererElement | undefined;
28
+ modalTheme?: tThemeTuple | tProp<tThemeModifier> | undefined;
29
+ omitRefresh?: boolean | undefined;
30
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
31
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
32
+ attrs: any;
33
+ slots: {};
34
+ emit: any;
35
+ }>) => import("vue").VNode<import("vue").RendererNode, RendererElement, {
36
+ [key: string]: any;
37
+ }> & {
38
+ __ctx?: {
39
+ props: {
40
+ node?: P | undefined;
41
+ refresh?: (() => unknown) | undefined;
42
+ classes?: tProps<string> | undefined;
43
+ theme?: tThemeTuple | tProp<tThemeModifier> | undefined;
44
+ value: T;
45
+ property?: iProperty<P> | undefined;
46
+ readOnly?: boolean | undefined;
47
+ modalTarget?: string | RendererElement | undefined;
48
+ modalTheme?: tThemeTuple | tProp<tThemeModifier> | undefined;
49
+ omitRefresh?: boolean | undefined;
50
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
51
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
52
+ attrs: any;
53
+ slots: {};
54
+ emit: any;
55
+ } | undefined;
39
56
  };
57
+ export default _default;
@@ -1,28 +1,48 @@
1
1
  import { type RendererElement } from "vue";
2
- import type { iSelectOption, tProps, tThemeTuple, tProp, tThemeModifier } from "@open-xamu-co/ui-common-types";
3
- import type { iUseThemeProps } from "../../types/props";
4
- interface iValueSimpleProps extends iUseThemeProps {
5
- /**
6
- * Cell value
7
- */
8
- value: unknown;
9
- /**
10
- * Cell column property
11
- */
12
- property?: iSelectOption;
13
- readOnly?: boolean;
14
- classes?: tProps<string>;
15
- modalTarget?: string | RendererElement;
16
- modalTheme?: tThemeTuple | tProp<tThemeModifier>;
17
- }
18
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<iValueSimpleProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<iValueSimpleProps>>>, {}, {}>;
19
- export default _default;
20
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
21
- type __VLS_TypePropsToRuntimeProps<T> = {
22
- [K in keyof T]-?: {} extends Pick<T, K> ? {
23
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
24
- } : {
25
- type: import('vue').PropType<T[K]>;
26
- required: true;
27
- };
2
+ import type { tProps, tThemeTuple, tProp, tThemeModifier, iProperty } from "@open-xamu-co/ui-common-types";
3
+ declare const _default: <P extends Record<string, any>, T>(__VLS_props: {
4
+ classes?: tProps<string> | undefined;
5
+ theme?: tThemeTuple | tProp<tThemeModifier> | undefined;
6
+ value: T;
7
+ property?: iProperty<P> | undefined;
8
+ readOnly?: boolean | undefined;
9
+ modalTarget?: string | RendererElement | undefined;
10
+ modalTheme?: tThemeTuple | tProp<tThemeModifier> | undefined;
11
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
12
+ attrs: any;
13
+ slots: {};
14
+ emit: any;
15
+ } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
16
+ props: {
17
+ classes?: tProps<string> | undefined;
18
+ theme?: tThemeTuple | tProp<tThemeModifier> | undefined;
19
+ value: T;
20
+ property?: iProperty<P> | undefined;
21
+ readOnly?: boolean | undefined;
22
+ modalTarget?: string | RendererElement | undefined;
23
+ modalTheme?: tThemeTuple | tProp<tThemeModifier> | undefined;
24
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
25
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
26
+ attrs: any;
27
+ slots: {};
28
+ emit: any;
29
+ }>) => import("vue").VNode<import("vue").RendererNode, RendererElement, {
30
+ [key: string]: any;
31
+ }> & {
32
+ __ctx?: {
33
+ props: {
34
+ classes?: tProps<string> | undefined;
35
+ theme?: tThemeTuple | tProp<tThemeModifier> | undefined;
36
+ value: T;
37
+ property?: iProperty<P> | undefined;
38
+ readOnly?: boolean | undefined;
39
+ modalTarget?: string | RendererElement | undefined;
40
+ modalTheme?: tThemeTuple | tProp<tThemeModifier> | undefined;
41
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
42
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
43
+ attrs: any;
44
+ slots: {};
45
+ emit: any;
46
+ } | undefined;
28
47
  };
48
+ export default _default;
@@ -1,6 +1,5 @@
1
- import type { tThemeModifier } from "@open-xamu-co/ui-common-types";
1
+ import type { tThemeModifier, tThemeTuple } from "@open-xamu-co/ui-common-types";
2
2
  import type { iUseThemeProps, iUseThemeTooltipProps } from "../types/props";
3
- type tThemes = [tThemeModifier, tThemeModifier];
4
3
  interface iAllUseThemeProps extends iUseThemeProps, iUseThemeTooltipProps {
5
4
  /**
6
5
  * Theme as union
@@ -14,7 +13,7 @@ interface iAllUseThemeProps extends iUseThemeProps, iUseThemeTooltipProps {
14
13
  * @composable
15
14
  */
16
15
  export default function useTheme(props: iAllUseThemeProps): {
17
- themeValues: import("vue").ComputedRef<tThemes>;
16
+ themeValues: import("vue").ComputedRef<tThemeTuple>;
18
17
  themeClasses: import("vue").ComputedRef<string[]>;
19
18
  tooltipAttributes: import("vue").ComputedRef<{
20
19
  "arial-label": string;