@v1nt1248/3nclient-lib 0.0.24 → 0.0.26

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.
Files changed (40) hide show
  1. package/README.md +4 -6
  2. package/dist/components/index.d.ts +3 -1
  3. package/dist/components/ui3n-button.vue.d.ts +11 -52
  4. package/dist/components/ui3n-checkbox.vue.d.ts +68 -0
  5. package/dist/components/ui3n-dialog.vue.d.ts +11 -24
  6. package/dist/components/ui3n-drop-files.vue.d.ts +11 -22
  7. package/dist/components/ui3n-emoji.vue.d.ts +22 -28
  8. package/dist/components/ui3n-icon.vue.d.ts +11 -72
  9. package/dist/components/ui3n-input.vue.d.ts +11 -60
  10. package/dist/components/ui3n-list.vue.d.ts +36 -11
  11. package/dist/components/ui3n-menu.vue.d.ts +29 -45
  12. package/dist/components/ui3n-notification.vue.d.ts +10 -70
  13. package/dist/components/ui3n-table-sort-icon.vue.d.ts +9 -22
  14. package/dist/components/ui3n-table.vue.d.ts +11 -18
  15. package/dist/components/ui3n-text.vue.d.ts +11 -48
  16. package/dist/components/ui3n-virtual-scroll.vue.d.ts +21 -11
  17. package/dist/index.d.ts +37 -2
  18. package/dist/stories/Ui3nButton.stories.d.ts +32 -47
  19. package/dist/stories/Ui3nCheckbox.stories.d.ts +226 -0
  20. package/dist/stories/Ui3nDropFiles.stories.d.ts +15 -47
  21. package/dist/stories/Ui3nEmoji.stories.d.ts +8 -8
  22. package/dist/stories/Ui3nList.stories.d.ts +36 -11
  23. package/dist/style.css +1 -1
  24. package/dist/tools/index.d.ts +2 -0
  25. package/dist/ui-3n-lib.js +6899 -7744
  26. package/package.json +11 -12
  27. package/src/components/index.ts +6 -0
  28. package/src/components/ui3n-button.vue +2 -15
  29. package/src/components/ui3n-checkbox.vue +191 -0
  30. package/dist/libs/index.d.ts +0 -4
  31. package/dist/libs/ipc-service-caller.d.ts +0 -12
  32. package/dist/libs/ipc-service.d.ts +0 -60
  33. package/dist/libs/serialization-for-ipc/copy-json.d.ts +0 -8
  34. package/dist/libs/serialization-for-ipc/json-n-binary.d.ts +0 -5
  35. package/dist/libs/serialization-for-ipc/protobuf-type.d.ts +0 -10
  36. package/dist/libs/serialization-for-ipc/types.d.ts +0 -3
  37. /package/dist/{libs → tools}/sqlite-on-3nstorage/deferred.d.ts +0 -0
  38. /package/dist/{libs → tools}/sqlite-on-3nstorage/index.d.ts +0 -0
  39. /package/dist/{libs → tools}/sqlite-on-3nstorage/synced.d.ts +0 -0
  40. /package/dist/{libs → tools}/sqlite-on-3nstorage/types.d.ts +0 -0
@@ -16,55 +16,25 @@ export interface Ui3nMenuSlots {
16
16
  default: () => any;
17
17
  menu?: () => any;
18
18
  }
