@rangertechnologies/ngnxt 2.1.349 → 2.1.351
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 +2422 -156
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/file-upload/file-upload.component.d.ts +1 -1
- package/lib/components/image-cropper/component/image-cropper.component.d.ts +1 -1
- package/lib/pages/pdfDesigner/pdf-designer/booklet.component.d.ts +49 -0
- package/lib/pages/pdfDesigner/pdf-designer/pdf-designer.component.d.ts +68 -4
- package/lib/pages/pdfDesigner/pdf-properties/pdf-properties.component.d.ts +280 -0
- package/lib/services/pdf-designer/pdf-designer.service.d.ts +130 -0
- package/lib/services/shared/shared.service.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/rangertechnologies-ngnxt-2.1.351.tgz +0 -0
- package/src/lib/style.css +2 -2
- package/rangertechnologies-ngnxt-2.1.349.tgz +0 -0
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export * from './lib/pages/builder/form/form.component';
|
|
|
8
8
|
export * from './lib/components/datatable/datatable.component';
|
|
9
9
|
export * from './lib/components/button/nxt-button.component';
|
|
10
10
|
export * from './lib/pages/pdfDesigner/pdf-designer/pdf-designer.component';
|
|
11
|
+
export * from './lib/services/pdf-designer/pdf-designer.service';
|
|
11
12
|
export * from './lib/components/nxt-input/nxt-input.component';
|
|
12
13
|
export * from './lib/components/nxt-dropdown/nxt-dropdown.component';
|
|
13
14
|
export * from './lib/components/nxt-multi-select/nxt-multi-select.component';
|
|
Binary file
|
package/src/lib/style.css
CHANGED
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
width:57%;
|
|
263
263
|
margin-left: 2.3%;
|
|
264
264
|
text-align: left;
|
|
265
|
-
background-image: url("https://
|
|
265
|
+
background-image: url("https://images.rangerfusion.com/uploads/rnxt/MytIcon/icon-clock%402x.png") !important;
|
|
266
266
|
background-size: 25px !important;
|
|
267
267
|
background-repeat: no-repeat !important;
|
|
268
268
|
background: #dedddd;
|
|
@@ -785,7 +785,7 @@
|
|
|
785
785
|
}
|
|
786
786
|
|
|
787
787
|
.myt-dropbox{
|
|
788
|
-
background-image: url(https://
|
|
788
|
+
background-image: url(https://images.rangerfusion.com/uploads/rnxt/MytIcon/down-red.png) ;
|
|
789
789
|
background-origin: content-box;
|
|
790
790
|
background-position: right -.9rem center;
|
|
791
791
|
background-repeat: no-repeat;
|
|
Binary file
|