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.
- package/dist/main.cjs.js +4 -4
- package/dist/main.css +1 -1
- package/dist/main.es.js +129 -127
- package/dist/types/cleek-options/cleek-options.store.d.ts +6 -0
- package/dist/types/cleek-options/cleek-options.types.d.ts +1 -0
- package/dist/types/components/ck-chip.vue.d.ts +3 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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>;
|