"use strict";
Vue.component("cc-label", {
dependencies: ["packages://inspector/share/blend.js"],
template: `
:multi-values="multi"
`,
props: {
target: {
twoWay: !0,
type: Object
},
multi: {
type: Boolean
}
},
methods: {
T: Editor.T,
_isBMFont() {
return this.target._bmFontOriginalSize.value > 0
},
_isSystemFont() {
return this.target.useSystemFont.value
},
_hiddenWrapText() {
let t = this.target.overflow.value;
return 0 === t || 3 === t
},
_hiddenActualFontSize() {
return 2 !== this.target.overflow.value
},
_isCharCacheMode() {
return 2 === this.target.cacheMode.value
},
}
});