@ng-formworks/material 16.3.0 → 17.3.0

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.
Files changed (55) hide show
  1. package/esm2022/lib/material-design-cssframework.mjs +18 -18
  2. package/esm2022/lib/material-design-framework.component.mjs +119 -119
  3. package/esm2022/lib/material-design-framework.module.mjs +116 -116
  4. package/esm2022/lib/material-design.framework.mjs +60 -60
  5. package/esm2022/lib/widgets/flex-layout-root.component.mjs +44 -44
  6. package/esm2022/lib/widgets/flex-layout-section.component.mjs +90 -90
  7. package/esm2022/lib/widgets/material-add-reference.component.mjs +49 -49
  8. package/esm2022/lib/widgets/material-button-group.component.mjs +39 -39
  9. package/esm2022/lib/widgets/material-button.component.mjs +51 -51
  10. package/esm2022/lib/widgets/material-checkbox.component.mjs +51 -51
  11. package/esm2022/lib/widgets/material-checkboxes.component.mjs +64 -64
  12. package/esm2022/lib/widgets/material-chip-list.component.mjs +35 -35
  13. package/esm2022/lib/widgets/material-datepicker.component.mjs +44 -44
  14. package/esm2022/lib/widgets/material-file.component.mjs +35 -35
  15. package/esm2022/lib/widgets/material-input.component.mjs +48 -48
  16. package/esm2022/lib/widgets/material-number.component.mjs +52 -52
  17. package/esm2022/lib/widgets/material-one-of.component.mjs +35 -35
  18. package/esm2022/lib/widgets/material-radios.component.mjs +43 -43
  19. package/esm2022/lib/widgets/material-select.component.mjs +51 -51
  20. package/esm2022/lib/widgets/material-slider.component.mjs +40 -40
  21. package/esm2022/lib/widgets/material-stepper.component.mjs +35 -35
  22. package/esm2022/lib/widgets/material-tabs.component.mjs +51 -51
  23. package/esm2022/lib/widgets/material-textarea.component.mjs +45 -45
  24. package/esm2022/lib/widgets/public_api.mjs +51 -51
  25. package/esm2022/ng-formworks-material.mjs +4 -4
  26. package/esm2022/public_api.mjs +7 -7
  27. package/fesm2022/ng-formworks-material.mjs +1001 -1001
  28. package/fesm2022/ng-formworks-material.mjs.map +1 -1
  29. package/index.d.ts +5 -5
  30. package/lib/material-design-cssframework.d.ts +1 -1
  31. package/lib/material-design-framework.component.d.ts +35 -35
  32. package/lib/material-design-framework.module.d.ts +61 -61
  33. package/lib/material-design.framework.d.ts +46 -46
  34. package/lib/widgets/flex-layout-root.component.d.ts +15 -15
  35. package/lib/widgets/flex-layout-section.component.d.ts +25 -25
  36. package/lib/widgets/material-add-reference.component.d.ts +20 -20
  37. package/lib/widgets/material-button-group.component.d.ts +23 -23
  38. package/lib/widgets/material-button.component.d.ts +24 -24
  39. package/lib/widgets/material-checkbox.component.d.ts +25 -25
  40. package/lib/widgets/material-checkboxes.component.d.ts +27 -27
  41. package/lib/widgets/material-chip-list.component.d.ts +21 -21
  42. package/lib/widgets/material-datepicker.component.d.ts +22 -22
  43. package/lib/widgets/material-file.component.d.ts +21 -21
  44. package/lib/widgets/material-input.component.d.ts +23 -23
  45. package/lib/widgets/material-number.component.d.ts +26 -26
  46. package/lib/widgets/material-one-of.component.d.ts +21 -21
  47. package/lib/widgets/material-radios.component.d.ts +23 -23
  48. package/lib/widgets/material-select.component.d.ts +24 -24
  49. package/lib/widgets/material-slider.component.d.ts +25 -25
  50. package/lib/widgets/material-stepper.component.d.ts +21 -21
  51. package/lib/widgets/material-tabs.component.d.ts +20 -20
  52. package/lib/widgets/material-textarea.component.d.ts +22 -22
  53. package/lib/widgets/public_api.d.ts +41 -41
  54. package/package.json +5 -5
  55. package/public_api.d.ts +4 -4
