@ng-formworks/material 17.6.2 → 17.6.5
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/material-design-framework.component.mjs +2 -2
- package/esm2022/lib/material-design.framework.mjs +2 -1
- package/esm2022/lib/widgets/material-one-of.component.mjs +2 -2
- package/esm2022/lib/widgets/material-slider.component.mjs +4 -1
- package/fesm2022/ng-formworks-material.mjs +7 -3
- package/fesm2022/ng-formworks-material.mjs.map +1 -1
- package/lib/material-design.framework.d.ts +1 -0
- package/lib/widgets/material-slider.component.d.ts +3 -2
- package/lib/widgets/public_api.d.ts +1 -1
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { AbstractControl } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MaterialSliderComponent implements OnInit {
|
|
4
|
+
export declare class MaterialSliderComponent implements OnInit, OnDestroy {
|
|
5
5
|
private jsf;
|
|
6
6
|
formControl: AbstractControl;
|
|
7
7
|
controlName: string;
|
|
@@ -21,6 +21,7 @@ export declare class MaterialSliderComponent implements OnInit {
|
|
|
21
21
|
onTouchStart(e: any): void;
|
|
22
22
|
ngOnInit(): void;
|
|
23
23
|
updateValue(event: any): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialSliderComponent, never>;
|
|
25
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<MaterialSliderComponent, "material-slider-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; "isSignal": true; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; "isSignal": true; }; "dataIndex": { "alias": "dataIndex"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
26
27
|
}
|
|
@@ -18,7 +18,7 @@ import { MaterialSliderComponent } from './material-slider.component';
|
|
|
18
18
|
import { MaterialStepperComponent } from './material-stepper.component';
|
|
19
19
|
import { MaterialTabsComponent } from './material-tabs.component';
|
|
20
20
|
import { MaterialTextareaComponent } from './material-textarea.component';
|
|
21
|
-
export declare const MATERIAL_FRAMEWORK_COMPONENTS: (typeof
|
|
21
|
+
export declare const MATERIAL_FRAMEWORK_COMPONENTS: (typeof MaterialDesignFrameworkComponent | typeof FlexLayoutRootComponent | typeof FlexLayoutSectionComponent | typeof MaterialAddReferenceComponent | typeof MaterialButtonComponent | typeof MaterialButtonGroupComponent | typeof MaterialCheckboxComponent | typeof MaterialCheckboxesComponent | typeof MaterialChipListComponent | typeof MaterialDatepickerComponent | typeof MaterialFileComponent | typeof MaterialInputComponent | typeof MaterialNumberComponent | typeof MaterialTabsComponent | typeof MaterialOneOfComponent | typeof MaterialRadiosComponent | typeof MaterialSelectComponent | typeof MaterialSliderComponent | typeof MaterialStepperComponent | typeof MaterialTextareaComponent)[];
|
|
22
22
|
export { FlexLayoutRootComponent } from './flex-layout-root.component';
|
|
23
23
|
export { FlexLayoutSectionComponent } from './flex-layout-section.component';
|
|
24
24
|
export { MaterialAddReferenceComponent } from './material-add-reference.component';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-formworks/material",
|
|
3
|
-
"version": "17.6.
|
|
3
|
+
"version": "17.6.5",
|
|
4
4
|
"description": "Angular ng-formworks - JSON Schema Form builder using Angular Material UI",
|
|
5
5
|
"author": "https://github.com/zahmo/ng-formworks/graphs/contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"private": false,
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"lodash-es": "~4.17.21",
|
|
41
|
-
"@ng-formworks/core": "~17.6.
|
|
42
|
-
"@ng-formworks/cssframework": "~17.6.
|
|
41
|
+
"@ng-formworks/core": "~17.6.5",
|
|
42
|
+
"@ng-formworks/cssframework": "~17.6.5",
|
|
43
43
|
"tslib": "^2.0.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|