@covalent/dynamic-forms 11.0.0-beta.1 → 11.0.0-beta.3
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/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Type, Provider, TemplateRef,
|
|
3
|
-
import { ValidatorFn, UntypedFormControl, AbstractControl, UntypedFormGroup
|
|
2
|
+
import { Type, Provider, TemplateRef, ChangeDetectorRef, OnInit, OnChanges, ViewContainerRef, SimpleChanges, AfterContentInit, OnDestroy, QueryList } from '@angular/core';
|
|
3
|
+
import { ValidatorFn, UntypedFormControl, AbstractControl, UntypedFormGroup } from '@angular/forms';
|
|
4
4
|
import { CdkPortal } from '@angular/cdk/portal';
|
|
5
5
|
import { IControlValueAccessor } from '@covalent/core/common';
|
|
6
6
|
|
|
@@ -84,13 +84,12 @@ declare const _TdDynamicElementMixinBase: (new (...args: any[]) => IControlValue
|
|
|
84
84
|
declare class TdDynamicFormsErrorTemplateDirective extends CdkPortal {
|
|
85
85
|
templateRef: TemplateRef<any>;
|
|
86
86
|
tdDynamicFormsError?: string;
|
|
87
|
-
constructor(
|
|
87
|
+
constructor();
|
|
88
88
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdDynamicFormsErrorTemplateDirective, never>;
|
|
89
89
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TdDynamicFormsErrorTemplateDirective, "[tdDynamicFormsError]ng-template", never, { "tdDynamicFormsError": { "alias": "tdDynamicFormsError"; "required": false; }; }, {}, never, never, true, never>;
|
|
90
90
|
}
|
|
91
91
|
declare class TdDynamicElementDirective {
|
|
92
92
|
viewContainer: ViewContainerRef;
|
|
93
|
-
constructor(viewContainer: ViewContainerRef);
|
|
94
93
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdDynamicElementDirective, never>;
|
|
95
94
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TdDynamicElementDirective, "[tdDynamicContainer]", never, {}, {}, never, never, true, never>;
|
|
96
95
|
}
|
|
@@ -162,7 +161,7 @@ declare class TdDynamicElementComponent extends _TdDynamicElementMixinBase imple
|
|
|
162
161
|
childElement: TdDynamicElementDirective;
|
|
163
162
|
get maxAttr(): any;
|
|
164
163
|
get minAttr(): any;
|
|
165
|
-
constructor(
|
|
164
|
+
constructor();
|
|
166
165
|
ngOnInit(): void;
|
|
167
166
|
/**
|
|
168
167
|
* Reassign any inputs that have changed
|
|
@@ -214,7 +213,7 @@ declare class TdDynamicFormsComponent implements AfterContentInit, OnDestroy {
|
|
|
214
213
|
get controls(): {
|
|
215
214
|
[key: string]: AbstractControl;
|
|
216
215
|
};
|
|
217
|
-
constructor(
|
|
216
|
+
constructor();
|
|
218
217
|
ngAfterContentInit(): void;
|
|
219
218
|
ngOnDestroy(): void;
|
|
220
219
|
/**
|
|
@@ -307,7 +306,6 @@ declare class TdDynamicSliderComponent {
|
|
|
307
306
|
hint: string;
|
|
308
307
|
min?: number;
|
|
309
308
|
max?: number;
|
|
310
|
-
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
311
309
|
_handleBlur(): void;
|
|
312
310
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdDynamicSliderComponent, never>;
|
|
313
311
|
static ɵcmp: i0.ɵɵComponentDeclaration<TdDynamicSliderComponent, "td-dynamic-slider", never, {}, {}, never, never, true, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@covalent/dynamic-forms",
|
|
3
|
-
"version": "11.0.0-beta.
|
|
3
|
+
"version": "11.0.0-beta.3",
|
|
4
4
|
"description": "Teradata UI Platform Dynamic Forms Module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@angular/common": "20.x.x",
|
|
23
23
|
"@angular/core": "20.x.x",
|
|
24
|
-
"@covalent/core": "11.0.0-beta.
|
|
24
|
+
"@covalent/core": "11.0.0-beta.3"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"tslib": "^2.8.1"
|