tnx-shared 5.1.147 → 5.1.151

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 (45) hide show
  1. package/bundles/tnx-shared.umd.js +189 -85
  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/form-schema.d.ts +1 -0
  6. package/classes/form-schema.d.ts.map +1 -1
  7. package/components/add-news/add-news.component.d.ts +1 -0
  8. package/components/add-news/add-news.component.d.ts.map +1 -1
  9. package/components/file-explorer/file-manager/file-manager.component.d.ts +7 -1
  10. package/components/file-explorer/file-manager/file-manager.component.d.ts.map +1 -1
  11. package/components/file-explorer/file-picker-dialog/file-picker-dialog.component.d.ts +7 -1
  12. package/components/file-explorer/file-picker-dialog/file-picker-dialog.component.d.ts.map +1 -1
  13. package/components/tn-tinymce/tn-tinymce.component.d.ts +1 -0
  14. package/components/tn-tinymce/tn-tinymce.component.d.ts.map +1 -1
  15. package/components/workflow/process-workflow-target/process-workflow-target.component.d.ts.map +1 -1
  16. package/congviec/congviec/congviec-form/congviec-form.component.d.ts +1 -0
  17. package/congviec/congviec/congviec-form/congviec-form.component.d.ts.map +1 -1
  18. package/congviec/congviec/congviec.component.d.ts.map +1 -1
  19. package/esm2015/classes/form-schema.js +1 -1
  20. package/esm2015/components/add-news/add-news.component.js +10 -3
  21. package/esm2015/components/avatar-uploader/avatar-uploader.component.js +2 -2
  22. package/esm2015/components/chat/chat-box/chat-box.component.js +1 -1
  23. package/esm2015/components/chat/chat-send-message-box/chat-send-message-box.component.js +1 -1
  24. package/esm2015/components/crud/crud-form/crud-form.component.js +2 -2
  25. package/esm2015/components/file-explorer/file-manager/file-manager.component.js +46 -5
  26. package/esm2015/components/file-explorer/file-picker-dialog/file-picker-dialog.component.js +46 -8
  27. package/esm2015/components/tn-tinymce/tn-tinymce.component.js +6 -3
  28. package/esm2015/components/workflow/process-workflow-target/process-workflow-target.component.js +2 -22
  29. package/esm2015/congviec/congviec/congviec-form/congviec-form.component.js +3 -2
  30. package/esm2015/congviec/congviec/congviec.component.js +6 -2
  31. package/esm2015/models/file-type.js +14 -0
  32. package/esm2015/services/base.service.js +2 -2
  33. package/esm2015/services/file-manager.service.js +18 -0
  34. package/esm2015/tnx-shared.js +39 -38
  35. package/fesm2015/tnx-shared.js +142 -42
  36. package/fesm2015/tnx-shared.js.map +1 -1
  37. package/models/file-type.d.ts +11 -0
  38. package/models/file-type.d.ts.map +1 -0
  39. package/package.json +2 -2
  40. package/services/file-manager.service.d.ts +9 -0
  41. package/services/file-manager.service.d.ts.map +1 -0
  42. package/services/file-manager.service.ngfactory.d.ts.map +1 -0
  43. package/tnx-shared.d.ts +38 -37
  44. package/tnx-shared.d.ts.map +1 -1
  45. package/tnx-shared.metadata.json +1 -1
@@ -0,0 +1,11 @@
1
+ export declare enum FileType {
2
+ VIDEO = "VIDEO",
3
+ IMAGE = "IMAGE",
4
+ DOC = "DOC",
5
+ AUDIO = "AUDIO"
6
+ }
7
+ export declare const fileTypeSource: {
8
+ id: string;
9
+ ten: string;
10
+ }[];
11
+ //# sourceMappingURL=file-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-type.d.ts","sourceRoot":"../../../../projects/tnx-shared/src/lib/","sources":["models/file-type.ts"],"names":[],"mappings":"AAAA,oBAAY,QAAQ;IAChB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,GAAG,QAAQ;IACX,KAAK,UAAU;CAClB;AAED,eAAO,MAAM,cAAc;;;GAK1B,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tnx-shared",
3
- "version": "5.1.147",
3
+ "version": "5.1.151",
4
4
  "clientVersion": "5.1",
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.1.146",
134
+ "versionPrev": "5.1.150",
135
135
  "main": "bundles/tnx-shared.umd.js",
