cleek 2.10.38 → 2.10.40

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.
@@ -7,6 +7,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
7
7
  title?: string;
8
8
  disabled?: boolean;
9
9
  isLoading?: boolean;
10
+ tabindex?: number;
10
11
  type?: ButtonType;
11
12
  color?: Color;
12
13
  textColor?: Color;
@@ -29,6 +30,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
29
30
  title?: string;
30
31
  disabled?: boolean;
31
32
  isLoading?: boolean;
33
+ tabindex?: number;
32
34
  type?: ButtonType;
33
35
  color?: Color;
34
36
  textColor?: Color;
@@ -1,10 +1,14 @@
1
1
  import { Align } from '../cleek-options/cleek-options.types';
2
2
 
3
- type Option = boolean | number | object | string;
3
+ type Option = {
4
+ id: boolean | number | string;
5
+ name: string;
6
+ icon?: string;
7
+ };
4
8
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
9
  modelValue: {
6
10
  required: true;
7
- type: import('vue').PropType<Option>;
11
+ type: import('vue').PropType<Option["id"]>;
8
12
  };
9
13
  label: {
10
14
  type: import('vue').PropType<string>;
@@ -42,7 +46,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
42
46
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
43
47
  modelValue: {
44
48
  required: true;
45
- type: import('vue').PropType<Option>;
49
+ type: import('vue').PropType<Option["id"]>;
46
50
  };
47
51
  label: {
48
52
  type: import('vue').PropType<string>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cleek",
3
3
  "description": "Complete UX Vue library",
4
- "version": "2.10.38",
4
+ "version": "2.10.40",
5
5
  "author": "Quantic Onion",
6
6
  "license": "MIT",
7
7
  "repository": "",