tnx-shared 5.3.291 → 5.3.293

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.
Files changed (35) hide show
  1. package/bundles/tnx-shared.umd.js +131 -121
  2. package/bundles/tnx-shared.umd.js.map +1 -1
  3. package/bundles/tnx-shared.umd.min.js +1 -1
  4. package/bundles/tnx-shared.umd.min.js.map +1 -1
  5. package/classes/base/list-component-base.d.ts.map +1 -1
  6. package/classes/form-schema.d.ts +2 -0
  7. package/classes/form-schema.d.ts.map +1 -1
  8. package/components/autocomplete-picker/autocomplete-picker.component.d.ts.map +1 -1
  9. package/components/common-search-form/common-search-form.component.d.ts.map +1 -1
  10. package/components/dropdown/dropdown.component.d.ts +2 -0
  11. package/components/dropdown/dropdown.component.d.ts.map +1 -1
  12. package/components/entity-picker/entity-picker-dialog/components/entity-picker-data/entity-picker-data.component.d.ts.map +1 -1
  13. package/components/entity-picker/entity-picker-dialog/components/entity-picker-selected/entity-picker-selected.component.d.ts.map +1 -1
  14. package/esm2015/classes/base/list-component-base.js +3 -3
  15. package/esm2015/classes/form-schema.js +3 -1
  16. package/esm2015/components/autocomplete-picker/autocomplete-picker.component.js +7 -5
  17. package/esm2015/components/common-search-form/common-search-form.component.js +5 -2
  18. package/esm2015/components/dropdown/dropdown.component.js +19 -23
  19. package/esm2015/components/entity-picker/entity-picker-dialog/components/entity-picker-data/entity-picker-data.component.js +2 -1
  20. package/esm2015/components/entity-picker/entity-picker-dialog/components/entity-picker-selected/entity-picker-selected.component.js +2 -1
  21. package/esm2015/public-api.js +2 -1
  22. package/esm2015/services/base.service.js +6 -4
  23. package/esm2015/services/canbo-hoso.service.js +7 -3
  24. package/esm2015/services/crud.service.js +4 -4
  25. package/esm2015/services/dm-chucvu.service.js +1 -2
  26. package/fesm2015/tnx-shared.js +65 -56
  27. package/fesm2015/tnx-shared.js.map +1 -1
  28. package/package.json +2 -2
  29. package/public-api.d.ts +1 -0
  30. package/public-api.d.ts.map +1 -1
  31. package/services/base.service.d.ts +0 -2
  32. package/services/base.service.d.ts.map +1 -1
  33. package/services/canbo-hoso.service.d.ts.map +1 -1
  34. package/services/dm-chucvu.service.d.ts.map +1 -1
  35. package/tnx-shared.metadata.json +1 -1
