cleek 2.10.59 → 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;
|
|
@@ -8,19 +8,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
8
8
|
required: true;
|
|
9
9
|
type: import('vue').PropType<Value>;
|
|
10
10
|
};
|
|
11
|
+
label: {
|
|
12
|
+
type: import('vue').PropType<string>;
|
|
13
|
+
};
|
|
11
14
|
layout: {
|
|
12
15
|
type: import('vue').PropType<Layout>;
|
|
13
16
|
};
|
|
17
|
+
borderColor: {
|
|
18
|
+
type: import('vue').PropType<string>;
|
|
19
|
+
};
|
|
14
20
|
type: {
|
|
15
21
|
type: import('vue').PropType<InputType>;
|
|
16
22
|
default: string;
|
|
17
23
|
};
|
|
18
|
-
label: {
|
|
19
|
-
type: import('vue').PropType<string>;
|
|
20
|
-
};
|
|
21
|
-
borderColor: {
|
|
22
|
-
type: import('vue').PropType<string>;
|
|
23
|
-
};
|
|
24
24
|
textColor: {
|
|
25
25
|
type: import('vue').PropType<string>;
|
|
26
26
|
};
|
|
@@ -120,19 +120,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
120
120
|
required: true;
|
|
121
121
|
type: import('vue').PropType<Value>;
|
|
122
122
|
};
|
|
123
|
+
label: {
|
|
124
|
+
type: import('vue').PropType<string>;
|
|
125
|
+
};
|
|
123
126
|
layout: {
|
|
124
127
|
type: import('vue').PropType<Layout>;
|
|
125
128
|
};
|
|
129
|
+
borderColor: {
|
|
130
|
+
type: import('vue').PropType<string>;
|
|
131
|
+
};
|
|
126
132
|
type: {
|
|
127
133
|
type: import('vue').PropType<InputType>;
|
|
128
134
|
default: string;
|
|
129
135
|
};
|
|
130
|
-
label: {
|
|
131
|
-
type: import('vue').PropType<string>;
|
|
132
|
-
};
|
|
133
|
-
borderColor: {
|
|
134
|
-
type: import('vue').PropType<string>;
|
|
135
|
-
};
|
|
136
136
|
textColor: {
|
|
137
137
|
type: import('vue').PropType<string>;
|
|
138
138
|
};
|
|
@@ -9,12 +9,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
9
9
|
required: true;
|
|
10
10
|
type: import('vue').PropType<OptionValue>;
|
|
11
11
|
};
|
|
12
|
-
layout: {
|
|
13
|
-
type: import('vue').PropType<Layout>;
|
|
14
|
-
};
|
|
15
12
|
label: {
|
|
16
13
|
type: import('vue').PropType<string>;
|
|
17
14
|
};
|
|
15
|
+
layout: {
|
|
16
|
+
type: import('vue').PropType<Layout>;
|
|
17
|
+
};
|
|
18
18
|
borderColor: {
|
|
19
19
|
type: import('vue').PropType<string>;
|
|
20
20
|
};
|
|
@@ -133,12 +133,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
133
133
|
required: true;
|
|
134
134
|
type: import('vue').PropType<OptionValue>;
|
|
135
135
|
};
|
|
136
|
-
layout: {
|
|
137
|
-
type: import('vue').PropType<Layout>;
|
|
138
|
-
};
|
|
139
136
|
label: {
|
|
140
137
|
type: import('vue').PropType<string>;
|
|
141
138
|
};
|
|
139
|
+
layout: {
|
|
140
|
+
type: import('vue').PropType<Layout>;
|
|
141
|
+
};
|
|
142
142
|
borderColor: {
|
|
143
143
|
type: import('vue').PropType<string>;
|
|
144
144
|
};
|