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.
93 lines
1.9 KiB
93 lines
1.9 KiB
11 months ago
|
import { buildProps, definePropType } from '../../../utils/props.mjs';
|
||
|
import { UPDATE_MODEL_EVENT, CHANGE_EVENT, INPUT_EVENT } from '../../../utils/constants.mjs';
|
||
|
import { isBool, isNumber } from '../../../utils/util.mjs';
|
||
|
import { isValidComponentSize } from '../../../utils/validators.mjs';
|
||
|
import { isString } from '@vue/shared';
|
||
|
|
||
|
const switchProps = buildProps({
|
||
|
modelValue: {
|
||
|
type: [Boolean, String, Number],
|
||
|
default: false
|
||
|
},
|
||
|
value: {
|
||
|
type: [Boolean, String, Number],
|
||
|
default: false
|
||
|
},
|
||
|
disabled: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
width: {
|
||
|
type: Number,
|
||
|
default: 40
|
||
|
},
|
||
|
inlinePrompt: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
activeIcon: {
|
||
|
type: definePropType([String, Object, Function]),
|
||
|
default: ""
|
||
|
},
|
||
|
inactiveIcon: {
|
||
|
type: definePropType([String, Object, Function]),
|
||
|
default: ""
|
||
|
},
|
||
|
activeText: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
},
|
||
|
inactiveText: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
},
|
||
|
activeColor: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
},
|
||
|
inactiveColor: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
},
|
||
|
borderColor: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
},
|
||
|
activeValue: {
|
||
|
type: [Boolean, String, Number],
|
||
|
default: true
|
||
|
},
|
||
|
inactiveValue: {
|
||
|
type: [Boolean, String, Number],
|
||
|
default: false
|
||
|
},
|
||
|
name: {
|
||
|
type: String,
|
||
|
default: ""
|
||
|
},
|
||
|
validateEvent: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
},
|
||
|
id: String,
|
||
|
loading: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
beforeChange: {
|
||
|
type: definePropType(Function)
|
||
|
},
|
||
|
size: {
|
||
|
type: String,
|
||
|
validator: isValidComponentSize
|
||
|
}
|
||
|
});
|
||
|
const switchEmits = {
|
||
|
[UPDATE_MODEL_EVENT]: (val) => isBool(val) || isString(val) || isNumber(val),
|
||
|
[CHANGE_EVENT]: (val) => isBool(val) || isString(val) || isNumber(val),
|
||
|
[INPUT_EVENT]: (val) => isBool(val) || isString(val) || isNumber(val)
|
||
|
};
|
||
|
|
||
|
export { switchEmits, switchProps };
|
||
|
//# sourceMappingURL=switch.mjs.map
|