@avenirs-esr/avenirs-dsav 0.1.231 → 0.1.232
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/components/interaction/radios/AvRadioButtonSet/AvRadioButtonSet.stub.d.ts +8 -0
- package/dist/src/components/interaction/radios/AvRadioButtonSet/AvRadioButtonSet.stub.cjs +1 -1
- package/dist/src/components/interaction/radios/AvRadioButtonSet/AvRadioButtonSet.stub.js +2 -1
- package/package.json +1 -1
|
@@ -3,11 +3,19 @@ export declare const AvRadioButtonSetStub: import("vue").DefineComponent<import(
|
|
|
3
3
|
name: StringConstructor;
|
|
4
4
|
inline: BooleanConstructor;
|
|
5
5
|
small: BooleanConstructor;
|
|
6
|
+
errorMessage: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
};
|
|
6
10
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
11
|
modelValue: StringConstructor;
|
|
8
12
|
name: StringConstructor;
|
|
9
13
|
inline: BooleanConstructor;
|
|
10
14
|
small: BooleanConstructor;
|
|
15
|
+
errorMessage: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
11
19
|
}>> & Readonly<{
|
|
12
20
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13
21
|
}>, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("vue"),e=t.defineComponent({name:"AvRadioButtonSet",props:{modelValue:String,name:String,inline:Boolean,small:Boolean},emits:["update:modelValue"],template:'<div class="av-radio-button-set-stub" data-testid="av-radio-button-set-stub"><slot /></div>'});exports.AvRadioButtonSetStub=e;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("vue"),e=t.defineComponent({name:"AvRadioButtonSet",props:{modelValue:String,name:String,inline:Boolean,small:Boolean,errorMessage:{type:String,required:!1}},emits:["update:modelValue"],template:'<div class="av-radio-button-set-stub" data-testid="av-radio-button-set-stub"><slot /></div>'});exports.AvRadioButtonSetStub=e;
|
|
@@ -5,7 +5,8 @@ const o = t({
|
|
|
5
5
|
modelValue: String,
|
|
6
6
|
name: String,
|
|
7
7
|
inline: Boolean,
|
|
8
|
-
small: Boolean
|
|
8
|
+
small: Boolean,
|
|
9
|
+
errorMessage: { type: String, required: !1 }
|
|
9
10
|
},
|
|
10
11
|
emits: ["update:modelValue"],
|
|
11
12
|
template: '<div class="av-radio-button-set-stub" data-testid="av-radio-button-set-stub"><slot /></div>'
|