136
136
  "module": "fesm2015/tnx-shared.js",
137
137
  "es2015": "fesm2015/tnx-shared.js",
@@ -0,0 +1,9 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { Subscription } from 'rxjs';
3
+ export declare class FileManagerService {
4
+ invokeReloadFunction: EventEmitter<any>;
5
+ subsVar: Subscription;
6
+ constructor();
7
+ onReload(): void;
8
+ }
9
+ //# sourceMappingURL=file-manager.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-manager.service.d.ts","sourceRoot":"../../../../projects/tnx-shared/src/lib/","sources":["services/file-manager.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAc,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEpC,qBAGa,kBAAkB;IAE3B,oBAAoB,oBAAsB;IAC1C,OAAO,EAAE,YAAY,CAAC;;IAItB,QAAQ;CAIX"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-manager.service.ngfactory.d.ts","sourceRoot":"../../../../projects/tnx-shared/src/lib/","sources":["services/file-manager.service.ngfactory.ts"],"names":[],"mappings":""}
package/tnx-shared.d.ts CHANGED
@@ -2,15 +2,15 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public-api';
5
- export { AccessDeniedV1Component as ɵeh } from './components/access-denied-component/access-denied-v1/access-denied-v1.component';
6
- export { AddNewsComponent as ɵei } from './components/add-news/add-news.component';
5
+ export { AccessDeniedV1Component as ɵei } from './components/access-denied-component/access-denied-v1/access-denied-v1.component';
6
+ export { AddNewsComponent as ɵej } from './components/add-news/add-news.component';
7
7
  export { AddressComponent as ɵa } from './components/address/address.component';
8
8
  export { AfterViewCheckedComponent as ɵf } from './components/after-view-checked/after-view-checked.component';
9
9
  export { AutoCompletePickerComponent as ɵo } from './components/autocomplete-picker/autocomplete-picker.component';
10
- export { ChatService as ɵeo } from './components/chat/services/chat.service';
11
- export { ContentsService as ɵep } from './components/chat/services/content.service';
12
- export { MessageBoardService as ɵer } from './components/chat/services/message-board.service';
13
- export { StatusExtendsService as ɵeq } from './components/chat/services/status.service';
10
+ export { ChatService as ɵep } from './components/chat/services/chat.service';
11
+ export { ContentsService as ɵeq } from './components/chat/services/content.service';
12
+ export { MessageBoardService as ɵes } from './components/chat/services/message-board.service';
13
+ export { StatusExtendsService as ɵer } from './components/chat/services/status.service';
14
14
  export { CheckBoxListComponent as ɵp } from './components/check-box-list/check-box-list.component';
15
15
  export { CoCauToChucPickerListComponent as ɵr } from './components/cocautochuc/cocautochuc-picker-list/cocautochuc-picker-list.component';
16
16
  export { AppRootMenuComponent as ɵh } from './components/common-app-component/app-root-menu/app-root-menu.component';
@@ -23,7 +23,7 @@ export { CongViecPickerComponent as ɵby } from './components/congviec-picker/co
23
23
  export { CongViecService as ɵbz } from './components/congviec-picker/services/congviec.service';
24
24
  export { TaskWorkflowHistoriesService as ɵca } from './components/congviec-picker/services/taskworkflowhistories.service';
25
25
  export { AdvanceSearchComponent as ɵg } from './components/crud/advance-search/advance-search.component';
26
- export { CheckReadyComponent as ɵez } from './components/crud/check-ready/check-ready.component';
26
+ export { CheckReadyComponent as ɵfa } from './components/crud/check-ready/check-ready.component';
27
27
  export { TableDetailFormComponent as ɵdc } from './components/crud/table-detail-form/table-detail-form.component';
28
28
  export { DatetimePickerRangeComponent as ɵbc } from './components/datetime-picker-range/datetime-picker-range.component';
29
29
  export { DatetimePickerComponent as ɵbb } from './components/datetime-picker/datetime-picker.component';
