@solfacil/girassol 0.32.0 → 0.34.0
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/girassol.es.js +3070 -3027
- package/dist/girassol.umd.js +6 -6
- package/dist/style.css +1 -1
- package/dist/types/components/forms/checkbox/checkbox-group/CheckboxGroup.vue.d.ts +5 -0
- package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +2 -0
- package/dist/types/components/forms/radio/radio-group/RadioGroup.vue.d.ts +22 -0
- package/dist/types/index.d.ts +127 -2
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
13
|
showMaxItems?: number | undefined;
|
|
14
14
|
showMaxItemsStep?: number | undefined;
|
|
15
15
|
showMoreLegend?: string | undefined;
|
|
16
|
+
showLessLegend?: string | undefined;
|
|
16
17
|
useField?: typeof import("vee-validate").useField | undefined;
|
|
17
18
|
rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
|
|
18
19
|
opts?: Partial<import("vee-validate").FieldOptions<import("@forms/checkbox/type").CheckboxValue>> | undefined;
|
|
@@ -22,6 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
22
23
|
hideTitle: boolean;
|
|
23
24
|
showMaxItemsStep: number;
|
|
24
25
|
showMoreLegend: string;
|
|
26
|
+
showLessLegend: string;
|
|
25
27
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
28
|
change: (value: import("@forms/checkbox/type").CheckboxValue) => void;
|
|
27
29
|
} & {
|
|
@@ -40,6 +42,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
40
42
|
showMaxItems?: number | undefined;
|
|
41
43
|
showMaxItemsStep?: number | undefined;
|
|
42
44
|
showMoreLegend?: string | undefined;
|
|
45
|
+
showLessLegend?: string | undefined;
|
|
43
46
|
useField?: typeof import("vee-validate").useField | undefined;
|
|
44
47
|
rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
|
|
45
48
|
opts?: Partial<import("vee-validate").FieldOptions<import("@forms/checkbox/type").CheckboxValue>> | undefined;
|
|
@@ -49,6 +52,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
49
52
|
hideTitle: boolean;
|
|
50
53
|
showMaxItemsStep: number;
|
|
51
54
|
showMoreLegend: string;
|
|
55
|
+
showLessLegend: string;
|
|
52
56
|
}>>> & {
|
|
53
57
|
onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
54
58
|
"onUpdate:modelValue"?: ((v: import("@forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
@@ -58,6 +62,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
58
62
|
direction: 'row' | 'column';
|
|
59
63
|
showMaxItemsStep: number;
|
|
60
64
|
showMoreLegend: string;
|
|
65
|
+
showLessLegend: string;
|
|
61
66
|
}>, {
|
|
62
67
|
title: (_: {
|
|
63
68
|
id: string;
|
|
@@ -7,6 +7,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
7
7
|
hideLabel?: Radio['hideLabel'];
|
|
8
8
|
checked?: Radio['checked'];
|
|
9
9
|
class?: Radio['class'];
|
|
10
|
+
labelHtml?: boolean | undefined;
|
|
10
11
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
12
|
change: (value: import("../types").RadioValue) => void;
|
|
12
13
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -17,6 +18,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
17
18
|
hideLabel?: Radio['hideLabel'];
|
|
18
19
|
checked?: Radio['checked'];
|
|
19
20
|
class?: Radio['class'];
|
|
21
|
+
labelHtml?: boolean | undefined;
|
|
20
22
|
}>>> & {
|
|
21
23
|
onChange?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
22
24
|
}, {}>;
|
|
@@ -4,11 +4,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
4
4
|
title: string;
|
|
5
5
|
name: string;
|
|
6
6
|
hideTitle?: boolean | undefined;
|
|
7
|
+
labelHtml?: boolean | undefined;
|
|
7
8
|
helperText?: string | undefined;
|
|
8
9
|
error?: string | null | undefined;
|
|
9
10
|
radios: RadioType[];
|
|
10
11
|
modelValue?: import("../types").RadioValue | undefined;
|
|
11
12
|
direction?: "row" | "column" | undefined;
|
|
13
|
+
showMaxItems?: number | undefined;
|
|
14
|
+
showMaxItemsStep?: number | undefined;
|
|
15
|
+
showMoreLegend?: string | undefined;
|
|
16
|
+
showLessLegend?: string | undefined;
|
|
12
17
|
useField?: typeof import("vee-validate").useField | undefined;
|
|
13
18
|
rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
|
|
14
19
|
opts?: Partial<import("vee-validate").FieldOptions<import("../types").RadioValue>> | undefined;
|
|
@@ -16,6 +21,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
16
21
|
error: null;
|
|
17
22
|
direction: string;
|
|
18
23
|
hideTitle: boolean;
|
|
24
|
+
showMaxItemsStep: number;
|
|
25
|
+
showMoreLegend: string;
|
|
26
|
+
showLessLegend: string;
|
|
19
27
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
28
|
change: (value: import("../types").RadioValue) => void;
|
|
21
29
|
} & {
|
|
@@ -25,11 +33,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
25
33
|
title: string;
|
|
26
34
|
name: string;
|
|
27
35
|
hideTitle?: boolean | undefined;
|
|
36
|
+
labelHtml?: boolean | undefined;
|
|
28
37
|
helperText?: string | undefined;
|
|
29
38
|
error?: string | null | undefined;
|
|
30
39
|
radios: RadioType[];
|
|
31
40
|
modelValue?: import("../types").RadioValue | undefined;
|
|
32
41
|
direction?: "row" | "column" | undefined;
|
|
42
|
+
showMaxItems?: number | undefined;
|
|
43
|
+
showMaxItemsStep?: number | undefined;
|
|
44
|
+
showMoreLegend?: string | undefined;
|
|
45
|
+
showLessLegend?: string | undefined;
|
|
33
46
|
useField?: typeof import("vee-validate").useField | undefined;
|
|
34
47
|
rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
|
|
35
48
|
opts?: Partial<import("vee-validate").FieldOptions<import("../types").RadioValue>> | undefined;
|
|
@@ -37,6 +50,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
37
50
|
error: null;
|
|
38
51
|
direction: string;
|
|
39
52
|
hideTitle: boolean;
|
|
53
|
+
showMaxItemsStep: number;
|
|
54
|
+
showMoreLegend: string;
|
|
55
|
+
showLessLegend: string;
|
|
40
56
|
}>>> & {
|
|
41
57
|
onChange?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
42
58
|
"onUpdate:modelValue"?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
@@ -44,6 +60,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
44
60
|
error: string | null;
|
|
45
61
|
hideTitle: boolean;
|
|
46
62
|
direction: 'row' | 'column';
|
|
63
|
+
showMaxItemsStep: number;
|
|
64
|
+
showMoreLegend: string;
|
|
65
|
+
showLessLegend: string;
|
|
47
66
|
}>, {
|
|
48
67
|
title: (_: {
|
|
49
68
|
id: string;
|
|
@@ -52,6 +71,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
52
71
|
radios: RadioType[];
|
|
53
72
|
direction: "row" | "column";
|
|
54
73
|
}) => any;
|
|
74
|
+
showMoreLabel: (_: {
|
|
75
|
+
updateCurrentStep: () => void;
|
|
76
|
+
}) => any;
|
|
55
77
|
}>;
|
|
56
78
|
export default _default;
|
|
57
79
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1232,6 +1232,9 @@ export declare const components: {
|
|
|
1232
1232
|
class: {
|
|
1233
1233
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1234
1234
|
};
|
|
1235
|
+
labelHtml: {
|
|
1236
|
+
type: import("vue").PropType<boolean>;
|
|
1237
|
+
};
|
|
1235
1238
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1236
1239
|
change: (value: import("./components/forms/radio/types").RadioValue) => void;
|
|
1237
1240
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1260,6 +1263,9 @@ export declare const components: {
|
|
|
1260
1263
|
class: {
|
|
1261
1264
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1262
1265
|
};
|
|
1266
|
+
labelHtml: {
|
|
1267
|
+
type: import("vue").PropType<boolean>;
|
|
1268
|
+
};
|
|
1263
1269
|
}>> & {
|
|
1264
1270
|
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1265
1271
|
}, {}>;
|
|
@@ -1271,6 +1277,9 @@ export declare const components: {
|
|
|
1271
1277
|
error: string | null;
|
|
1272
1278
|
hideTitle: boolean;
|
|
1273
1279
|
direction: "row" | "column";
|
|
1280
|
+
showMaxItemsStep: number;
|
|
1281
|
+
showMoreLegend: string;
|
|
1282
|
+
showLessLegend: string;
|
|
1274
1283
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1275
1284
|
id: {
|
|
1276
1285
|
type: import("vue").PropType<string>;
|
|
@@ -1306,6 +1315,9 @@ export declare const components: {
|
|
|
1306
1315
|
opts: {
|
|
1307
1316
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/radio/types").RadioValue>>>;
|
|
1308
1317
|
};
|
|
1318
|
+
labelHtml: {
|
|
1319
|
+
type: import("vue").PropType<boolean>;
|
|
1320
|
+
};
|
|
1309
1321
|
hideTitle: {
|
|
1310
1322
|
type: import("vue").PropType<boolean>;
|
|
1311
1323
|
} & {
|
|
@@ -1316,6 +1328,24 @@ export declare const components: {
|
|
|
1316
1328
|
} & {
|
|
1317
1329
|
default: string;
|
|
1318
1330
|
};
|
|
1331
|
+
showMaxItems: {
|
|
1332
|
+
type: import("vue").PropType<number>;
|
|
1333
|
+
};
|
|
1334
|
+
showMaxItemsStep: {
|
|
1335
|
+
type: import("vue").PropType<number>;
|
|
1336
|
+
} & {
|
|
1337
|
+
default: number;
|
|
1338
|
+
};
|
|
1339
|
+
showMoreLegend: {
|
|
1340
|
+
type: import("vue").PropType<string>;
|
|
1341
|
+
} & {
|
|
1342
|
+
default: string;
|
|
1343
|
+
};
|
|
1344
|
+
showLessLegend: {
|
|
1345
|
+
type: import("vue").PropType<string>;
|
|
1346
|
+
} & {
|
|
1347
|
+
default: string;
|
|
1348
|
+
};
|
|
1319
1349
|
radios: {
|
|
1320
1350
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1321
1351
|
required: true;
|
|
@@ -1323,7 +1353,7 @@ export declare const components: {
|
|
|
1323
1353
|
}>> & {
|
|
1324
1354
|
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1325
1355
|
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1326
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "hideTitle" | "direction">;
|
|
1356
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "hideTitle" | "direction" | "showMaxItemsStep" | "showMoreLegend" | "showLessLegend">;
|
|
1327
1357
|
$attrs: {
|
|
1328
1358
|
[x: string]: unknown;
|
|
1329
1359
|
};
|
|
@@ -1372,6 +1402,9 @@ export declare const components: {
|
|
|
1372
1402
|
opts: {
|
|
1373
1403
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/radio/types").RadioValue>>>;
|
|
1374
1404
|
};
|
|
1405
|
+
labelHtml: {
|
|
1406
|
+
type: import("vue").PropType<boolean>;
|
|
1407
|
+
};
|
|
1375
1408
|
hideTitle: {
|
|
1376
1409
|
type: import("vue").PropType<boolean>;
|
|
1377
1410
|
} & {
|
|
@@ -1382,6 +1415,24 @@ export declare const components: {
|
|
|
1382
1415
|
} & {
|
|
1383
1416
|
default: string;
|
|
1384
1417
|
};
|
|
1418
|
+
showMaxItems: {
|
|
1419
|
+
type: import("vue").PropType<number>;
|
|
1420
|
+
};
|
|
1421
|
+
showMaxItemsStep: {
|
|
1422
|
+
type: import("vue").PropType<number>;
|
|
1423
|
+
} & {
|
|
1424
|
+
default: number;
|
|
1425
|
+
};
|
|
1426
|
+
showMoreLegend: {
|
|
1427
|
+
type: import("vue").PropType<string>;
|
|
1428
|
+
} & {
|
|
1429
|
+
default: string;
|
|
1430
|
+
};
|
|
1431
|
+
showLessLegend: {
|
|
1432
|
+
type: import("vue").PropType<string>;
|
|
1433
|
+
} & {
|
|
1434
|
+
default: string;
|
|
1435
|
+
};
|
|
1385
1436
|
radios: {
|
|
1386
1437
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1387
1438
|
required: true;
|
|
@@ -1397,6 +1448,9 @@ export declare const components: {
|
|
|
1397
1448
|
error: string | null;
|
|
1398
1449
|
hideTitle: boolean;
|
|
1399
1450
|
direction: "row" | "column";
|
|
1451
|
+
showMaxItemsStep: number;
|
|
1452
|
+
showMoreLegend: string;
|
|
1453
|
+
showLessLegend: string;
|
|
1400
1454
|
}, {}, string> & {
|
|
1401
1455
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1402
1456
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1452,6 +1506,9 @@ export declare const components: {
|
|
|
1452
1506
|
opts: {
|
|
1453
1507
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/radio/types").RadioValue>>>;
|
|
1454
1508
|
};
|
|
1509
|
+
labelHtml: {
|
|
1510
|
+
type: import("vue").PropType<boolean>;
|
|
1511
|
+
};
|
|
1455
1512
|
hideTitle: {
|
|
1456
1513
|
type: import("vue").PropType<boolean>;
|
|
1457
1514
|
} & {
|
|
@@ -1462,6 +1519,24 @@ export declare const components: {
|
|
|
1462
1519
|
} & {
|
|
1463
1520
|
default: string;
|
|
1464
1521
|
};
|
|
1522
|
+
showMaxItems: {
|
|
1523
|
+
type: import("vue").PropType<number>;
|
|
1524
|
+
};
|
|
1525
|
+
showMaxItemsStep: {
|
|
1526
|
+
type: import("vue").PropType<number>;
|
|
1527
|
+
} & {
|
|
1528
|
+
default: number;
|
|
1529
|
+
};
|
|
1530
|
+
showMoreLegend: {
|
|
1531
|
+
type: import("vue").PropType<string>;
|
|
1532
|
+
} & {
|
|
1533
|
+
default: string;
|
|
1534
|
+
};
|
|
1535
|
+
showLessLegend: {
|
|
1536
|
+
type: import("vue").PropType<string>;
|
|
1537
|
+
} & {
|
|
1538
|
+
default: string;
|
|
1539
|
+
};
|
|
1465
1540
|
radios: {
|
|
1466
1541
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1467
1542
|
required: true;
|
|
@@ -1508,6 +1583,9 @@ export declare const components: {
|
|
|
1508
1583
|
opts: {
|
|
1509
1584
|
type: import("vue").PropType<Partial<import("vee-validate").FieldOptions<import("./components/forms/radio/types").RadioValue>>>;
|
|
1510
1585
|
};
|
|
1586
|
+
labelHtml: {
|
|
1587
|
+
type: import("vue").PropType<boolean>;
|
|
1588
|
+
};
|
|
1511
1589
|
hideTitle: {
|
|
1512
1590
|
type: import("vue").PropType<boolean>;
|
|
1513
1591
|
} & {
|
|
@@ -1518,6 +1596,24 @@ export declare const components: {
|
|
|
1518
1596
|
} & {
|
|
1519
1597
|
default: string;
|
|
1520
1598
|
};
|
|
1599
|
+
showMaxItems: {
|
|
1600
|
+
type: import("vue").PropType<number>;
|
|
1601
|
+
};
|
|
1602
|
+
showMaxItemsStep: {
|
|
1603
|
+
type: import("vue").PropType<number>;
|
|
1604
|
+
} & {
|
|
1605
|
+
default: number;
|
|
1606
|
+
};
|
|
1607
|
+
showMoreLegend: {
|
|
1608
|
+
type: import("vue").PropType<string>;
|
|
1609
|
+
} & {
|
|
1610
|
+
default: string;
|
|
1611
|
+
};
|
|
1612
|
+
showLessLegend: {
|
|
1613
|
+
type: import("vue").PropType<string>;
|
|
1614
|
+
} & {
|
|
1615
|
+
default: string;
|
|
1616
|
+
};
|
|
1521
1617
|
radios: {
|
|
1522
1618
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1523
1619
|
required: true;
|
|
@@ -1533,6 +1629,9 @@ export declare const components: {
|
|
|
1533
1629
|
error: string | null;
|
|
1534
1630
|
hideTitle: boolean;
|
|
1535
1631
|
direction: "row" | "column";
|
|
1632
|
+
showMaxItemsStep: number;
|
|
1633
|
+
showMoreLegend: string;
|
|
1634
|
+
showLessLegend: string;
|
|
1536
1635
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1537
1636
|
$slots: {
|
|
1538
1637
|
title: (_: {
|
|
@@ -1542,6 +1641,9 @@ export declare const components: {
|
|
|
1542
1641
|
radios: import("./components/forms/radio/types").Radio[];
|
|
1543
1642
|
direction: "row" | "column";
|
|
1544
1643
|
}) => any;
|
|
1644
|
+
showMoreLabel: (_: {
|
|
1645
|
+
updateCurrentStep: () => void;
|
|
1646
|
+
}) => any;
|
|
1545
1647
|
};
|
|
1546
1648
|
});
|
|
1547
1649
|
SolCheckbox: import("vue").DefineComponent<{
|
|
@@ -1623,6 +1725,7 @@ export declare const components: {
|
|
|
1623
1725
|
direction: "row" | "column";
|
|
1624
1726
|
showMaxItemsStep: number;
|
|
1625
1727
|
showMoreLegend: string;
|
|
1728
|
+
showLessLegend: string;
|
|
1626
1729
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1627
1730
|
id: {
|
|
1628
1731
|
type: import("vue").PropType<string>;
|
|
@@ -1688,10 +1791,15 @@ export declare const components: {
|
|
|
1688
1791
|
} & {
|
|
1689
1792
|
default: string;
|
|
1690
1793
|
};
|
|
1794
|
+
showLessLegend: {
|
|
1795
|
+
type: import("vue").PropType<string>;
|
|
1796
|
+
} & {
|
|
1797
|
+
default: string;
|
|
1798
|
+
};
|
|
1691
1799
|
}>> & {
|
|
1692
1800
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1693
1801
|
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
1694
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "hideTitle" | "direction" | "showMaxItemsStep" | "showMoreLegend">;
|
|
1802
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "hideTitle" | "direction" | "showMaxItemsStep" | "showMoreLegend" | "showLessLegend">;
|
|
1695
1803
|
$attrs: {
|
|
1696
1804
|
[x: string]: unknown;
|
|
1697
1805
|
};
|
|
@@ -1770,6 +1878,11 @@ export declare const components: {
|
|
|
1770
1878
|
} & {
|
|
1771
1879
|
default: string;
|
|
1772
1880
|
};
|
|
1881
|
+
showLessLegend: {
|
|
1882
|
+
type: import("vue").PropType<string>;
|
|
1883
|
+
} & {
|
|
1884
|
+
default: string;
|
|
1885
|
+
};
|
|
1773
1886
|
}>> & {
|
|
1774
1887
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1775
1888
|
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
@@ -1783,6 +1896,7 @@ export declare const components: {
|
|
|
1783
1896
|
direction: "row" | "column";
|
|
1784
1897
|
showMaxItemsStep: number;
|
|
1785
1898
|
showMoreLegend: string;
|
|
1899
|
+
showLessLegend: string;
|
|
1786
1900
|
}, {}, string> & {
|
|
1787
1901
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1788
1902
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1868,6 +1982,11 @@ export declare const components: {
|
|
|
1868
1982
|
} & {
|
|
1869
1983
|
default: string;
|
|
1870
1984
|
};
|
|
1985
|
+
showLessLegend: {
|
|
1986
|
+
type: import("vue").PropType<string>;
|
|
1987
|
+
} & {
|
|
1988
|
+
default: string;
|
|
1989
|
+
};
|
|
1871
1990
|
}>> & {
|
|
1872
1991
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1873
1992
|
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
@@ -1940,6 +2059,11 @@ export declare const components: {
|
|
|
1940
2059
|
} & {
|
|
1941
2060
|
default: string;
|
|
1942
2061
|
};
|
|
2062
|
+
showLessLegend: {
|
|
2063
|
+
type: import("vue").PropType<string>;
|
|
2064
|
+
} & {
|
|
2065
|
+
default: string;
|
|
2066
|
+
};
|
|
1943
2067
|
}>> & {
|
|
1944
2068
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1945
2069
|
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
@@ -1953,6 +2077,7 @@ export declare const components: {
|
|
|
1953
2077
|
direction: "row" | "column";
|
|
1954
2078
|
showMaxItemsStep: number;
|
|
1955
2079
|
showMoreLegend: string;
|
|
2080
|
+
showLessLegend: string;
|
|
1956
2081
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1957
2082
|
$slots: {
|
|
1958
2083
|
title: (_: {
|