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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tin-spa",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.0",
6
6
  "@angular/core": "^14.2.0"