cleek 2.10.58 → 2.10.60

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.
@@ -21,6 +21,7 @@ export declare const useCleekOptionsStore: import('pinia').StoreDefinition<"clee
21
21
  };
22
22
  chip: {
23
23
  type: import('./cleek-options.types').ChipType;
24
+ layout: import('./cleek-options.types').Layout;
24
25
  };
25
26
  div: {
26
27
  gap: 0;
@@ -72,6 +73,7 @@ export declare const useCleekOptionsStore: import('pinia').StoreDefinition<"clee
72
73
  };
73
74
  chip: {
74
75
  type: import('./cleek-options.types').ChipType;
76
+ layout: import('./cleek-options.types').Layout;
75
77
  };
76
78
  div: {
77
79
  gap: 0;
@@ -167,6 +169,7 @@ export declare const useCleekOptionsStore: import('pinia').StoreDefinition<"clee
167
169
  };
168
170
  chip: {
169
171
  type: import('./cleek-options.types').ChipType;
172
+ layout: import('./cleek-options.types').Layout;
170
173
  };
171
174
  div: {
172
175
  gap: 0;
@@ -218,6 +221,7 @@ export declare const useCleekOptionsStore: import('pinia').StoreDefinition<"clee
218
221
  };
219
222
  chip: {
220
223
  type: import('./cleek-options.types').ChipType;
224
+ layout: import('./cleek-options.types').Layout;
221
225
  };
222
226
  div: {
223
227
  gap: 0;
@@ -313,6 +317,7 @@ export declare const useCleekOptionsStore: import('pinia').StoreDefinition<"clee
313
317
  };
314
318
  chip: {
315
319
  type: import('./cleek-options.types').ChipType;
320
+ layout: import('./cleek-options.types').Layout;
316
321
  };
317
322
  div: {
318
323
  gap: 0;
@@ -364,6 +369,7 @@ export declare const useCleekOptionsStore: import('pinia').StoreDefinition<"clee
364
369
  };
365
370
  chip: {
366
371
  type: import('./cleek-options.types').ChipType;
372
+ layout: import('./cleek-options.types').Layout;
367
373
  };
368
374
  div: {
369
375
  gap: 0;
@@ -34,6 +34,7 @@ export type CleekOptions = {
34
34
  };
35
35
  chip: {
36
36
  type: ChipType;
37
+ layout: Layout;
37
38
  };
38
39
  div: {
39
40
  gap: 0;
@@ -1,4 +1,4 @@
1
- import { Align, ChipType, Color, Icon, IconPack, Size } from '../cleek-options/cleek-options.types';
1
+ import { Align, ChipType, Color, Icon, IconPack, Size, Layout } from '../cleek-options/cleek-options.types';
2
2
 
3
3
  declare function __VLS_template(): {
4
4
  default?(_: {}): any;
@@ -15,6 +15,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
15
15
  clickable?: boolean;
16
16
  group?: Align;
17
17
  type?: ChipType;
18
+ layout?: Layout;
18
19
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
20
  click: (event: Event) => void;
20
21
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
@@ -29,6 +30,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
29
30
  clickable?: boolean;
30
31
  group?: Align;
31
32
  type?: ChipType;
33
+ layout?: Layout;
32
34
  }>>> & Readonly<{
33
35
  onClick?: (event: Event) => any;
34
36
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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.58",
4
+ "version": "2.10.60",
5
5
  "author": "Quantic Onion",
6
6
  "license": "MIT",
7
7
  "repository": "",