Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/inventory.picotech.app/public_html/node_modules/vue-barcode/ drwxr-xr-x | |
| Viewing file: Select action/file-type: var JsBarcode = require('jsbarcode');
var VueBarcode = {
render: function (createElement) {
return createElement('div', [
createElement(this.elementTag, {
style: { display: this.valid ? undefined : 'none' },
'class': ['vue-barcode-element']
}),
createElement('div', {
style: { display: this.valid ? 'none' : undefined }
}, this.$slots.default),
]);
},
props: {
value: [String, Number],
format: [String],
width: [String, Number],
height: [String, Number],
displayValue: {
type: [String, Boolean],
default: true
},
text: [String, Number],
fontOptions : [String],
font: [String],
textAlign: [String],
textPosition: [String],
textMargin: [String, Number],
fontSize: [String, Number],
background: [String],
lineColor: [String],
margin: [String, Number],
marginTop: [String, Number],
marginBottom: [String, Number],
marginLeft: [String, Number],
marginRight: [String, Number],
flat: [Boolean],
ean128: [String, Boolean],
elementTag: {
type: String,
default: 'svg',
validator: function (value) {
return ['canvas', 'svg', 'img'].indexOf(value) !== -1
}
}
},
mounted: function(){
this.$watch('$props', render, { deep: true, immediate: true });
render.call(this);
},
data: function(){
return {valid: true};
}
};
function render(){
var that = this;
var settings = {
format: this.format,
width: this.width,
height: this.height,
displayValue: this.displayValue,
text: this.text,
fontOptions: this.fontOptions,
font: this.font,
textAlign: this.textAlign,
textPosition: this.textPosition,
textMargin: this.textMargin,
fontSize: this.fontSize,
background: this.background,
lineColor: this.lineColor,
margin: this.margin,
marginTop: this.marginTop,
marginBottom: this.marginBottom,
marginLeft: this.marginLeft,
marginRight: this.marginRight,
flat: this.flat,
ean128: this.ean128,
valid: function (valid) {
that.valid = valid;
},
elementTag: this.elementTag
};
removeUndefinedProps(settings);
JsBarcode(this.$el.querySelector('.vue-barcode-element'), String(this.value), settings);
}
function removeUndefinedProps(obj) {
for (var prop in obj) {
if (obj.hasOwnProperty(prop) && obj[prop] === undefined) {
delete obj[prop];
}
}
}
module.exports = VueBarcode;
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0033 ]-- |