UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

49 lines (46 loc) 965 B
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ /* unplugin-vue-components disabled */var props = { allowUncheck: Boolean, disabled: Boolean, name: { type: String, "default": "" }, options: { type: Array }, size: { type: String, "default": "medium", validator: function validator(val) { if (!val) return true; return ["small", "medium", "large"].includes(val); } }, value: { type: [String, Number, Boolean], "default": void 0 }, modelValue: { type: [String, Number, Boolean], "default": void 0 }, defaultValue: { type: [String, Number, Boolean] }, variant: { type: String, "default": "outline", validator: function validator(val) { if (!val) return true; return ["outline", "primary-filled", "default-filled"].includes(val); } }, onChange: Function }; export { props as default }; //# sourceMappingURL=radio-group-props.js.map