@rangertechnologies/ngnxt 2.1.86 → 2.1.87
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/lib/components/custom-rich-text/custom-rich-text.component.mjs +6 -5
- package/esm2022/lib/components/search-box/search-box.component.mjs +16 -12
- package/esm2022/lib/pages/builder/element/element.component.mjs +17 -5
- package/esm2022/lib/pages/builder/properties/properties.component.mjs +9 -28
- package/fesm2022/rangertechnologies-ngnxt.mjs +43 -45
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/custom-rich-text/custom-rich-text.component.d.ts +1 -1
- package/lib/pages/builder/element/element.component.d.ts +4 -0
- package/lib/pages/builder/properties/properties.component.d.ts +4 -5
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.87.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.86.tgz +0 -0
|
@@ -22,7 +22,7 @@ export declare class CustomRichTextComponent implements OnInit, OnDestroy {
|
|
|
22
22
|
constructor(i18nService: I18nService, changeService: ChangeService);
|
|
23
23
|
ngOnInit(): void;
|
|
24
24
|
private initializeDependency;
|
|
25
|
-
|
|
25
|
+
onEditorFocusOut(): void;
|
|
26
26
|
ngOnDestroy(): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomRichTextComponent, never>;
|
|
28
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<CustomRichTextComponent, "app-custom-rich-text", never, { "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "error": { "alias": "error"; "required": false; }; "question": { "alias": "question"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; }, { "textValueChange": "textValueChange"; }, never, never, true, never>;
|
|
@@ -8,6 +8,10 @@ export declare class ElementComponent {
|
|
|
8
8
|
formContainer: ElementRef;
|
|
9
9
|
bookletJSON: any;
|
|
10
10
|
bookletId: any;
|
|
11
|
+
dropdownOpen: boolean;
|
|
12
|
+
field: any;
|
|
13
|
+
toggleDropdown(): void;
|
|
14
|
+
selectOption(option: string): void;
|
|
11
15
|
formElements: any[];
|
|
12
16
|
constructor(formBuilderService: FormBuilderService);
|
|
13
17
|
ngOnInit(): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
3
3
|
import { FormBuilderService } from '../../../services/form-builder.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class PropertiesComponent implements OnInit {
|
|
@@ -7,11 +7,10 @@ export declare class PropertiesComponent implements OnInit {
|
|
|
7
7
|
private formBuilderService;
|
|
8
8
|
colorWheel: ElementRef<HTMLCanvasElement>;
|
|
9
9
|
private ctx;
|
|
10
|
+
formButtonHandler: EventEmitter<any>;
|
|
10
11
|
selectedOption: string;
|
|
11
12
|
selectedElementIndex: number;
|
|
12
13
|
selectedElementType: string;
|
|
13
|
-
api: string;
|
|
14
|
-
apiMethod: string;
|
|
15
14
|
selectedAlign: string;
|
|
16
15
|
selectedStyles: string[];
|
|
17
16
|
errorMessage: string;
|
|
@@ -527,7 +526,7 @@ export declare class PropertiesComponent implements OnInit {
|
|
|
527
526
|
addOption(options: any[]): void;
|
|
528
527
|
removeOption(options: any[], index: number): void;
|
|
529
528
|
download(): void;
|
|
530
|
-
|
|
529
|
+
handleButtonClick(): void;
|
|
531
530
|
static ɵfac: i0.ɵɵFactoryDeclaration<PropertiesComponent, never>;
|
|
532
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PropertiesComponent, "app-properties", never, { "selectedElementType": { "alias": "selectedElementType"; "required": false; };
|
|
531
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PropertiesComponent, "app-properties", never, { "selectedElementType": { "alias": "selectedElementType"; "required": false; }; }, { "formButtonHandler": "formButtonHandler"; }, never, never, false, never>;
|
|
533
532
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|