ngx-histaff-alpha 5.0.1 → 5.0.3
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/fesm2022/ngx-histaff-alpha.mjs +560 -1
- package/fesm2022/ngx-histaff-alpha.mjs.map +1 -1
- package/lib/app/root/sys-other-list/sys-other-list-edit/sys-other-list-edit.component.d.ts +32 -0
- package/lib/app/root/sys-other-list/sys-other-list.component.d.ts +31 -0
- package/lib/app/root/sys-other-list/sys-other-list.service.d.ts +7 -0
- package/lib/app/root/sys-other-list-type/sys-other-list-type-edit/sys-other-list-type-edit.component.d.ts +26 -0
- package/lib/app/root/sys-other-list-type/sys-other-list-type.component.d.ts +20 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
|
@@ -26075,6 +26075,565 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImpor
|
|
|
26075
26075
|
], template: "<core-page-edit *ngIf=\"!!sections.length\" [width]=\"1000\" [captionCode]=\"captionCode\" [sections]=\"sections\" [crud]=\"crud\"\r\n [entityTable]=\"entityTable\" (onFormCreated)=\"onFormCreated($event)\"\r\n (onInitialValueStringReady)=\"onFormReinit($event)\"></core-page-edit>\r\n" }]
|
|
26076
26076
|
}], ctorParameters: () => [{ type: DialogService }] });
|
|
26077
26077
|
|
|
26078
|
+
class SysOtherListComponent extends BaseComponent {
|
|
26079
|
+
/* End Properties being passed to core-page-type-a */
|
|
26080
|
+
constructor(mls, appService) {
|
|
26081
|
+
super(mls);
|
|
26082
|
+
this.mls = mls;
|
|
26083
|
+
this.appService = appService;
|
|
26084
|
+
this.otherListOption = [];
|
|
26085
|
+
this.outerFilterOperators = [
|
|
26086
|
+
{
|
|
26087
|
+
field: 'typeId',
|
|
26088
|
+
operator: EnumFilterOperator.EQUAL,
|
|
26089
|
+
},
|
|
26090
|
+
];
|
|
26091
|
+
this.outerParam$ = new BehaviorSubject(null);
|
|
26092
|
+
this.title = EnumTranslateKey.UI_COMPONENT_TITLE_ORTHERLIST;
|
|
26093
|
+
this.apiDefinition = {
|
|
26094
|
+
queryListRelativePath: api.SYS_OTHERLIST_QUERY_LIST,
|
|
26095
|
+
};
|
|
26096
|
+
this.crud = {
|
|
26097
|
+
deleteIds: api.SYS_OTHERLIST_DELETE_IDS,
|
|
26098
|
+
toggleActiveIds: api.SYS_OTHER_LIST_ACTIVE
|
|
26099
|
+
};
|
|
26100
|
+
this.columns = [
|
|
26101
|
+
{
|
|
26102
|
+
caption: 'ContractType.ID',
|
|
26103
|
+
field: 'id',
|
|
26104
|
+
hidden: true,
|
|
26105
|
+
type: 'number',
|
|
26106
|
+
align: 'left',
|
|
26107
|
+
width: 200,
|
|
26108
|
+
},
|
|
26109
|
+
{
|
|
26110
|
+
caption: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_ORTHERLIST_IS_ACTIVE,
|
|
26111
|
+
field: 'status',
|
|
26112
|
+
type: 'string',
|
|
26113
|
+
align: 'center',
|
|
26114
|
+
width: 130,
|
|
26115
|
+
//pipe: EnumCoreTablePipeType.BOOLEAN_TO_ACTIVE_INACTIVE
|
|
26116
|
+
},
|
|
26117
|
+
{
|
|
26118
|
+
caption: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_ORTHERLIST_CODE,
|
|
26119
|
+
field: 'code',
|
|
26120
|
+
type: 'string',
|
|
26121
|
+
align: 'left',
|
|
26122
|
+
width: 160,
|
|
26123
|
+
showForConfirmation: true
|
|
26124
|
+
},
|
|
26125
|
+
{
|
|
26126
|
+
caption: 'UI_ENTITY_FIELD_CAPTION_SYS_OTHER_LIST_NAME',
|
|
26127
|
+
field: 'name',
|
|
26128
|
+
type: 'string',
|
|
26129
|
+
align: 'left',
|
|
26130
|
+
width: 300,
|
|
26131
|
+
showForConfirmation: true
|
|
26132
|
+
},
|
|
26133
|
+
{
|
|
26134
|
+
caption: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_ORTHERLIST_TYPENAME,
|
|
26135
|
+
field: 'typeName',
|
|
26136
|
+
type: 'string',
|
|
26137
|
+
align: 'left',
|
|
26138
|
+
width: 250,
|
|
26139
|
+
},
|
|
26140
|
+
/*
|
|
26141
|
+
{
|
|
26142
|
+
caption:
|
|
26143
|
+
EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_ORTHERLIST_EFFECTIVE_DATE,
|
|
26144
|
+
field: 'effectiveDate',
|
|
26145
|
+
type: 'date',
|
|
26146
|
+
align: 'left',
|
|
26147
|
+
width: 250,
|
|
26148
|
+
pipe: EnumCoreTablePipeType.DATE
|
|
26149
|
+
},
|
|
26150
|
+
{
|
|
26151
|
+
caption:
|
|
26152
|
+
EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_ORTHERLIST_EXPIRATION_DATE,
|
|
26153
|
+
field: 'expirationDate',
|
|
26154
|
+
type: 'date',
|
|
26155
|
+
align: 'left',
|
|
26156
|
+
width: 250,
|
|
26157
|
+
pipe: EnumCoreTablePipeType.DATE
|
|
26158
|
+
},
|
|
26159
|
+
*/
|
|
26160
|
+
{
|
|
26161
|
+
caption: EnumTranslateKey.UI_COMPONENT_LABEL_OTHERLIST_NOTE,
|
|
26162
|
+
field: 'note',
|
|
26163
|
+
type: 'string',
|
|
26164
|
+
align: 'left',
|
|
26165
|
+
width: 250,
|
|
26166
|
+
},
|
|
26167
|
+
];
|
|
26168
|
+
this.editRoute = {
|
|
26169
|
+
auxiliary: 'popupAux',
|
|
26170
|
+
};
|
|
26171
|
+
}
|
|
26172
|
+
ngAfterViewInit() {
|
|
26173
|
+
setTimeout(() => {
|
|
26174
|
+
const stickerFilter = this.columns.filter(c => c.field === 'status');
|
|
26175
|
+
if (!!stickerFilter.length)
|
|
26176
|
+
stickerFilter[0].templateRef = this.sticker;
|
|
26177
|
+
});
|
|
26178
|
+
}
|
|
26179
|
+
ngOnInit() {
|
|
26180
|
+
this.subscriptions.push(this.appService.get('/api/SysOtherListType/GetAllActiveForDropdown').subscribe(x => {
|
|
26181
|
+
if (x.ok && x.status === 200 && x.body?.statusCode === 200) {
|
|
26182
|
+
const newGroupOptions = x.body.innerBody.map(x => {
|
|
26183
|
+
return ({
|
|
26184
|
+
value: x.id,
|
|
26185
|
+
text: x.name,
|
|
26186
|
+
});
|
|
26187
|
+
});
|
|
26188
|
+
this.otherListOption = newGroupOptions;
|
|
26189
|
+
}
|
|
26190
|
+
}));
|
|
26191
|
+
}
|
|
26192
|
+
onOtherListTypeChange(typeId) {
|
|
26193
|
+
if (!!this.outerParam$.value) {
|
|
26194
|
+
const newOuterFilterParam = JSON.parse(JSON.stringify(this.outerParam$.value));
|
|
26195
|
+
newOuterFilterParam['typeId'] = typeId;
|
|
26196
|
+
this.outerParam$.next(newOuterFilterParam);
|
|
26197
|
+
this.subscriptions.push();
|
|
26198
|
+
}
|
|
26199
|
+
else {
|
|
26200
|
+
this.outerParam$.next({ typeId });
|
|
26201
|
+
}
|
|
26202
|
+
}
|
|
26203
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListComponent, deps: [{ token: MultiLanguageService }, { token: AppService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
26204
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.1", type: SysOtherListComponent, isStandalone: true, selector: "core-sys-other-list", viewQueries: [{ propertyName: "sticker", first: true, predicate: ["sticker"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<div class=\"other-list-container\">\r\n <core-page-list [apiDefinition]=\"apiDefinition\" [columns]=\"columns\" [editRoute]=\"editRoute\" [crud]=\"crud\"\r\n [title]=\"title\" [left]=\"coreList\" \r\n [outerParam$]=\"outerParam$\"\r\n [outerFilterOperators]=\"outerFilterOperators\"\r\n [autoResizeWithWindow]=\"true\"\r\n ></core-page-list>\r\n \r\n <ng-template #coreList>\r\n <core-list [options]=\"otherListOption\" [(ngModel)]=\"typeId\" (ngModelChange)=\"onOtherListTypeChange($event)\">\r\n </core-list>\r\n </ng-template>\r\n \r\n <ng-template #sticker let-code=\"context.status\">\r\n <core-status-sticker [code]=\"code\"></core-status-sticker>\r\n </ng-template>\r\n </div>", styles: [""], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: CorePageListComponent, selector: "core-page-list", inputs: ["normalMode", "hideHeader", "hideButtonGroup", "seekerMode", "mccMode", "height", "headerWrap", "headerFirstRowHeight", "enableTimeZoneConverterForDateTimePeriodParameters", "showParamKit", "enableFilterKit", "datePeriodComparisonFor", "datePeriodComparisonForLabelKey", "statusInclusionFor", "statusInclusionForLabelKey", "statusOptionsApi", "statusOptions$", "showOrgParam", "showOrgParamDropdown", "hideGeneralSearch", "hideDatePeriodComparison", "hideStatusInclusion", "filterOperators$", "camelCaseDtoStatusIdField", "gridStatusColumn", "title", "hasIdOfStringType", "hideCheck", "apiDefinition", "columns", "useTheseColumns", "hideOrgTree", "frozen", "inlineTools", "inlineToolItems", "editRoute", "crud", "showListInlineTools", "top", "left", "hideLeft", "outerParam$", "outerFilter$", "outerSort", "outerFilterOperators", "outerInOperators", "autoResizeWithWindow", "extraManualOffset", "wrap", "rowHeight", "selfResolveCorePageHeaderButtonClick", "clearData$", "deleteValidateFn", "generateTemplateRequest", "importPreviewPath", "columnSearchDefaultOpen", "fixedPageSize", "disableDoubleClick", "noPaddingCell", "disableHighlightOnClick", "loading$", "excludedIds$", "disableDialogInformationLines", "changeTracking", "primaryKey", "changedItems$", "tabMode", "paramRows", "disableFilterHub", "autoColumnFitAvailableSpace", "ignoredDefaultActions", "checkboxExplicity"], outputs: ["corePageHeaderButtonClick", "rowClick", "rowDoubleClick", "selectedIdsChange", "selectedDataChange", "onInstanceCreated", "onInputFileBase64DataReady", "listChange"] }, { kind: "component", type: CoreListComponent, selector: "core-list", inputs: ["title", "height", "options"] }, { kind: "component", type: CoreStatusStickerComponent, selector: "core-status-sticker", inputs: ["code", "caption", "width", "isTrueCode"] }] }); }
|
|
26205
|
+
}
|
|
26206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListComponent, decorators: [{
|
|
26207
|
+
type: Component,
|
|
26208
|
+
args: [{ selector: 'core-sys-other-list', imports: [
|
|
26209
|
+
FormsModule,
|
|
26210
|
+
CorePageListComponent,
|
|
26211
|
+
CoreListComponent,
|
|
26212
|
+
CoreStatusStickerComponent
|
|
26213
|
+
], template: "<div class=\"other-list-container\">\r\n <core-page-list [apiDefinition]=\"apiDefinition\" [columns]=\"columns\" [editRoute]=\"editRoute\" [crud]=\"crud\"\r\n [title]=\"title\" [left]=\"coreList\" \r\n [outerParam$]=\"outerParam$\"\r\n [outerFilterOperators]=\"outerFilterOperators\"\r\n [autoResizeWithWindow]=\"true\"\r\n ></core-page-list>\r\n \r\n <ng-template #coreList>\r\n <core-list [options]=\"otherListOption\" [(ngModel)]=\"typeId\" (ngModelChange)=\"onOtherListTypeChange($event)\">\r\n </core-list>\r\n </ng-template>\r\n \r\n <ng-template #sticker let-code=\"context.status\">\r\n <core-status-sticker [code]=\"code\"></core-status-sticker>\r\n </ng-template>\r\n </div>" }]
|
|
26214
|
+
}], ctorParameters: () => [{ type: MultiLanguageService }, { type: AppService }], propDecorators: { sticker: [{
|
|
26215
|
+
type: ViewChild,
|
|
26216
|
+
args: ['sticker']
|
|
26217
|
+
}] } });
|
|
26218
|
+
|
|
26219
|
+
class SysOtherListService {
|
|
26220
|
+
constructor() { }
|
|
26221
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
26222
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListService, providedIn: 'root' }); }
|
|
26223
|
+
}
|
|
26224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListService, decorators: [{
|
|
26225
|
+
type: Injectable,
|
|
26226
|
+
args: [{
|
|
26227
|
+
providedIn: 'root'
|
|
26228
|
+
}]
|
|
26229
|
+
}], ctorParameters: () => [] });
|
|
26230
|
+
|
|
26231
|
+
class SysOtherListEditComponent extends BaseEditComponent {
|
|
26232
|
+
constructor(dialogService, appService, sysOtherListService) {
|
|
26233
|
+
super(dialogService);
|
|
26234
|
+
this.dialogService = dialogService;
|
|
26235
|
+
this.appService = appService;
|
|
26236
|
+
this.sysOtherListService = sysOtherListService;
|
|
26237
|
+
this.loading = false;
|
|
26238
|
+
this.entityTable = 'SYS_OTHER_LIST';
|
|
26239
|
+
this.typeGetByIdApi = api.SYS_OTHERLIST_TYPE_READ;
|
|
26240
|
+
this.typeOptions$ = new BehaviorSubject([]);
|
|
26241
|
+
this.subsctiptions = [];
|
|
26242
|
+
this.captionCode = EnumTranslateKey.UI_COMPONENT_TITLE_ORTHERLIST_EDIT;
|
|
26243
|
+
this.crud = {
|
|
26244
|
+
c: api.SYS_OTHERLIST_CREATE,
|
|
26245
|
+
r: api.SYS_OTHERLIST_READ,
|
|
26246
|
+
u: api.SYS_OTHERLIST_UPDATE,
|
|
26247
|
+
d: api.SYS_OTHERLIST_DELETE_IDS,
|
|
26248
|
+
};
|
|
26249
|
+
}
|
|
26250
|
+
ngOnInit() {
|
|
26251
|
+
this.sections = [
|
|
26252
|
+
{
|
|
26253
|
+
rows: [
|
|
26254
|
+
[
|
|
26255
|
+
{
|
|
26256
|
+
flexSize: 6,
|
|
26257
|
+
label: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_COMMON_ID,
|
|
26258
|
+
field: 'id',
|
|
26259
|
+
value: '',
|
|
26260
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26261
|
+
readonly: true,
|
|
26262
|
+
type: 'text',
|
|
26263
|
+
hidden: true,
|
|
26264
|
+
},
|
|
26265
|
+
{
|
|
26266
|
+
flexSize: 6,
|
|
26267
|
+
label: EnumTranslateKey.UI_COMMON_EMPTY_STRING,
|
|
26268
|
+
field: 'typeCode',
|
|
26269
|
+
value: '',
|
|
26270
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26271
|
+
readonly: true,
|
|
26272
|
+
type: 'text',
|
|
26273
|
+
hidden: true,
|
|
26274
|
+
},
|
|
26275
|
+
],
|
|
26276
|
+
[
|
|
26277
|
+
{
|
|
26278
|
+
flexSize: 12,
|
|
26279
|
+
label: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_ORTHERLIST_TYPENAME,
|
|
26280
|
+
field: 'typeId',
|
|
26281
|
+
value: this.sysOtherListService.typeId,
|
|
26282
|
+
controlType: EnumFormBaseContolType.DROPDOWN,
|
|
26283
|
+
dropdownOptions$: this.typeOptions$,
|
|
26284
|
+
getByIdObject$: new BehaviorSubject(undefined),
|
|
26285
|
+
getByIdApi: this.typeGetByIdApi,
|
|
26286
|
+
shownFrom: 'name',
|
|
26287
|
+
type: 'text',
|
|
26288
|
+
validators: [
|
|
26289
|
+
{
|
|
26290
|
+
name: 'required',
|
|
26291
|
+
validator: Validators.required,
|
|
26292
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_REQUIRED,
|
|
26293
|
+
},
|
|
26294
|
+
{
|
|
26295
|
+
name: 'minLength',
|
|
26296
|
+
validator: Validators.minLength(1),
|
|
26297
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_MIN_LENGTH,
|
|
26298
|
+
},
|
|
26299
|
+
],
|
|
26300
|
+
},
|
|
26301
|
+
],
|
|
26302
|
+
[
|
|
26303
|
+
{
|
|
26304
|
+
flexSize: 12,
|
|
26305
|
+
label: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_ORTHERLIST_CODE,
|
|
26306
|
+
field: 'code',
|
|
26307
|
+
value: '',
|
|
26308
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26309
|
+
type: 'text',
|
|
26310
|
+
disabled: true,
|
|
26311
|
+
validators: [
|
|
26312
|
+
{
|
|
26313
|
+
name: 'required',
|
|
26314
|
+
validator: Validators.required,
|
|
26315
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_REQUIRED,
|
|
26316
|
+
},
|
|
26317
|
+
{
|
|
26318
|
+
name: 'minLength',
|
|
26319
|
+
validator: Validators.minLength(1),
|
|
26320
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_MIN_LENGTH,
|
|
26321
|
+
},
|
|
26322
|
+
],
|
|
26323
|
+
},
|
|
26324
|
+
],
|
|
26325
|
+
[
|
|
26326
|
+
{
|
|
26327
|
+
flexSize: 6,
|
|
26328
|
+
label: 'UI_ENTITY_FIELD_CAPTION_SYS_OTHER_LIST_NAME_VN',
|
|
26329
|
+
field: 'nameVn',
|
|
26330
|
+
value: '',
|
|
26331
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26332
|
+
type: 'text',
|
|
26333
|
+
validators: [
|
|
26334
|
+
{
|
|
26335
|
+
name: 'required',
|
|
26336
|
+
validator: Validators.required,
|
|
26337
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_REQUIRED,
|
|
26338
|
+
},
|
|
26339
|
+
{
|
|
26340
|
+
name: 'minLength',
|
|
26341
|
+
validator: Validators.minLength(1),
|
|
26342
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_MIN_LENGTH,
|
|
26343
|
+
},
|
|
26344
|
+
],
|
|
26345
|
+
},
|
|
26346
|
+
{
|
|
26347
|
+
flexSize: 6,
|
|
26348
|
+
label: 'UI_ENTITY_FIELD_CAPTION_SYS_OTHER_LIST_NAME_EN',
|
|
26349
|
+
field: 'nameEn',
|
|
26350
|
+
value: '',
|
|
26351
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26352
|
+
type: 'text',
|
|
26353
|
+
validators: [
|
|
26354
|
+
{
|
|
26355
|
+
name: 'required',
|
|
26356
|
+
validator: Validators.required,
|
|
26357
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_REQUIRED,
|
|
26358
|
+
},
|
|
26359
|
+
{
|
|
26360
|
+
name: 'minLength',
|
|
26361
|
+
validator: Validators.minLength(1),
|
|
26362
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_MIN_LENGTH,
|
|
26363
|
+
},
|
|
26364
|
+
],
|
|
26365
|
+
},
|
|
26366
|
+
],
|
|
26367
|
+
[
|
|
26368
|
+
{
|
|
26369
|
+
flexSize: 6,
|
|
26370
|
+
label: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_SALARY_LEVEL_ORDER,
|
|
26371
|
+
field: 'orders',
|
|
26372
|
+
value: '',
|
|
26373
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26374
|
+
type: 'number',
|
|
26375
|
+
},
|
|
26376
|
+
],
|
|
26377
|
+
[
|
|
26378
|
+
{
|
|
26379
|
+
flexSize: 12,
|
|
26380
|
+
label: EnumTranslateKey.UI_COMPONENT_LABEL_OTHERLIST_NOTE,
|
|
26381
|
+
field: 'note',
|
|
26382
|
+
value: '',
|
|
26383
|
+
controlType: EnumFormBaseContolType.TEXTAREA,
|
|
26384
|
+
textareaRows: 5,
|
|
26385
|
+
type: 'text',
|
|
26386
|
+
},
|
|
26387
|
+
],
|
|
26388
|
+
],
|
|
26389
|
+
},
|
|
26390
|
+
];
|
|
26391
|
+
}
|
|
26392
|
+
ngAfterViewInit() {
|
|
26393
|
+
setTimeout(() => {
|
|
26394
|
+
this.loading = true;
|
|
26395
|
+
this.subsctiptions.push(this.appService.get('/api/SysOtherListType/GetAllActiveForDropdown').subscribe(x => {
|
|
26396
|
+
this.loading = false;
|
|
26397
|
+
if (x.ok && x.status === 200 && x.body?.statusCode === 200) {
|
|
26398
|
+
let typeOptions = x.body?.innerBody.map(item => {
|
|
26399
|
+
return {
|
|
26400
|
+
value: item.id,
|
|
26401
|
+
text: item.name
|
|
26402
|
+
};
|
|
26403
|
+
});
|
|
26404
|
+
this.typeOptions$.next(typeOptions);
|
|
26405
|
+
}
|
|
26406
|
+
}));
|
|
26407
|
+
});
|
|
26408
|
+
}
|
|
26409
|
+
onFormCreated(e) {
|
|
26410
|
+
this.form = e;
|
|
26411
|
+
this.subsctiptions.push(this.appService
|
|
26412
|
+
.get(api.SYS_OTHERLIST_GET_CODE)
|
|
26413
|
+
.pipe(map$1((f) => {
|
|
26414
|
+
let options = '';
|
|
26415
|
+
options = f.body.innerBody.code;
|
|
26416
|
+
return options;
|
|
26417
|
+
}))
|
|
26418
|
+
.subscribe((response) => {
|
|
26419
|
+
if (this.form.get('code')?.value == '')
|
|
26420
|
+
this.form.get('code')?.patchValue(response);
|
|
26421
|
+
}));
|
|
26422
|
+
}
|
|
26423
|
+
/* To allow form to be deactivated */
|
|
26424
|
+
onFormReinit(e) {
|
|
26425
|
+
this.formInitStringValue = e;
|
|
26426
|
+
}
|
|
26427
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListEditComponent, deps: [{ token: DialogService }, { token: AppService }, { token: SysOtherListService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
26428
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.1", type: SysOtherListEditComponent, isStandalone: true, selector: "core-sys-other-list-edit", usesInheritance: true, ngImport: i0, template: "@if (!!sections.length) {\r\n <core-page-edit \r\n [width]=\"600\" \r\n [captionCode]=\"captionCode\" \r\n [sections]=\"sections\" \r\n [crud]=\"crud\"\r\n [entityTable]=\"entityTable\" \r\n (onFormCreated)=\"onFormCreated($event)\"\r\n (onInitialValueStringReady)=\"onFormReinit($event)\"\r\n ></core-page-edit>\r\n}\r\n\r\n@if (loading) {\r\n <app-fullscreen-modal-loader></app-fullscreen-modal-loader>\r\n}", styles: [""], dependencies: [{ kind: "component", type: CorePageEditComponent, selector: "core-page-edit", inputs: ["stayAfterSubmit", "width", "entityTable", "hasIdOfStringType", "captionCode", "leftInputSections", "leftInputSectionsFlexSize", "sections", "normalMode", "bottomTemplateRef", "autoGetByIdOff", "autoSubmitLogicOff", "autoCancelLogicOff", "customFormButtonItems", "mixedMode", "checkError$", "showSaveButton", "disableSaveButton", "disableCancelButton", "forceListRefreshOnCreateOrUpdate", "crud", "entityUniqueIndexs"], outputs: ["submitLogic", "onFormCreated", "onSubmitSuccess", "onButtonClick", "cancelLogic", "onInitialValueStringReady"] }, { kind: "component", type: FullscreenModalLoaderComponent, selector: "app-fullscreen-modal-loader", inputs: ["content"] }] }); }
|
|
26429
|
+
}
|
|
26430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListEditComponent, decorators: [{
|
|
26431
|
+
type: Component,
|
|
26432
|
+
args: [{ selector: 'core-sys-other-list-edit', imports: [
|
|
26433
|
+
CorePageEditComponent,
|
|
26434
|
+
FullscreenModalLoaderComponent
|
|
26435
|
+
], template: "@if (!!sections.length) {\r\n <core-page-edit \r\n [width]=\"600\" \r\n [captionCode]=\"captionCode\" \r\n [sections]=\"sections\" \r\n [crud]=\"crud\"\r\n [entityTable]=\"entityTable\" \r\n (onFormCreated)=\"onFormCreated($event)\"\r\n (onInitialValueStringReady)=\"onFormReinit($event)\"\r\n ></core-page-edit>\r\n}\r\n\r\n@if (loading) {\r\n <app-fullscreen-modal-loader></app-fullscreen-modal-loader>\r\n}" }]
|
|
26436
|
+
}], ctorParameters: () => [{ type: DialogService }, { type: AppService }, { type: SysOtherListService }] });
|
|
26437
|
+
|
|
26438
|
+
class SysOtherListTypeComponent {
|
|
26439
|
+
constructor() {
|
|
26440
|
+
this.title = EnumTranslateKey.UI_COMPONENT_TITLE_ORTHERLIST_TYPE;
|
|
26441
|
+
this.outerParam$ = new BehaviorSubject(null);
|
|
26442
|
+
this.apiDefinition = {
|
|
26443
|
+
queryListRelativePath: api.SYS_OTHERLIST_TYPE_QUERY_LIST,
|
|
26444
|
+
};
|
|
26445
|
+
this.crud = {
|
|
26446
|
+
deleteIds: api.SYS_OTHERLIST_TYPE_DELETE_IDS,
|
|
26447
|
+
};
|
|
26448
|
+
this.columns = [
|
|
26449
|
+
{
|
|
26450
|
+
caption: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_COMMON_ID,
|
|
26451
|
+
field: 'id',
|
|
26452
|
+
hidden: true,
|
|
26453
|
+
type: 'number',
|
|
26454
|
+
align: 'right',
|
|
26455
|
+
width: 400,
|
|
26456
|
+
},
|
|
26457
|
+
{
|
|
26458
|
+
caption: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_OTHERLIST_TYPE_CODE,
|
|
26459
|
+
field: 'code',
|
|
26460
|
+
showForConfirmation: true,
|
|
26461
|
+
type: 'string',
|
|
26462
|
+
align: 'left',
|
|
26463
|
+
width: 400,
|
|
26464
|
+
},
|
|
26465
|
+
{
|
|
26466
|
+
caption: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_OTHERLIST_TYPE_NAME,
|
|
26467
|
+
field: 'name',
|
|
26468
|
+
showForConfirmation: true,
|
|
26469
|
+
type: 'string',
|
|
26470
|
+
align: 'left',
|
|
26471
|
+
width: 400,
|
|
26472
|
+
},
|
|
26473
|
+
{
|
|
26474
|
+
caption: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_OTHERLIST_TYPE_STATUS,
|
|
26475
|
+
field: 'status',
|
|
26476
|
+
type: 'string',
|
|
26477
|
+
align: 'left',
|
|
26478
|
+
width: 150,
|
|
26479
|
+
},
|
|
26480
|
+
];
|
|
26481
|
+
this.editRoute = {
|
|
26482
|
+
auxiliary: 'popupAux'
|
|
26483
|
+
};
|
|
26484
|
+
}
|
|
26485
|
+
ngAfterViewInit() {
|
|
26486
|
+
setTimeout(() => {
|
|
26487
|
+
const tryFilter = this.columns.filter(x => x.field === 'status');
|
|
26488
|
+
if (!!tryFilter.length) {
|
|
26489
|
+
tryFilter[0].templateRef = this.sticker;
|
|
26490
|
+
}
|
|
26491
|
+
});
|
|
26492
|
+
}
|
|
26493
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListTypeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
26494
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.1", type: SysOtherListTypeComponent, isStandalone: true, selector: "core-sys-other-list-type", inputs: { hideHeader: "hideHeader" }, viewQueries: [{ propertyName: "sticker", first: true, predicate: ["sticker"], descendants: true }], ngImport: i0, template: "<div class=\"other-list-type-container\">\r\n <core-page-list\r\n [apiDefinition]=\"apiDefinition\"\r\n [columns]=\"columns\"\r\n [editRoute]=\"editRoute\"\r\n [crud]=\"crud\" [title]=\"title\" \r\n [autoResizeWithWindow]=\"true\"\r\n ></core-page-list>\r\n</div>\r\n\r\n<ng-template #sticker let-code=\"context.status\">\r\n <core-status-sticker [code]=\"code\"></core-status-sticker>\r\n</ng-template>\r\n", styles: [""], dependencies: [{ kind: "component", type: CorePageListComponent, selector: "core-page-list", inputs: ["normalMode", "hideHeader", "hideButtonGroup", "seekerMode", "mccMode", "height", "headerWrap", "headerFirstRowHeight", "enableTimeZoneConverterForDateTimePeriodParameters", "showParamKit", "enableFilterKit", "datePeriodComparisonFor", "datePeriodComparisonForLabelKey", "statusInclusionFor", "statusInclusionForLabelKey", "statusOptionsApi", "statusOptions$", "showOrgParam", "showOrgParamDropdown", "hideGeneralSearch", "hideDatePeriodComparison", "hideStatusInclusion", "filterOperators$", "camelCaseDtoStatusIdField", "gridStatusColumn", "title", "hasIdOfStringType", "hideCheck", "apiDefinition", "columns", "useTheseColumns", "hideOrgTree", "frozen", "inlineTools", "inlineToolItems", "editRoute", "crud", "showListInlineTools", "top", "left", "hideLeft", "outerParam$", "outerFilter$", "outerSort", "outerFilterOperators", "outerInOperators", "autoResizeWithWindow", "extraManualOffset", "wrap", "rowHeight", "selfResolveCorePageHeaderButtonClick", "clearData$", "deleteValidateFn", "generateTemplateRequest", "importPreviewPath", "columnSearchDefaultOpen", "fixedPageSize", "disableDoubleClick", "noPaddingCell", "disableHighlightOnClick", "loading$", "excludedIds$", "disableDialogInformationLines", "changeTracking", "primaryKey", "changedItems$", "tabMode", "paramRows", "disableFilterHub", "autoColumnFitAvailableSpace", "ignoredDefaultActions", "checkboxExplicity"], outputs: ["corePageHeaderButtonClick", "rowClick", "rowDoubleClick", "selectedIdsChange", "selectedDataChange", "onInstanceCreated", "onInputFileBase64DataReady", "listChange"] }, { kind: "component", type: CoreStatusStickerComponent, selector: "core-status-sticker", inputs: ["code", "caption", "width", "isTrueCode"] }] }); }
|
|
26495
|
+
}
|
|
26496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListTypeComponent, decorators: [{
|
|
26497
|
+
type: Component,
|
|
26498
|
+
args: [{ selector: 'core-sys-other-list-type', imports: [
|
|
26499
|
+
CorePageListComponent,
|
|
26500
|
+
CoreStatusStickerComponent
|
|
26501
|
+
], template: "<div class=\"other-list-type-container\">\r\n <core-page-list\r\n [apiDefinition]=\"apiDefinition\"\r\n [columns]=\"columns\"\r\n [editRoute]=\"editRoute\"\r\n [crud]=\"crud\" [title]=\"title\" \r\n [autoResizeWithWindow]=\"true\"\r\n ></core-page-list>\r\n</div>\r\n\r\n<ng-template #sticker let-code=\"context.status\">\r\n <core-status-sticker [code]=\"code\"></core-status-sticker>\r\n</ng-template>\r\n" }]
|
|
26502
|
+
}], propDecorators: { sticker: [{
|
|
26503
|
+
type: ViewChild,
|
|
26504
|
+
args: ['sticker']
|
|
26505
|
+
}], hideHeader: [{
|
|
26506
|
+
type: Input
|
|
26507
|
+
}] } });
|
|
26508
|
+
|
|
26509
|
+
class SysOtherListTypeEditComponent extends BaseEditComponent {
|
|
26510
|
+
constructor(dialogService) {
|
|
26511
|
+
super(dialogService);
|
|
26512
|
+
this.dialogService = dialogService;
|
|
26513
|
+
this.loading = false;
|
|
26514
|
+
this.entityTable = "SYS_OTHER_LIST_TYPE";
|
|
26515
|
+
this.checklistOptions$ = new BehaviorSubject([]);
|
|
26516
|
+
this.scaleOptions$ = new BehaviorSubject([]);
|
|
26517
|
+
this.sections = [
|
|
26518
|
+
{
|
|
26519
|
+
rows: [
|
|
26520
|
+
[
|
|
26521
|
+
{
|
|
26522
|
+
flexSize: 6,
|
|
26523
|
+
label: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_COMMON_ID,
|
|
26524
|
+
field: 'id',
|
|
26525
|
+
value: '',
|
|
26526
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26527
|
+
readonly: true,
|
|
26528
|
+
type: 'text',
|
|
26529
|
+
hidden: true
|
|
26530
|
+
}
|
|
26531
|
+
],
|
|
26532
|
+
[
|
|
26533
|
+
{
|
|
26534
|
+
flexSize: 6,
|
|
26535
|
+
label: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_OTHERLIST_TYPE_CODE,
|
|
26536
|
+
field: 'code',
|
|
26537
|
+
value: '',
|
|
26538
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26539
|
+
type: 'text',
|
|
26540
|
+
validators: [
|
|
26541
|
+
{
|
|
26542
|
+
name: 'required',
|
|
26543
|
+
validator: Validators.required,
|
|
26544
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_REQUIRED,
|
|
26545
|
+
},
|
|
26546
|
+
{
|
|
26547
|
+
name: 'minLength',
|
|
26548
|
+
validator: Validators.minLength(1),
|
|
26549
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_MIN_LENGTH,
|
|
26550
|
+
}
|
|
26551
|
+
]
|
|
26552
|
+
},
|
|
26553
|
+
],
|
|
26554
|
+
[
|
|
26555
|
+
{
|
|
26556
|
+
flexSize: 6,
|
|
26557
|
+
label: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_COMMON_NAME_EN,
|
|
26558
|
+
field: 'nameEn',
|
|
26559
|
+
value: '',
|
|
26560
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26561
|
+
type: 'text',
|
|
26562
|
+
validators: [
|
|
26563
|
+
{
|
|
26564
|
+
name: 'required',
|
|
26565
|
+
validator: Validators.required,
|
|
26566
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_REQUIRED,
|
|
26567
|
+
},
|
|
26568
|
+
{
|
|
26569
|
+
name: 'minLength',
|
|
26570
|
+
validator: Validators.minLength(1),
|
|
26571
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_MIN_LENGTH,
|
|
26572
|
+
}
|
|
26573
|
+
]
|
|
26574
|
+
},
|
|
26575
|
+
{
|
|
26576
|
+
flexSize: 6,
|
|
26577
|
+
label: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_COMMON_NAME_VN,
|
|
26578
|
+
field: 'nameVn',
|
|
26579
|
+
value: '',
|
|
26580
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26581
|
+
type: 'text',
|
|
26582
|
+
validators: [
|
|
26583
|
+
{
|
|
26584
|
+
name: 'required',
|
|
26585
|
+
validator: Validators.required,
|
|
26586
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_REQUIRED,
|
|
26587
|
+
},
|
|
26588
|
+
{
|
|
26589
|
+
name: 'minLength',
|
|
26590
|
+
validator: Validators.minLength(1),
|
|
26591
|
+
errorMessage: EnumTranslateKey.UI_FORM_CONTROL_ERROR_MIN_LENGTH,
|
|
26592
|
+
}
|
|
26593
|
+
]
|
|
26594
|
+
}
|
|
26595
|
+
],
|
|
26596
|
+
[
|
|
26597
|
+
{
|
|
26598
|
+
flexSize: 12,
|
|
26599
|
+
label: EnumTranslateKey.UI_ENTITY_FIELD_CAPTION_OTHERLIST_TYPE_NOTE,
|
|
26600
|
+
field: 'note',
|
|
26601
|
+
value: '',
|
|
26602
|
+
controlType: EnumFormBaseContolType.TEXTBOX,
|
|
26603
|
+
type: 'text'
|
|
26604
|
+
},
|
|
26605
|
+
]
|
|
26606
|
+
]
|
|
26607
|
+
}
|
|
26608
|
+
];
|
|
26609
|
+
this.captionCode = EnumTranslateKey.UI_COMPONENT_TITLE_ORTHERLIST_TYPE_EDIT;
|
|
26610
|
+
this.crud = {
|
|
26611
|
+
c: api.SYS_OTHERLIST_TYPE_CREATE,
|
|
26612
|
+
r: api.SYS_OTHERLIST_TYPE_READ,
|
|
26613
|
+
u: api.SYS_OTHERLIST_TYPE_UPDATE,
|
|
26614
|
+
d: api.SYS_OTHERLIST_TYPE_DELETE_IDS,
|
|
26615
|
+
};
|
|
26616
|
+
}
|
|
26617
|
+
ngOnInit() {
|
|
26618
|
+
}
|
|
26619
|
+
/* GET FormGroup Instance */
|
|
26620
|
+
onFormCreated(e) {
|
|
26621
|
+
this.form = e;
|
|
26622
|
+
}
|
|
26623
|
+
/* To allow form to be deactivated */
|
|
26624
|
+
onFormReinit(e) {
|
|
26625
|
+
this.formInitStringValue = e;
|
|
26626
|
+
}
|
|
26627
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListTypeEditComponent, deps: [{ token: DialogService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
26628
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.1", type: SysOtherListTypeEditComponent, isStandalone: true, selector: "core-sys-other-list-type-edit", usesInheritance: true, ngImport: i0, template: "@if (!!sections.length) {\r\n <core-page-edit [width]=\"1000\" [captionCode]=\"captionCode\" [sections]=\"sections\" [crud]=\"crud\"\r\n [entityTable]=\"entityTable\" (onFormCreated)=\"onFormCreated($event)\"\r\n (onInitialValueStringReady)=\"onFormReinit($event)\"></core-page-edit>\r\n}", styles: [""], dependencies: [{ kind: "component", type: CorePageEditComponent, selector: "core-page-edit", inputs: ["stayAfterSubmit", "width", "entityTable", "hasIdOfStringType", "captionCode", "leftInputSections", "leftInputSectionsFlexSize", "sections", "normalMode", "bottomTemplateRef", "autoGetByIdOff", "autoSubmitLogicOff", "autoCancelLogicOff", "customFormButtonItems", "mixedMode", "checkError$", "showSaveButton", "disableSaveButton", "disableCancelButton", "forceListRefreshOnCreateOrUpdate", "crud", "entityUniqueIndexs"], outputs: ["submitLogic", "onFormCreated", "onSubmitSuccess", "onButtonClick", "cancelLogic", "onInitialValueStringReady"] }] }); }
|
|
26629
|
+
}
|
|
26630
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImport: i0, type: SysOtherListTypeEditComponent, decorators: [{
|
|
26631
|
+
type: Component,
|
|
26632
|
+
args: [{ selector: 'core-sys-other-list-type-edit', imports: [
|
|
26633
|
+
CorePageEditComponent
|
|
26634
|
+
], template: "@if (!!sections.length) {\r\n <core-page-edit [width]=\"1000\" [captionCode]=\"captionCode\" [sections]=\"sections\" [crud]=\"crud\"\r\n [entityTable]=\"entityTable\" (onFormCreated)=\"onFormCreated($event)\"\r\n (onInitialValueStringReady)=\"onFormReinit($event)\"></core-page-edit>\r\n}" }]
|
|
26635
|
+
}], ctorParameters: () => [{ type: DialogService }] });
|
|
26636
|
+
|
|
26078
26637
|
class SysActionComponent extends BaseComponent {
|
|
26079
26638
|
/* End Properties being passed to core-page-type-a */
|
|
26080
26639
|
constructor(mls) {
|
|
@@ -34579,5 +35138,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.1", ngImpor
|
|
|
34579
35138
|
* Generated bundle index. Do not edit.
|
|
34580
35139
|
*/
|
|
34581
35140
|
|
|
34582
|
-
export { ActionService, ActionSvgEditComponent, AlertComponent, AlertService, AnimatedTextComponent, AnimatedTextService, AppConfigService, AppInitializationService, AppService, ApplicationHelpService, AtShiftPatternApplyComponent, AtShiftPatternComponent, AtShiftPatternEditComponent, AtWorksignComponent, AtWorksignService, AuthService, BaseComponent, BaseDropdownComponent, BaseEditComponent, ButtonGroupComponent, ButtonGroupModule, ButtonGroupService, CORE_VNS_BUTTONS, CacheService, CanActivateFunctionUrlMapperGuard, CanDeactivateGuard, CheckForUpdateService, ClientService, CommonHttpRequestService, ConfigService, ConfirmDialogStateComponent, ControlBase, CoreAccordionComponent, CoreAccordionService, CoreActiveUserCountComponent, CoreApiProgressComponent, CoreAttachmentComponent, CoreButtonComponent, CoreButtonGroupComponent, CoreButtonGroupService, CoreButtonGroupVnsComponent, CoreButtonVnsComponent, CoreCheckboxComponent, CoreChecklistComponent, CoreCommonParamKitComponent, CoreCompareDbPipelineComponent, CoreCompositionComponent, CoreCompositionService, CoreCompositionState, CoreConfirmDialogComponent, CoreContractSeekerComponent, CoreControlComponent, CoreControlNoGridBufferComponent, CoreControlNoSeekerComponent, CoreControlService, CoreCurrencyInputComponent, CoreD3Service, CoreDatePickerComponent, CoreDatetimeService, CoreDropdownComponent, CoreEmployeeScheduleComponent, CoreEmployeeSeekerComponent, CoreFileFormatPickerComponent, CoreFileUploaderComponent, CoreFilterHubComponent, CoreFilterHubService, CoreFormComponent, CoreFormControlBaseComponent, CoreFormControlSeekerComponent, CoreFormLiteComponent, CoreFormService, CoreFormTabComponent, CoreGridBufferComponent, CoreHeaderParamsComponent, CoreHelperComponent, CoreIosSwitcherComponent, CoreLineComponent, CoreListComponent, CoreListLazyComponent, CoreLoadingSurfaceComponent, CoreMccComponent, CoreMonthPickerComponent, CoreMonthSelectorComponent, CoreNavigationTrackerComponent, CoreOauthCallbackComponent, CoreOauthCallbackOffice365Component, CoreOrgParamComponent, CoreOrgTreeComponent, CoreOrgTreeService, CoreOrgTreeState, CoreOrgUnitSeekerComponent, CoreOrgchartflexComponent, CorePageEditComponent, CorePageEditLiteComponent, CorePageEditService, CorePageEditTabComponent, CorePageHeaderComponent, CorePageListComponent, CorePageListContentComponent, CorePageListService, CorePageListState, CorePageViewComponent, CorePaginationComponent, CorePaginationFullComponent, CorePaginationFullService, CoreParamControlComponent, CorePermissionActionsComponent, CorePermissionComponent, CorePermissionService, CorePieComponent, CorePositionConcurrentSeekerComponent, CorePositionSeekerComponent, CoreQrcodeComponent, CoreQueryBuilderComponent, CoreRadioGroupComponent, CoreReducerIconComponent, CoreRootMenuItemPickerComponent, CoreRootMenuItemPickerService, CoreRotatingTextComponent, CoreRouteAccumulatorComponent, CoreRoutingHistoryComponent, CoreSalaryPolicyPickerComponent, CoreScatterPlotComponent, CoreScrollComponent, CoreScrollLazyComponent, CoreSeenByComponent, CoreShiftCardComponent, CoreShiftCellComponent, CoreShiftCollectionComponent, CoreShiftStickerComponent, CoreStatisticWidgetComponent, CoreStatusStickerComponent, CoreSubFormGroupComponent, CoreTabListComponent, CoreTableComponent, CoreTableService, CoreTabsComponent, CoreTagsComponent, CoreTopicPickerComponent, CoreTopicTreeComponent, CoreTreeComponent, CoreTreeGridComponent, CoreWageSeekerComponent, CoreWorkingSeekerComponent, CoreYearPickerComponent, CoreYearSelectorComponent, CustomValidators, DATE_VALUE_ACCESSOR, DEFAULT_SVG, DESKTOP_SCREEN_HEDER_HEIGHT, DateValueAccessor, DecisionComponent, DialogService, DialogStateComponent, DndService, DomService, ECoreTableToolClass, ECoreTableToolCode, EnumAlertType, EnumBrowserType, EnumButtonCaptionCode, EnumCoreArticleCategoryTreeaAccessorMode, EnumCoreButtonCode, EnumCoreButtonVNSCode, EnumCoreD3ScaleType, EnumCoreFileUploaderType, EnumCoreFormControlSeekerSourceType, EnumCoreOrgTreeaAccessorMode, EnumCoreOrgTreeaSearchMode, EnumCorePageEditBootstrapClass, EnumCorePageEditFieldType, EnumCorePageEditMode, EnumCoreSeekerColumnContract, EnumCoreSeekerColumnJob, EnumCoreSeekerColumnPosition, EnumCoreSeekerColumnPositionConcurrent, EnumCoreSeekerColumnStaffProfile, EnumCoreSeekerColumnWage, EnumCoreSeekerColumnWorking, EnumCoreTablePipeType, EnumCoreTreeGridEditMode, EnumCoreViewItemType, EnumDeviceType, EnumDragType, EnumErrorType, EnumExType, EnumFilterOperator, EnumFormBaseContolType, EnumHrComparisonCode, EnumICoreStatisticWidgetDataType, EnumIconClass, EnumImageResolverType, EnumNotificationDir, EnumOparator, EnumOsType, EnumPermissionObjectType, EnumProfileInfoSector, EnumRecursiveFields, EnumSignalRType, EnumSortDirection, EnumSsrsExpressExportFormat, EnumSsrsExpressFileExtension, EnumStyleButtonClass, EnumSwUpdateVersionUpdatesEventType, EnumWorkScheduleViewMode, EvaluateDialogComponent, EvaluateDialogService, FileService, FilterKitService, FilterPipe, FooterComponent, FullscreenModalLoaderComponent, FunctionComponent, FunctionEditComponent, FunctionEditService, FunctionIgnoreComponent, FunctionIgnoreEditComponent, GroupFunctionComponent, GroupFunctionEditComponent, GrpcService, HeaderService, HistoryService, HotKeysDirective, HttpErrorHandler, HubConnectionService, HuconcurrentlyComponent, IAlertOptions, ImageErrorResolverDirective, InMemoryComponent, IndividualScheduleApplyComponent, InitializationCanActivateFn, InitializationCanMatchFn, InterceptorSkipHeader, IpServiceService, ItemComponent, JobComponent, JsonService, LanguageChangerComponent, LanguageComponent, LanguageEditComponent, LayoutService, LongTaskService, MOBILE_SCREEN_HEDER_HEIGHT, MapAppdemoToServerPipePipe, MapAttachmentToServerPipe, MapAvatarToServerPipe, MapNewsfeedMediaToServerPipe, MapService, MenuComponent, MenuEditComponent, MenuService, MessageService, ModalService, MultiLanguageService, MutationLogComponent, MutationViewComponent, NavigatorComponent, NavigatorService, NewlyCreatedTokenService, NormalizeHumanNamePipe, NotificationActionType, OnlineUsersComponent, OrganizationService, OtpInputComponent, OtpInputService, PaSalaryPolicyComponent, PaSalaryPolicyEditComponent, PageTitleComponent, PaginationComponent, PkceService, PortalRouteComponent, PortalRouteEditComponent, PositionComponent, PositionEditService, PositionTransferService, PushNotificationService, RandomAvatarService, RecursiveService, RequestCache, RequestCacheWithMap, ResponseService, RightchatComponent, RoutingService, STICKER_COLOR_SCHEMA, ScheduleOverviewComponent, SeekerService, SocketService, SsrsExpressService, StaffProfileComponent, StatisticAuthService, StatisticService, StringHtmlPipe, StringService, SunnyRotatingComponent, SysActionComponent, SysActionEditComponent, SysFunctionActionComponent, SysFunctionActionEditComponent, SysFunctionActionMapperComponent, SysFunctionUrlMapperComponent, SysMenuService, SysModuleComponent, SysModuleEditComponent, SysRouteAccessComponent, TLA_CONFIG, TableCellPipe, Textbox, ThreedotsComponent, TimeSheetService, TooltipComponent, TooltipDirective, TopicPermissionService, TopicTreeService, TranslatePipe, UnicodeService, UploadedFileService, UploadedFilenameCutoffPipe, UrlService, UserActivityComponent, UserActivityService, WageComponent, WaittingScreenComponent, WorkShiftDndService, alertOptions, appTypeInterceptor, attachmentOptions, authInterceptor, baseUrlInterceptor, blob_to_base64_script, cachingInterceptor, defaultPaging, graphInterceptor, httpInterceptorProviders, langInterceptor, liner_to_nested_array_script, longAlertOptions, noneAutoClosedAlertOptions, normalizeHumanName, responseInterceptor, themeBlue, timeZoneInterceptor, tokenInterceptor };
|
|
35141
|
+
export { ActionService, ActionSvgEditComponent, AlertComponent, AlertService, AnimatedTextComponent, AnimatedTextService, AppConfigService, AppInitializationService, AppService, ApplicationHelpService, AtShiftPatternApplyComponent, AtShiftPatternComponent, AtShiftPatternEditComponent, AtWorksignComponent, AtWorksignService, AuthService, BaseComponent, BaseDropdownComponent, BaseEditComponent, ButtonGroupComponent, ButtonGroupModule, ButtonGroupService, CORE_VNS_BUTTONS, CacheService, CanActivateFunctionUrlMapperGuard, CanDeactivateGuard, CheckForUpdateService, ClientService, CommonHttpRequestService, ConfigService, ConfirmDialogStateComponent, ControlBase, CoreAccordionComponent, CoreAccordionService, CoreActiveUserCountComponent, CoreApiProgressComponent, CoreAttachmentComponent, CoreButtonComponent, CoreButtonGroupComponent, CoreButtonGroupService, CoreButtonGroupVnsComponent, CoreButtonVnsComponent, CoreCheckboxComponent, CoreChecklistComponent, CoreCommonParamKitComponent, CoreCompareDbPipelineComponent, CoreCompositionComponent, CoreCompositionService, CoreCompositionState, CoreConfirmDialogComponent, CoreContractSeekerComponent, CoreControlComponent, CoreControlNoGridBufferComponent, CoreControlNoSeekerComponent, CoreControlService, CoreCurrencyInputComponent, CoreD3Service, CoreDatePickerComponent, CoreDatetimeService, CoreDropdownComponent, CoreEmployeeScheduleComponent, CoreEmployeeSeekerComponent, CoreFileFormatPickerComponent, CoreFileUploaderComponent, CoreFilterHubComponent, CoreFilterHubService, CoreFormComponent, CoreFormControlBaseComponent, CoreFormControlSeekerComponent, CoreFormLiteComponent, CoreFormService, CoreFormTabComponent, CoreGridBufferComponent, CoreHeaderParamsComponent, CoreHelperComponent, CoreIosSwitcherComponent, CoreLineComponent, CoreListComponent, CoreListLazyComponent, CoreLoadingSurfaceComponent, CoreMccComponent, CoreMonthPickerComponent, CoreMonthSelectorComponent, CoreNavigationTrackerComponent, CoreOauthCallbackComponent, CoreOauthCallbackOffice365Component, CoreOrgParamComponent, CoreOrgTreeComponent, CoreOrgTreeService, CoreOrgTreeState, CoreOrgUnitSeekerComponent, CoreOrgchartflexComponent, CorePageEditComponent, CorePageEditLiteComponent, CorePageEditService, CorePageEditTabComponent, CorePageHeaderComponent, CorePageListComponent, CorePageListContentComponent, CorePageListService, CorePageListState, CorePageViewComponent, CorePaginationComponent, CorePaginationFullComponent, CorePaginationFullService, CoreParamControlComponent, CorePermissionActionsComponent, CorePermissionComponent, CorePermissionService, CorePieComponent, CorePositionConcurrentSeekerComponent, CorePositionSeekerComponent, CoreQrcodeComponent, CoreQueryBuilderComponent, CoreRadioGroupComponent, CoreReducerIconComponent, CoreRootMenuItemPickerComponent, CoreRootMenuItemPickerService, CoreRotatingTextComponent, CoreRouteAccumulatorComponent, CoreRoutingHistoryComponent, CoreSalaryPolicyPickerComponent, CoreScatterPlotComponent, CoreScrollComponent, CoreScrollLazyComponent, CoreSeenByComponent, CoreShiftCardComponent, CoreShiftCellComponent, CoreShiftCollectionComponent, CoreShiftStickerComponent, CoreStatisticWidgetComponent, CoreStatusStickerComponent, CoreSubFormGroupComponent, CoreTabListComponent, CoreTableComponent, CoreTableService, CoreTabsComponent, CoreTagsComponent, CoreTopicPickerComponent, CoreTopicTreeComponent, CoreTreeComponent, CoreTreeGridComponent, CoreWageSeekerComponent, CoreWorkingSeekerComponent, CoreYearPickerComponent, CoreYearSelectorComponent, CustomValidators, DATE_VALUE_ACCESSOR, DEFAULT_SVG, DESKTOP_SCREEN_HEDER_HEIGHT, DateValueAccessor, DecisionComponent, DialogService, DialogStateComponent, DndService, DomService, ECoreTableToolClass, ECoreTableToolCode, EnumAlertType, EnumBrowserType, EnumButtonCaptionCode, EnumCoreArticleCategoryTreeaAccessorMode, EnumCoreButtonCode, EnumCoreButtonVNSCode, EnumCoreD3ScaleType, EnumCoreFileUploaderType, EnumCoreFormControlSeekerSourceType, EnumCoreOrgTreeaAccessorMode, EnumCoreOrgTreeaSearchMode, EnumCorePageEditBootstrapClass, EnumCorePageEditFieldType, EnumCorePageEditMode, EnumCoreSeekerColumnContract, EnumCoreSeekerColumnJob, EnumCoreSeekerColumnPosition, EnumCoreSeekerColumnPositionConcurrent, EnumCoreSeekerColumnStaffProfile, EnumCoreSeekerColumnWage, EnumCoreSeekerColumnWorking, EnumCoreTablePipeType, EnumCoreTreeGridEditMode, EnumCoreViewItemType, EnumDeviceType, EnumDragType, EnumErrorType, EnumExType, EnumFilterOperator, EnumFormBaseContolType, EnumHrComparisonCode, EnumICoreStatisticWidgetDataType, EnumIconClass, EnumImageResolverType, EnumNotificationDir, EnumOparator, EnumOsType, EnumPermissionObjectType, EnumProfileInfoSector, EnumRecursiveFields, EnumSignalRType, EnumSortDirection, EnumSsrsExpressExportFormat, EnumSsrsExpressFileExtension, EnumStyleButtonClass, EnumSwUpdateVersionUpdatesEventType, EnumWorkScheduleViewMode, EvaluateDialogComponent, EvaluateDialogService, FileService, FilterKitService, FilterPipe, FooterComponent, FullscreenModalLoaderComponent, FunctionComponent, FunctionEditComponent, FunctionEditService, FunctionIgnoreComponent, FunctionIgnoreEditComponent, GroupFunctionComponent, GroupFunctionEditComponent, GrpcService, HeaderService, HistoryService, HotKeysDirective, HttpErrorHandler, HubConnectionService, HuconcurrentlyComponent, IAlertOptions, ImageErrorResolverDirective, InMemoryComponent, IndividualScheduleApplyComponent, InitializationCanActivateFn, InitializationCanMatchFn, InterceptorSkipHeader, IpServiceService, ItemComponent, JobComponent, JsonService, LanguageChangerComponent, LanguageComponent, LanguageEditComponent, LayoutService, LongTaskService, MOBILE_SCREEN_HEDER_HEIGHT, MapAppdemoToServerPipePipe, MapAttachmentToServerPipe, MapAvatarToServerPipe, MapNewsfeedMediaToServerPipe, MapService, MenuComponent, MenuEditComponent, MenuService, MessageService, ModalService, MultiLanguageService, MutationLogComponent, MutationViewComponent, NavigatorComponent, NavigatorService, NewlyCreatedTokenService, NormalizeHumanNamePipe, NotificationActionType, OnlineUsersComponent, OrganizationService, OtpInputComponent, OtpInputService, PaSalaryPolicyComponent, PaSalaryPolicyEditComponent, PageTitleComponent, PaginationComponent, PkceService, PortalRouteComponent, PortalRouteEditComponent, PositionComponent, PositionEditService, PositionTransferService, PushNotificationService, RandomAvatarService, RecursiveService, RequestCache, RequestCacheWithMap, ResponseService, RightchatComponent, RoutingService, STICKER_COLOR_SCHEMA, ScheduleOverviewComponent, SeekerService, SocketService, SsrsExpressService, StaffProfileComponent, StatisticAuthService, StatisticService, StringHtmlPipe, StringService, SunnyRotatingComponent, SysActionComponent, SysActionEditComponent, SysFunctionActionComponent, SysFunctionActionEditComponent, SysFunctionActionMapperComponent, SysFunctionUrlMapperComponent, SysMenuService, SysModuleComponent, SysModuleEditComponent, SysOtherListComponent, SysOtherListEditComponent, SysOtherListTypeComponent, SysOtherListTypeEditComponent, SysRouteAccessComponent, TLA_CONFIG, TableCellPipe, Textbox, ThreedotsComponent, TimeSheetService, TooltipComponent, TooltipDirective, TopicPermissionService, TopicTreeService, TranslatePipe, UnicodeService, UploadedFileService, UploadedFilenameCutoffPipe, UrlService, UserActivityComponent, UserActivityService, WageComponent, WaittingScreenComponent, WorkShiftDndService, alertOptions, appTypeInterceptor, attachmentOptions, authInterceptor, baseUrlInterceptor, blob_to_base64_script, cachingInterceptor, defaultPaging, graphInterceptor, httpInterceptorProviders, langInterceptor, liner_to_nested_array_script, longAlertOptions, noneAutoClosedAlertOptions, normalizeHumanName, responseInterceptor, themeBlue, timeZoneInterceptor, tokenInterceptor };
|
|
34583
35142
|
//# sourceMappingURL=ngx-histaff-alpha.mjs.map
|