19
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
20
- disabled: {
21
- type: import("vue").PropType<boolean>;
22
- default: boolean;
23
- };
24
- offsetX: {
25
- type: import("vue").PropType<number>;
26
- default: number;
27
- };
28
- offsetY: {
29
- type: import("vue").PropType<number>;
30
- default: number;
31
- };
32
- closeOnClick: {
33
- type: import("vue").PropType<boolean>;
34
- default: boolean;
35
- };
36
- closeOnClickOutside: {
37
- type: import("vue").PropType<boolean>;
38
- default: boolean;
39
- };
40
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nMenuProps>, {
20
+ offsetX: number;
21
+ offsetY: number;
22
+ closeOnClick: boolean;
23
+ closeOnClickOutside: boolean;
24
+ disabled: boolean;
25
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
41
26
  open: () => void;
42
27
  opened: () => void;
43
28
  close: () => void;
44
29
  closed: () => void;
45
30
  "click-outside": () => void;
46
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
47
- disabled: {
48
- type: import("vue").PropType<boolean>;
49
- default: boolean;
50
- };
51
- offsetX: {
52
- type: import("vue").PropType<number>;
53
- default: number;
54
- };
55
- offsetY: {
56
- type: import("vue").PropType<number>;
57
- default: number;
58
- };
59
- closeOnClick: {
60
- type: import("vue").PropType<boolean>;
61
- default: boolean;
62
- };
63
- closeOnClickOutside: {
64
- type: import("vue").PropType<boolean>;
65
- default: boolean;
66
- };
67
- }>> & {
31
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nMenuProps>, {
32
+ offsetX: number;
33
+ offsetY: number;
34
+ closeOnClick: boolean;
35
+ closeOnClickOutside: boolean;
36
+ disabled: boolean;
37
+ }>>> & {
68
38
  onOpen?: (() => any) | undefined;
69
39
  onClose?: (() => any) | undefined;
70
40
  onOpened?: (() => any) | undefined;
@@ -76,8 +46,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
76
46
  offsetY: number;
77
47
  closeOnClick: boolean;
78
48
  closeOnClickOutside: boolean;
79
- }, {}>, Ui3nMenuSlots>;
49
+ }, {}>, Readonly<Ui3nMenuSlots>>;
80
50
  export default _default;
51
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
52
+ type __VLS_TypePropsToRuntimeProps<T> = {
53
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
54
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
55
+ } : {
56
+ type: import('vue').PropType<T[K]>;
57
+ required: true;
58
+ };
59
+ };
60
+ type __VLS_WithDefaults<P, D> = {
61
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
62
+ default: D[K];
63
+ }> : P[K];
64
+ };
81
65
  type __VLS_WithTemplateSlots<T, S> = T & {
82
66
  new (): {
83
67
  $slots: S;
@@ -1,72 +1,12 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- id: {
3
- type: import("vue").PropType<string>;
4
- };
5
- type: {
6
- type: import("vue").PropType<"error" | "success" | "warning" | "info">;
7
- };
8
- content: {
9
- type: import("vue").PropType<string>;
10
- required: true;
11
- };
12
- icon: {
13
- type: import("vue").PropType<string>;
14
- };
15
- iconSize: {
16
- type: import("vue").PropType<string | number>;
17
- };
18
- iconColor: {
19
- type: import("vue").PropType<string>;
20
- };
21
- position: {
22
- type: import("vue").PropType<"left" | "center" | "right">;
23
- };
24
- duration: {
25
- type: import("vue").PropType<number>;
26
- };
27
- teleport: {
28
- type: import("vue").PropType<string>;
29
- };
30
- onOpen: {
31
- type: import("vue").PropType<() => void>;
32
- };
33
- onClose: {
34
- type: import("vue").PropType<() => void>;
35
- };
36
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
37
- id: {
38
- type: import("vue").PropType<string>;
39
- };
40
- type: {
41
- type: import("vue").PropType<"error" | "success" | "warning" | "info">;
42
- };
43
- content: {
44
- type: import("vue").PropType<string>;
1
+ import type { Ui3nNotificationProps } from '../constants';
2
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nNotificationProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nNotificationProps>>>, {}, {}>;
3
+ export default _default;
4
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
5
+ type __VLS_TypePropsToRuntimeProps<T> = {
6
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
7
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
8
+ } : {
9
+ type: import('vue').PropType<T[K]>;
45
10
  required: true;
46
11
  };
47
- icon: {
48
- type: import("vue").PropType<string>;
49
- };
50
- iconSize: {
51
- type: import("vue").PropType<string | number>;
52
- };
53
- iconColor: {
54
- type: import("vue").PropType<string>;
55
- };
56
- position: {
57
- type: import("vue").PropType<"left" | "center" | "right">;
58
- };
59
- duration: {
60
- type: import("vue").PropType<number>;
61
- };
62
- teleport: {
63
- type: import("vue").PropType<string>;
64
- };
65
- onOpen: {
66
- type: import("vue").PropType<() => void>;
67
- };
68
- onClose: {
69
- type: import("vue").PropType<() => void>;
70
- };
71
- }>>, {}, {}>;
72
- export default _default;
12
+ };
@@ -3,27 +3,14 @@ export interface Ui3nTableSortIconProps {
3
3
  color?: string;
4
4
  value: 'asc' | 'desc';
5
5
  }
6
- declare const _default: import("vue").DefineComponent<{
7
- size: {
8
- type: import("vue").PropType<string | number>;
9
- };
10
- color: {
11
- type: import("vue").PropType<string>;
12
- };
13
- value: {
14
- type: import("vue").PropType<"desc" | "asc">;
15
- required: true;
16
- };
17
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
18
- size: {
19
- type: import("vue").PropType<string | number>;
20
- };
21
- color: {
22
- type: import("vue").PropType<string>;
23
- };
24
- value: {
25
- type: import("vue").PropType<"desc" | "asc">;
6
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nTableSortIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTableSortIconProps>>>, {}, {}>;
7
+ export default _default;
8
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
9
+ type __VLS_TypePropsToRuntimeProps<T> = {
10
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
11
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
12
+ } : {
13
+ type: import('vue').PropType<T[K]>;
26
14
  required: true;
27
15
  };
28
- }>>, {}, {}>;
29
- export default _default;
16
+ };
@@ -10,29 +10,13 @@ export interface Ui3nTableEmits {
10
10
  entity: ListingEntryTypeExtended;
11
11
  }): void;
