@rangertechnologies/ngnxt 2.1.252 → 2.1.253
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/esm2022/environments/version.mjs +2 -2
- package/esm2022/lib/components/button/nxt-button.component.mjs +4 -4
- package/esm2022/lib/components/custom-calendar/custom-calendar.component.mjs +8 -5
- package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +13 -14
- package/esm2022/lib/components/custom-model/custom-model.component.mjs +5 -3
- package/esm2022/lib/components/custom-radio/custom-radio.component.mjs +8 -11
- package/esm2022/lib/components/datatable/datatable.component.mjs +7 -8
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +13 -16
- package/esm2022/lib/components/icon-selector/icon-selector.component.mjs +4 -3
- package/esm2022/lib/components/list-view-filter/list-view-filter.component.mjs +9 -9
- package/esm2022/lib/components/nxt-input/nxt-input.component.mjs +24 -12
- package/esm2022/lib/components/pagination/pagination.component.mjs +3 -3
- package/esm2022/lib/components/pick-location/pick-location.component.mjs +10 -13
- package/esm2022/lib/components/search-box/search-box.component.mjs +14 -15
- package/esm2022/lib/nxt-app.module.mjs +9 -33
- package/esm2022/lib/pages/booklet/booklet.component.mjs +31 -56
- package/esm2022/lib/pages/builder/element/element.component.mjs +68 -36
- package/esm2022/lib/pages/builder/form/form.component.mjs +6 -3
- package/esm2022/lib/pages/builder/properties/common-fields.constants.mjs +3 -3
- package/esm2022/lib/pages/builder/properties/properties.component.mjs +203 -78
- package/esm2022/lib/pages/builder/templates/templates.component.mjs +5 -4
- package/esm2022/lib/pages/pdfDesigner/pdf-designer/pdf-designer.component.mjs +5 -4
- package/esm2022/lib/pages/pdfDesigner/pdf-properties/pdf-properties.component.mjs +42 -45
- package/esm2022/lib/pages/questionbook/questionbook.component.mjs +18 -40
- package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +17 -17
- package/esm2022/lib/pipe/custom-translate.pipe.mjs +16 -10
- package/esm2022/lib/services/change/change.service.mjs +46 -0
- package/esm2022/lib/services/country/country.service.mjs +135 -0
- package/esm2022/lib/services/data/data.service.mjs +100 -0
- package/esm2022/lib/services/form-builder/form-builder.service.mjs +500 -0
- package/esm2022/lib/services/pdf-designer/pdf-designer.service.mjs +398 -0
- package/esm2022/lib/services/salesforce/salesforce.service.mjs +41 -0
- package/esm2022/lib/services/shared/shared.service.mjs +100 -0
- package/esm2022/lib/services/storage/storage.service.mjs +59 -0
- package/esm2022/lib/services/template/template.service.mjs +351 -0
- package/esm2022/lib/services/translation/translation.service.mjs +121 -0
- package/esm2022/public-api.mjs +2 -5
- package/fesm2022/rangertechnologies-ngnxt.mjs +1265 -1259
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/button/nxt-button.component.d.ts +1 -1
- package/lib/components/custom-calendar/custom-calendar.component.d.ts +1 -1
- package/lib/components/custom-dropdown/custom-dropdown.component.d.ts +3 -5
- package/lib/components/custom-radio/custom-radio.component.d.ts +3 -5
- package/lib/components/datatable/datatable.component.d.ts +3 -3
- package/lib/components/file-upload/file-upload.component.d.ts +3 -5
- package/lib/components/image-cropper/component/image-cropper.component.d.ts +1 -1
- package/lib/components/nxt-input/nxt-input.component.d.ts +2 -2
- package/lib/components/pick-location/pick-location.component.d.ts +1 -3
- package/lib/components/search-box/search-box.component.d.ts +5 -7
- package/lib/nxt-app.module.d.ts +15 -17
- package/lib/pages/booklet/booklet.component.d.ts +9 -9
- package/lib/pages/builder/element/element.component.d.ts +10 -4
- package/lib/pages/builder/form/form.component.d.ts +2 -1
- package/lib/pages/builder/properties/properties.component.d.ts +34 -6
- package/lib/pages/builder/templates/templates.component.d.ts +1 -1
- package/lib/pages/pdfDesigner/pdf-designer/pdf-designer.component.d.ts +1 -1
- package/lib/pages/pdfDesigner/pdf-properties/pdf-properties.component.d.ts +19 -2
- package/lib/pages/questionbook/questionbook.component.d.ts +7 -11
- package/lib/pages/questionnaire/questionnaire.component.d.ts +7 -8
- package/lib/pipe/custom-translate.pipe.d.ts +2 -3
- package/lib/services/{form-builder.service.d.ts → form-builder/form-builder.service.d.ts} +2 -2
- package/lib/services/{pdf-designer.service.d.ts → pdf-designer/pdf-designer.service.d.ts} +1 -1
- package/lib/services/{storage.service.d.ts → storage/storage.service.d.ts} +2 -2
- package/lib/services/{translation.service.d.ts → translation/translation.service.d.ts} +12 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -3
- package/rangertechnologies-ngnxt-2.1.253.tgz +0 -0
- package/esm2022/lib/ar.i18n.mjs +0 -29
- package/esm2022/lib/en.i18n.mjs +0 -29
- package/esm2022/lib/i18n-config.service.mjs +0 -4
- package/esm2022/lib/i18n.component.mjs +0 -45
- package/esm2022/lib/i18n.module.mjs +0 -38
- package/esm2022/lib/i18n.pipe.mjs +0 -26
- package/esm2022/lib/i18n.service.mjs +0 -56
- package/esm2022/lib/interfaces/apimeta.mjs +0 -2
- package/esm2022/lib/services/change.service.mjs +0 -46
- package/esm2022/lib/services/country.service.mjs +0 -135
- package/esm2022/lib/services/data.service.mjs +0 -100
- package/esm2022/lib/services/form-builder.service.mjs +0 -402
- package/esm2022/lib/services/pdf-designer.service.mjs +0 -398
- package/esm2022/lib/services/salesforce.service.mjs +0 -41
- package/esm2022/lib/services/shared.service.mjs +0 -100
- package/esm2022/lib/services/storage.service.mjs +0 -59
- package/esm2022/lib/services/template.service.mjs +0 -351
- package/esm2022/lib/services/translation.service.mjs +0 -61
- package/esm2022/lib/tam.i18n.mjs +0 -29
- package/lib/ar.i18n.d.ts +0 -24
- package/lib/en.i18n.d.ts +0 -24
- package/lib/i18n-config.service.d.ts +0 -2
- package/lib/i18n.component.d.ts +0 -11
- package/lib/i18n.module.d.ts +0 -9
- package/lib/i18n.pipe.d.ts +0 -10
- package/lib/i18n.service.d.ts +0 -14
- package/lib/interfaces/apimeta.d.ts +0 -15
- package/lib/tam.i18n.d.ts +0 -24
- package/rangertechnologies-ngnxt-2.1.252.tgz +0 -0
- /package/lib/services/{change.service.d.ts → change/change.service.d.ts} +0 -0
- /package/lib/services/{country.service.d.ts → country/country.service.d.ts} +0 -0
- /package/lib/services/{data.service.d.ts → data/data.service.d.ts} +0 -0
- /package/lib/services/{salesforce.service.d.ts → salesforce/salesforce.service.d.ts} +0 -0
- /package/lib/services/{shared.service.d.ts → shared/shared.service.d.ts} +0 -0
- /package/lib/services/{template.service.d.ts → template/template.service.d.ts} +0 -0
package/lib/i18n.pipe.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { I18nService } from './i18n.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class I18nPipe implements PipeTransform {
|
|
5
|
-
private i18nService;
|
|
6
|
-
constructor(i18nService: I18nService);
|
|
7
|
-
transform(value: any, ...args: any[]): any;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<I18nPipe, never>;
|
|
9
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<I18nPipe, "i18n", true>;
|
|
10
|
-
}
|
package/lib/i18n.service.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class I18nService {
|
|
4
|
-
langList: any;
|
|
5
|
-
private document;
|
|
6
|
-
dropdownChanged: EventEmitter<string>;
|
|
7
|
-
currentLanguage: string;
|
|
8
|
-
constructor(langList: any, document: Document);
|
|
9
|
-
initLang(): void;
|
|
10
|
-
getString(key: any): any;
|
|
11
|
-
languageChange(lang: any): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<I18nService, never>;
|
|
13
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<I18nService>;
|
|
14
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export interface APIMeta {
|
|
2
|
-
defaultField: any;
|
|
3
|
-
sourceQuestionId: any;
|
|
4
|
-
valueField: string;
|
|
5
|
-
labelField: string;
|
|
6
|
-
endpoint: string;
|
|
7
|
-
variable: string;
|
|
8
|
-
field: any;
|
|
9
|
-
isDependentField: boolean;
|
|
10
|
-
dependentValue: string;
|
|
11
|
-
queryField: string;
|
|
12
|
-
queryValue: string;
|
|
13
|
-
queryValueReference: string;
|
|
14
|
-
uniqueKey: string;
|
|
15
|
-
}
|
package/lib/tam.i18n.d.ts
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
declare const tamI18n: {
|
|
2
|
-
required: string;
|
|
3
|
-
addMore: string;
|
|
4
|
-
select: string;
|
|
5
|
-
attachment: string;
|
|
6
|
-
chooseFiles: string;
|
|
7
|
-
uploadFile: string;
|
|
8
|
-
thisFieldIsRequired: string;
|
|
9
|
-
pickYourLocation: string;
|
|
10
|
-
calibrated: string;
|
|
11
|
-
enterValue: string;
|
|
12
|
-
details: string;
|
|
13
|
-
pleaseMakeChoice: string;
|
|
14
|
-
attach: string;
|
|
15
|
-
add: string;
|
|
16
|
-
zeroOfZero: string;
|
|
17
|
-
selectDate: string;
|
|
18
|
-
toBuyTicket: string;
|
|
19
|
-
pickLocation: string;
|
|
20
|
-
enterLocation: string;
|
|
21
|
-
searchNearestLocation: string;
|
|
22
|
-
currentTheme: string;
|
|
23
|
-
};
|
|
24
|
-
export default tamI18n;
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|