tin-spa 2.6.1 → 2.6.2
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/esm2020/lib/classes/Classes.mjs +1 -1
- package/esm2020/lib/components/form/form.component.mjs +3 -3
- package/esm2020/lib/components/viewer/viewerDialog.component.mjs +20 -13
- package/fesm2015/tin-spa.mjs +17 -10
- package/fesm2015/tin-spa.mjs.map +1 -1
- package/fesm2020/tin-spa.mjs +16 -10
- package/fesm2020/tin-spa.mjs.map +1 -1
- package/lib/classes/Classes.d.ts +1 -1
- package/lib/components/viewer/viewerDialog.component.d.ts +3 -1
- package/package.json +1 -1
package/lib/classes/Classes.d.ts
CHANGED
|
@@ -72,7 +72,6 @@ export declare class FormConfig {
|
|
|
72
72
|
button?: Button;
|
|
73
73
|
multiColumn?: boolean;
|
|
74
74
|
reset?: boolean;
|
|
75
|
-
fileAction?: Action;
|
|
76
75
|
loadAction?: Action;
|
|
77
76
|
heroField?: any;
|
|
78
77
|
heroValue?: any;
|
|
@@ -264,6 +263,7 @@ export declare class AppConfig {
|
|
|
264
263
|
multitenant: boolean;
|
|
265
264
|
navigation: 'top' | 'side';
|
|
266
265
|
progressLine: boolean;
|
|
266
|
+
docsBaseUrl: string;
|
|
267
267
|
}
|
|
268
268
|
export declare class CapItem {
|
|
269
269
|
constructor();
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { HttpService } from '../../services/http.service';
|
|
3
|
+
import { DataServiceLib } from '../../services/datalib.service';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class viewerDialog implements OnInit {
|
|
5
6
|
private httpService;
|
|
7
|
+
private dataServiceLib;
|
|
6
8
|
data: any;
|
|
7
|
-
constructor(httpService: HttpService, data: any);
|
|
9
|
+
constructor(httpService: HttpService, dataServiceLib: DataServiceLib, data: any);
|
|
8
10
|
ngOnInit(): void;
|
|
9
11
|
isProcessing: boolean;
|
|
10
12
|
fullPath: string;
|