12
12
  }
13
- declare const _default: import("vue").DefineComponent<{
14
- items: {
15
- type: import("vue").PropType<ListingEntryTypeExtended[]>;
16
- required: true;
17
- };
18
- textIfEmpty: {
19
- type: import("vue").PropType<string>;
20
- };
21
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nTableProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
14
  go: (name: string) => void;
23
15
  action: (value: {
24
16
  action: EntityAction;
25
17
  entity: ListingEntryTypeExtended;
26
18
  }) => void;
27
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
28
- items: {
29
- type: import("vue").PropType<ListingEntryTypeExtended[]>;
30
- required: true;
31
- };
32
- textIfEmpty: {
33
- type: import("vue").PropType<string>;
34
- };
35
- }>> & {
19
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTableProps>>> & {
36
20
  onGo?: ((name: string) => any) | undefined;
37
21
  onAction?: ((value: {
38
22
  action: EntityAction;
@@ -40,3 +24,12 @@ declare const _default: import("vue").DefineComponent<{
40
24
  }) => any) | undefined;
41
25
  }, {}, {}>;
42
26
  export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -15,60 +15,14 @@ export interface Ui3nTextEmits {
15
15
  (ev: 'update:text', value: string): void;
16
16
  (ev: 'update:valid', value: boolean): void;
17
17
  }
18
- declare const _default: import("vue").DefineComponent<{
19
- text: {
20
- type: import("vue").PropType<string>;
21
- required: true;
22
- };
23
- rows: {
24
- type: import("vue").PropType<number>;
25
- };
26
- maxRows: {
27
- type: import("vue").PropType<number>;
28
- };
29
- label: {
30
- type: import("vue").PropType<string>;
31
- };
32
- placeholder: {
33
- type: import("vue").PropType<string>;
34
- };
35
- rules: {
36
- type: import("vue").PropType<((v: string) => any)[]>;
37
- };
38
- disabled: {
39
- type: import("vue").PropType<boolean>;
40
- };
41
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nTextProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
42
19
  init: (value: HTMLTextAreaElement) => void;
43
20
  input: (value: string) => void;
44
21
  focus: (value: Event) => void;
45
22
  blur: (value: Event) => void;
46
23
  "update:text": (value: string) => void;
47
24
  "update:valid": (value: boolean) => void;
48
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
49
- text: {
50
- type: import("vue").PropType<string>;
51
- required: true;
52
- };
53
- rows: {
54
- type: import("vue").PropType<number>;
55
- };
56
- maxRows: {
57
- type: import("vue").PropType<number>;
58
- };
59
- label: {
60
- type: import("vue").PropType<string>;
61
- };
62
- placeholder: {
63
- type: import("vue").PropType<string>;
64
- };
65
- rules: {
66
- type: import("vue").PropType<((v: string) => any)[]>;
67
- };
68
- disabled: {
69
- type: import("vue").PropType<boolean>;
70
- };
71
- }>> & {
25
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTextProps>>> & {
72
26
  onFocus?: ((value: Event) => any) | undefined;
73
27
  onBlur?: ((value: Event) => any) | undefined;
74
28
  onInput?: ((value: string) => any) | undefined;
@@ -77,3 +31,12 @@ declare const _default: import("vue").DefineComponent<{
77
31
  "onUpdate:text"?: ((value: string) => any) | undefined;
78
32
  }, {}, {}>;
79
33
  export default _default;
34
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
35
+ type __VLS_TypePropsToRuntimeProps<T> = {
36
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
37
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
38
+ } : {
39
+ type: import('vue').PropType<T[K]>;
40
+ required: true;
41
+ };
42
+ };
@@ -8,26 +8,36 @@ export interface Ui3nVirtualScrollSlots<T> {
8
8
  }
9
9
  declare const _default: <T extends {
10
10
  id?: string | undefined;
11
- }>(__VLS_props: Ui3nVirtualScrollProps<T> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: Pick<{
12
- props: Ui3nVirtualScrollProps<T>;
13
- expose(exposed: {}): void;
11
+ }>(__VLS_props: {
12
+ items: T[];
13
+ minChildHeight: number;
14
+ renderAhread?: number | undefined;
15
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
14
16
  attrs: any;
15
- slots: Ui3nVirtualScrollSlots<T>;
17
+ slots: Readonly<Ui3nVirtualScrollSlots<T>>;
16
18
  emit: any;
17
- }, "attrs" | "slots" | "emit"> | undefined, __VLS_expose?: ((exposed: {}) => void) | undefined, __VLS_setup?: Promise<{
18
- props: Ui3nVirtualScrollProps<T>;
19
- expose(exposed: {}): void;
19
+ } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
20
+ props: {
21
+ items: T[];
22
+ minChildHeight: number;
23
+ renderAhread?: number | undefined;
24
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
25
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
20
26
  attrs: any;
21
- slots: Ui3nVirtualScrollSlots<T>;
27
+ slots: Readonly<Ui3nVirtualScrollSlots<T>>;
22
28
  emit: any;
23
29
  }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
24
30
  [key: string]: any;
25
31
  }> & {
26
32
  __ctx?: {
27
- props: Ui3nVirtualScrollProps<T>;
28
- expose(exposed: {}): void;
33
+ props: {
34
+ items: T[];
35
+ minChildHeight: number;
36
+ renderAhread?: number | undefined;
37
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
38
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
29
39
  attrs: any;
30
- slots: Ui3nVirtualScrollSlots<T>;
40
+ slots: Readonly<Ui3nVirtualScrollSlots<T>>;
31
41
  emit: any;
32
42
  } | undefined;
33
43
  };
package/dist/index.d.ts CHANGED
@@ -1,9 +1,24 @@
1
1
  import type { CbFunction, Ui3nNotificationProps, VueEventBus } from './constants';
2
- import type { Ui3nDialogComponentProps } from './components/ui3n-dialog.vue';
3
2
  import type { DialogInstance } from './plugins/dialogs';
3
+ import type Ui3nButton from './components/ui3n-button.vue';
4
+ import type Ui3nCheckbox from './components/ui3n-checkbox.vue';
5
+ import type Ui3nDialog from './components/ui3n-dialog.vue';
6
+ import type { Ui3nDialogComponentProps } from './components/ui3n-dialog.vue';
7
+ import type Ui3nDropFiles from './components/ui3n-drop-files.vue';
8
+ import type Ui3nEmoji from './components/ui3n-emoji.vue';
9
+ import type Ui3nIcon from './components/ui3n-icon.vue';
10
+ import type Ui3nInput from './components/ui3n-input.vue';
11
+ import type Ui3nList from './components/ui3n-list.vue';
12
+ import type Ui3nMenu from './components/ui3n-menu.vue';
13
+ import type Ui3nNotification from './components/ui3n-notification.vue';
14
+ import type Ui3nTableSortIcon from './components/ui3n-table-sort-icon.vue';
15
+ import type Ui3nTable from './components/ui3n-table.vue';
16
+ import type Ui3nText from './components/ui3n-text.vue';
17
+ import type Ui3nVirtualScroll from './components/ui3n-virtual-scroll.vue';
18
+ import type Ui3nHtml from './directives/ui3n-html';
19
+ import type Ui3nClickOutside from './directives/ui3n-click-outside';
4
20
  export * from './constants';
5
21
  export * from './tools';
6
- export * from './libs';
7
22
  export * from './plugins';
8
23
  export * from './directives';
9
24
  export * from './components';
@@ -16,6 +31,26 @@ declare module 'vue' {
16
31
  $changeLocale: (lang: string) => void;
17
32
  $emitter: VueEventBus;
18
33
  }
34
+ interface GlobalComponents {
35
+ Ui3nButton: typeof Ui3nButton;
36
+ Ui3nCheckbox: typeof Ui3nCheckbox;
37
+ Ui3nDialog: typeof Ui3nDialog;
38
+ Ui3nDropFiles: typeof Ui3nDropFiles;
39
+ Ui3nEmoji: typeof Ui3nEmoji;
40
+ Ui3nIcon: typeof Ui3nIcon;
41
+ Ui3nInput: typeof Ui3nInput;
42
+ Ui3nList: typeof Ui3nList;
43
+ Ui3nMenu: typeof Ui3nMenu;
44
+ Ui3nNotification: typeof Ui3nNotification;
45
+ Ui3nTableSortIcon: typeof Ui3nTableSortIcon;
46
+ Ui3nTable: typeof Ui3nTable;
47
+ Ui3nText: typeof Ui3nText;
48
+ Ui3nVirtualScroll: typeof Ui3nVirtualScroll;
49
+ }
50
+ interface GlobalDirectives {
51
+ Ui3nHtml: typeof Ui3nHtml;
52
+ Ui3nClickOutside: typeof Ui3nClickOutside;
53
+ }
19
54
  }
20
55
  declare module 'pinia' {
21
56
  interface PiniaCustomProperties {
@@ -6,63 +6,48 @@ export declare const WithText: StoryFn<{
6
6
  new (...args: any[]): {
7
7
  $: import("vue").ComponentInternalInstance;
8
8
  $data: {};
9
- $props: {
10
- style?: unknown;
9
+ $props: Partial<{}> & Omit<{
11
10
  readonly icon?: string | undefined;
12
11
  readonly color?: string | undefined;
13
- onClick?: ((value: Event) => any) | undefined;
14
- key?: string | number | symbol | undefined;
15
- ref?: import("vue").VNodeRef | undefined;
16
- ref_for?: boolean | undefined;
17
- ref_key?: string | undefined;
18
- onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
19
- [key: string]: any;
20
- }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
21
- [key: string]: any;
22
- }>) => void)[] | undefined;
23
- onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
24
- [key: string]: any;
25
- }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
26
- [key: string]: any;
27
- }>) => void)[] | undefined;
28
- onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
29
- [key: string]: any;
30
- }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
31
- [key: string]: any;
32
- }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
33
- [key: string]: any;
34
- }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
35
- [key: string]: any;
36
- }>) => void)[] | undefined;
37
- onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
38
- [key: string]: any;
39
- }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
40
- [key: string]: any;
41
- }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
42
- [key: string]: any;
43
- }>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
44
- [key: string]: any;
45
- }>) => void)[] | undefined;
46
- onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
- [key: string]: any;
48
- }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
49
- [key: string]: any;
50
- }>) => void)[] | undefined;
51
- onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
52
- [key: string]: any;
53
- }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
54
- [key: string]: any;
55
- }>) => void)[] | undefined;
56
- class?: unknown;
57
12
  readonly textColor?: string | undefined;