@@ -37,26 +37,26 @@ export { EntityPickerSelectedComponent as ɵbg } from './components/entity-picke
37
37
  export { EntityPickerDialogComponent as ɵbi } from './components/entity-picker/entity-picker-dialog/entity-picker-dialog.component';
38
38
  export { EntityPickerComponent as ɵbh } from './components/entity-picker/entity-picker.component';
39
39
  export { EquationEditorComponent as ɵbn } from './components/equation-editor/equation-editor.component';
40
- export { FileFormComponent as ɵdu } from './components/file-explorer/file-form/file-form.component';
41
- export { FileKySoSimComponent as ɵeu } from './components/file-explorer/file-ky-so-sim/file-ky-so-sim.component';
42
- export { KhaiThacTaiLieuDungChungComponent as ɵex } from './components/file-explorer/file-tai-lieu/khaithac-tailieu-dungchung/khaithac-tailieu-dungchung.component';
43
- export { TaiLieuCuaToiComponent as ɵew } from './components/file-explorer/file-tai-lieu/tailieu-cuatoi/tailieu-cuatoi.component';
44
- export { FileVersionListComponent as ɵdw } from './components/file-explorer/file-version-list/file-version-list.component';
45
- export { FileViewerComponent as ɵdv } from './components/file-explorer/file-viewer/file-viewer.component';
46
- export { FolderFormComponent as ɵdt } from './components/file-explorer/folder-form/folder-form.component';
47
- export { KySoSimDanhSachChuKyComponent as ɵes } from './components/file-explorer/ky-so-sim-danh-sach-chu-ky/ky-so-sim-danh-sach-chu-ky.component';
48
- export { DanhMucDungChungService as ɵey } from './components/file-explorer/services/danhmuc-dungchung.service';
40
+ export { FileFormComponent as ɵdv } from './components/file-explorer/file-form/file-form.component';
41
+ export { FileKySoSimComponent as ɵev } from './components/file-explorer/file-ky-so-sim/file-ky-so-sim.component';
42
+ export { KhaiThacTaiLieuDungChungComponent as ɵey } from './components/file-explorer/file-tai-lieu/khaithac-tailieu-dungchung/khaithac-tailieu-dungchung.component';
43
+ export { TaiLieuCuaToiComponent as ɵex } from './components/file-explorer/file-tai-lieu/tailieu-cuatoi/tailieu-cuatoi.component';
44
+ export { FileVersionListComponent as ɵdx } from './components/file-explorer/file-version-list/file-version-list.component';
45
+ export { FileViewerComponent as ɵdw } from './components/file-explorer/file-viewer/file-viewer.component';
46
+ export { FolderFormComponent as ɵdu } from './components/file-explorer/folder-form/folder-form.component';
47
+ export { KySoSimDanhSachChuKyComponent as ɵet } from './components/file-explorer/ky-so-sim-danh-sach-chu-ky/ky-so-sim-danh-sach-chu-ky.component';
48
+ export { DanhMucDungChungService as ɵez } from './components/file-explorer/services/danhmuc-dungchung.service';
49
49
  export { FileExplorerNewService as ɵds } from './components/file-explorer/services/file-explorer-new.service';
50
50
  export { FileVersionService as ɵdr } from './components/file-explorer/services/file-version.service';
51
- export { KySoSimChuKyUserService as ɵet } from './components/file-explorer/services/ky-so-sim-chu-ky-user.service';
52
- export { KySoSimSignPDFService as ɵev } from './components/file-explorer/services/ky-so-sim-signPDF.service';
51
+ export { KySoSimChuKyUserService as ɵeu } from './components/file-explorer/services/ky-so-sim-chu-ky-user.service';
52
+ export { KySoSimSignPDFService as ɵew } from './components/file-explorer/services/ky-so-sim-signPDF.service';
53
53
  export { MyDriveService as ɵdq } from './components/file-explorer/services/my-drive.service';
54
- export { SignatureDetailComponent as ɵen } from './components/file-explorer/signature-detail/signature-detail.component';
54
+ export { SignatureDetailComponent as ɵeo } from './components/file-explorer/signature-detail/signature-detail.component';
55
55
  export { MaskComponent as ɵbo } from './components/mask/mask.component';
