@solfacil/girassol 0.2.11 → 0.2.12
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 +352 -347
- package/dist/girassol.umd.js +2 -2
- package/dist/style.css +1 -1
- package/dist/types/components/forms/radio/index.d.ts +2 -2
- package/dist/types/components/forms/radio/{Radio.vue.d.ts → radio/Radio.vue.d.ts} +8 -8
- package/dist/types/components/forms/radio/{radio.spec.d.ts → radio/radio.spec.d.ts} +0 -0
- package/dist/types/components/forms/radio/{RadioGroup.vue.d.ts → radio-group/RadioGroup.vue.d.ts} +14 -14
- package/dist/types/components/forms/radio/{radio-group.spec.d.ts → radio-group/radio-group.spec.d.ts} +0 -0
- package/dist/types/components/forms/radio/{radio-type.d.ts → types.d.ts} +0 -0
- package/dist/types/index.d.ts +33 -33
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -896,7 +896,7 @@ export declare const components: {
|
|
|
896
896
|
required: true;
|
|
897
897
|
};
|
|
898
898
|
value: {
|
|
899
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
899
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
900
900
|
required: true;
|
|
901
901
|
};
|
|
902
902
|
label: {
|
|
@@ -910,7 +910,7 @@ export declare const components: {
|
|
|
910
910
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
911
911
|
};
|
|
912
912
|
}>> & {
|
|
913
|
-
onChange?: ((value: import("./components/forms/radio/
|
|
913
|
+
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
914
914
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
915
915
|
$attrs: {
|
|
916
916
|
[x: string]: unknown;
|
|
@@ -923,7 +923,7 @@ export declare const components: {
|
|
|
923
923
|
}>;
|
|
924
924
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
925
925
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
926
|
-
$emit: (event: "change", value: import("./components/forms/radio/
|
|
926
|
+
$emit: (event: "change", value: import("./components/forms/radio/types").RadioValue) => void;
|
|
927
927
|
$el: any;
|
|
928
928
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
929
929
|
id: {
|
|
@@ -935,7 +935,7 @@ export declare const components: {
|
|
|
935
935
|
required: true;
|
|
936
936
|
};
|
|
937
937
|
value: {
|
|
938
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
938
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
939
939
|
required: true;
|
|
940
940
|
};
|
|
941
941
|
label: {
|
|
@@ -949,9 +949,9 @@ export declare const components: {
|
|
|
949
949
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
950
950
|
};
|
|
951
951
|
}>> & {
|
|
952
|
-
onChange?: ((value: import("./components/forms/radio/
|
|
952
|
+
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
953
953
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
954
|
-
change: (value: import("./components/forms/radio/
|
|
954
|
+
change: (value: import("./components/forms/radio/types").RadioValue) => void;
|
|
955
955
|
}, string, {}> & {
|
|
956
956
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
957
957
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -982,7 +982,7 @@ export declare const components: {
|
|
|
982
982
|
required: true;
|
|
983
983
|
};
|
|
984
984
|
value: {
|
|
985
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
985
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
986
986
|
required: true;
|
|
987
987
|
};
|
|
988
988
|
label: {
|
|
@@ -996,7 +996,7 @@ export declare const components: {
|
|
|
996
996
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
997
997
|
};
|
|
998
998
|
}>> & {
|
|
999
|
-
onChange?: ((value: import("./components/forms/radio/
|
|
999
|
+
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1000
1000
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
1001
1001
|
__isFragment?: undefined;
|
|
1002
1002
|
__isTeleport?: undefined;
|
|
@@ -1011,7 +1011,7 @@ export declare const components: {
|
|
|
1011
1011
|
required: true;
|
|
1012
1012
|
};
|
|
1013
1013
|
value: {
|
|
1014
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
1014
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1015
1015
|
required: true;
|
|
1016
1016
|
};
|
|
1017
1017
|
label: {
|
|
@@ -1025,9 +1025,9 @@ export declare const components: {
|
|
|
1025
1025
|
type: import("vue").PropType<string | Record<string, boolean>>;
|
|
1026
1026
|
};
|
|
1027
1027
|
}>> & {
|
|
1028
|
-
onChange?: ((value: import("./components/forms/radio/
|
|
1028
|
+
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1029
1029
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1030
|
-
change: (value: import("./components/forms/radio/
|
|
1030
|
+
change: (value: import("./components/forms/radio/types").RadioValue) => void;
|
|
1031
1031
|
}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1032
1032
|
$slots: {};
|
|
1033
1033
|
});
|
|
@@ -1048,7 +1048,7 @@ export declare const components: {
|
|
|
1048
1048
|
required: true;
|
|
1049
1049
|
};
|
|
1050
1050
|
modelValue: {
|
|
1051
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
1051
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1052
1052
|
required: true;
|
|
1053
1053
|
};
|
|
1054
1054
|
error: {
|
|
@@ -1068,12 +1068,12 @@ export declare const components: {
|
|
|
1068
1068
|
default: string;
|
|
1069
1069
|
};
|
|
1070
1070
|
radios: {
|
|
1071
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
1071
|
+
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1072
1072
|
required: true;
|
|
1073
1073
|
};
|
|
1074
1074
|
}>> & {
|
|
1075
|
-
onChange?: ((value: import("./components/forms/radio/
|
|
1076
|
-
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/
|
|
1075
|
+
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1076
|
+
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1077
1077
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "hideTitle" | "direction">;
|
|
1078
1078
|
$attrs: {
|
|
1079
1079
|
[x: string]: unknown;
|
|
@@ -1086,7 +1086,7 @@ export declare const components: {
|
|
|
1086
1086
|
}>;
|
|
1087
1087
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1088
1088
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
1089
|
-
$emit: ((event: "update:modelValue", value: import("./components/forms/radio/
|
|
1089
|
+
$emit: ((event: "update:modelValue", value: import("./components/forms/radio/types").RadioValue) => void) & ((event: "change", value: import("./components/forms/radio/types").RadioValue) => void);
|
|
1090
1090
|
$el: any;
|
|
1091
1091
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1092
1092
|
title: {
|
|
@@ -1098,7 +1098,7 @@ export declare const components: {
|
|
|
1098
1098
|
required: true;
|
|
1099
1099
|
};
|
|
1100
1100
|
modelValue: {
|
|
1101
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
1101
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1102
1102
|
required: true;
|
|
1103
1103
|
};
|
|
1104
1104
|
error: {
|
|
@@ -1118,16 +1118,16 @@ export declare const components: {
|
|
|
1118
1118
|
default: string;
|
|
1119
1119
|
};
|
|
1120
1120
|
radios: {
|
|
1121
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
1121
|
+
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1122
1122
|
required: true;
|
|
1123
1123
|
};
|
|
1124
1124
|
}>> & {
|
|
1125
|
-
onChange?: ((value: import("./components/forms/radio/
|
|
1126
|
-
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/
|
|
1125
|
+
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1126
|
+
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1127
1127
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1128
|
-
change: (value: import("./components/forms/radio/
|
|
1128
|
+
change: (value: import("./components/forms/radio/types").RadioValue) => void;
|
|
1129
1129
|
} & {
|
|
1130
|
-
"update:modelValue": (value: import("./components/forms/radio/
|
|
1130
|
+
"update:modelValue": (value: import("./components/forms/radio/types").RadioValue) => void;
|
|
1131
1131
|
}, string, {
|
|
1132
1132
|
hideTitle: boolean;
|
|
1133
1133
|
direction: "row" | "column";
|
|
@@ -1161,7 +1161,7 @@ export declare const components: {
|
|
|
1161
1161
|
required: true;
|
|
1162
1162
|
};
|
|
1163
1163
|
modelValue: {
|
|
1164
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
1164
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1165
1165
|
required: true;
|
|
1166
1166
|
};
|
|
1167
1167
|
error: {
|
|
@@ -1181,12 +1181,12 @@ export declare const components: {
|
|
|
1181
1181
|
default: string;
|
|
1182
1182
|
};
|
|
1183
1183
|
radios: {
|
|
1184
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
1184
|
+
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1185
1185
|
required: true;
|
|
1186
1186
|
};
|
|
1187
1187
|
}>> & {
|
|
1188
|
-
onChange?: ((value: import("./components/forms/radio/
|
|
1189
|
-
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/
|
|
1188
|
+
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1189
|
+
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1190
1190
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
1191
1191
|
__isFragment?: undefined;
|
|
1192
1192
|
__isTeleport?: undefined;
|
|
@@ -1201,7 +1201,7 @@ export declare const components: {
|
|
|
1201
1201
|
required: true;
|
|
1202
1202
|
};
|
|
1203
1203
|
modelValue: {
|
|
1204
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
1204
|
+
type: import("vue").PropType<import("./components/forms/radio/types").RadioValue>;
|
|
1205
1205
|
required: true;
|
|
1206
1206
|
};
|
|
1207
1207
|
error: {
|
|
@@ -1221,16 +1221,16 @@ export declare const components: {
|
|
|
1221
1221
|
default: string;
|
|
1222
1222
|
};
|
|
1223
1223
|
radios: {
|
|
1224
|
-
type: import("vue").PropType<import("./components/forms/radio/
|
|
1224
|
+
type: import("vue").PropType<import("./components/forms/radio/types").Radio[]>;
|
|
1225
1225
|
required: true;
|
|
1226
1226
|
};
|
|
1227
1227
|
}>> & {
|
|
1228
|
-
onChange?: ((value: import("./components/forms/radio/
|
|
1229
|
-
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/
|
|
1228
|
+
onChange?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1229
|
+
"onUpdate:modelValue"?: ((value: import("./components/forms/radio/types").RadioValue) => any) | undefined;
|
|
1230
1230
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1231
|
-
change: (value: import("./components/forms/radio/
|
|
1231
|
+
change: (value: import("./components/forms/radio/types").RadioValue) => void;
|
|
1232
1232
|
} & {
|
|
1233
|
-
"update:modelValue": (value: import("./components/forms/radio/
|
|
1233
|
+
"update:modelValue": (value: import("./components/forms/radio/types").RadioValue) => void;
|
|
1234
1234
|
}, string, {
|
|
1235
1235
|
hideTitle: boolean;
|
|
1236
1236
|
direction: "row" | "column";
|
|
@@ -1240,7 +1240,7 @@ export declare const components: {
|
|
|
1240
1240
|
id: string;
|
|
1241
1241
|
}) => any;
|
|
1242
1242
|
default: (_: {
|
|
1243
|
-
radios: import("./components/forms/radio/
|
|
1243
|
+
radios: import("./components/forms/radio/types").Radio[];
|
|
1244
1244
|
direction: "row" | "column";
|
|
1245
1245
|
}) => any;
|
|
1246
1246
|
};
|