@rangertechnologies/ngnxt 2.1.306 → 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 +265 -239
- 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 +7 -6
- package/rangertechnologies-ngnxt-2.1.306.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
|
@@ -1044,12 +1044,13 @@ select{
|
|
|
1044
1044
|
}
|
|
1045
1045
|
|
|
1046
1046
|
.align-submit-row {
|
|
1047
|
-
display: flex;
|
|
1048
|
-
position: sticky; /* Stick INSIDE div */
|
|
1049
|
-
bottom: 10px;
|
|
1050
|
-
float: right; /* Align right inside container */
|
|
1051
|
-
margin-top:
|
|
1052
|
-
|
|
1047
|
+
display: flex !important;
|
|
1048
|
+
position: sticky !important; /* Stick INSIDE div */
|
|
1049
|
+
bottom: 10px !important;
|
|
1050
|
+
float: right !important; /* Align right inside container */
|
|
1051
|
+
margin-top: 10px !important;
|
|
1052
|
+
margin-bottom: 10px !important;
|
|
1053
|
+
z-index: 1000 !important;
|
|
1053
1054
|
}
|
|
1054
1055
|
google-map .map-container {
|
|
1055
1056
|
width: auto !important;
|
|
Binary file
|