| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var radio = require('./radio2.js');
- var runtime = require('../../../utils/vue/props/runtime.js');
- var index = require('../../../hooks/use-size/index.js');
- var index$1 = require('../../../hooks/use-aria/index.js');
- const radioGroupProps = runtime.buildProps({
- id: {
- type: String,
- default: void 0
- },
- size: index.useSizeProp,
- disabled: Boolean,
- modelValue: {
- type: [String, Number, Boolean],
- default: void 0
- },
- fill: {
- type: String,
- default: ""
- },
- textColor: {
- type: String,
- default: ""
- },
- name: {
- type: String,
- default: void 0
- },
- validateEvent: {
- type: Boolean,
- default: true
- },
- options: {
- type: runtime.definePropType(Array)
- },
- props: {
- type: runtime.definePropType(Object),
- default: () => radioDefaultProps
- },
- ...index$1.useAriaProps(["ariaLabel"])
- });
- const radioGroupEmits = radio.radioEmits;
- const radioDefaultProps = {
- label: "label",
- value: "value",
- disabled: "disabled"
- };
- exports.radioDefaultProps = radioDefaultProps;
- exports.radioGroupEmits = radioGroupEmits;
- exports.radioGroupProps = radioGroupProps;
- //# sourceMappingURL=radio-group.js.map
|