tnx-shared 5.0.66 → 5.0.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/tnx-shared.umd.js +48 -28
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/esm2015/public-api.js +7 -1
- package/esm2015/tnx-shared.js +22 -25
- package/fesm2015/tnx-shared.js +15 -1
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +6 -0
- package/public-api.d.ts.map +1 -1
- package/tnx-shared.d.ts +21 -24
- package/tnx-shared.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
|
@@ -31587,11 +31587,10 @@
|
|
|
31587
31587
|
}
|
|
31588
31588
|
return FileExplorerItem;
|
|
31589
31589
|
}());
|
|
31590
|
-
var FileExplorerItemType;
|
|
31591
31590
|
(function (FileExplorerItemType) {
|
|
31592
31591
|
FileExplorerItemType[FileExplorerItemType["File"] = 0] = "File";
|
|
31593
31592
|
FileExplorerItemType[FileExplorerItemType["Folder"] = 1] = "Folder";
|
|
31594
|
-
})(FileExplorerItemType || (FileExplorerItemType = {}));
|
|
31593
|
+
})(exports.FileExplorerItemType || (exports.FileExplorerItemType = {}));
|
|
31595
31594
|
|
|
31596
31595
|
// fix for build prod
|
|
31597
31596
|
var printJS$2 = printJS___namespace;
|
|
@@ -32561,7 +32560,7 @@
|
|
|
32561
32560
|
}
|
|
32562
32561
|
item.tailFile = item.name.substring(index);
|
|
32563
32562
|
item.tailFileUpper = item.tailFile.toUpperCase();
|
|
32564
|
-
item.isFile = item.fileExplorerItemType == FileExplorerItemType.File;
|
|
32563
|
+
item.isFile = item.fileExplorerItemType == exports.FileExplorerItemType.File;
|
|
32565
32564
|
}
|
|
32566
32565
|
});
|
|
32567
32566
|
this._value = value;
|
|
@@ -32798,7 +32797,7 @@
|
|
|
32798
32797
|
}
|
|
32799
32798
|
});
|
|
32800
32799
|
}
|
|
32801
|
-
if (item.fileExplorerItemType === FileExplorerItemType.Folder) {
|
|
32800
|
+
if (item.fileExplorerItemType === exports.FileExplorerItemType.Folder) {
|
|
32802
32801
|
item.class = '';
|
|
32803
32802
|
}
|
|
32804
32803
|
if (item.extension) {
|
|
@@ -47387,6 +47386,24 @@
|
|
|
47387
47386
|
return TemplateTextMany;
|
|
47388
47387
|
}());
|
|
47389
47388
|
|
|
47389
|
+
var ServiceRequestModel = /** @class */ (function () {
|
|
47390
|
+
function ServiceRequestModel() {
|
|
47391
|
+
this.service = '';
|
|
47392
|
+
this.entityInstanceId = '';
|
|
47393
|
+
this.parent = null;
|
|
47394
|
+
this.serviceCode = '';
|
|
47395
|
+
this.entity = '';
|
|
47396
|
+
this.entityKey = '';
|
|
47397
|
+
}
|
|
47398
|
+
return ServiceRequestModel;
|
|
47399
|
+
}());
|
|
47400
|
+
|
|
47401
|
+
var FileVersionDTO = /** @class */ (function () {
|
|
47402
|
+
function FileVersionDTO() {
|
|
47403
|
+
}
|
|
47404
|
+
return FileVersionDTO;
|
|
47405
|
+
}());
|
|
47406
|
+
|
|
47390
47407
|
(function (PermissionBase) {
|
|
47391
47408
|
PermissionBase[PermissionBase["READ"] = 1] = "READ";
|
|
47392
47409
|
PermissionBase[PermissionBase["EDIT"] = 2] = "EDIT";
|
|
@@ -47742,6 +47759,8 @@
|
|
|
47742
47759
|
exports.FILE_TYPES = FILE_TYPES;
|
|
47743
47760
|
exports.FieldDefineIsWorkflowControl = FieldDefineIsWorkflowControl;
|
|
47744
47761
|
exports.FileDataService = FileDataService;
|
|
47762
|
+
exports.FileExplorerItem = FileExplorerItem;
|
|
47763
|
+
exports.FileExplorerNewService = FileExplorerNewService;
|
|
47745
47764
|
exports.FileExplorerService = FileExplorerService;
|
|
47746
47765
|
exports.FileManagerComponent = FileManagerComponent;
|
|
47747
47766
|
exports.FileManagerControlSchema = FileManagerControlSchema;
|
|
@@ -47750,6 +47769,8 @@
|
|
|
47750
47769
|
exports.FileUploadComponent = FileUploadComponent;
|
|
47751
47770
|
exports.FileUploadControlSchema = FileUploadControlSchema;
|
|
47752
47771
|
exports.FileV4Service = FileV4Service;
|
|
47772
|
+
exports.FileVersionDTO = FileVersionDTO;
|
|
47773
|
+
exports.FileVersionService = FileVersionService;
|
|
47753
47774
|
exports.Filter = Filter;
|
|
47754
47775
|
exports.FolderService = FolderService;
|
|
47755
47776
|
exports.FormControlBase = FormControlBase;
|
|
@@ -47790,6 +47811,7 @@
|
|
|
47790
47811
|
exports.ModuleConfigService = ModuleConfigService;
|
|
47791
47812
|
exports.MultiTranslateHttpLoader = MultiTranslateHttpLoader;
|
|
47792
47813
|
exports.MultipleReferenceDataFormatPipe = MultipleReferenceDataFormatPipe;
|
|
47814
|
+
exports.MyDriveService = MyDriveService;
|
|
47793
47815
|
exports.NodeService = NodeService;
|
|
47794
47816
|
exports.NotFoundComponent = NotFoundComponent;
|
|
47795
47817
|
exports.NotificationService = NotificationService;
|
|
@@ -47838,6 +47860,7 @@
|
|
|
47838
47860
|
exports.SchemaBase = SchemaBase;
|
|
47839
47861
|
exports.SecurePipe = SecurePipe;
|
|
47840
47862
|
exports.ServiceFileUploadComponent = ServiceFileUploadComponent;
|
|
47863
|
+
exports.ServiceRequestModel = ServiceRequestModel;
|
|
47841
47864
|
exports.SessionTypes = SessionTypes;
|
|
47842
47865
|
exports.SignalRService = SignalRService;
|
|
47843
47866
|
exports.SimpleDicItem = SimpleDicItem;
|
|
@@ -48040,30 +48063,27 @@
|
|
|
48040
48063
|
exports.ɵd = ExceptionHandlerService;
|
|
48041
48064
|
exports.ɵda = TnAppNotificationListComponent;
|
|
48042
48065
|
exports.ɵdb = TnAppNotificationComponent;
|
|
48043
|
-
exports.ɵdc =
|
|
48044
|
-
exports.ɵdd =
|
|
48045
|
-
exports.ɵde =
|
|
48046
|
-
exports.ɵdf =
|
|
48047
|
-
exports.ɵdg =
|
|
48048
|
-
exports.ɵdh =
|
|
48049
|
-
exports.ɵdi =
|
|
48050
|
-
exports.ɵdj =
|
|
48051
|
-
exports.ɵdk =
|
|
48052
|
-
exports.ɵdl =
|
|
48053
|
-
exports.ɵdm =
|
|
48054
|
-
exports.ɵdn =
|
|
48055
|
-
exports.ɵdo =
|
|
48056
|
-
exports.ɵdp =
|
|
48057
|
-
exports.ɵdq =
|
|
48058
|
-
exports.ɵdr =
|
|
48059
|
-
exports.ɵds =
|
|
48060
|
-
exports.ɵdt =
|
|
48061
|
-
exports.ɵdu =
|
|
48062
|
-
exports.ɵdv =
|
|
48063
|
-
exports.ɵdw =
|
|
48064
|
-
exports.ɵdx = SendAccessTokenInterceptor;
|
|
48065
|
-
exports.ɵdy = LogInterceptor;
|
|
48066
|
-
exports.ɵdz = PermissionUtilsInterceptor;
|
|
48066
|
+
exports.ɵdc = FolderFormComponent;
|
|
48067
|
+
exports.ɵdd = FileFormComponent;
|
|
48068
|
+
exports.ɵde = FileViewerComponent;
|
|
48069
|
+
exports.ɵdf = FileVersionListComponent;
|
|
48070
|
+
exports.ɵdg = WorkflowHistoryComponent;
|
|
48071
|
+
exports.ɵdh = EntityWorkflowHistoryService;
|
|
48072
|
+
exports.ɵdi = WorkflowHistoryDialogComponent;
|
|
48073
|
+
exports.ɵdj = WorkflowHistoryNewComponent;
|
|
48074
|
+
exports.ɵdk = WorkflowSettingComponent;
|
|
48075
|
+
exports.ɵdl = EntityWorkflowSettingService;
|
|
48076
|
+
exports.ɵdm = WorkflowSettingDialogComponent;
|
|
48077
|
+
exports.ɵdn = QrCodeGeneratorComponent;
|
|
48078
|
+
exports.ɵdo = AccessDeniedV1Component;
|
|
48079
|
+
exports.ɵdp = AddNewsComponent;
|
|
48080
|
+
exports.ɵdq = ArticleService;
|
|
48081
|
+
exports.ɵdr = NewsCategoryService;
|
|
48082
|
+
exports.ɵds = SignatureDetailComponent;
|
|
48083
|
+
exports.ɵdt = CheckReadyComponent;
|
|
48084
|
+
exports.ɵdu = SendAccessTokenInterceptor;
|
|
48085
|
+
exports.ɵdv = LogInterceptor;
|
|
48086
|
+
exports.ɵdw = PermissionUtilsInterceptor;
|
|
48067
48087
|
exports.ɵe = CanBo_HoSoService;
|
|
48068
48088
|
exports.ɵf = AfterViewCheckedComponent;
|
|
48069
48089
|
exports.ɵg = AdvanceSearchComponent;
|