You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
967 B
48 lines
967 B
|
2 years ago
|
'use strict';
|
||
|
|
|
||
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||
|
|
|
||
|
|
require('../../../utils/index.js');
|
||
|
|
require('../../../hooks/index.js');
|
||
|
|
var radio = require('./radio.js');
|
||
|
|
var runtime = require('../../../utils/vue/props/runtime.js');
|
||
|
|
var index = require('../../../hooks/use-size/index.js');
|
||
|
|
|
||
|
|
const radioGroupProps = runtime.buildProps({
|
||
|
|
id: {
|
||
|
|
type: String,
|
||
|
|
default: void 0
|
||
|
|
},
|
||
|
|
size: index.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 = radio.radioEmits;
|
||
|
|
|
||
|
|
exports.radioGroupEmits = radioGroupEmits;
|
||
|
|
exports.radioGroupProps = radioGroupProps;
|
||
|
|
//# sourceMappingURL=radio-group.js.map
|