Skip to content

Commit 9960b7c

Browse files
committed
fix: 🏷️ Corrige les types après les modifications de DsfrRadioButton
1 parent f826da7 commit 9960b7c

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

types/components/DsfrRadioButton/DsfrRadioButton.vue.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ declare const _default: import('vue').DefineComponent<{
2727
type: StringConstructor;
2828
default: string;
2929
};
30+
small: {
31+
type: BooleanConstructor;
32+
default: false;
33+
};
3034
}, unknown, unknown, {
3135
rich(): boolean;
3236
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, 'update:modelValue'[], 'update:modelValue', import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
@@ -58,6 +62,10 @@ declare const _default: import('vue').DefineComponent<{
5862
type: StringConstructor;
5963
default: string;
6064
};
65+
small: {
66+
type: BooleanConstructor;
67+
default: false;
68+
};
6169
}>> & {
6270
'onUpdate:modelValue'?: (inputValue: string | number) => any;
6371
}, {
@@ -66,5 +74,6 @@ declare const _default: import('vue').DefineComponent<{
6674
label: string;
6775
modelValue: string | number | undefined;
6876
hint: string;
77+
small: boolean;
6978
}>
7079
export default _default

types/components/DsfrRadioButton/DsfrRadioButtonSet.vue.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ declare const _default: import('vue').DefineComponent<{
3434
type: ArrayConstructor;
3535
default(): RadioOption[];
3636
};
37+
small: {
38+
type: BooleanConstructor;
39+
default: false;
40+
};
3741
}, unknown, unknown, {
3842
message(): string;
3943
additionalMessageClass(): 'fr-message--error' | 'fr-message--valid';
@@ -67,6 +71,10 @@ declare const _default: import('vue').DefineComponent<{
6771
type: ArrayConstructor;
6872
default(): RadioOption[];
6973
};
74+
small: {
75+
type: BooleanConstructor;
76+
default: false;
77+
};
7078
}>> & {
7179
'onUpdate:modelValue'?: (inputValue: string | number) => any;
7280
}, {
@@ -77,5 +85,6 @@ declare const _default: import('vue').DefineComponent<{
7785
options: RadioOption[];
7886
errorMessage: string;
7987
validMessage: string;
88+
small: boolean;
8089
}>
8190
export default _default

0 commit comments

Comments
 (0)