@rangertechnologies/ngnxt 2.1.307 → 2.1.308
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/fesm2022/rangertechnologies-ngnxt.mjs +264 -238
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/services/pdf-designer/pdf-designer.service.d.ts +3 -1
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.308.tgz +0 -0
- package/src/lib/style.css +1 -1
- package/rangertechnologies-ngnxt-2.1.307.tgz +0 -0
|
@@ -4,10 +4,12 @@ import { HttpClient } from '@angular/common/http';
|
|
|
4
4
|
import { CountryService } from '../country/country.service';
|
|
5
5
|
import 'moment/locale/ar-sa';
|
|
6
6
|
import 'moment/locale/en-gb';
|
|
7
|
+
import { DataService } from '../data/data.service';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class PdfDesignerService {
|
|
9
10
|
private countryService;
|
|
10
11
|
private http;
|
|
12
|
+
private dataService;
|
|
11
13
|
private pdfElements;
|
|
12
14
|
private pdfElementsSubject;
|
|
13
15
|
private selectedElementSubject;
|
|
@@ -25,7 +27,7 @@ export declare class PdfDesignerService {
|
|
|
25
27
|
currentElement: any;
|
|
26
28
|
selectTableColumn: any;
|
|
27
29
|
currencyOption: any;
|
|
28
|
-
constructor(countryService: CountryService, http: HttpClient);
|
|
30
|
+
constructor(countryService: CountryService, http: HttpClient, dataService: DataService);
|
|
29
31
|
intializeBook(pdf: any): void;
|
|
30
32
|
getRefQbData(refqbid: string): Observable<any>;
|
|
31
33
|
addElementWithId(): string;
|
package/package.json
CHANGED
|
Binary file
|
package/src/lib/style.css
CHANGED
|
@@ -1050,7 +1050,7 @@ select{
|
|
|
1050
1050
|
float: right !important; /* Align right inside container */
|
|
1051
1051
|
margin-top: 10px !important;
|
|
1052
1052
|
margin-bottom: 10px !important;
|
|
1053
|
-
z-index:
|
|
1053
|
+
z-index: 1000 !important;
|
|
1054
1054
|
}
|
|
1055
1055
|
google-map .map-container {
|
|
1056
1056
|
width: auto !important;
|
|
Binary file
|