hongluan-ui
Version:
Hongluan Component Library for Vue 3
54 lines (51 loc) • 897 B
JavaScript
import '../../../utils/index.mjs';
import { isValidComponentSize, isValidComponentType } from '../../../utils/vue/validator.mjs';
const groupProps = {
dir: {
type: String,
default: "horizontal"
},
merge: {
type: Boolean,
default: false
},
deepMerge: {
type: Boolean,
default: false
},
indent: {
type: [Boolean, String],
default: false
},
gap: String,
gapX: String,
gapY: String,
full: {
type: [Boolean, String],
default: false
},
wrap: {
type: Boolean,
default: false
},
align: {
type: String,
default: ""
},
block: {
type: Boolean,
default: false
},
size: {
type: String,
validator: isValidComponentSize
},
disabled: Boolean,
fill: Boolean,
type: {
type: String,
validator: isValidComponentType
}
};
export { groupProps };
//# sourceMappingURL=group-props.mjs.map