39 lines
891 B
JavaScript
39 lines
891 B
JavaScript
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
||
|
|
const require_runtime = require("../../../utils/vue/props/runtime.js");
|
||
|
|
//#region ../../packages/components/divider/src/divider.ts
|
||
|
|
/**
|
||
|
|
* @deprecated Removed after 3.0.0, Use `DividerProps` instead.
|
||
|
|
*/
|
||
|
|
const dividerProps = require_runtime.buildProps({
|
||
|
|
/**
|
||
|
|
* @description Set divider's direction
|
||
|
|
*/
|
||
|
|
direction: {
|
||
|
|
type: String,
|
||
|
|
values: ["horizontal", "vertical"],
|
||
|
|
default: "horizontal"
|
||
|
|
},
|
||
|
|
/**
|
||
|
|
* @description The position of the customized content on the divider line
|
||
|
|
*/
|
||
|
|
contentPosition: {
|
||
|
|
type: String,
|
||
|
|
values: [
|
||
|
|
"left",
|
||
|
|
"center",
|
||
|
|
"right"
|
||
|
|
],
|
||
|
|
default: "center"
|
||
|
|
},
|
||
|
|
/**
|
||
|
|
* @description Set the style of divider
|
||
|
|
*/
|
||
|
|
borderStyle: {
|
||
|
|
type: require_runtime.definePropType(String),
|
||
|
|
default: "solid"
|
||
|
|
}
|
||
|
|
});
|
||
|
|
//#endregion
|
||
|
|
exports.dividerProps = dividerProps;
|
||
|
|
|
||
|
|
//# sourceMappingURL=divider.js.map
|