1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| import '../../../utils/index.mjs';
| import '../../../hooks/index.mjs';
| import { radioEmits } from './radio2.mjs';
| import { buildProps } from '../../../utils/vue/props/runtime.mjs';
| import { useSizeProp } from '../../../hooks/use-size/index.mjs';
|
| const radioGroupProps = buildProps({
| id: {
| type: String,
| default: void 0
| },
| size: useSizeProp,
| disabled: Boolean,
| modelValue: {
| type: [String, Number, Boolean],
| default: ""
| },
| fill: {
| type: String,
| default: ""
| },
| label: {
| type: String,
| default: void 0
| },
| textColor: {
| type: String,
| default: ""
| },
| name: {
| type: String,
| default: void 0
| },
| validateEvent: {
| type: Boolean,
| default: true
| }
| });
| const radioGroupEmits = radioEmits;
|
| export { radioGroupEmits, radioGroupProps };
| //# sourceMappingURL=radio-group.mjs.map
|
|