56
- export { NotFoundComponent as ɵel } from './components/not-found/not-found.component';
56
+ export { NotFoundComponent as ɵem } from './components/not-found/not-found.component';
57
57
  export { NumberPickerRangeComponent as ɵbp } from './components/number-picker-range/number-picker-range.component';
58
58
  export { PagingNextBackOnlyComponent as ɵbq } from './components/paging-next-back-only/paging-next-back-only.component';
59
- export { QrCodeGeneratorComponent as ɵeg } from './components/qr-code-generator/qr-code-generator.component';
59
+ export { QrCodeGeneratorComponent as ɵeh } from './components/qr-code-generator/qr-code-generator.component';
60
60
  export { DM_ChucVuService as ɵbk } from './components/query-builders/services/dm-chucvu.service';
61
61
  export { RadioButtonListComponent as ɵbr } from './components/radio-button-list/radio-button-list.component';
62
62
  export { ReportQueueComponent as ɵq } from './components/report-queue/report-queue.component';
@@ -84,7 +84,7 @@ export { TnColorPickerComponent as ɵcz } from './components/tn-color-picker/tn-
84
84
  export { TnDialogComponent as ɵcy } from './components/tn-dialog/tn-dialog.component';
85
85
  export { TnTabViewComponent as ɵdb } from './components/tn-tabview/tn-tabview.component';
86
86
  export { TnTinymceComponent as ɵda } from './components/tn-tinymce/tn-tinymce.component';
87
- export { UniversalLinkProcessorComponent as ɵem } from './components/universal-link-processor/universal-link-processor.component';
87
+ export { UniversalLinkProcessorComponent as ɵen } from './components/universal-link-processor/universal-link-processor.component';
88
88
  export { CoCauToChucTestService as ɵdk } from './components/user-picker/servicetest/cocautochuc-test.service';
89
89
  export { UserPickerBoxComponent as ɵdj } from './components/user-picker/user-picker-box/user-picker-box.component';
90
90
  export { UserPickerComponent as ɵdi } from './components/user-picker/user-picker.component';
@@ -99,20 +99,20 @@ export { PermissionSharingComponent as ɵcw } from './components/workflow/permis
99
99
  export { ProcessWorkflowFormComponent as ɵt } from './components/workflow/process-workflow-form/process-workflow-form.component';
100
100
  export { ProcessWorkflowTargetComponent as ɵcg } from './components/workflow/process-workflow-target/process-workflow-target.component';
101
101
  export { CanBo_HoSoService as ɵe } from './components/workflow/services/canbo-hoso.service';
102
- export { EntityWorkflowHistoryService as ɵdy } from './components/workflow/services/entity-workflow-history.service';
103
- export { EntityWorkflowSettingService as ɵec } from './components/workflow/services/entity-workflow-setting.service';
102
+ export { EntityWorkflowHistoryService as ɵdz } from './components/workflow/services/entity-workflow-history.service';
103
+ export { EntityWorkflowSettingService as ɵed } from './components/workflow/services/entity-workflow-setting.service';
104
104
  export { WorkflowPermissionService as ɵcx } from './components/workflow/services/workflow-permission.service';
105
105
  export { WorkflowSettingsService as ɵcn } from './components/workflow/services/workflow-settings.service';
106
106
  export { SimpleWorkflowFormComponent as ɵcf } from './components/workflow/simple-workflow-form/simple-workflow-form.component';
107
107
  export { StartWorkflowComponent as ɵct } from './components/workflow/start-workflow/start-workflow.component';
