| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var radio = require('./radio.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: {
- type: Boolean,
- default: void 0
- },
- 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
- },
- type: {
- type: String,
- values: ["radio", "button"],
- default: "radio"
- },
- ...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
|