tnx-shared 5.3.361 → 5.3.362
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 +10 -10
- 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/esm2015/components/address/address.component.js +11 -11
- package/fesm2015/tnx-shared.js +10 -10
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -44370,8 +44370,8 @@
|
|
|
44370
44370
|
this.setting.schema = [
|
|
44371
44371
|
new DropdownControlSchema({
|
|
44372
44372
|
field: 'idProvince',
|
|
44373
|
-
label: '
|
|
44374
|
-
placeholder: '
|
|
44373
|
+
label: this._translateService.instant('ADDRESS_PICKER.PROVINCE.LABEL'),
|
|
44374
|
+
placeholder: this._translateService.instant('ADDRESS_PICKER.PROVINCE.PLACEHOLDER'),
|
|
44375
44375
|
required: this.control.required && this.control.requiredProvince,
|
|
44376
44376
|
baseService: this.control.baseService,
|
|
44377
44377
|
plusUrl: this.control.caching ? 'GetDataProvince' : '',
|
|
@@ -44388,8 +44388,8 @@
|
|
|
44388
44388
|
}),
|
|
44389
44389
|
new DropdownControlSchema({
|
|
44390
44390
|
field: 'idDistrict',
|
|
44391
|
-
label: '
|
|
44392
|
-
placeholder: '
|
|
44391
|
+
label: this._translateService.instant('ADDRESS_PICKER.DISTRICT.LABEL'),
|
|
44392
|
+
placeholder: this._translateService.instant('ADDRESS_PICKER.DISTRICT.PLACEHOLDER'),
|
|
44393
44393
|
required: this.control.required && this.control.requiredDistrict,
|
|
44394
44394
|
baseService: this.control.baseService,
|
|
44395
44395
|
defaultFilters: [{ field: 'level', operator: exports.Operator.equal, value: exports.ENUM_DON_VI_HANH_CHINH.QUAN_HUYEN.toString() }],
|
|
@@ -44404,8 +44404,8 @@
|
|
|
44404
44404
|
}),
|
|
44405
44405
|
new DropdownControlSchema({
|
|
44406
44406
|
field: 'idWard',
|
|
44407
|
-
label: '
|
|
44408
|
-
placeholder: '
|
|
44407
|
+
label: this._translateService.instant('ADDRESS_PICKER.WARD.LABEL'),
|
|
44408
|
+
placeholder: this._translateService.instant('ADDRESS_PICKER.WARD.PLACEHOLDER'),
|
|
44409
44409
|
required: this.control.required && this.control.requiredWard,
|
|
44410
44410
|
baseService: this.control.baseService,
|
|
44411
44411
|
defaultFilters: [{ field: 'level', operator: exports.Operator.equal, value: exports.ENUM_DON_VI_HANH_CHINH.PHUONG_XA.toString() }],
|
|
@@ -44420,8 +44420,8 @@
|
|
|
44420
44420
|
}),
|
|
44421
44421
|
new TextControlSchema({
|
|
44422
44422
|
field: 'street',
|
|
44423
|
-
label: '
|
|
44424
|
-
placeholder: '
|
|
44423
|
+
label: this._translateService.instant('ADDRESS_PICKER.STREET.LABEL'),
|
|
44424
|
+
placeholder: this._translateService.instant('ADDRESS_PICKER.STREET.PLACEHOLDER'),
|
|
44425
44425
|
required: this.control.required && this.control.requiredStreet,
|
|
44426
44426
|
mdWidth: this.control.streetWidth,
|
|
44427
44427
|
disabled: this._disabled,
|
|
@@ -44429,8 +44429,8 @@
|
|
|
44429
44429
|
}),
|
|
44430
44430
|
new TextControlSchema({
|
|
44431
44431
|
field: 'no',
|
|
44432
|
-
label: '
|
|
44433
|
-
placeholder: '
|
|
44432
|
+
label: this._translateService.instant('ADDRESS_PICKER.NO.LABEL'),
|
|
44433
|
+
placeholder: this._translateService.instant('ADDRESS_PICKER.NO.PLACEHOLDER'),
|
|
44434
44434
|
required: this.control.required && this.control.requiredNo,
|
|
44435
44435
|
mdWidth: this.control.noWidth,
|
|
44436
44436
|
disabled: this._disabled,
|