@solfacil/girassol 0.33.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 +3054 -3020
- 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-group/RadioGroup.vue.d.ts +20 -0
- package/dist/types/index.d.ts +109 -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;
|
|
@@ -10,6 +10,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
10
10
|
radios: RadioType[];
|
|
11
11
|
modelValue?: import("../types").RadioValue | undefined;
|
|
12
12
|
direction?: "row" | "column" | undefined;
|
|
13
|
+
showMaxItems?: number | undefined;
|
|
14
|
+
showMaxItemsStep?: number | undefined;
|
|
15
|
+
showMoreLegend?: string | undefined;
|
|
16
|
+
showLessLegend?: string | undefined;
|
|
13
17
|
useField?: typeof import("vee-validate").useField | undefined;
|
|
14
18
|
rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
|
|
15
19
|
opts?: Partial<import("vee-validate").FieldOptions<import("../types").RadioValue>> | undefined;
|
|
@@ -17,6 +21,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
17
21
|
error: null;
|
|
18
22
|
direction: string;
|
|
19
23
|
hideTitle: boolean;
|
|
24
|
+
showMaxItemsStep: number;
|
|
25
|
+
showMoreLegend: string;
|
|
26
|
+
showLessLegend: string;
|
|
20
27
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
28
|
change: (value: import("../types").RadioValue) => void;
|
|
22
29
|
} & {
|
|
@@ -32,6 +39,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
32
39
|
radios: RadioType[];
|
|
33
40
|
modelValue?: import("../types").RadioValue | undefined;
|
|
34
41
|
direction?: "row" | "column" | undefined;
|
|
42
|
+
showMaxItems?: number | undefined;
|
|
43
|
+
showMaxItemsStep?: number | undefined;
|
|
44
|
+
showMoreLegend?: string | undefined;
|
|
45
|
+
showLessLegend?: string | undefined;
|
|
35
46
|
useField?: typeof import("vee-validate").useField | undefined;
|
|
36
47
|
rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
|
|
37
48
|
opts?: Partial<import("vee-validate").FieldOptions<import("../types").RadioValue>> | undefined;
|
|
@@ -39,6 +50,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
39
50
|
error: null;
|
|
40
51
|
direction: string;
|
|
41
52
|
hideTitle: boolean;
|
|
53
|
+
showMaxItemsStep: number;
|
|
54
|
+
showMoreLegend: string;
|
|
55
|
+
showLessLegend: string;
|
|
42
56
|
}>>> & {
|
|
43
57
|
onChange?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
44
58
|
"onUpdate:modelValue"?: ((value: import("../types").RadioValue) => any) | undefined;
|
|
@@ -46,6 +60,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
46
60
|
error: string | null;
|
|
47
61
|
hideTitle: boolean;
|
|
48
62
|
direction: 'row' | 'column';
|
|
63
|
+
showMaxItemsStep: number;
|
|
64
|
+
showMoreLegend: string;
|
|
65
|
+
showLessLegend: string;
|
|
49
66
|
}>, {
|
|
50
67
|
title: (_: {
|
|
51
68
|
id: string;
|
|
@@ -54,6 +71,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
54
71
|
radios: RadioType[];
|
|
55
72
|
direction: "row" | "column";
|
|
56
73
|
}) => any;
|
|
74
|
+
showMoreLabel: (_: {
|
|
75
|
+
updateCurrentStep: () => void;
|
|
76
|
+
}) => any;
|
|
57
77
|
}>;
|
|
58
78
|
export default _default;
|
|
59
79
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1277,6 +1277,9 @@ export declare const components: {
|
|
|
1277
1277
|
error: string | null;
|
|
1278
1278
|
hideTitle: boolean;
|
|
1279
1279
|
direction: "row" | "column";
|
|
1280
|
+
showMaxItemsStep: number;
|
|
1281
|
+
showMoreLegend: string;
|
|
1282
|
+
showLessLegend: string;
|
|
1280
1283
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1281
1284
|
id: {
|
|
1282
1285
|
type: import("vue").PropType<string>;
|
|
@@ -1325,6 +1328,24 @@ export declare const components: {
|
|
|
1325
1328
|
} & {
|
|
1326
1329
|
default: string;
|
|
1327
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
|
+
};
|
|
1328
1349
|
radios: {
|
|
1329
1350
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1330
1351
|
required: true;
|
|
@@ -1332,7 +1353,7 @@ export declare const components: {
|
|
|
1332
1353
|
}>> & {
|
|
1333
1354
|
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1334
1355
|
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1335
|
-
} & 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">;
|
|
1336
1357
|
$attrs: {
|
|
1337
1358
|
[x: string]: unknown;
|
|
1338
1359
|
};
|
|
@@ -1394,6 +1415,24 @@ export declare const components: {
|
|
|
1394
1415
|
} & {
|
|
1395
1416
|
default: string;
|
|
1396
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
|
+
};
|
|
1397
1436
|
radios: {
|
|
1398
1437
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1399
1438
|
required: true;
|
|
@@ -1409,6 +1448,9 @@ export declare const components: {
|
|
|
1409
1448
|
error: string | null;
|
|
1410
1449
|
hideTitle: boolean;
|
|
1411
1450
|
direction: "row" | "column";
|
|
1451
|
+
showMaxItemsStep: number;
|
|
1452
|
+
showMoreLegend: string;
|
|
1453
|
+
showLessLegend: string;
|
|
1412
1454
|
}, {}, string> & {
|
|
1413
1455
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1414
1456
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1477,6 +1519,24 @@ export declare const components: {
|
|
|
1477
1519
|
} & {
|
|
1478
1520
|
default: string;
|
|
1479
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
|
+
};
|
|
1480
1540
|
radios: {
|
|
1481
1541
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1482
1542
|
required: true;
|
|
@@ -1536,6 +1596,24 @@ export declare const components: {
|
|
|
1536
1596
|
} & {
|
|
1537
1597
|
default: string;
|
|
1538
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
|
+
};
|
|
1539
1617
|
radios: {
|
|
1540
1618
|
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1541
1619
|
required: true;
|
|
@@ -1551,6 +1629,9 @@ export declare const components: {
|
|
|
1551
1629
|
error: string | null;
|
|
1552
1630
|
hideTitle: boolean;
|
|
1553
1631
|
direction: "row" | "column";
|
|
1632
|
+
showMaxItemsStep: number;
|
|
1633
|
+
showMoreLegend: string;
|
|
1634
|
+
showLessLegend: string;
|
|
1554
1635
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1555
1636
|
$slots: {
|
|
1556
1637
|
title: (_: {
|
|
@@ -1560,6 +1641,9 @@ export declare const components: {
|
|
|
1560
1641
|
radios: import("./components/forms/radio/types").Radio[];
|
|
1561
1642
|
direction: "row" | "column";
|
|
1562
1643
|
}) => any;
|
|
1644
|
+
showMoreLabel: (_: {
|
|
1645
|
+
updateCurrentStep: () => void;
|
|
1646
|
+
}) => any;
|
|
1563
1647
|
};
|
|
1564
1648
|
});
|
|
1565
1649
|
SolCheckbox: import("vue").DefineComponent<{
|
|
@@ -1641,6 +1725,7 @@ export declare const components: {
|
|
|
1641
1725
|
direction: "row" | "column";
|
|
1642
1726
|
showMaxItemsStep: number;
|
|
1643
1727
|
showMoreLegend: string;
|
|
1728
|
+
showLessLegend: string;
|
|
1644
1729
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1645
1730
|
id: {
|
|
1646
1731
|
type: import("vue").PropType<string>;
|
|
@@ -1706,10 +1791,15 @@ export declare const components: {
|
|
|
1706
1791
|
} & {
|
|
1707
1792
|
default: string;
|
|
1708
1793
|
};
|
|
1794
|
+
showLessLegend: {
|
|
1795
|
+
type: import("vue").PropType<string>;
|
|
1796
|
+
} & {
|
|
1797
|
+
default: string;
|
|
1798
|
+
};
|
|
1709
1799
|
}>> & {
|
|
1710
1800
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1711
1801
|
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
1712
|
-
} & 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">;
|
|
1713
1803
|
$attrs: {
|
|
1714
1804
|
[x: string]: unknown;
|
|
1715
1805
|
};
|
|
@@ -1788,6 +1878,11 @@ export declare const components: {
|
|
|
1788
1878
|
} & {
|
|
1789
1879
|
default: string;
|
|
1790
1880
|
};
|
|
1881
|
+
showLessLegend: {
|
|
1882
|
+
type: import("vue").PropType<string>;
|
|
1883
|
+
} & {
|
|
1884
|
+
default: string;
|
|
1885
|
+
};
|
|
1791
1886
|
}>> & {
|
|
1792
1887
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1793
1888
|
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
@@ -1801,6 +1896,7 @@ export declare const components: {
|
|
|
1801
1896
|
direction: "row" | "column";
|
|
1802
1897
|
showMaxItemsStep: number;
|
|
1803
1898
|
showMoreLegend: string;
|
|
1899
|
+
showLessLegend: string;
|
|
1804
1900
|
}, {}, string> & {
|
|
1805
1901
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1806
1902
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1886,6 +1982,11 @@ export declare const components: {
|
|
|
1886
1982
|
} & {
|
|
1887
1983
|
default: string;
|
|
1888
1984
|
};
|
|
1985
|
+
showLessLegend: {
|
|
1986
|
+
type: import("vue").PropType<string>;
|
|
1987
|
+
} & {
|
|
1988
|
+
default: string;
|
|
1989
|
+
};
|
|
1889
1990
|
}>> & {
|
|
1890
1991
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1891
1992
|
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
@@ -1958,6 +2059,11 @@ export declare const components: {
|
|
|
1958
2059
|
} & {
|
|
1959
2060
|
default: string;
|
|
1960
2061
|
};
|
|
2062
|
+
showLessLegend: {
|
|
2063
|
+
type: import("vue").PropType<string>;
|
|
2064
|
+
} & {
|
|
2065
|
+
default: string;
|
|
2066
|
+
};
|
|
1961
2067
|
}>> & {
|
|
1962
2068
|
onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
|
|
1963
2069
|
"onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
|
|
@@ -1971,6 +2077,7 @@ export declare const components: {
|
|
|
1971
2077
|
direction: "row" | "column";
|
|
1972
2078
|
showMaxItemsStep: number;
|
|
1973
2079
|
showMoreLegend: string;
|
|
2080
|
+
showLessLegend: string;
|
|
1974
2081
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1975
2082
|
$slots: {
|
|
1976
2083
|
title: (_: {
|