@@ -1,27 +1,27 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService, TitleMapItem } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialCheckboxesComponent implements OnInit {
6
- private jsf;
7
- formControl: AbstractControl;
8
- controlName: string;
9
- controlValue: any;
10
- controlDisabled: boolean;
11
- boundControl: boolean;
12
- options: any;
13
- horizontalList: boolean;
14
- formArray: AbstractControl;
15
- checkboxList: TitleMapItem[];
16
- layoutNode: any;
17
- layoutIndex: number[];
18
- dataIndex: number[];
19
- constructor(jsf: JsonSchemaFormService);
20
- ngOnInit(): void;
21
- get allChecked(): boolean;
22
- get someChecked(): boolean;
23
- updateValue(): void;
24
- updateAllValues(event: any): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialCheckboxesComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialCheckboxesComponent, "material-checkboxes-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
27
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService, TitleMapItem } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialCheckboxesComponent implements OnInit {
6
+ private jsf;
7
+ formControl: AbstractControl;
8
+ controlName: string;
9
+ controlValue: any;
10
+ controlDisabled: boolean;
11
+ boundControl: boolean;
12
+ options: any;
13
+ horizontalList: boolean;
14
+ formArray: AbstractControl;
15
+ checkboxList: TitleMapItem[];
16
+ layoutNode: any;
17
+ layoutIndex: number[];
18
+ dataIndex: number[];
19
+ constructor(jsf: JsonSchemaFormService);
20
+ ngOnInit(): void;
21
+ get allChecked(): boolean;
22
+ get someChecked(): boolean;
23
+ updateValue(): void;
24
+ updateAllValues(event: any): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialCheckboxesComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialCheckboxesComponent, "material-checkboxes-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
27
+ }
@@ -1,21 +1,21 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialChipListComponent implements OnInit {
6
- private jsf;
7
- formControl: AbstractControl;
8
- controlName: string;
9
- controlValue: any;
10
- controlDisabled: boolean;
11
- boundControl: boolean;
12
- options: any;
13
- layoutNode: any;
14
- layoutIndex: number[];
15
- dataIndex: number[];
16
- constructor(jsf: JsonSchemaFormService);
17
- ngOnInit(): void;
18
- updateValue(event: any): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialChipListComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialChipListComponent, "material-chip-list-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
21
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialChipListComponent implements OnInit {
6
+ private jsf;
7
+ formControl: AbstractControl;
8
+ controlName: string;
9
+ controlValue: any;
10
+ controlDisabled: boolean;
11
+ boundControl: boolean;
12
+ options: any;
13
+ layoutNode: any;
14
+ layoutIndex: number[];
15
+ dataIndex: number[];
16
+ constructor(jsf: JsonSchemaFormService);
17
+ ngOnInit(): void;
18
+ updateValue(event: any): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialChipListComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialChipListComponent, "material-chip-list-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
21
+ }
@@ -1,22 +1,22 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialDatepickerComponent implements OnInit {
6
- matFormFieldDefaultOptions: any;
7
- private jsf;
8
- formControl: AbstractControl;
9
- controlName: string;
10
- dateValue: any;
11
- controlDisabled: boolean;
12
- boundControl: boolean;
13
- options: any;
14
- autoCompleteList: string[];
15
- layoutNode: any;
16
- layoutIndex: number[];
17
- dataIndex: number[];
18
- constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
19
- ngOnInit(): void;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialDatepickerComponent, [{ optional: true; }, null]>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialDatepickerComponent, "material-datepicker-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
22
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialDatepickerComponent implements OnInit {
6
+ matFormFieldDefaultOptions: any;
7
+ private jsf;
8
+ formControl: AbstractControl;
9
+ controlName: string;
10
+ dateValue: any;
11
+ controlDisabled: boolean;
12
+ boundControl: boolean;
13
+ options: any;
14
+ autoCompleteList: string[];
15
+ layoutNode: any;
16
+ layoutIndex: number[];
17
+ dataIndex: number[];
18
+ constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
19
+ ngOnInit(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialDatepickerComponent, [{ optional: true; }, null]>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialDatepickerComponent, "material-datepicker-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
22
+ }
@@ -1,21 +1,21 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialFileComponent implements OnInit {
6
- private jsf;
7
- formControl: AbstractControl;
8
- controlName: string;
9
- controlValue: any;
10
- controlDisabled: boolean;
11
- boundControl: boolean;
12
- options: any;
13
- layoutNode: any;
14
- layoutIndex: number[];
15
- dataIndex: number[];
16
- constructor(jsf: JsonSchemaFormService);
17
- ngOnInit(): void;
18
- updateValue(event: any): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialFileComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialFileComponent, "material-file-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
21
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialFileComponent implements OnInit {
6
+ private jsf;
7
+ formControl: AbstractControl;
8
+ controlName: string;
9
+ controlValue: any;
10
+ controlDisabled: boolean;
11
+ boundControl: boolean;
12
+ options: any;
13
+ layoutNode: any;
14
+ layoutIndex: number[];
15
+ dataIndex: number[];
16
+ constructor(jsf: JsonSchemaFormService);
17
+ ngOnInit(): void;
18
+ updateValue(event: any): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialFileComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialFileComponent, "material-file-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
21
+ }
@@ -1,23 +1,23 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialInputComponent implements OnInit {
6
- matFormFieldDefaultOptions: any;
7
- private jsf;
8
- formControl: AbstractControl;
9
- controlName: string;
10
- controlValue: string;
11
- controlDisabled: boolean;
12
- boundControl: boolean;
13
- options: any;
14
- autoCompleteList: string[];
15
- layoutNode: any;
16
- layoutIndex: number[];
17
- dataIndex: number[];
18
- constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
19
- ngOnInit(): void;
20
- updateValue(event: any): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialInputComponent, [{ optional: true; }, null]>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialInputComponent, "material-input-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
23
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialInputComponent implements OnInit {
6
+ matFormFieldDefaultOptions: any;
7
+ private jsf;
8
+ formControl: AbstractControl;
9
+ controlName: string;
10
+ controlValue: string;
11
+ controlDisabled: boolean;
12
+ boundControl: boolean;
13
+ options: any;
14
+ autoCompleteList: string[];
15
+ layoutNode: any;
16
+ layoutIndex: number[];
17
+ dataIndex: number[];
18
+ constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
19
+ ngOnInit(): void;
20
+ updateValue(event: any): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialInputComponent, [{ optional: true; }, null]>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialInputComponent, "material-input-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
23
+ }
@@ -1,26 +1,26 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialNumberComponent implements OnInit {
6
- matFormFieldDefaultOptions: any;
7
- private jsf;
8
- formControl: AbstractControl;
9
- controlName: string;
10
- controlValue: any;
11
- controlDisabled: boolean;
12
- boundControl: boolean;
13
- options: any;
14
- allowNegative: boolean;
15
- allowDecimal: boolean;
16
- allowExponents: boolean;
17
- lastValidNumber: string;
18
- layoutNode: any;
19
- layoutIndex: number[];
20
- dataIndex: number[];
21
- constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
22
- ngOnInit(): void;
23
- updateValue(event: any): void;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialNumberComponent, [{ optional: true; }, null]>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialNumberComponent, "material-number-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
26
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialNumberComponent implements OnInit {
6
+ matFormFieldDefaultOptions: any;
7
+ private jsf;
8
+ formControl: AbstractControl;
9
+ controlName: string;
10
+ controlValue: any;
11
+ controlDisabled: boolean;
12
+ boundControl: boolean;
13
+ options: any;
14
+ allowNegative: boolean;
15
+ allowDecimal: boolean;
16
+ allowExponents: boolean;
17
+ lastValidNumber: string;
18
+ layoutNode: any;
19
+ layoutIndex: number[];
20
+ dataIndex: number[];
21
+ constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
22
+ ngOnInit(): void;
23
+ updateValue(event: any): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialNumberComponent, [{ optional: true; }, null]>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialNumberComponent, "material-number-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
26
+ }
@@ -1,21 +1,21 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialOneOfComponent implements OnInit {
6
- private jsf;
7
- formControl: AbstractControl;
8
- controlName: string;
9
- controlValue: any;
10
- controlDisabled: boolean;
11
- boundControl: boolean;
12
- options: any;
13
- layoutNode: any;
14
- layoutIndex: number[];
15
- dataIndex: number[];
16
- constructor(jsf: JsonSchemaFormService);
17
- ngOnInit(): void;
18
- updateValue(event: any): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialOneOfComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialOneOfComponent, "material-one-of-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
21
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialOneOfComponent implements OnInit {
6
+ private jsf;
7
+ formControl: AbstractControl;
8
+ controlName: string;
9
+ controlValue: any;
10
+ controlDisabled: boolean;
11
+ boundControl: boolean;
12
+ options: any;
13
+ layoutNode: any;
14
+ layoutIndex: number[];
15
+ dataIndex: number[];
16
+ constructor(jsf: JsonSchemaFormService);
17
+ ngOnInit(): void;
18
+ updateValue(event: any): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialOneOfComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialOneOfComponent, "material-one-of-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
21
+ }
@@ -1,23 +1,23 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialRadiosComponent implements OnInit {
6
- private jsf;
7
- formControl: AbstractControl;
8
- controlName: string;
9
- controlValue: any;
10
- controlDisabled: boolean;
11
- boundControl: boolean;
12
- options: any;
13
- flexDirection: string;
14
- radiosList: any[];
15
- layoutNode: any;
16
- layoutIndex: number[];
17
- dataIndex: number[];
18
- constructor(jsf: JsonSchemaFormService);
19
- ngOnInit(): void;
20
- updateValue(value: any): void;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialRadiosComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialRadiosComponent, "material-radios-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
23
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialRadiosComponent implements OnInit {
6
+ private jsf;
7
+ formControl: AbstractControl;
8
+ controlName: string;
9
+ controlValue: any;
10
+ controlDisabled: boolean;
11
+ boundControl: boolean;
12
+ options: any;
13
+ flexDirection: string;
14
+ radiosList: any[];
15
+ layoutNode: any;
16
+ layoutIndex: number[];
17
+ dataIndex: number[];
18
+ constructor(jsf: JsonSchemaFormService);
19
+ ngOnInit(): void;
20
+ updateValue(value: any): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialRadiosComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialRadiosComponent, "material-radios-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
23
+ }
@@ -1,24 +1,24 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService, isArray } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialSelectComponent implements OnInit {
6
- matFormFieldDefaultOptions: any;
7
- private jsf;
8
- formControl: AbstractControl;
9
- controlName: string;
10
- controlValue: any;
11
- controlDisabled: boolean;
12
- boundControl: boolean;
13
- options: any;
14
- selectList: any[];
15
- isArray: typeof isArray;
16
- layoutNode: any;
17
- layoutIndex: number[];
18
- dataIndex: number[];
19
- constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
20
- ngOnInit(): void;
21
- updateValue(event: any): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialSelectComponent, [{ optional: true; }, null]>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialSelectComponent, "material-select-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
24
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService, isArray } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialSelectComponent implements OnInit {
6
+ matFormFieldDefaultOptions: any;
7
+ private jsf;
8
+ formControl: AbstractControl;
9
+ controlName: string;
10
+ controlValue: any;
11
+ controlDisabled: boolean;
12
+ boundControl: boolean;
13
+ options: any;
14
+ selectList: any[];
15
+ isArray: typeof isArray;
16
+ layoutNode: any;
17
+ layoutIndex: number[];
18
+ dataIndex: number[];
19
+ constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
20
+ ngOnInit(): void;
21
+ updateValue(event: any): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialSelectComponent, [{ optional: true; }, null]>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialSelectComponent, "material-select-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
24
+ }
@@ -1,25 +1,25 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialSliderComponent implements OnInit {
6
- private jsf;
7
- formControl: AbstractControl;
8
- controlName: string;
9
- controlValue: any;
10
- controlDisabled: boolean;
11
- boundControl: boolean;
12
- options: any;
13
- allowNegative: boolean;
14
- allowDecimal: boolean;
15
- allowExponents: boolean;
16
- lastValidNumber: string;
17
- layoutNode: any;
18
- layoutIndex: number[];
19
- dataIndex: number[];
20
- constructor(jsf: JsonSchemaFormService);
21
- ngOnInit(): void;
22
- updateValue(event: any): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialSliderComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialSliderComponent, "material-slider-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
25
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialSliderComponent implements OnInit {
6
+ private jsf;
7
+ formControl: AbstractControl;
8
+ controlName: string;
9
+ controlValue: any;
10
+ controlDisabled: boolean;
11
+ boundControl: boolean;
12
+ options: any;
13
+ allowNegative: boolean;
14
+ allowDecimal: boolean;
15
+ allowExponents: boolean;
16
+ lastValidNumber: string;
17
+ layoutNode: any;
18
+ layoutIndex: number[];
19
+ dataIndex: number[];
20
+ constructor(jsf: JsonSchemaFormService);
21
+ ngOnInit(): void;
22
+ updateValue(event: any): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialSliderComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialSliderComponent, "material-slider-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
25
+ }
@@ -1,21 +1,21 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialStepperComponent implements OnInit {
6
- private jsf;
7
- formControl: AbstractControl;
8
- controlName: string;
9
- controlValue: any;
10
- controlDisabled: boolean;
11
- boundControl: boolean;
12
- options: any;
13
- layoutNode: any;
14
- layoutIndex: number[];
15
- dataIndex: number[];
16
- constructor(jsf: JsonSchemaFormService);
17
- ngOnInit(): void;
18
- updateValue(event: any): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialStepperComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialStepperComponent, "material-stepper-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
21
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialStepperComponent implements OnInit {
6
+ private jsf;
7
+ formControl: AbstractControl;
8
+ controlName: string;
9
+ controlValue: any;
10
+ controlDisabled: boolean;
11
+ boundControl: boolean;
12
+ options: any;
13
+ layoutNode: any;
14
+ layoutIndex: number[];
15
+ dataIndex: number[];
16
+ constructor(jsf: JsonSchemaFormService);
17
+ ngOnInit(): void;
18
+ updateValue(event: any): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialStepperComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialStepperComponent, "material-stepper-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
21
+ }
@@ -1,20 +1,20 @@
1
- import { OnInit } from '@angular/core';
2
- import { JsonSchemaFormService } from '@ng-formworks/core';
3
- import * as i0 from "@angular/core";
4
- export declare class MaterialTabsComponent implements OnInit {
5
- private jsf;
6
- options: any;
7
- itemCount: number;
8
- selectedItem: number;
9
- showAddTab: boolean;
10
- layoutNode: any;
11
- layoutIndex: number[];
12
- dataIndex: number[];
13
- constructor(jsf: JsonSchemaFormService);
14
- ngOnInit(): void;
15
- select(index: any): void;
16
- updateControl(): void;
17
- setTabTitle(item: any, index: number): string;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialTabsComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialTabsComponent, "material-tabs-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
20
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { JsonSchemaFormService } from '@ng-formworks/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MaterialTabsComponent implements OnInit {
5
+ private jsf;
6
+ options: any;
7
+ itemCount: number;
8
+ selectedItem: number;
9
+ showAddTab: boolean;
10
+ layoutNode: any;
11
+ layoutIndex: number[];
12
+ dataIndex: number[];
13
+ constructor(jsf: JsonSchemaFormService);
14
+ ngOnInit(): void;
15
+ select(index: any): void;
16
+ updateControl(): void;
17
+ setTabTitle(item: any, index: number): string;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialTabsComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialTabsComponent, "material-tabs-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
20
+ }
@@ -1,22 +1,22 @@
1
- import { OnInit } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { JsonSchemaFormService } from '@ng-formworks/core';
4
- import * as i0 from "@angular/core";
5
- export declare class MaterialTextareaComponent implements OnInit {
6
- matFormFieldDefaultOptions: any;
7
- private jsf;
8
- formControl: AbstractControl;
9
- controlName: string;
10
- controlValue: any;
11
- controlDisabled: boolean;
12
- boundControl: boolean;
13
- options: any;
14
- layoutNode: any;
15
- layoutIndex: number[];
16
- dataIndex: number[];
17
- constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
18
- ngOnInit(): void;
19
- updateValue(event: any): void;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<MaterialTextareaComponent, [{ optional: true; }, null]>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<MaterialTextareaComponent, "material-textarea-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
22
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { JsonSchemaFormService } from '@ng-formworks/core';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MaterialTextareaComponent implements OnInit {
6
+ matFormFieldDefaultOptions: any;
7
+ private jsf;
8
+ formControl: AbstractControl;
9
+ controlName: string;
10
+ controlValue: any;
11
+ controlDisabled: boolean;
12
+ boundControl: boolean;
13
+ options: any;
14
+ layoutNode: any;
15
+ layoutIndex: number[];
16
+ dataIndex: number[];
17
+ constructor(matFormFieldDefaultOptions: any, jsf: JsonSchemaFormService);
18
+ ngOnInit(): void;
19
+ updateValue(event: any): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialTextareaComponent, [{ optional: true; }, null]>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<MaterialTextareaComponent, "material-textarea-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; }; "dataIndex": { "alias": "dataIndex"; "required": false; }; }, {}, never, never, false, never>;
22
+ }