tnx-shared 5.3.279 → 5.3.280
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/tnx-shared.umd.js +2 -1
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/components/number-picker-range/number-picker-range.component.d.ts +1 -0
- package/components/number-picker-range/number-picker-range.component.d.ts.map +1 -1
- package/esm2015/components/number-picker-range/number-picker-range.component.js +3 -2
- package/fesm2015/tnx-shared.js +2 -1
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/tnx-shared.metadata.json +1 -1
|
@@ -49552,6 +49552,7 @@
|
|
|
49552
49552
|
this.change = new i0.EventEmitter();
|
|
49553
49553
|
this.placeholerTu = 'Từ';
|
|
49554
49554
|
this.placeholerDen = 'Đến';
|
|
49555
|
+
this.decimalMarker = ',';
|
|
49555
49556
|
}
|
|
49556
49557
|
NumberPickerRangeComponent.prototype.ngOnInit = function () {
|
|
49557
49558
|
this.onInit.emit(this);
|
|
@@ -49649,7 +49650,7 @@
|
|
|
49649
49650
|
NumberPickerRangeComponent.decorators = [
|
|
49650
49651
|
{ type: i0.Component, args: [{
|
|
49651
49652
|
selector: 'tn-number-picker-range',
|
|
49652
|
-
template: "<div class=\"tn-number-picker-range\">\n <input type=\"text\" placeholder=\"{{placeholerTu}}\" [attr.disabled]=\"disabled ? true : null\"\n [mask]=\"getMaskByType(maskType)\" [thousandSeparator]=\"getThousandSeperator()\" pInputText [(ngModel)]=\"model[0]\"
|
|
49653
|
+
template: "<div class=\"tn-number-picker-range\">\n <input type=\"text\" placeholder=\"{{placeholerTu}}\" [attr.disabled]=\"disabled ? true : null\"\n [mask]=\"getMaskByType(maskType)\" [thousandSeparator]=\"getThousandSeperator()\" [decimalMarker]=\"decimalMarker\"\n pInputText [(ngModel)]=\"model[0]\" (change)=\"onChanged($event)\" (focus)=\"onFocus($event, 0)\" />\n <span>-</span>\n <input type=\"text\" placeholder=\"{{placeholerDen}}\" [attr.disabled]=\"disabled ? true : null\"\n [mask]=\"getMaskByType(maskType)\" [thousandSeparator]=\"getThousandSeperator()\" [decimalMarker]=\"decimalMarker\"\n pInputText [(ngModel)]=\"model[1]\" (change)=\"onChanged($event)\" (focus)=\"onFocus($event, 1)\" />\n</div>",
|
|
49653
49654
|
providers: [
|
|
49654
49655
|
{
|
|
49655
49656
|
provide: forms.NG_VALUE_ACCESSOR,
|