58
13
  readonly round?: boolean | undefined;
59
14
  readonly elevation?: boolean | undefined;
60
15
  readonly iconSize?: string | number | undefined;
61
16
  readonly iconColor?: string | undefined;
62
17
  readonly disabled?: boolean | undefined;
18
+ onClick?: ((value: Event) => any) | undefined;
63
19
  onFocus?: ((value: Event) => any) | undefined;
64
20
  onBlur?: ((value: Event) => any) | undefined;
65
- };
21
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
22
+ textColor: {
23
+ type: import("vue").PropType<string>;
24
+ };
25
+ color: {
26
+ type: import("vue").PropType<string>;
27
+ };
28
+ round: {
29
+ type: import("vue").PropType<boolean>;
30
+ };
31
+ elevation: {
32
+ type: import("vue").PropType<boolean>;
33
+ };
34
+ icon: {
35
+ type: import("vue").PropType<string>;
36
+ };
37
+ iconSize: {
38
+ type: import("vue").PropType<string | number>;
39
+ };
40
+ iconColor: {
41
+ type: import("vue").PropType<string>;
42
+ };
43
+ disabled: {
44
+ type: import("vue").PropType<boolean>;
45
+ };
46
+ }>> & {
47
+ onClick?: ((value: Event) => any) | undefined;
48
+ onFocus?: ((value: Event) => any) | undefined;
49
+ onBlur?: ((value: Event) => any) | undefined;
50
+ }, never>;
66
51
  $attrs: {
67
52
  [x: string]: unknown;
68
53
  };