@solfacil/girassol 0.24.0 → 0.26.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.
@@ -9,6 +9,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
9
9
  checkboxes: CheckboxType[];
10
10
  modelValue?: import("@forms/checkbox/type").CheckboxValue[] | undefined;
11
11
  direction?: "row" | "column" | undefined;
12
+ showMaxItems?: number | undefined;
13
+ showMaxItemsStep?: number | undefined;
14
+ showMoreLegend?: string | undefined;
12
15
  useField?: typeof import("vee-validate").useField | undefined;
13
16
  rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
14
17
  opts?: Partial<import("vee-validate").FieldOptions<import("@forms/checkbox/type").CheckboxValue>> | undefined;
@@ -16,6 +19,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
16
19
  error: null;
17
20
  direction: string;
18
21
  hideTitle: boolean;
22
+ showMaxItemsStep: number;
23
+ showMoreLegend: string;
19
24
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
25
  change: (value: import("@forms/checkbox/type").CheckboxValue) => void;
21
26
  } & {
@@ -30,6 +35,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
30
35
  checkboxes: CheckboxType[];
31
36
  modelValue?: import("@forms/checkbox/type").CheckboxValue[] | undefined;
32
37
  direction?: "row" | "column" | undefined;
38
+ showMaxItems?: number | undefined;
39
+ showMaxItemsStep?: number | undefined;
40
+ showMoreLegend?: string | undefined;
33
41
  useField?: typeof import("vee-validate").useField | undefined;
34
42
  rules?: import("vee-validate").RuleExpression<unknown> | import("vue").Ref<import("vee-validate").RuleExpression<unknown>>;
35
43
  opts?: Partial<import("vee-validate").FieldOptions<import("@forms/checkbox/type").CheckboxValue>> | undefined;
@@ -37,6 +45,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
37
45
  error: null;
38
46
  direction: string;
39
47
  hideTitle: boolean;
48
+ showMaxItemsStep: number;
49
+ showMoreLegend: string;
40
50
  }>>> & {
41
51
  onChange?: ((value: import("@forms/checkbox/type").CheckboxValue) => any) | undefined;
42
52
  "onUpdate:modelValue"?: ((v: import("@forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
@@ -44,6 +54,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
44
54
  error: string | null;
45
55
  hideTitle: boolean;
46
56
  direction: 'row' | 'column';
57
+ showMaxItemsStep: number;
58
+ showMoreLegend: string;
47
59
  }>, {
48
60
  title: (_: {
49
61
  id: string;
@@ -52,6 +64,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
52
64
  checkboxes: CheckboxType[];
53
65
  direction: "row" | "column";
54
66
  }) => any;
67
+ showMoreLabel: (_: {
68
+ updateCurrentStep: () => void;
69
+ }) => any;
55
70
  }>;
56
71
  export default _default;
57
72
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1614,6 +1614,8 @@ export declare const components: {
1614
1614
  error: string | null;
1615
1615
  hideTitle: boolean;
1616
1616
  direction: "row" | "column";
1617
+ showMaxItemsStep: number;
1618
+ showMoreLegend: string;
1617
1619
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1618
1620
  id: {
1619
1621
  type: import("vue").PropType<string>;
@@ -1663,10 +1665,23 @@ export declare const components: {
1663
1665
  } & {
1664
1666
  default: string;
1665
1667
  };
1668
+ showMaxItems: {
1669
+ type: import("vue").PropType<number>;
1670
+ };
1671
+ showMaxItemsStep: {
1672
+ type: import("vue").PropType<number>;
1673
+ } & {
1674
+ default: number;
1675
+ };
1676
+ showMoreLegend: {
1677
+ type: import("vue").PropType<string>;
1678
+ } & {
1679
+ default: string;
1680
+ };
1666
1681
  }>> & {
1667
1682
  onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1668
1683
  "onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
1669
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "hideTitle" | "direction">;
1684
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "hideTitle" | "direction" | "showMaxItemsStep" | "showMoreLegend">;
1670
1685
  $attrs: {
1671
1686
  [x: string]: unknown;
1672
1687
  };
@@ -1729,6 +1744,19 @@ export declare const components: {
1729
1744
  } & {
1730
1745
  default: string;
1731
1746
  };
1747
+ showMaxItems: {
1748
+ type: import("vue").PropType<number>;
1749
+ };
1750
+ showMaxItemsStep: {
1751
+ type: import("vue").PropType<number>;
1752
+ } & {
1753
+ default: number;
1754
+ };
1755
+ showMoreLegend: {
1756
+ type: import("vue").PropType<string>;
1757
+ } & {
1758
+ default: string;
1759
+ };
1732
1760
  }>> & {
1733
1761
  onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1734
1762
  "onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
@@ -1740,6 +1768,8 @@ export declare const components: {
1740
1768
  error: string | null;
1741
1769
  hideTitle: boolean;
1742
1770
  direction: "row" | "column";
1771
+ showMaxItemsStep: number;
1772
+ showMoreLegend: string;
1743
1773
  }, {}, string> & {
1744
1774
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
1745
1775
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -1809,6 +1839,19 @@ export declare const components: {
1809
1839
  } & {
1810
1840
  default: string;
1811
1841
  };
1842
+ showMaxItems: {
1843
+ type: import("vue").PropType<number>;
1844
+ };
1845
+ showMaxItemsStep: {
1846
+ type: import("vue").PropType<number>;
1847
+ } & {
1848
+ default: number;
1849
+ };
1850
+ showMoreLegend: {
1851
+ type: import("vue").PropType<string>;
1852
+ } & {
1853
+ default: string;
1854
+ };
1812
1855
  }>> & {
1813
1856
  onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1814
1857
  "onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
@@ -1865,6 +1908,19 @@ export declare const components: {
1865
1908
  } & {
1866
1909
  default: string;
1867
1910
  };
1911
+ showMaxItems: {
1912
+ type: import("vue").PropType<number>;
1913
+ };
1914
+ showMaxItemsStep: {
1915
+ type: import("vue").PropType<number>;
1916
+ } & {
1917
+ default: number;
1918
+ };
1919
+ showMoreLegend: {
1920
+ type: import("vue").PropType<string>;
1921
+ } & {
1922
+ default: string;
1923
+ };
1868
1924
  }>> & {
1869
1925
  onChange?: ((value: import("./components/forms/checkbox/type").CheckboxValue) => any) | undefined;
1870
1926
  "onUpdate:modelValue"?: ((v: import("./components/forms/checkbox/type").CheckboxValue[] | undefined) => any) | undefined;
@@ -1876,6 +1932,8 @@ export declare const components: {
1876
1932
  error: string | null;
1877
1933
  hideTitle: boolean;
1878
1934
  direction: "row" | "column";
1935
+ showMaxItemsStep: number;
1936
+ showMoreLegend: string;
1879
1937
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1880
1938
  $slots: {
1881
1939
  title: (_: {
@@ -1885,6 +1943,9 @@ export declare const components: {
1885
1943
  checkboxes: import("./components/forms/checkbox/type").Checkbox[];
1886
1944
  direction: "row" | "column";
1887
1945
  }) => any;
1946
+ showMoreLabel: (_: {
1947
+ updateCurrentStep: () => void;
1948
+ }) => any;
1888
1949
  };
1889
1950
  });
1890
1951
  SolSwitch: import("vue").DefineComponent<{
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@solfacil/girassol",
3
3
  "description": "Girassol design system",
4
- "version": "0.24.0",
4
+ "version": "0.26.0",
5
5
  "license": "MIT",
6
6
  "authors": [
7
7
  {
@@ -2,11 +2,11 @@ export const screens = {
2
2
  'xsm:site': { max: '767px' },
3
3
  'sm:site': { min: '768px' },
4
4
  'md:site': { min: '1024px' },
5
- 'lg:site': { min: '1180px' },
5
+ 'lg:site': { min: '1280px' },
6
6
  'xlg:site': { min: '1440px' },
7
7
 
8
8
  'xsm:system': { max: '767px' },
9
9
  'sm:system': { min: '768px' },
10
10
  'md:system': { min: '1024px' },
11
11
  'lg:system': { min: '1366px' },
12
- }
12
+ }