fx-form-builder-wrapper 2.0.62 → 2.0.64

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.
@@ -1,7 +1,7 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { AfterViewInit, ChangeDetectorRef, OnInit } from '@angular/core';
3
3
  import { FormGroup } from '@angular/forms';
4
- import { FxBaseComponent, FxSetting, FxValidation } from '@instantsys-labs/fx';
4
+ import { FxBaseComponent, FxComponent, FxSetting, FxValidation } from '@instantsys-labs/fx';
5
5
  import { FxBuilderWrapperService } from '../../fx-builder-wrapper.service';
6
6
  import { ApiServiceRegistry } from '@instantsys-labs/core';
7
7
  import * as i0 from "@angular/core";
@@ -13,6 +13,8 @@ export declare class DropdownWithOtherComponent extends FxBaseComponent implemen
13
13
  private fb;
14
14
  private destroy$;
15
15
  formObject: object;
16
+ dropdownMap: Map<string, any>;
17
+ fxComponent: FxComponent;
16
18
  options: any[];
17
19
  dropDownForm: FormGroup;
18
20
  constructor(cdr: ChangeDetectorRef, http: HttpClient, fxBuilderWrapperService: FxBuilderWrapperService, fxApiService: ApiServiceRegistry);
@@ -0,0 +1,31 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { AfterViewInit, ChangeDetectorRef, OnInit } from '@angular/core';
3
+ import { ApiServiceRegistry } from '@instantsys-labs/core';
4
+ import { FxBaseComponent, FxComponent, FxSetting, FxValidation } from '@instantsys-labs/fx';
5
+ import { FxBuilderWrapperService } from '../../fx-builder-wrapper.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class RadioGroupComponent extends FxBaseComponent implements OnInit, AfterViewInit {
8
+ private cdr;
9
+ private http;
10
+ private fxBuilderWrapperService;
11
+ private fxApiService;
12
+ private fb;
13
+ private destroy$;
14
+ formObject: object;
15
+ showOnSelection: 'yes' | 'no';
16
+ showTextArea: boolean;
17
+ confirmationForm: import("@angular/forms").FormGroup<{
18
+ confirmation: import("@angular/forms").FormControl<string | null>;
19
+ remarks: import("@angular/forms").FormControl<string | null>;
20
+ }>;
21
+ options: any[];
22
+ fxComponent: FxComponent;
23
+ constructor(cdr: ChangeDetectorRef, http: HttpClient, fxBuilderWrapperService: FxBuilderWrapperService, fxApiService: ApiServiceRegistry);
24
+ ngAfterViewInit(): void;
25
+ ngOnInit(): void;
26
+ protected settings(): FxSetting[];
27
+ protected validations(): FxValidation[];
28
+ onSelectionChange(selection: string): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "radio-group-custom", never, { "showOnSelection": { "alias": "showOnSelection"; "required": false; }; }, {}, never, never, true, never>;
31
+ }
@@ -56,6 +56,7 @@ export declare class UploaderComponent extends FxBaseComponent implements OnInit
56
56
  private fetchAndLoadModel;
57
57
  private loadFile;
58
58
  closeFileDialog(): void;
59
+ closeStlDialog(): void;
59
60
  static ɵfac: i0.ɵɵFactoryDeclaration<UploaderComponent, never>;
60
61
  static ɵcmp: i0.ɵɵComponentDeclaration<UploaderComponent, "fx-uploader", never, {}, {}, never, never, true, never>;
61
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fx-form-builder-wrapper",
3
- "version": "2.0.62",
3
+ "version": "2.0.64",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0",