tnx-shared 5.2.9 → 5.2.12
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/assets/gulpfile.js +10 -2
- package/bundles/tnx-shared.umd.js +471 -163
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/classes/base/component-base.d.ts +3 -0
- package/classes/base/component-base.d.ts.map +1 -1
- package/classes/base/list-base.d.ts +2 -0
- package/classes/base/list-base.d.ts.map +1 -1
- package/classes/environment-schema.d.ts +13 -4
- package/classes/environment-schema.d.ts.map +1 -1
- package/classes/form-schema.d.ts +4 -0
- package/classes/form-schema.d.ts.map +1 -1
- package/components/common-app-component/app-topbar-v1/app-topbar-v1.component.d.ts +4 -2
- package/components/common-app-component/app-topbar-v1/app-topbar-v1.component.d.ts.map +1 -1
- package/components/common-app-component/default-setting-form/default-data-settings.component.d.ts +20 -0
- package/components/common-app-component/default-setting-form/default-data-settings.component.d.ts.map +1 -0
- package/components/common-app-component/default-setting-form/default-data-settings.component.ngfactory.d.ts.map +1 -0
- package/components/common-app-component/default-setting-form/default-data-settings.component.scss.shim.ngstyle.d.ts.map +1 -0
- package/components/crud/advance-search/advance-search.component.d.ts +2 -2
- package/components/crud/advance-search/advance-search.component.d.ts.map +1 -1
- package/components/crud/crud-form/crud-form.component.d.ts.map +1 -1
- package/components/datetime-picker/datetime-picker.component.d.ts.map +1 -1
- package/components/workflow/services/workflow-settings.service.d.ts +2 -0
- package/components/workflow/services/workflow-settings.service.d.ts.map +1 -1
- package/esm2015/app-context/application-context.service.js +2 -1
- package/esm2015/classes/base/component-base.js +26 -10
- package/esm2015/classes/base/list-base.js +31 -2
- package/esm2015/classes/environment-schema.js +4 -4
- package/esm2015/classes/form-schema.js +2 -1
- package/esm2015/components/common-app-component/app-root-menu/app-root-menu.component.js +2 -2
- package/esm2015/components/common-app-component/app-topbar-v1/app-topbar-v1.component.js +24 -18
- package/esm2015/components/common-app-component/default-setting-form/default-data-settings.component.js +209 -0
- package/esm2015/components/crud/advance-search/advance-search.component.js +24 -21
- package/esm2015/components/crud/crud-form/crud-form.component.js +4 -2
- package/esm2015/components/datetime-picker/datetime-picker.component.js +7 -4
- package/esm2015/components/workflow/services/workflow-settings.service.js +6 -1
- package/esm2015/services/environment.service.js +25 -6
- package/esm2015/tnx-shared.js +89 -88
- package/esm2015/tnx-shared.module.js +3 -1
- package/fesm2015/tnx-shared.js +348 -61
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/environment.service.d.ts +19 -4
- package/services/environment.service.d.ts.map +1 -1
- package/tnx-shared.d.ts +88 -87
- package/tnx-shared.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
- package/tnx-shared.module.d.ts +2 -1
- package/tnx-shared.module.d.ts.map +1 -1
- package/tnx-shared.module.ngfactory.d.ts.map +1 -1
- package/assets/Dockerfile.ci +0 -5
- package/assets/deploy.client.ci +0 -42
- package/assets/gulpfile.js.bak +0 -703
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tnx-shared",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.12",
|
|
4
4
|
"clientVersion": "5.2",
|
|
5
5
|
"version5.0": "5.0.19",
|
|
6
6
|
"version5.1": "5.1.22",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"jsplumb": "^2.15.6",
|
|
132
132
|
"ngx-extended-pdf-viewer": "^9.0.5"
|
|
133
133
|
},
|
|
134
|
-
"versionPrev": "5.2.
|
|
134
|
+
"versionPrev": "5.2.11",
|
|
135
135
|
"main": "bundles/tnx-shared.umd.js",
|
|
136
136
|
"module": "fesm2015/tnx-shared.js",
|
|
137
137
|
"es2015": "fesm2015/tnx-shared.js",
|
|
@@ -14,6 +14,8 @@ export declare class EnvironmentService {
|
|
|
14
14
|
getHttpServiceEndpoint(serviceCode: string): string;
|
|
15
15
|
getHttpServiceEndpointWithVersion(serviceCode: any): string;
|
|
16
16
|
getHttpServiceEndpointOld(serviceCode: string): string;
|
|
17
|
+
getUserSettingConfig(): any;
|
|
18
|
+
getUsersHasPermissionResetPassword(): string;
|
|
17
19
|
getHttpClientEndpoint(serviceCode: string): string;
|
|
18
20
|
isUseOldService(serviceCode: string): boolean;
|
|
19
21
|
getEnableHub(): {
|
|
@@ -34,9 +36,15 @@ export declare class EnvironmentService {
|
|
|
34
36
|
localEndpoint: string;
|
|
35
37
|
title: string;
|
|
36
38
|
longTitle: string;
|
|
37
|
-
showDefaultSetting: boolean;
|
|
38
39
|
visibile: boolean;
|
|
39
40
|
allowAnonymous: boolean;
|
|
41
|
+
showdefaultsetting: boolean;
|
|
42
|
+
configdefaultsetting: {
|
|
43
|
+
column: {
|
|
44
|
+
field: string;
|
|
45
|
+
required: boolean;
|
|
46
|
+
}[];
|
|
47
|
+
};
|
|
40
48
|
};
|
|
41
49
|
getModuleName(module: string): string;
|
|
42
50
|
getLongModuleName(module: string): string;
|
|
@@ -53,6 +61,10 @@ export declare class EnvironmentService {
|
|
|
53
61
|
getAuthenticationType(): string[];
|
|
54
62
|
getEnablePopulateLog(): boolean;
|
|
55
63
|
getShowDefaultSetting(): boolean;
|
|
64
|
+
getConfigDefaultSetting(): {
|
|
65
|
+
field: string;
|
|
66
|
+
required: boolean;
|
|
67
|
+
}[];
|
|
56
68
|
getDisableNotification(): boolean;
|
|
57
69
|
getHelpConfig_ExpertName(): string;
|
|
58
70
|
getHelpConfig_ExpertPhoneNummber(): string;
|
|
@@ -69,9 +81,10 @@ export declare class EnvironmentService {
|
|
|
69
81
|
getInternalFileEndpoint(): string;
|
|
70
82
|
getKySoSim_TsaUrl(): string;
|
|
71
83
|
getButtonPermissions(): string[];
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
84
|
+
getFieldsInDefaultSetting(): {
|
|
85
|
+
field: string;
|
|
86
|
+
label: string;
|
|
87
|
+
}[];
|
|
75
88
|
getKeyPressPermissionUtils(): string;
|
|
76
89
|
getCustomizeUi(): import("./customize-ui.service").CustomizeUiModel;
|
|
77
90
|
getTitle(): string;
|
|
@@ -82,5 +95,7 @@ export declare class EnvironmentService {
|
|
|
82
95
|
getIsProduction(): boolean;
|
|
83
96
|
getLinkDownloadClientApp(): string;
|
|
84
97
|
getCustomConfig(key: string): string;
|
|
98
|
+
getListDonViQuanLyNganh(): any[];
|
|
99
|
+
getListDonViQuanLyHocPhan(): any[];
|
|
85
100
|
}
|
|
86
101
|
//# sourceMappingURL=environment.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environment.service.d.ts","sourceRoot":"../../../../projects/shared/src/lib/","sources":["services/environment.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,cAAc,EAAY,MAAM,eAAe,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,wBAAgB,gBAAgB,iCAE/B;AACD,qBAGa,kBAAkB;IAC3B,WAAW,EAAE,iBAAiB,CAAC;IAC/B,OAAO,CAAC,OAAO,CAAS;gBAGpB,eAAe,GAAE,GAAU;IAoB/B,aAAa,IAAI,UAAU;IAoB3B,OAAO,CAAC,+BAA+B;IAYvC,OAAO,CAAC,0CAA0C;IAUlD,OAAO,CAAC,uBAAuB;IAa/B,sBAAsB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM;IAInD,iCAAiC,CAAC,WAAW,KAAA,GAAG,MAAM;IAItD,yBAAyB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM;IAkBtD,qBAAqB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM;IAIlD,eAAe,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO;IAS7C,YAAY;;;IAcZ,oBAAoB;IAIpB,sBAAsB;IAItB,OAAO,CAAC,MAAM;IAId,uBAAuB;IAIvB,UAAU,IAAI,GAAG,EAAE;IAInB,YAAY,CAAC,MAAM,EAAE,MAAM
|
|
1
|
+
{"version":3,"file":"environment.service.d.ts","sourceRoot":"../../../../projects/shared/src/lib/","sources":["services/environment.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,cAAc,EAAY,MAAM,eAAe,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,wBAAgB,gBAAgB,iCAE/B;AACD,qBAGa,kBAAkB;IAC3B,WAAW,EAAE,iBAAiB,CAAC;IAC/B,OAAO,CAAC,OAAO,CAAS;gBAGpB,eAAe,GAAE,GAAU;IAoB/B,aAAa,IAAI,UAAU;IAoB3B,OAAO,CAAC,+BAA+B;IAYvC,OAAO,CAAC,0CAA0C;IAUlD,OAAO,CAAC,uBAAuB;IAa/B,sBAAsB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM;IAInD,iCAAiC,CAAC,WAAW,KAAA,GAAG,MAAM;IAItD,yBAAyB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM;IAkBtD,oBAAoB;IAIpB,kCAAkC;IAIlC,qBAAqB,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM;IAIlD,eAAe,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO;IAS7C,YAAY;;;IAcZ,oBAAoB;IAIpB,sBAAsB;IAItB,OAAO,CAAC,MAAM;IAId,uBAAuB;IAIvB,UAAU,IAAI,GAAG,EAAE;IAInB,YAAY,CAAC,MAAM,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;IAI3B,aAAa,CAAC,MAAM,EAAE,MAAM;IAK5B,iBAAiB,CAAC,MAAM,EAAE,MAAM;IAKhC,4BAA4B;IAI5B,0BAA0B;IAI1B,gBAAgB;IAIhB,UAAU;IAIV,cAAc,IAAI,MAAM,EAAE;IAI1B,gBAAgB,IAAI,MAAM,EAAE;IAQ5B,UAAU;IAIV,iBAAiB;IAIjB,qBAAqB;IAIrB,wBAAwB;IAIxB,qBAAqB,IAAI,MAAM,EAAE;IAIjC,oBAAoB;IAIpB,qBAAqB;IAKrB,uBAAuB;;;;IAKvB,sBAAsB;IAItB,wBAAwB;IAIxB,gCAAgC;IAIhC,yBAAyB;IAIzB,yBAAyB;IAIzB,uBAAuB,IAAI,GAAG,EAAE;IAIhC,eAAe;IAIf,oBAAoB;IAIpB,oBAAoB;IAIpB,aAAa;IAIb,iBAAiB;IAIjB,iBAAiB;IAIjB,mCAAmC;IAInC,uBAAuB;IAIvB,iBAAiB;IAIjB,oBAAoB;IAIpB,yBAAyB;;;;IAIzB,0BAA0B;IAI1B,cAAc;IAId,QAAQ;IAIR,OAAO;IAIP,QAAQ;IAIR,iBAAiB;IAIjB,kBAAkB;IAIlB,eAAe;IAIf,wBAAwB;IAIxB,eAAe,CAAC,GAAG,EAAE,MAAM;IAK3B,uBAAuB;IAIvB,yBAAyB;CAG5B"}
|
package/tnx-shared.d.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
5
|
export { ListBase as ɵd } from './classes/base/list-base';
|
|
6
|
-
export { AccessDeniedV1Component as
|
|
7
|
-
export { AddNewsComponent as
|
|
6
|
+
export { AccessDeniedV1Component as ɵeu } from './components/access-denied-component/access-denied-v1/access-denied-v1.component';
|
|
7
|
+
export { AddNewsComponent as ɵev } from './components/add-news/add-news.component';
|
|
8
8
|
export { AddressComponent as ɵba } from './components/address/address.component';
|
|
9
9
|
export { AfterViewCheckedComponent as ɵbb } from './components/after-view-checked/after-view-checked.component';
|
|
10
10
|
export { AutoCompletePickerComponent as ɵbk } from './components/autocomplete-picker/autocomplete-picker.component';
|
|
@@ -20,101 +20,102 @@ export { AppTopBarV2Component as ɵbg } from './components/common-app-component/
|
|
|
20
20
|
export { AppMenuComponent as ɵbj, AppSubMenuComponent as ɵbi } from './components/common-app-component/app.menu.component';
|
|
21
21
|
export { AppProfileComponent as ɵbh } from './components/common-app-component/app.profile.component';
|
|
22
22
|
export { AppTopBarComponent as ɵbe } from './components/common-app-component/app.topbar.component';
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
23
|
+
export { DefaultDataSettingsComponent as ɵby } from './components/common-app-component/default-setting-form/default-data-settings.component';
|
|
24
|
+
export { CongViecPickerComponent as ɵcr } from './components/congviec-picker/congviec-picker.component';
|
|
25
|
+
export { CongViecService as ɵcs } from './components/congviec-picker/services/congviec.service';
|
|
26
|
+
export { TaskWorkflowHistoriesService as ɵct } from './components/congviec-picker/services/taskworkflowhistories.service';
|
|
26
27
|
export { AdvanceSearchComponent as ɵbc } from './components/crud/advance-search/advance-search.component';
|
|
27
|
-
export { CheckReadyComponent as
|
|
28
|
-
export { TableDetailFormComponent as
|
|
28
|
+
export { CheckReadyComponent as ɵfh } from './components/crud/check-ready/check-ready.component';
|
|
29
|
+
export { TableDetailFormComponent as ɵdv } from './components/crud/table-detail-form/table-detail-form.component';
|
|
29
30
|
export { TreeTableComponent as ɵe } from './components/crud/tree-table/tree-table.component';
|
|
30
31
|
export { DatetimePickerRangeComponent as ɵbx } from './components/datetime-picker-range/datetime-picker-range.component';
|
|
31
32
|
export { DatetimePickerComponent as ɵbw } from './components/datetime-picker/datetime-picker.component';
|
|
32
|
-
export { QuickAddFormComponent as
|
|
33
|
+
export { QuickAddFormComponent as ɵdy } from './components/dropdown/quick-add-form/quick-add-form.component';
|
|
33
34
|
export { DropdownService as ɵbm } from './components/dropdown/services/dropdown.service';
|
|
34
|
-
export { EntityPermissionComponent as
|
|
35
|
+
export { EntityPermissionComponent as ɵcf } from './components/entity-permission/entity-permission.component';
|
|
35
36
|
export { EntityPermissionService as ɵn } from './components/entity-permission/services.cs/entity-permission.service';
|
|
36
|
-
export { EntityPickerBoxComponent as
|
|
37
|
-
export { EntityPickerDataComponent as
|
|
38
|
-
export { EntityPickerSelectedComponent as
|
|
39
|
-
export { EntityPickerDialogComponent as
|
|
40
|
-
export { EntityPickerComponent as
|
|
41
|
-
export { EquationEditorComponent as
|
|
42
|
-
export { FileFormComponent as
|
|
43
|
-
export { FileKySoSimComponent as
|
|
44
|
-
export { KhaiThacTaiLieuDungChungComponent as
|
|
45
|
-
export { TaiLieuCuaToiComponent as
|
|
46
|
-
export { FileVersionListComponent as
|
|
47
|
-
export { FileViewerComponent as
|
|
48
|
-
export { FolderFormComponent as
|
|
49
|
-
export { KySoSimDanhSachChuKyComponent as
|
|
50
|
-
export { DanhMucDungChungService as
|
|
37
|
+
export { EntityPickerBoxComponent as ɵca } from './components/entity-picker/entity-picker-box/entity-picker-box.component';
|
|
38
|
+
export { EntityPickerDataComponent as ɵcb } from './components/entity-picker/entity-picker-dialog/components/entity-picker-data/entity-picker-data.component';
|
|
39
|
+
export { EntityPickerSelectedComponent as ɵcc } from './components/entity-picker/entity-picker-dialog/components/entity-picker-selected/entity-picker-selected.component';
|
|
40
|
+
export { EntityPickerDialogComponent as ɵce } from './components/entity-picker/entity-picker-dialog/entity-picker-dialog.component';
|
|
41
|
+
export { EntityPickerComponent as ɵcd } from './components/entity-picker/entity-picker.component';
|
|
42
|
+
export { EquationEditorComponent as ɵcg } from './components/equation-editor/equation-editor.component';
|
|
43
|
+
export { FileFormComponent as ɵej } from './components/file-explorer/file-form/file-form.component';
|
|
44
|
+
export { FileKySoSimComponent as ɵfb } from './components/file-explorer/file-ky-so-sim/file-ky-so-sim.component';
|
|
45
|
+
export { KhaiThacTaiLieuDungChungComponent as ɵfe } from './components/file-explorer/file-tai-lieu/khaithac-tailieu-dungchung/khaithac-tailieu-dungchung.component';
|
|
46
|
+
export { TaiLieuCuaToiComponent as ɵfd } from './components/file-explorer/file-tai-lieu/tailieu-cuatoi/tailieu-cuatoi.component';
|
|
47
|
+
export { FileVersionListComponent as ɵel } from './components/file-explorer/file-version-list/file-version-list.component';
|
|
48
|
+
export { FileViewerComponent as ɵek } from './components/file-explorer/file-viewer/file-viewer.component';
|
|
49
|
+
export { FolderFormComponent as ɵei } from './components/file-explorer/folder-form/folder-form.component';
|
|
50
|
+
export { KySoSimDanhSachChuKyComponent as ɵez } from './components/file-explorer/ky-so-sim-danh-sach-chu-ky/ky-so-sim-danh-sach-chu-ky.component';
|
|
51
|
+
export { DanhMucDungChungService as ɵff } from './components/file-explorer/services/danhmuc-dungchung.service';
|
|
51
52
|
export { FileExplorerNewService as ɵt } from './components/file-explorer/services/file-explorer-new.service';
|
|
52
53
|
export { FileVersionService as ɵv } from './components/file-explorer/services/file-version.service';
|
|
53
|
-
export { KySoSimChuKyUserService as
|
|
54
|
-
export { KySoSimSignPDFService as
|
|
54
|
+
export { KySoSimChuKyUserService as ɵfa } from './components/file-explorer/services/ky-so-sim-chu-ky-user.service';
|
|
55
|
+
export { KySoSimSignPDFService as ɵfc } from './components/file-explorer/services/ky-so-sim-signPDF.service';
|
|
55
56
|
export { MyDriveService as ɵp } from './components/file-explorer/services/my-drive.service';
|
|
56
|
-
export { SignatureDetailComponent as
|
|
57
|
-
export { MaskComponent as
|
|
57
|
+
export { SignatureDetailComponent as ɵey } from './components/file-explorer/signature-detail/signature-detail.component';
|
|
58
|
+
export { MaskComponent as ɵch } from './components/mask/mask.component';
|
|
58
59
|
export { NotFoundComponent as ɵg } from './components/not-found/not-found.component';
|
|
59
|
-
export { NumberPickerRangeComponent as
|
|
60
|
-
export { PagingNextBackOnlyComponent as
|
|
61
|
-
export { QrCodeGeneratorComponent as
|
|
60
|
+
export { NumberPickerRangeComponent as ɵci } from './components/number-picker-range/number-picker-range.component';
|
|
61
|
+
export { PagingNextBackOnlyComponent as ɵcj } from './components/paging-next-back-only/paging-next-back-only.component';
|
|
62
|
+
export { QrCodeGeneratorComponent as ɵet } from './components/qr-code-generator/qr-code-generator.component';
|
|
62
63
|
export { DM_ChucVuService as ɵx } from './components/query-builders/services/dm-chucvu.service';
|
|
63
|
-
export { RadioButtonListComponent as
|
|
64
|
+
export { RadioButtonListComponent as ɵck } from './components/radio-button-list/radio-button-list.component';
|
|
64
65
|
export { ReportQueueComponent as ɵu } from './components/report-queue/report-queue.component';
|
|
65
|
-
export { SettingsRowComponent as
|
|
66
|
-
export { SettingsWorkflowNo1Component as
|
|
67
|
-
export { SettingsWorkflowComponent as
|
|
68
|
-
export { SettingsComponent as
|
|
69
|
-
export { ShareLinkByPermissionComponent as
|
|
70
|
-
export { SplashComponentV1Component as
|
|
71
|
-
export { SplashComponentV2Component as
|
|
72
|
-
export { DynamicNodeComponent as
|
|
73
|
-
export { StateMachinesConnectionReceiverConditionComponent as
|
|
74
|
-
export { StateMachinesConnectionReceiverDepartmentComponent as
|
|
75
|
-
export { StateMachinesConnectionReceiverGroupComponent as
|
|
76
|
-
export { StateMachinesConnectionReceiverRoleComponent as
|
|
77
|
-
export { StateMachinesConnectionReceiverUserComponent as
|
|
78
|
-
export { StateMachinesConnectionReceiverComponent as
|
|
79
|
-
export { StateMachinesConnectionSenderComponent as
|
|
80
|
-
export { HelperCurrentPageComponent as
|
|
81
|
-
export { PathNameService as
|
|
82
|
-
export { TnAppHelpComponent as
|
|
83
|
-
export { TnAppNotificationListComponent as
|
|
84
|
-
export { TnAppNotificationComponent as
|
|
85
|
-
export { TnCheckboxComponent as
|
|
86
|
-
export { TnColorPickerComponent as
|
|
87
|
-
export { TnDialogComponent as
|
|
88
|
-
export { TnTabViewComponent as
|
|
89
|
-
export { TnTemplateComponent as
|
|
90
|
-
export { TnTinymceComponent as
|
|
66
|
+
export { SettingsRowComponent as ɵcv } from './components/settings/settings-row/settings-row.component';
|
|
67
|
+
export { SettingsWorkflowNo1Component as ɵcx } from './components/settings/settings-workflow/settings-workflow-no1/settings-workflow-no1.component';
|
|
68
|
+
export { SettingsWorkflowComponent as ɵcw } from './components/settings/settings-workflow/settings-workflow.component';
|
|
69
|
+
export { SettingsComponent as ɵcu } from './components/settings/settings.component';
|
|
70
|
+
export { ShareLinkByPermissionComponent as ɵdm } from './components/share-link-by-permission/share-link-by-permission.component';
|
|
71
|
+
export { SplashComponentV1Component as ɵdc } from './components/splash-component/splash-component-v1/splash-component-v1.component';
|
|
72
|
+
export { SplashComponentV2Component as ɵdd } from './components/splash-component/splash-component-v2/splash-component-v2.component';
|
|
73
|
+
export { DynamicNodeComponent as ɵbz } from './components/statemachines/dynamic-node/dynamic-node.component';
|
|
74
|
+
export { StateMachinesConnectionReceiverConditionComponent as ɵdf } from './components/statemachines/statemachines-connection-receiver-condition/statemachines-connection-receiver-condition.component';
|
|
75
|
+
export { StateMachinesConnectionReceiverDepartmentComponent as ɵdg } from './components/statemachines/statemachines-connection-receiver-department/statemachines-connection-receiver-department.component';
|
|
76
|
+
export { StateMachinesConnectionReceiverGroupComponent as ɵdh } from './components/statemachines/statemachines-connection-receiver-group/statemachines-connection-receiver-group.component';
|
|
77
|
+
export { StateMachinesConnectionReceiverRoleComponent as ɵdj } from './components/statemachines/statemachines-connection-receiver-role/statemachines-connection-receiver-role.component';
|
|
78
|
+
export { StateMachinesConnectionReceiverUserComponent as ɵdi } from './components/statemachines/statemachines-connection-receiver-user/statemachines-connection-receiver-user.component';
|
|
79
|
+
export { StateMachinesConnectionReceiverComponent as ɵde } from './components/statemachines/statemachines-connection-receiver/statemachines-connection-receiver.component';
|
|
80
|
+
export { StateMachinesConnectionSenderComponent as ɵdk } from './components/statemachines/statemachines-connection-sender/statemachines-connection-sender.component';
|
|
81
|
+
export { HelperCurrentPageComponent as ɵef } from './components/tn-app-help/helper-current-page/helper-current-page.component';
|
|
82
|
+
export { PathNameService as ɵee } from './components/tn-app-help/services/path-name.service';
|
|
83
|
+
export { TnAppHelpComponent as ɵed } from './components/tn-app-help/tn-app-help.component';
|
|
84
|
+
export { TnAppNotificationListComponent as ɵeg } from './components/tn-app-notification/tn-app-notification-list/tn-app-notification-list.component';
|
|
85
|
+
export { TnAppNotificationComponent as ɵeh } from './components/tn-app-notification/tn-app-notification.component';
|
|
86
|
+
export { TnCheckboxComponent as ɵdq } from './components/tn-checkbox/tn-checkbox.component';
|
|
87
|
+
export { TnColorPickerComponent as ɵds } from './components/tn-color-picker/tn-color-picker.component';
|
|
88
|
+
export { TnDialogComponent as ɵdr } from './components/tn-dialog/tn-dialog.component';
|
|
89
|
+
export { TnTabViewComponent as ɵdu } from './components/tn-tabview/tn-tabview.component';
|
|
90
|
+
export { TnTemplateComponent as ɵfg } from './components/tn-template/tn-template.component';
|
|
91
|
+
export { TnTinymceComponent as ɵdt } from './components/tn-tinymce/tn-tinymce.component';
|
|
91
92
|
export { UniversalLinkProcessorComponent as ɵf } from './components/universal-link-processor/universal-link-processor.component';
|
|
92
|
-
export { UserPickerBoxComponent as
|
|
93
|
-
export { UserPickerComponent as
|
|
94
|
-
export { VanBanDenService as
|
|
95
|
-
export { VanBanDiService as
|
|
96
|
-
export { VanbanDenPickerComponent as
|
|
97
|
-
export { VanbanDiPickerComponent as
|
|
98
|
-
export { VanBanPickerDialogComponent as
|
|
99
|
-
export { VanBanPickerComponent as
|
|
100
|
-
export { ChoYKienFormComponent as
|
|
101
|
-
export { PermissionSharingComponent as
|
|
93
|
+
export { UserPickerBoxComponent as ɵec } from './components/user-picker/user-picker-box/user-picker-box.component';
|
|
94
|
+
export { UserPickerComponent as ɵeb } from './components/user-picker/user-picker.component';
|
|
95
|
+
export { VanBanDenService as ɵcm } from './components/vanban-picker/services/vanban-den.service';
|
|
96
|
+
export { VanBanDiService as ɵcn } from './components/vanban-picker/services/vanban-di.service';
|
|
97
|
+
export { VanbanDenPickerComponent as ɵcq } from './components/vanban-picker/vanban-den-picker/vanban-den-picker.component';
|
|
98
|
+
export { VanbanDiPickerComponent as ɵcp } from './components/vanban-picker/vanban-di-picker/vanban-di-picker.component';
|
|
99
|
+
export { VanBanPickerDialogComponent as ɵco } from './components/vanban-picker/vanban-picker-dialog/vanban-picker-dialog.component';
|
|
100
|
+
export { VanBanPickerComponent as ɵcl } from './components/vanban-picker/vanban-picker.component';
|
|
101
|
+
export { ChoYKienFormComponent as ɵdb } from './components/workflow/cho-y-kien-form/cho-y-kien-form.component';
|
|
102
|
+
export { PermissionSharingComponent as ɵdo } from './components/workflow/permission-sharing/permission-sharing.component';
|
|
102
103
|
export { ProcessWorkflowFormComponent as ɵz } from './components/workflow/process-workflow-form/process-workflow-form.component';
|
|
103
|
-
export { ProcessWorkflowTargetComponent as
|
|
104
|
+
export { ProcessWorkflowTargetComponent as ɵcz } from './components/workflow/process-workflow-target/process-workflow-target.component';
|
|
104
105
|
export { CanBo_HoSoService as ɵc } from './components/workflow/services/canbo-hoso.service';
|
|
105
106
|
export { EntityWorkflowHistoryService as ɵm } from './components/workflow/services/entity-workflow-history.service';
|
|
106
107
|
export { EntityWorkflowSettingService as ɵl } from './components/workflow/services/entity-workflow-setting.service';
|
|
107
|
-
export { WorkflowPermissionService as
|
|
108
|
-
export { SimpleWorkflowFormComponent as
|
|
109
|
-
export { StartWorkflowComponent as
|
|
110
|
-
export { WorkflowHistoryDialogComponent as
|
|
111
|
-
export { WorkflowHistoryNewComponent as
|
|
112
|
-
export { WorkflowHistoryComponent as
|
|
113
|
-
export { WorkflowPermissionFormComponent as
|
|
114
|
-
export { WorkflowPermissionComponent as
|
|
115
|
-
export { WorkflowSettingDialogComponent as
|
|
116
|
-
export { WorkflowSettingNewComponent as
|
|
117
|
-
export { WorkflowSettingComponent as
|
|
108
|
+
export { WorkflowPermissionService as ɵdp } from './components/workflow/services/workflow-permission.service';
|
|
109
|
+
export { SimpleWorkflowFormComponent as ɵcy } from './components/workflow/simple-workflow-form/simple-workflow-form.component';
|
|
110
|
+
export { StartWorkflowComponent as ɵdl } from './components/workflow/start-workflow/start-workflow.component';
|
|
111
|
+
export { WorkflowHistoryDialogComponent as ɵen } from './components/workflow/workflow-history-dialog/workflow-history-dialog.component';
|
|
112
|
+
export { WorkflowHistoryNewComponent as ɵeo } from './components/workflow/workflow-history-new/workflow-history-new.component';
|
|
113
|
+
export { WorkflowHistoryComponent as ɵem } from './components/workflow/workflow-history/workflow-history.component';
|
|
114
|
+
export { WorkflowPermissionFormComponent as ɵes } from './components/workflow/workflow-permission-form/workflow-permission-form.component';
|
|
115
|
+
export { WorkflowPermissionComponent as ɵer } from './components/workflow/workflow-permission/workflow-permission.component';
|
|
116
|
+
export { WorkflowSettingDialogComponent as ɵeq } from './components/workflow/workflow-setting-dialog/workflow-setting-dialog.component';
|
|
117
|
+
export { WorkflowSettingNewComponent as ɵdn } from './components/workflow/workflow-setting-new/workflow-setting-new.component';
|
|
118
|
+
export { WorkflowSettingComponent as ɵep } from './components/workflow/workflow-setting/workflow-setting.component';
|
|
118
119
|
export { BaseCauHinhWorkflowDetailComponent as ɵbp } from './congviec/cauhinh-workflow/cauhinh-workflow-detail/cauhinh-workflow-detail.component';
|
|
119
120
|
export { BaseCongViecTestComponent as ɵbo } from './congviec/congviec-test/congviec.component';
|
|
120
121
|
export { BaseCongviecDinhkemFormComponent as ɵbv } from './congviec/congviec/congviec-dinhkem-form/congviec-dinhkem-form.component';
|
|
@@ -123,19 +124,19 @@ export { CongviecDinhkemService as ɵbu } from './congviec/congviec/services/con
|
|
|
123
124
|
export { BaseDmLinhVucCongViecFormComponent as ɵbr } from './congviec/dm-linhvuc-congviec/dm-linhvuc-congviec-form/dm-linhvuc-congviec-form.component';
|
|
124
125
|
export { BaseDmLoaiCongViecFormComponent as ɵbq } from './congviec/dm-loai-congviec/dm-loai-congviec-form/dm-loai-congviec-form.component';
|
|
125
126
|
export { BaseDmPriorityFormComponent as ɵbs } from './congviec/dm-priority/dm-priority-form/dm-priority-form.component';
|
|
126
|
-
export { PreventShiftTabDirective as
|
|
127
|
-
export { TnTemplateDirective as
|
|
127
|
+
export { PreventShiftTabDirective as ɵdz } from './directives/prevent-shift-tab.directive';
|
|
128
|
+
export { TnTemplateDirective as ɵea } from './directives/tn-template.directive';
|
|
128
129
|
export { LogInterceptor as ɵi } from './intercepters/log.interceptor';
|
|
129
130
|
export { PermissionUtilsInterceptor as ɵj } from './intercepters/permission-utils.interceptor';
|
|
130
131
|
export { SendAccessTokenInterceptor as ɵh } from './intercepters/send-access-token.interceptor';
|
|
131
132
|
export { TraceInterceptor as ɵk } from './intercepters/trace.interceptor';
|
|
132
|
-
export { FileIconPipe as
|
|
133
|
-
export { FileSizePipe as
|
|
134
|
-
export { ArticleService as
|
|
135
|
-
export { DmChucVuService as
|
|
133
|
+
export { FileIconPipe as ɵdw } from './pipes/file-icon.pipe';
|
|
134
|
+
export { FileSizePipe as ɵdx } from './pipes/file-size.pipe';
|
|
135
|
+
export { ArticleService as ɵew } from './services/article.service';
|
|
136
|
+
export { DmChucVuService as ɵda } from './services/dm-chucvu.service';
|
|
136
137
|
export { EntityPickerService as ɵa } from './services/entity-picker.service';
|
|
137
138
|
export { ExceptionHandlerService as ɵb } from './services/exception-handler.service';
|
|
138
139
|
export { FileManagerService as ɵw } from './services/file-manager.service';
|
|
139
|
-
export { NewsCategoryService as
|
|
140
|
+
export { NewsCategoryService as ɵex } from './services/newscategory.service';
|
|
140
141
|
export { RoleService as ɵy } from './services/role.service';
|
|
141
142
|
//# sourceMappingURL=tnx-shared.d.ts.map
|
package/tnx-shared.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tnx-shared.d.ts","sourceRoot":"../../../../projects/shared/src/lib/","sources":["tnx-shared.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"tnx-shared.d.ts","sourceRoot":"../../../../projects/shared/src/lib/","sources":["tnx-shared.ts"],"names":[],"mappings":"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"}
|