@@ -1481,6 +1481,7 @@ class DropdownControlSchema extends DataSourceControlSchema {
1481
1481
  this.insertPlusUrl = '';
1482
1482
  this.loadInFirstDisplay = true;
1483
1483
  this.autoGetData = true;
1484
+ this.isAllowDisabled = true;
1484
1485
  this.valueField = 'id';
1485
1486
  this.displayField = 'ten';
1486
1487
  this.autoDisplayFirst = false;
@@ -1733,6 +1734,7 @@ class DropdownOptions {
1733
1734
  this.isServerLoad = false;
1734
1735
  this.refFields = [];
1735
1736
  this.isTreeBaseModel = false;
1737
+ this.isGetAll = false;
1736
1738
  this.funcCompare = (item, value) => item[this.valueField] == value;
1737
1739
  for (const key in init) {
1738
1740
  this[key] = init[key];
@@ -5843,11 +5845,11 @@ class CrudService {
5843
5845
  refFields: schema.refFields,
5844
5846
  isTreeBaseModel: schema.isTreeBaseModel,
5845
5847
  // TODO: Cần điền vào không có lỗi không chạy được
5846
- selectChildItem: null
5848
+ selectChildItem: null,
5849
+ isGetAll: !(schema instanceof DropdownControlSchema)
5847
5850
  });
5848
5851
  if (result.isServerLoad) {
5849
5852
  result.pageSize = schema.pageSize;
5850
- // result.pageSize = 2;
5851
5853
  }
5852
5854
  return result;
5853
5855
  }
@@ -6661,6 +6663,7 @@ const EXCEL_TYPE$1 = 'application/vnd.openxmlformats-officedocument.spreadsheetm
6661
6663
  const EXCEL_EXTENSION$1 = '.xlsx';
6662
6664
  class BaseService {
6663
6665
  constructor(http, injector, serviceUri) {
6666
+ var _a, _b;
6664
6667
  this.serviceUri = '';
6665
6668
  this.endPoint = '';
6666
6669
  this.serviceCode = '';
@@ -6670,8 +6673,6 @@ class BaseService {
6670
6673
  this.apiGetData = 'GetData';
6671
6674
  this.apiGetAll = 'GetAllByFilter';
6672
6675
  this.apiGetDetailByFilter = 'GetByFilter';
6673
- this.fieldSort = '';
6674
- this.fieldSuDung = '';
6675
6676
  this.disableFieldNotUse = false;
6676
6677
  this.RETRY_COUNT = 0;
6677
6678
  this.REPLAY_COUNT = 1;
@@ -6681,6 +6682,8 @@ class BaseService {
6681
6682
  this.serviceUri = serviceUri;
6682
6683
  this._commonService = injector.get(CommonService);
6683
6684
  this._signalrServicePrivate = injector.get(SignalRService);
6685
+ const environment = this._injector.get(ModuleConfigService).getConfig().environment;
6686
+ this.disableFieldNotUse = (_b = (_a = environment === null || environment === void 0 ? void 0 : environment.cauHinhNghiepVu) === null || _a === void 0 ? void 0 : _a.disableFieldNotUse) !== null && _b !== void 0 ? _b : false;
6684
6687
  }
6685
6688
  setCurrentServiceUri(key) {
6686
6689
  }
@@ -6974,7 +6977,7 @@ class BaseService {
6974
6977
  _getDataDropdownByFilter(filters, options) {
6975
6978
  return new Promise((resolve, reject) => {
6976
6979
  const gridInfo = this.generateGridInfoDropdown(filters, options);
6977
- if (options.isServerLoad) {
6980
+ if (options.isServerLoad && !options.isGetAll) {
6978
6981
  this.getByGridRequest(gridInfo, options.plusUrl)
6979
6982
  .then(res => {
6980
6983
  resolve(res);
@@ -17132,6 +17135,8 @@ class CanBoHoSoService extends BaseService {
17132
17135
  }),
17133
17136
  new ColumnSchemaBase({
17134
17137
  field: 'email',
17138
+ operator: Operator.equal,
17139
+ isOverrideFilter: true,
17135
17140
  width: '180px'
17136
17141
  }),
17137
17142
  new ColumnSchemaBase({
@@ -17582,7 +17587,8 @@ class CanBoHoSoService extends BaseService {
17582
17587
  new EntityPickerColumn({
17583
17588
  label: 'Email',
17584
17589
  code: 'email',
17585
- fullTextSearch: true,
17590
+ operator: Operator.equal,
17591
+ isOverrideFilter: true,
17586
17592
  width: '170px',
17587
17593
  }),
17588
17594
  new EntityPickerColumn({
@@ -17652,7 +17658,8 @@ class CanBoHoSoService extends BaseService {
17652
17658
  new EntityPickerColumn({
17653
17659
  label: 'Email',
17654
17660
  code: 'email',
17655
- fullTextSearch: true,
17661
+ operator: Operator.equal,
17662
+ isOverrideFilter: true,
17656
17663
  width: '170px',
17657
17664
  })
17658
17665
  ];
@@ -20777,7 +20784,7 @@ class ListComponentBase extends ComponentBase {
20777
20784
  isArrayField: col.isArrayField ? true : false
20778
20785
  });
20779
20786
  templateFilter.push(filter);
20780
- this.filterSchema.dropdown[col.field] = new DropdownControlSchema(Object.assign(Object.assign({}, col), { appendTo: 'body', placeholder: `Chọn ${col.label}`, multiple: filterMuliple.includes(filter.operator), loadOnInit: true, isServerLoad: col.isServerLoad }));
20787
+ this.filterSchema.dropdown[col.field] = new DropdownControlSchema(Object.assign(Object.assign({}, col), { appendTo: 'body', placeholder: `Chọn ${col.label}`, multiple: filterMuliple.includes(filter.operator), loadOnInit: true, isServerLoad: col.isServerLoad, isAllowDisabled: false }));
20781
20788
  }
20782
20789
  else {
20783
20790
  this._notifierService.showWarning(`Chưa cấu hình baseService hoặc dataSource cho cột ${col.field}: ${col.label}`);
@@ -21136,7 +21143,7 @@ class ListComponentBase extends ComponentBase {
21136
21143
  }
21137
21144
  else {
21138
21145
  if (col.baseService || (col.dataSource && col.dataSource.length > 0)) {
21139
- searchInfo.fieldDropdown[col.field] = new DropdownControlSchema(Object.assign(Object.assign({}, col), { label: col.label, operator: col.multiple ? Operator.in : Operator.equal, mdWidth: col.mdWidth ? col.mdWidth : 10, loadOnInit: true }));
21146
+ searchInfo.fieldDropdown[col.field] = new DropdownControlSchema(Object.assign(Object.assign({}, col), { label: col.label, operator: col.multiple ? Operator.in : Operator.equal, mdWidth: col.mdWidth ? col.mdWidth : 10, loadOnInit: true, isAllowDisabled: false }));
21140
21147
  searchInfo.schema.push(searchInfo.fieldDropdown[col.field]);
21141
21148
  }
21142
21149
  else if (col.dataType == 'int') {
@@ -22111,6 +22118,9 @@ class CommonSearchFormComponent extends DataFormBase {
22111
22118
  this.handleSearch(null, evt.control.field);
22112
22119
  };
22113
22120
  }
22121
+ if (column instanceof DropdownControlSchema) {
22122
+ column.isAllowDisabled = false;
22123
+ }
22114
22124
  if (column instanceof NumberRangeControlSchema) {
22115
22125
  this.lstNumberRangeControl.push(column.field);
22116
22126
  }
@@ -22156,7 +22166,7 @@ class CommonSearchFormComponent extends DataFormBase {
22156
22166
  if (isLazyLoad) {
22157
22167
  this.lstControlLazyLoad.push(column.field);
22158
22168
  }
22159
- result.push(new DropdownControlSchema(Object.assign(Object.assign({}, column), { placeholder: (_a = column.placeholder) !== null && _a !== void 0 ? _a : `Chọn ${column.label}`, multiple: !column.single, dataSource: dataSource, mdWidth: this.mdWidth, isLazyLoad: isLazyLoad, showLabel: false, showClear: true, onChanged: (evt) => {
22169
+ result.push(new DropdownControlSchema(Object.assign(Object.assign({}, column), { placeholder: (_a = column.placeholder) !== null && _a !== void 0 ? _a : `Chọn ${column.label}`, isAllowDisabled: false, multiple: !column.single, dataSource: dataSource, mdWidth: this.mdWidth, isLazyLoad: isLazyLoad, showLabel: false, showClear: true, onChanged: (evt) => {
22160
22170
  var _a;
22161
22171
  if (column.dataType == DataType.boolean) {
22162
22172
  evt.parentModel[column.field] = column.single ? (_a = evt.value.id) !== null && _a !== void 0 ? _a : evt.value : evt.value.map(p => p.id);
@@ -28134,6 +28144,8 @@ class DropdownComponent extends ComponentBase {
28134
28144
  this.loading = false;
28135
28145
  this.page = 1;
28136
28146
  this.totalPage = 2;
28147
+ this.fieldSuDung = 'suDung';
28148
+ this.disableFieldNotUse = false;
28137
28149
  this.modifyOptionWhenFilter = (options) => {
28138
28150
  this.dropdownOptions = this.dropdown._options;
28139
28151
  this._modifyOptionWhenFilter(options);
@@ -28233,13 +28245,14 @@ class DropdownComponent extends ComponentBase {
28233
28245
  if (this.control.loadOnInit && !this.control.isLazyLoad) {
28234
28246
  this._getData();
28235
28247
  }
28248
+ if (this.control.baseService instanceof MasterDataService) {
28249
+ this.control.maxItemDisplay = 9999;
28250
+ }
28251
+ this.disableFieldNotUse = this.control.baseService['disableFieldNotUse'];
28236
28252
  }
28237
28253
  if (!this._deviceDetectorService.isDesktop()) {
28238
28254
  this.hideTransitionOptions = this.showTransitionOptions = '';
28239
28255
  }
28240
- if (this.control.baseService instanceof MasterDataService) {
28241
- this.control.maxItemDisplay = 9999;
28242
- }
28243
28256
  if (this.control.onInit) {
28244
28257
  this.control.onInit(this);
28245
28258
  }
@@ -28428,9 +28441,9 @@ class DropdownComponent extends ComponentBase {
28428
28441
  this._hasLoadedDatasource = true;
28429
28442
  }
28430
28443
  }
28431
- if (this.control.baseService && this.control.baseService['disableFieldNotUse']) {
28432
- const fieldSuDung = this.control.baseService['fieldSuDung'];
28433
- this.dataSourceInternal.forEach(item => item.inactive = !item.value[fieldSuDung]);
28444
+ if (this.disableFieldNotUse && this.control.isAllowDisabled
28445
+ && this.dataSourceInternal.some(p => p.value.hasOwnProperty(this.fieldSuDung))) {
28446
+ this.dataSourceInternal.forEach(item => item.inactive = !item.value[this.fieldSuDung]);
28434
28447
  }
28435
28448
  }
28436
28449
  appendDataSource(destSource, dataSource, direction = 1) {
@@ -28679,17 +28692,6 @@ class DropdownComponent extends ComponentBase {
28679
28692
  return __awaiter(this, void 0, void 0, function* () {
28680
28693
  let dataSource = null;
28681
28694
  let totalPage = 1;
28682
- if (this.control.baseService['fieldSort']) {
28683
- this.control.sorts = [this.newSort(this.control.baseService['fieldSort'])];
28684
- }
28685
- const fieldSuDung = this.control.baseService['fieldSuDung'];
28686
- if (fieldSuDung) {
28687
- this.control.sorts.splice(0, 0, this.newSort(fieldSuDung, -1));
28688
- this.control.fieldPlus += `,${fieldSuDung}`;
28689
- this.control.funcGetLabel = (item) => {
28690
- return item[fieldSuDung] ? item[this.control.displayField] : `${item[this.control.displayField]} (Không sử dụng)`;
28691
- };
28692
- }
28693
28695
  const dropdownOptions = this._crudService.createDropdownOptions(this.control);
28694
28696
  dropdownOptions.page = page;
28695
28697
  if (pageSize) {
@@ -28793,14 +28795,18 @@ class DropdownComponent extends ComponentBase {
28793
28795
  onChangeSelected(event) {
28794
28796
  if (this.control.multiple) {
28795
28797
  if (!event.itemValue) {
28796
- // Trường hợp select all
28797
- if (event.value.length) {
28798
- this._value = this.dataSourceInternal.map(q => q.value);
28799
- }
28800
28798
  // Trường hợp unselect all
28801
- else {
28799
+ if (!event.value.length || event.value.every(p => p.hasOwnProperty(this.fieldSuDung) && !p[this.fieldSuDung])) {
28802
28800
  this._value = [];
28803
28801
  }
28802
+ // Trường hợp select all
28803
+ else {
28804
+ let tmpDataSource = [...this.dataSourceInternal];
28805
+ if (this.dataSourceInternal.some(p => p.hasOwnProperty('inactive'))) {
28806
+ tmpDataSource = tmpDataSource.filter(p => !p.inactive);
28807
+ }
28808
+ this._value = tmpDataSource.map(q => q.value);
28809
+ }
28804
28810
  }
28805
28811
  else if (this.control.selectDescendant) {
28806
28812
  const parentIds = [event.itemValue[this.control.valueField]];
@@ -34388,6 +34394,26 @@ class Column {
34388
34394
  }
34389
34395
  }
34390
34396
 
34397
+ var EnumDoiTuongGuiThongBaoNguoiDung;
34398
+ (function (EnumDoiTuongGuiThongBaoNguoiDung) {
34399
+ EnumDoiTuongGuiThongBaoNguoiDung["TAT_CA_NGUOI_DUNG"] = "0";
34400
+ EnumDoiTuongGuiThongBaoNguoiDung["TAT_CA_LANH_DAO"] = "1";
34401
+ EnumDoiTuongGuiThongBaoNguoiDung["CHON_NGUOI_DUNG"] = "2";
34402
+ EnumDoiTuongGuiThongBaoNguoiDung["LANH_DAO_DON_VI"] = "3";
34403
+ })(EnumDoiTuongGuiThongBaoNguoiDung || (EnumDoiTuongGuiThongBaoNguoiDung = {}));
34404
+ class NotificationParams {
34405
+ constructor() { }
34406
+ }
34407
+ var EnumNotificationAction;
34408
+ (function (EnumNotificationAction) {
34409
+ EnumNotificationAction[EnumNotificationAction["NEW"] = 0] = "NEW";
34410
+ })(EnumNotificationAction || (EnumNotificationAction = {}));
34411
+ ;
34412
+ const ɵ0$1 = EnumNotificationAction.NEW;
34413
+ const SEND_ACTION = [
34414
+ { id: ɵ0$1, name: 'NEW' }
34415
+ ];
34416
+
34391
34417
  class ReponseResult {
34392
34418
  }
34393
34419
 
@@ -34993,26 +35019,6 @@ AnnouncementReadsService.ctorParameters = () => [
34993
35019
  { type: ModuleConfigService }
34994
35020
  ];
34995
35021
 
34996
- var EnumDoiTuongGuiThongBaoNguoiDung;
34997
- (function (EnumDoiTuongGuiThongBaoNguoiDung) {
34998
- EnumDoiTuongGuiThongBaoNguoiDung["TAT_CA_NGUOI_DUNG"] = "0";
34999
- EnumDoiTuongGuiThongBaoNguoiDung["TAT_CA_LANH_DAO"] = "1";
35000
- EnumDoiTuongGuiThongBaoNguoiDung["CHON_NGUOI_DUNG"] = "2";
35001
- EnumDoiTuongGuiThongBaoNguoiDung["LANH_DAO_DON_VI"] = "3";
35002
- })(EnumDoiTuongGuiThongBaoNguoiDung || (EnumDoiTuongGuiThongBaoNguoiDung = {}));
35003
- class NotificationParams {
35004
- constructor() { }
35005
- }
35006
- var EnumNotificationAction;
35007
- (function (EnumNotificationAction) {
35008
- EnumNotificationAction[EnumNotificationAction["NEW"] = 0] = "NEW";
35009
- })(EnumNotificationAction || (EnumNotificationAction = {}));
35010
- ;
35011
- const ɵ0$1 = EnumNotificationAction.NEW;
35012
- const SEND_ACTION = [
35013
- { id: ɵ0$1, name: 'NEW' }
35014
- ];
35015
-
35016
35022
  class AnnouncementsService extends BaseService {
35017
35023
  constructor(http, injector, _moduleConfigService) {
35018
35024
  super(http, injector, `${_moduleConfigService.getConfig().environment.apiDomain.thongbaoEndpoint}/${_moduleConfigService.getConfig().environment.apiVersion}/Announcements`);
@@ -35130,7 +35136,6 @@ class DmChucVuService extends BaseService {
35130
35136
  this.entityName = 'DM_ChucVu';
35131
35137
  this.endPoint = _moduleConfigService.getConfig().environment.apiDomain.canboEndpoint;
35132
35138
  this._moduleConfig = _moduleConfigService.getConfig();
35133
- this.fieldSuDung = 'trangThai';
35134
35139
  }
35135
35140
  }
35136
35141
  DmChucVuService.ɵprov = i0.ɵɵdefineInjectable({ factory: function DmChucVuService_Factory() { return new DmChucVuService(i0.ɵɵinject(i1$1.HttpClient), i0.ɵɵinject(i0.INJECTOR), i0.ɵɵinject(ModuleConfigService)); }, token: DmChucVuService, providedIn: "root" });
@@ -38155,6 +38160,7 @@ class EntityPickerDataComponent extends DataListBase {
38155
38160
  funcSetValueRow: column.funcSetValueRow,
38156
38161
  dataSource: column.dataSource,
38157
38162
  groupCode: column.groupCode,
38163
+ isOverrideFilter: column.isOverrideFilter,
38158
38164
  order: column.order
38159
38165
  });
38160
38166
  if (column.dataType == 'custom') {
@@ -38365,6 +38371,7 @@ class EntityPickerSelectedComponent extends DataListBase {
38365
38371
  funcSetValueRow: column.funcSetValueRow,
38366
38372
  dataSource: column.dataSource,
38367
38373
  groupCode: column.groupCode,
38374
+ isOverrideFilter: column.isOverrideFilter,
38368
38375
  order: column.order
38369
38376
  });
38370
38377
  if (column.dataType == 'custom') {
@@ -38754,8 +38761,10 @@ class AutoCompletePickerComponent extends ComponentBase {
38754
38761
  }
38755
38762
  }
38756
38763
  buildFilterKeyword() {
38764
+ var _a;
38765
+ const operator = (_a = this.control.operatorFieldSearchText) !== null && _a !== void 0 ? _a : Operator.contain;
38757
38766
  if (this.fieldSearchText.length == 1) {
38758
- this.getFilterOnSearch = value => this.newFilter(this.control.displayField, Operator.contain, value);
38767
+ this.getFilterOnSearch = value => this.newFilter(this.control.displayField, operator, value);
38759
38768
  }
38760
38769
  else {
38761
38770
  this.getFilterOnSearch = value => {
@@ -38764,7 +38773,7 @@ class AutoCompletePickerComponent extends ComponentBase {
38764
38773
  filters: []
38765
38774
  });
38766
38775
  for (const fieldSearch of this.fieldSearchText) {
38767
- result.filters.push(this.newFilter(fieldSearch, Operator.contain, value));
38776
+ result.filters.push(this.newFilter(fieldSearch, operator, value));
38768
38777
  }
38769
38778
  return result;
38770
38779
  };
@@ -48585,5 +48594,5 @@ class Pair {
48585
48594
  * Generated bundle index. Do not edit.
48586
48595
  */
48587
48596
 
48588
- export { AccessDeniedComponent, Action, ActionChoYKienBase, ActionThuHoiBase, ActionUpdateModel, AddressControlSchema, AddressService, AdvanceSearchData, AdvanceSearchSetting, AfterViewCheckedComponent, AnnouncementReadsService, AnnouncementsService, AppComponentBase, AppListService, ApplicationContextService, ApprovalPipe, ArrayPair, AtLeastOneRowTableValidator, AuthenService, AuthorizeDirective, AutoCompleteControlSchema, AutoCompletePickerControlSchema, AutocompleteDatasourceComponent, AvatarUploaderComponent, BaseMenuService, BaseModule, BaseService, BooleanFormatPipe, ButtonAction, ButtonControlSchema, ButtonPermission, ButtonPermissions, ButtonTextActionCongViec, CONFIG_CALENDAR_VIETNAMESE, CalculationEngineService, CanBoHoSoService, CanBo_HoSo_CoCauToChucService, CauHinhWorkflowService, CccdValidator, CellExcel, ChatBoxComponent, ChatSendMessageBoxComponent, CheckBoxListControlSchema, CheckControlVisibleService, CheckDuplicateFieldsValidator, CheckDuplicateValidator, CheckboxControlSchema, ChipsControlSchema, ClientV5Service, CoCauToChucControlSchema, CoCauToChucNewService, CoCauToChucPickerComponent, CoCauToChucPickerControlSchema, CoCauToChucPickerControlSchemaNew, CoCauToChucService, CodeValidator, ColorBlack, ColorControlSchema, ColorPickerControlSchema, ColorWhite, Column, ColumnSchemaBase, ColumnSetting, ColumnSettingDetail, ComCtxConstants, CommandType, CommonDashboardComponent, CommonErrorCode, CommonLibComponent, CommonSearchFormComponent, CommonService, CompareValidator, ComponentBase, ComponentBaseWithButton, ComponentConstants, ComponentContextService, ConditionalBuilderService, CongViecPickerControlSchema, CongViecService, ContainerSchema, ControlTreeNode, ControlType, ConvertMoneyToWordPipe, CoreConfigService, CrudBase, CrudFormComponent, CrudFormCustomFunction, CrudFormData, CrudFormSetting, CrudListComponent, CrudListConfig, CrudListCustomFunction, CrudListData, CrudListHelper, CrudListSetting, CrudService, CustomControlSchema, CustomRouterService, CustomizeUiModel, CustomizeUiService, DanhmucApiService, DataExcel, DataFormBase, DataListBase, DataSourceControlSchema, DataSourceGioiTinh, DataSourcePermissionBase, DataSourceWorkflowCoreStatus, DataType, DateCompareValidator, DateTimeControlSchema, DateTimeRangeControlSchema, DbOrganizationOrganizationService, DbOrganizationPositionService, Deadline, DeadlineType, DhvinhGuardService, DialogModel, DmChucVuService, DmLoaiCongViecService, DomService, DownloadLinkService, DropdownComponent, DropdownControlSchema, DropdownOptions, DummyWorkflowCode, DynamicComponentService, ENUM_DON_VI_HANH_CHINH, EXPLORER_TYPES, EXPORT_VERSION_V4, EXPORT_VERSION_V5, EditFileCommand, EditorControlSchema, EformService, EmailValidator, EntityMedataDataSetting, EntityMetadataService, EntityPickerColumn, EntityPickerControlSchema, EntityWorkflowHistoryService, EntityWorkflowType, EnumActionType, EnumAppSwitcherCode, EnumCanBo, EnumControlPickerType, EnumFileLayout, EnumGetRefType, EnumGioiTinh, EnumHocHamHocVi, EnumLoaiVanBanBase$1 as EnumLoaiVanBanBase, EnumPermissionType, EnumProcessWorkflowType, EnumProperties, EnumStateType, EnumTargetType, EnumTypeSplash, EnumUserRule, EnumUserSource, EnumWFNhomTrangThai, EnumWorkflowCheckboxOption, EnumWorkflowCoreCodeSettingKey, EnumWorkflowHistoryStatus, ErrorType, EventData, EventType, ExactOneValueInTableValidator, ExportAllMode, ExportItem, ExportItemType, ExportItemsMode, ExportManyModel, ExportManyResultModel, ExportModel, ExportService, ExportWithoutTemplateModel, Extension, ExtensionsConst, FILE_TYPES, FederationService, FieldCheckboxCrudList, FieldColExpandCrudList, FieldColReorderCrudList, FieldDefineHasTask, FieldDefineIsTaskFormControl, FieldDefineIsWorkflowControl, FieldFunctionCrudList, FieldIndexInDataSource, FieldOrderCrudList, FieldRowSpan, FieldWorkflowCodeInCrudForm, FileDataService, FileExplorerService, FileExtensions, FileManagerComponent, FileManagerControlSchema, FileManagerMode, FileManagerSetting, FileObjectService, FilePickerDialogComponent, FilePickerSetting, FileType, FileTypeFlag, FileUploadComponent, FileUploadControlSchema, FileUploadMode, FileUploadSetting, FileV4Service, Filter, FolderService, FormControlBase, FormControlBaseWithService, FormSchemaBase, FormSchemaBaseWithService, FormState, Gender, GenerateLinkDownloadDTO, GenericGuardChildService, GenericGuardService, GlobalService, GmailCorrector, GridInfo, GuardService, GuardSvService, HeightType, HighPerformanceService, HighlightPipe, HoSoDoiTacService, HtmlFormatPipe, HtmlPreviewControlSchema, HttpOptions, ImageService, ImageUploaderControlSchema, Include, KeyFieldGetRefType, KeyFilterStateByMenuCongViec, KeyFlashShow, KeyFunctionReload, KeyValueComponent, KeyValueControlSchema, LabelSchema, LabelWFNhomTrangThai, LabelWorkflowCoreStatus, LatexService, LengthValidator, ListHelperService, LoaiPhieuDeXuat, LocalCacheService, LowerCorrector, LstEmailValidator, MA_THONG_BAO_PHAN_HE, MaActionBatDauQuyTrinh, ManagerType, MaskControlSchema, MasterDataItem, MasterDataPipe, MasterDataService, MenuService, MenuSource, MergeConfigModel, MethodResult, ModelKySoDonVi, ModelSchema, ModuleConfigService, MultiTranslateHttpLoader, MultipleReferenceDataFormatPipe, NameValidator, NotificationObjectType, NotificationService, NotifierService, NotifierType, NumberCompareValidator, NumberOnlyValidator, NumberRangeControlSchema, Operator, OrganizationFormatPipe, OrganizationNameFormatPipe, OrganizationPickerControlSchema, OrganizationService, OrganizationsFormatPipe, PageInfo, PageSetting, Pair, PassportValidator, PasswordValidator, Pattern, PercentControlSchema, PermissionBase, PermissionConstant, PermissionName, PermissionService, PermissionStorage, PermissionTypes, PermissionUtilsComponent, PersonalSetting, PhanQuyenModel, PhoneNumberValidator, PhoneValidator, PopupSize, PositionService, PrintService, PublicFunction, QueryBuilderComponent, QueryBuilderGroupComponent, QueryBuilderRuleComponent, QueryGroup, QueryRule, RELOAD_FILE_LIST, RadioButtonListControlSchema, RandomDataService, RefField, ReferenceDataFormatPipe, ReferenceTextControlSchema, RegexSplitFieldByItem, ReponseResult, RequiredFieldsValidator, RequiredValidator, RowColorOption, RowExcel, SHARE_COMPONENT_ID, SHARE_EVENT, SafeHtmlPipe, SafeStylePipe, SafeUrlPipe, SameValueValidator, ScalarValueValidator, SchemaBase, SecurePipe, ServiceFileUploadComponent, ServiceRequestModel, ServiceRequestModelV5, SessionTypes, SharedFolderType, SignalRService, SimpleDicItem, SimpleDictionary, Sort, SortDirs, SpanControlSchema, SplashComponentComponent, StartupBusinessComponentBase, StateMachinesService, Status, StatusAction, StatusGroup, StatusOption, StatusOrg, StatusUser, StorageService, StorageUpdatedService, StringCompareOption, StringFormatPipe, SummaryPipe, SwitchControlSchema, TBL_DM_COSODAOTAO_CONSTS, TBL_DM_PHONGHOC_CONSTS, TBL_KTX_NGUOITHUE_HOSO, TBL_TS_PHIEUDEXUAT, TBL_TS_TAISANCODINH_CONSTS, TabViewData, TableSchema, TagSeparator, TaiLieuComponent, TaxCodeValidator, TemplateConstant, TemplateControlSchema, TemplateInstanceService, TemplateService, TemplateTextItem, TemplateTextMany, TemplateTextService, TemplateTextV4Service, TemplateType, TemplateV4Service, TenContainer, TextAlign, TextAreaControlSchema, TextControlSchema, TextControlSchemaWithService, TitleSchema, TnClientCommand, TnClientService, TnComponentConfig, TnCustomScrollbarComponent, TnDatePipe, TnMenu, TnMenuItem, TnReorderableColumnDirective, TnReorderableRowDirective, TnSortIcon, TnSortableColumnDirective, TnTreeTableToggler, TnUser, TnxSharedModule, TopicReloadCongViecV5, TopicReloadCountCongViecV5, TopicReloadNotification, TrangThaiMasterData, TrangThais, TreeDataOption, TreeListBase, TreeNode, TrimCorrector, TrimEndCorrector, TrimStartCorrector, TypeDanhMucAPI, UniqueFieldInTableValidator, UniqueNumberService, UpperCorrector, UserGroupRealService, UserGroupService, UserOnlineDetailsService, UserPickerControlSchema, UserPickerDialogComponent, UserPublicInfo, UserService, UserType, UserV5Service, Validation, ValueType, VanBanPickerControlSchema, ViewContainerRefDirective, VirtualBaseService, WfAction, WfItem, WfMachine, WfSchema, WorkflowConfigAdvance, WorkflowCoreStatusEnum, WorkflowFieldStateCode, WorkflowHistoryService, WorkflowPermissionDetailService, WorkflowService, WorkflowSetting, WorkflowSettingNew, WorkflowSettingsService, WorkflowTargetDefaultValue, WrapPickerControlSchema, addDay, addZero, appendDefaultFilter, clearAll, clone, cloneOld, coreDeclaration, coreModuleImport, coreProvider, dataSourceIcon, dateDiff, fileTypeSource, genQueryFromFilters, getDateFromStringDateVN, getDayOfWeek, getEnvironmentByName, getEnvironmentData, getListMenuByName, getMenuData, getMonday, getStringDate, getStringDateTime, getStringDateVN, getStringDateVNLocal, getTimeSpan, isArray, isBoolean, isDate, isFunction, isLiteralObject, isNumber, isObjectOld, isRegular, isSimpleType, isString, isValidDate, isValidTime, keyUserSurveyLocal, loadRemoteModule, loadRemotePageModule, mapProperty, maximumPageSize, mergeJSON, mergeJSONOld, moduleConfigFunc, monthDiff, multipleSort, romanize, ɵ0$2 as ɵ0, ɵ1$1 as ɵ1, ɵ2$1 as ɵ2, ɵ3, ɵ4, LoggerService as ɵa, DropdownService as ɵb, ImageUploaderComponent as ɵba, CheckBoxListComponent as ɵbb, CoCauToChucPickerListComponent as ɵbc, CoCauToChucPickerListNewComponent as ɵbd, FormBuilderComponent as ɵbe, DatetimePickerComponent as ɵbf, DatetimePickerRangeComponent as ɵbg, EntityPickerBoxComponent as ɵbh, EntityPickerDataComponent as ɵbi, EntityPickerSelectedComponent as ɵbj, EntityPickerComponent as ɵbk, EntityPickerSearchFormComponent as ɵbl, EntityPickerDialogComponent as ɵbm, EntityPickerTreeDataComponent as ɵbn, EntityPickerTreeSelectedComponent as ɵbo, EntityPermissionComponent as ɵbp, EquationEditorComponent as ɵbq, MaskComponent as ɵbr, NumberPickerRangeComponent as ɵbs, PagingNextBackOnlyComponent as ɵbt, RadioButtonListComponent as ɵbu, VanBanPickerComponent as ɵbv, VanBanDenService as ɵbw, VanBanDiService as ɵbx, VanBanPickerDialogComponent as ɵby, VanbanDiPickerComponent as ɵbz, EntityPickerService as ɵc, VanbanDenPickerComponent as ɵca, CongViecPickerComponent as ɵcb, SettingsComponent as ɵcc, SettingsRowComponent as ɵcd, ShareLinkByPermissionComponent as ɵce, TnCheckboxComponent as ɵcf, TnDialogComponent as ɵcg, TnColorPickerComponent as ɵch, TnTinymceComponent as ɵci, TnTabViewComponent as ɵcj, TableDetailFormComponent as ɵck, FileIconPipe as ɵcl, FileSizePipe as ɵcm, QuickAddFormComponent as ɵcn, PreventShiftTabDirective as ɵco, TnTemplateDirective as ɵcp, UserPickerComponent as ɵcq, UserPickerBoxComponent as ɵcr, CoCauToChucTestService as ɵcs, TnAppHelpComponent as ɵct, PathNameService as ɵcu, HelperCurrentPageComponent as ɵcv, TnAppNotificationListComponent as ɵcw, TnAppNotificationComponent as ɵcx, FolderFormComponent as ɵcy, FileFormComponent as ɵcz, ExceptionHandlerService as ɵd, FileViewerComponent as ɵda, FileVersionListComponent as ɵdb, ViewDetailComponent as ɵdc, ReferenceTextBoxComponent as ɵdd, QrCodeGeneratorComponent as ɵde, AddNewsComponent as ɵdf, ArticleService as ɵdg, NewsCategoryService as ɵdh, UniversalLinkProcessorComponent as ɵdi, SignatureDetailComponent as ɵdj, KySoSimDanhSachChuKyComponent as ɵdk, KySoSimChuKyUserService as ɵdl, FileKySoSimComponent as ɵdm, KySoSimSignPDFService as ɵdn, TaiLieuCuaToiComponent as ɵdo, KhaiThacTaiLieuDungChungComponent as ɵdp, DanhMucDungChungService as ɵdq, TnTemplateComponent as ɵdr, DropdownSettingFormComponent as ɵds, CheckReadyComponent as ɵdt, TnAccordionTabComponent as ɵdu, SettingsWorkflowComponent as ɵdv, SettingAuthorizeButtonComponent as ɵdw, BasePermissionService as ɵdx, SettingsWorkflowNo1Component as ɵdy, HtmlPreviewComponent as ɵdz, ListBase as ɵe, AUTOCOMPLETE_VALUE_ACCESSOR as ɵea, AutoComplete as ɵeb, AutoCompleteModule as ɵec, ListComponentBase as ɵf, TreeTableComponent as ɵg, NotFoundComponent as ɵh, SendAccessTokenInterceptor as ɵi, LogInterceptor as ɵj, PermissionUtilsInterceptor as ɵk, TraceInterceptor as ɵl, EntityPermissionService as ɵm, ChatService as ɵn, MyDriveService as ɵo, ContentsService as ɵp, StatusExtendsService as ɵq, MessageBoardService as ɵr, FileExplorerNewService as ɵs, FileVersionService as ɵt, FileManagerService as ɵu, DM_ChucVuService as ɵv, RoleService as ɵw, AddressComponent as ɵx, AdvanceSearchComponent as ɵy, AutoCompletePickerComponent as ɵz };
48597
+ export { AccessDeniedComponent, Action, ActionChoYKienBase, ActionThuHoiBase, ActionUpdateModel, AddressControlSchema, AddressService, AdvanceSearchData, AdvanceSearchSetting, AfterViewCheckedComponent, AnnouncementReadsService, AnnouncementsService, AppComponentBase, AppListService, ApplicationContextService, ApprovalPipe, ArrayPair, AtLeastOneRowTableValidator, AuthenService, AuthorizeDirective, AutoCompleteControlSchema, AutoCompletePickerControlSchema, AutocompleteDatasourceComponent, AvatarUploaderComponent, BaseMenuService, BaseModule, BaseService, BooleanFormatPipe, ButtonAction, ButtonControlSchema, ButtonPermission, ButtonPermissions, ButtonTextActionCongViec, CONFIG_CALENDAR_VIETNAMESE, CalculationEngineService, CanBoHoSoService, CanBo_HoSo_CoCauToChucService, CauHinhWorkflowService, CccdValidator, CellExcel, ChatBoxComponent, ChatSendMessageBoxComponent, CheckBoxListControlSchema, CheckControlVisibleService, CheckDuplicateFieldsValidator, CheckDuplicateValidator, CheckboxControlSchema, ChipsControlSchema, ClientV5Service, CoCauToChucControlSchema, CoCauToChucNewService, CoCauToChucPickerComponent, CoCauToChucPickerControlSchema, CoCauToChucPickerControlSchemaNew, CoCauToChucService, CodeValidator, ColorBlack, ColorControlSchema, ColorPickerControlSchema, ColorWhite, Column, ColumnSchemaBase, ColumnSetting, ColumnSettingDetail, ComCtxConstants, CommandType, CommonDashboardComponent, CommonErrorCode, CommonLibComponent, CommonSearchFormComponent, CommonService, CompareValidator, ComponentBase, ComponentBaseWithButton, ComponentConstants, ComponentContextService, ConditionalBuilderService, CongViecPickerControlSchema, CongViecService, ContainerSchema, ControlTreeNode, ControlType, ConvertMoneyToWordPipe, CoreConfigService, CrudBase, CrudFormComponent, CrudFormCustomFunction, CrudFormData, CrudFormSetting, CrudListComponent, CrudListConfig, CrudListCustomFunction, CrudListData, CrudListHelper, CrudListSetting, CrudService, CustomControlSchema, CustomRouterService, CustomizeUiModel, CustomizeUiService, DanhmucApiService, DataExcel, DataFormBase, DataListBase, DataSourceControlSchema, DataSourceGioiTinh, DataSourcePermissionBase, DataSourceWorkflowCoreStatus, DataType, DateCompareValidator, DateTimeControlSchema, DateTimeRangeControlSchema, DbOrganizationOrganizationService, DbOrganizationPositionService, Deadline, DeadlineType, DhvinhGuardService, DialogModel, DmChucVuService, DmLoaiCongViecService, DomService, DownloadLinkService, DropdownComponent, DropdownControlSchema, DropdownOptions, DummyWorkflowCode, DynamicComponentService, ENUM_DON_VI_HANH_CHINH, EXPLORER_TYPES, EXPORT_VERSION_V4, EXPORT_VERSION_V5, EditFileCommand, EditorControlSchema, EformService, EmailValidator, EntityMedataDataSetting, EntityMetadataService, EntityPickerColumn, EntityPickerControlSchema, EntityWorkflowHistoryService, EntityWorkflowType, EnumActionType, EnumAppSwitcherCode, EnumCanBo, EnumControlPickerType, EnumDoiTuongGuiThongBaoNguoiDung, EnumFileLayout, EnumGetRefType, EnumGioiTinh, EnumHocHamHocVi, EnumLoaiVanBanBase$1 as EnumLoaiVanBanBase, EnumNotificationAction, EnumPermissionType, EnumProcessWorkflowType, EnumProperties, EnumStateType, EnumTargetType, EnumTypeSplash, EnumUserRule, EnumUserSource, EnumWFNhomTrangThai, EnumWorkflowCheckboxOption, EnumWorkflowCoreCodeSettingKey, EnumWorkflowHistoryStatus, ErrorType, EventData, EventType, ExactOneValueInTableValidator, ExportAllMode, ExportItem, ExportItemType, ExportItemsMode, ExportManyModel, ExportManyResultModel, ExportModel, ExportService, ExportWithoutTemplateModel, Extension, ExtensionsConst, FILE_TYPES, FederationService, FieldCheckboxCrudList, FieldColExpandCrudList, FieldColReorderCrudList, FieldDefineHasTask, FieldDefineIsTaskFormControl, FieldDefineIsWorkflowControl, FieldFunctionCrudList, FieldIndexInDataSource, FieldOrderCrudList, FieldRowSpan, FieldWorkflowCodeInCrudForm, FileDataService, FileExplorerService, FileExtensions, FileManagerComponent, FileManagerControlSchema, FileManagerMode, FileManagerSetting, FileObjectService, FilePickerDialogComponent, FilePickerSetting, FileType, FileTypeFlag, FileUploadComponent, FileUploadControlSchema, FileUploadMode, FileUploadSetting, FileV4Service, Filter, FolderService, FormControlBase, FormControlBaseWithService, FormSchemaBase, FormSchemaBaseWithService, FormState, Gender, GenerateLinkDownloadDTO, GenericGuardChildService, GenericGuardService, GlobalService, GmailCorrector, GridInfo, GuardService, GuardSvService, HeightType, HighPerformanceService, HighlightPipe, HoSoDoiTacService, HtmlFormatPipe, HtmlPreviewControlSchema, HttpOptions, ImageService, ImageUploaderControlSchema, Include, KeyFieldGetRefType, KeyFilterStateByMenuCongViec, KeyFlashShow, KeyFunctionReload, KeyValueComponent, KeyValueControlSchema, LabelSchema, LabelWFNhomTrangThai, LabelWorkflowCoreStatus, LatexService, LengthValidator, ListHelperService, LoaiPhieuDeXuat, LocalCacheService, LowerCorrector, LstEmailValidator, MA_THONG_BAO_PHAN_HE, MaActionBatDauQuyTrinh, ManagerType, MaskControlSchema, MasterDataItem, MasterDataPipe, MasterDataService, MenuService, MenuSource, MergeConfigModel, MethodResult, ModelKySoDonVi, ModelSchema, ModuleConfigService, MultiTranslateHttpLoader, MultipleReferenceDataFormatPipe, NameValidator, NotificationObjectType, NotificationParams, NotificationService, NotifierService, NotifierType, NumberCompareValidator, NumberOnlyValidator, NumberRangeControlSchema, Operator, OrganizationFormatPipe, OrganizationNameFormatPipe, OrganizationPickerControlSchema, OrganizationService, OrganizationsFormatPipe, PageInfo, PageSetting, Pair, PassportValidator, PasswordValidator, Pattern, PercentControlSchema, PermissionBase, PermissionConstant, PermissionName, PermissionService, PermissionStorage, PermissionTypes, PermissionUtilsComponent, PersonalSetting, PhanQuyenModel, PhoneNumberValidator, PhoneValidator, PopupSize, PositionService, PrintService, PublicFunction, QueryBuilderComponent, QueryBuilderGroupComponent, QueryBuilderRuleComponent, QueryGroup, QueryRule, RELOAD_FILE_LIST, RadioButtonListControlSchema, RandomDataService, RefField, ReferenceDataFormatPipe, ReferenceTextControlSchema, RegexSplitFieldByItem, ReponseResult, RequiredFieldsValidator, RequiredValidator, RowColorOption, RowExcel, SEND_ACTION, SHARE_COMPONENT_ID, SHARE_EVENT, SafeHtmlPipe, SafeStylePipe, SafeUrlPipe, SameValueValidator, ScalarValueValidator, SchemaBase, SecurePipe, ServiceFileUploadComponent, ServiceRequestModel, ServiceRequestModelV5, SessionTypes, SharedFolderType, SignalRService, SimpleDicItem, SimpleDictionary, Sort, SortDirs, SpanControlSchema, SplashComponentComponent, StartupBusinessComponentBase, StateMachinesService, Status, StatusAction, StatusGroup, StatusOption, StatusOrg, StatusUser, StorageService, StorageUpdatedService, StringCompareOption, StringFormatPipe, SummaryPipe, SwitchControlSchema, TBL_DM_COSODAOTAO_CONSTS, TBL_DM_PHONGHOC_CONSTS, TBL_KTX_NGUOITHUE_HOSO, TBL_TS_PHIEUDEXUAT, TBL_TS_TAISANCODINH_CONSTS, TabViewData, TableSchema, TagSeparator, TaiLieuComponent, TaxCodeValidator, TemplateConstant, TemplateControlSchema, TemplateInstanceService, TemplateService, TemplateTextItem, TemplateTextMany, TemplateTextService, TemplateTextV4Service, TemplateType, TemplateV4Service, TenContainer, TextAlign, TextAreaControlSchema, TextControlSchema, TextControlSchemaWithService, TitleSchema, TnClientCommand, TnClientService, TnComponentConfig, TnCustomScrollbarComponent, TnDatePipe, TnMenu, TnMenuItem, TnReorderableColumnDirective, TnReorderableRowDirective, TnSortIcon, TnSortableColumnDirective, TnTreeTableToggler, TnUser, TnxSharedModule, TopicReloadCongViecV5, TopicReloadCountCongViecV5, TopicReloadNotification, TrangThaiMasterData, TrangThais, TreeDataOption, TreeListBase, TreeNode, TrimCorrector, TrimEndCorrector, TrimStartCorrector, TypeDanhMucAPI, UniqueFieldInTableValidator, UniqueNumberService, UpperCorrector, UserGroupRealService, UserGroupService, UserOnlineDetailsService, UserPickerControlSchema, UserPickerDialogComponent, UserPublicInfo, UserService, UserType, UserV5Service, Validation, ValueType, VanBanPickerControlSchema, ViewContainerRefDirective, VirtualBaseService, WfAction, WfItem, WfMachine, WfSchema, WorkflowConfigAdvance, WorkflowCoreStatusEnum, WorkflowFieldStateCode, WorkflowHistoryService, WorkflowPermissionDetailService, WorkflowService, WorkflowSetting, WorkflowSettingNew, WorkflowSettingsService, WorkflowTargetDefaultValue, WrapPickerControlSchema, addDay, addZero, appendDefaultFilter, clearAll, clone, cloneOld, coreDeclaration, coreModuleImport, coreProvider, dataSourceIcon, dateDiff, fileTypeSource, genQueryFromFilters, getDateFromStringDateVN, getDayOfWeek, getEnvironmentByName, getEnvironmentData, getListMenuByName, getMenuData, getMonday, getStringDate, getStringDateTime, getStringDateVN, getStringDateVNLocal, getTimeSpan, isArray, isBoolean, isDate, isFunction, isLiteralObject, isNumber, isObjectOld, isRegular, isSimpleType, isString, isValidDate, isValidTime, keyUserSurveyLocal, loadRemoteModule, loadRemotePageModule, mapProperty, maximumPageSize, mergeJSON, mergeJSONOld, moduleConfigFunc, monthDiff, multipleSort, romanize, ɵ1$1 as ɵ1, ɵ2$1 as ɵ2, ɵ3, ɵ4, LoggerService as ɵa, DropdownService as ɵb, ImageUploaderComponent as ɵba, CheckBoxListComponent as ɵbb, CoCauToChucPickerListComponent as ɵbc, CoCauToChucPickerListNewComponent as ɵbd, FormBuilderComponent as ɵbe, DatetimePickerComponent as ɵbf, DatetimePickerRangeComponent as ɵbg, EntityPickerBoxComponent as ɵbh, EntityPickerDataComponent as ɵbi, EntityPickerSelectedComponent as ɵbj, EntityPickerComponent as ɵbk, EntityPickerSearchFormComponent as ɵbl, EntityPickerDialogComponent as ɵbm, EntityPickerTreeDataComponent as ɵbn, EntityPickerTreeSelectedComponent as ɵbo, EntityPermissionComponent as ɵbp, EquationEditorComponent as ɵbq, MaskComponent as ɵbr, NumberPickerRangeComponent as ɵbs, PagingNextBackOnlyComponent as ɵbt, RadioButtonListComponent as ɵbu, VanBanPickerComponent as ɵbv, VanBanDenService as ɵbw, VanBanDiService as ɵbx, VanBanPickerDialogComponent as ɵby, VanbanDiPickerComponent as ɵbz, EntityPickerService as ɵc, VanbanDenPickerComponent as ɵca, CongViecPickerComponent as ɵcb, SettingsComponent as ɵcc, SettingsRowComponent as ɵcd, ShareLinkByPermissionComponent as ɵce, TnCheckboxComponent as ɵcf, TnDialogComponent as ɵcg, TnColorPickerComponent as ɵch, TnTinymceComponent as ɵci, TnTabViewComponent as ɵcj, TableDetailFormComponent as ɵck, FileIconPipe as ɵcl, FileSizePipe as ɵcm, QuickAddFormComponent as ɵcn, PreventShiftTabDirective as ɵco, TnTemplateDirective as ɵcp, UserPickerComponent as ɵcq, UserPickerBoxComponent as ɵcr, CoCauToChucTestService as ɵcs, TnAppHelpComponent as ɵct, PathNameService as ɵcu, HelperCurrentPageComponent as ɵcv, TnAppNotificationListComponent as ɵcw, TnAppNotificationComponent as ɵcx, FolderFormComponent as ɵcy, FileFormComponent as ɵcz, ExceptionHandlerService as ɵd, FileViewerComponent as ɵda, FileVersionListComponent as ɵdb, ViewDetailComponent as ɵdc, ReferenceTextBoxComponent as ɵdd, QrCodeGeneratorComponent as ɵde, AddNewsComponent as ɵdf, ArticleService as ɵdg, NewsCategoryService as ɵdh, UniversalLinkProcessorComponent as ɵdi, SignatureDetailComponent as ɵdj, KySoSimDanhSachChuKyComponent as ɵdk, KySoSimChuKyUserService as ɵdl, FileKySoSimComponent as ɵdm, KySoSimSignPDFService as ɵdn, TaiLieuCuaToiComponent as ɵdo, KhaiThacTaiLieuDungChungComponent as ɵdp, DanhMucDungChungService as ɵdq, TnTemplateComponent as ɵdr, DropdownSettingFormComponent as ɵds, CheckReadyComponent as ɵdt, TnAccordionTabComponent as ɵdu, SettingsWorkflowComponent as ɵdv, SettingAuthorizeButtonComponent as ɵdw, BasePermissionService as ɵdx, SettingsWorkflowNo1Component as ɵdy, HtmlPreviewComponent as ɵdz, ListBase as ɵe, AUTOCOMPLETE_VALUE_ACCESSOR as ɵea, AutoComplete as ɵeb, AutoCompleteModule as ɵec, ListComponentBase as ɵf, TreeTableComponent as ɵg, NotFoundComponent as ɵh, SendAccessTokenInterceptor as ɵi, LogInterceptor as ɵj, PermissionUtilsInterceptor as ɵk, TraceInterceptor as ɵl, EntityPermissionService as ɵm, ChatService as ɵn, MyDriveService as ɵo, ContentsService as ɵp, StatusExtendsService as ɵq, MessageBoardService as ɵr, FileExplorerNewService as ɵs, FileVersionService as ɵt, FileManagerService as ɵu, DM_ChucVuService as ɵv, RoleService as ɵw, AddressComponent as ɵx, AdvanceSearchComponent as ɵy, AutoCompletePickerComponent as ɵz };
48589
48598
  //# sourceMappingURL=tnx-shared.js.map