@solfacil/girassol 0.3.4 → 0.3.5
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.
|
@@ -20,7 +20,7 @@ declare const _default: {
|
|
|
20
20
|
name: Select['name'];
|
|
21
21
|
selected?: Select['selected'];
|
|
22
22
|
options: Select['options'];
|
|
23
|
-
required
|
|
23
|
+
required?: Select['required'];
|
|
24
24
|
disabled?: Select['disabled'];
|
|
25
25
|
loading?: Select['loading'];
|
|
26
26
|
searchable?: Select['searchable'];
|
|
@@ -74,7 +74,7 @@ declare const _default: {
|
|
|
74
74
|
name: Select['name'];
|
|
75
75
|
selected?: Select['selected'];
|
|
76
76
|
options: Select['options'];
|
|
77
|
-
required
|
|
77
|
+
required?: Select['required'];
|
|
78
78
|
disabled?: Select['disabled'];
|
|
79
79
|
loading?: Select['loading'];
|
|
80
80
|
searchable?: Select['searchable'];
|
|
@@ -150,7 +150,7 @@ declare const _default: {
|
|
|
150
150
|
name: Select['name'];
|
|
151
151
|
selected?: Select['selected'];
|
|
152
152
|
options: Select['options'];
|
|
153
|
-
required
|
|
153
|
+
required?: Select['required'];
|
|
154
154
|
disabled?: Select['disabled'];
|
|
155
155
|
loading?: Select['loading'];
|
|
156
156
|
searchable?: Select['searchable'];
|
|
@@ -194,7 +194,7 @@ declare const _default: {
|
|
|
194
194
|
name: Select['name'];
|
|
195
195
|
selected?: Select['selected'];
|
|
196
196
|
options: Select['options'];
|
|
197
|
-
required
|
|
197
|
+
required?: Select['required'];
|
|
198
198
|
disabled?: Select['disabled'];
|
|
199
199
|
loading?: Select['loading'];
|
|
200
200
|
searchable?: Select['searchable'];
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1634,8 +1634,7 @@ export declare const components: {
|
|
|
1634
1634
|
type: import("vue").PropType<boolean>;
|
|
1635
1635
|
};
|
|
1636
1636
|
required: {
|
|
1637
|
-
type: import("vue").PropType<boolean
|
|
1638
|
-
required: true;
|
|
1637
|
+
type: import("vue").PropType<boolean>;
|
|
1639
1638
|
};
|
|
1640
1639
|
size: {
|
|
1641
1640
|
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
@@ -1742,8 +1741,7 @@ export declare const components: {
|
|
|
1742
1741
|
type: import("vue").PropType<boolean>;
|
|
1743
1742
|
};
|
|
1744
1743
|
required: {
|
|
1745
|
-
type: import("vue").PropType<boolean
|
|
1746
|
-
required: true;
|
|
1744
|
+
type: import("vue").PropType<boolean>;
|
|
1747
1745
|
};
|
|
1748
1746
|
size: {
|
|
1749
1747
|
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
@@ -1872,8 +1870,7 @@ export declare const components: {
|
|
|
1872
1870
|
type: import("vue").PropType<boolean>;
|
|
1873
1871
|
};
|
|
1874
1872
|
required: {
|
|
1875
|
-
type: import("vue").PropType<boolean
|
|
1876
|
-
required: true;
|
|
1873
|
+
type: import("vue").PropType<boolean>;
|
|
1877
1874
|
};
|
|
1878
1875
|
size: {
|
|
1879
1876
|
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
|
@@ -1970,8 +1967,7 @@ export declare const components: {
|
|
|
1970
1967
|
type: import("vue").PropType<boolean>;
|
|
1971
1968
|
};
|
|
1972
1969
|
required: {
|
|
1973
|
-
type: import("vue").PropType<boolean
|
|
1974
|
-
required: true;
|
|
1970
|
+
type: import("vue").PropType<boolean>;
|
|
1975
1971
|
};
|
|
1976
1972
|
size: {
|
|
1977
1973
|
type: import("vue").PropType<import("./components/forms/select/types").Size>;
|
package/package.json
CHANGED