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.
32 lines
665 B
32 lines
665 B
|
2 years ago
|
'use strict';
|
||
|
|
|
||
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||
|
|
|
||
|
|
require('../../../utils/index.js');
|
||
|
|
require('../../../constants/index.js');
|
||
|
|
var runtime = require('../../../utils/vue/props/runtime.js');
|
||
|
|
var size = require('../../../constants/size.js');
|
||
|
|
|
||
|
|
const textProps = runtime.buildProps({
|
||
|
|
type: {
|
||
|
|
type: String,
|
||
|
|
values: ["primary", "success", "info", "warning", "danger", ""],
|
||
|
|
default: ""
|
||
|
|
},
|
||
|
|
size: {
|
||
|
|
type: String,
|
||
|
|
values: size.componentSizes,
|
||
|
|
default: ""
|
||
|
|
},
|
||
|
|
truncated: {
|
||
|
|
type: Boolean
|
||
|
|
},
|
||
|
|
tag: {
|
||
|
|
type: String,
|
||
|
|
default: "span"
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
exports.textProps = textProps;
|
||
|
|
//# sourceMappingURL=text.js.map
|