108
- export { WorkflowHistoryDialogComponent as ɵdz } from './components/workflow/workflow-history-dialog/workflow-history-dialog.component';
109
- export { WorkflowHistoryNewComponent as ɵea } from './components/workflow/workflow-history-new/workflow-history-new.component';
110
- export { WorkflowHistoryComponent as ɵdx } from './components/workflow/workflow-history/workflow-history.component';
111
- export { WorkflowPermissionFormComponent as ɵef } from './components/workflow/workflow-permission-form/workflow-permission-form.component';
112
- export { WorkflowPermissionComponent as ɵee } from './components/workflow/workflow-permission/workflow-permission.component';
113
- export { WorkflowSettingDialogComponent as ɵed } from './components/workflow/workflow-setting-dialog/workflow-setting-dialog.component';
108
+ export { WorkflowHistoryDialogComponent as ɵea } from './components/workflow/workflow-history-dialog/workflow-history-dialog.component';
109
+ export { WorkflowHistoryNewComponent as ɵeb } from './components/workflow/workflow-history-new/workflow-history-new.component';
110
+ export { WorkflowHistoryComponent as ɵdy } from './components/workflow/workflow-history/workflow-history.component';
111
+ export { WorkflowPermissionFormComponent as ɵeg } from './components/workflow/workflow-permission-form/workflow-permission-form.component';
112
+ export { WorkflowPermissionComponent as ɵef } from './components/workflow/workflow-permission/workflow-permission.component';
113
+ export { WorkflowSettingDialogComponent as ɵee } from './components/workflow/workflow-setting-dialog/workflow-setting-dialog.component';
114
114
  export { WorkflowSettingNewComponent as ɵcv } from './components/workflow/workflow-setting-new/workflow-setting-new.component';
115
- export { WorkflowSettingComponent as ɵeb } from './components/workflow/workflow-setting/workflow-setting.component';
115
+ export { WorkflowSettingComponent as ɵec } from './components/workflow/workflow-setting/workflow-setting.component';
116
116
  export { BaseCauHinhWorkflowDetailComponent as ɵu } from './congviec/cauhinh-workflow/cauhinh-workflow-detail/cauhinh-workflow-detail.component';
117
117
  export { BaseCongViecTestComponent as ɵs } from './congviec/congviec-test/congviec.component';
118
118
  export { BaseCongviecDinhkemFormComponent as ɵba } from './congviec/congviec/congviec-dinhkem-form/congviec-dinhkem-form.component';
@@ -123,16 +123,17 @@ export { BaseDmLoaiCongViecFormComponent as ɵv } from './congviec/dm-loai-congv
123
123
  export { BaseDmPriorityFormComponent as ɵx } from './congviec/dm-priority/dm-priority-form/dm-priority-form.component';
124
124
  export { PreventShiftTabDirective as ɵdg } from './directives/prevent-shift-tab.directive';
125
125
  export { TnTemplateDirective as ɵdh } from './directives/tn-template.directive';
126
- export { LogInterceptor as ɵfb } from './intercepters/log.interceptor';
127
- export { PermissionUtilsInterceptor as ɵfc } from './intercepters/permission-utils.interceptor';
128
- export { SendAccessTokenInterceptor as ɵfa } from './intercepters/send-access-token.interceptor';
129
- export { TraceInterceptor as ɵfd } from './intercepters/trace.interceptor';
126
+ export { LogInterceptor as ɵfc } from './intercepters/log.interceptor';
127
+ export { PermissionUtilsInterceptor as ɵfd } from './intercepters/permission-utils.interceptor';
128
+ export { SendAccessTokenInterceptor as ɵfb } from './intercepters/send-access-token.interceptor';
129
+ export { TraceInterceptor as ɵfe } from './intercepters/trace.interceptor';
130
130
  export { FileIconPipe as ɵdd } from './pipes/file-icon.pipe';
131
131
  export { FileSizePipe as ɵde } from './pipes/file-size.pipe';
132
- export { ArticleService as ɵej } from './services/article.service';
132
+ export { ArticleService as ɵek } from './services/article.service';
133
133
  export { DmChucVuService as ɵch } from './services/dm-chucvu.service';
134
134
  export { EntityPickerService as ɵc } from './services/entity-picker.service';
135
135
  export { ExceptionHandlerService as ɵd } from './services/exception-handler.service';
136
- export { NewsCategoryService as ɵek } from './services/newscategory.service';
136
+ export { FileManagerService as ɵdt } from './services/file-manager.service';
137
+ export { NewsCategoryService as ɵel } from './services/newscategory.service';
137
138
  export { RoleService as ɵbl } from './services/role.service';
138
139
  //# sourceMappingURL=tnx-shared.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tnx-shared.d.ts","sourceRoot":"../../../../projects/tnx-shared/src/lib/","sources":["tnx-shared.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tnx-shared.d.ts","sourceRoot":"../../../../projects/tnx-shared/src/lib/","sources":["tnx-shared.ts"],"names":[],"mappings":"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"}