@vality/matez 22.0.1-ccdb67f.0 → 22.0.1-e480856.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.
package/package.json
CHANGED
package/types/vality-matez.d.ts
CHANGED
|
@@ -243,6 +243,9 @@ type ComponentChanges<T> = {
|
|
|
243
243
|
|
|
244
244
|
declare function getValueChanges<T>(form: AbstractControl<FormControlState<T> | T>): Observable<T>;
|
|
245
245
|
|
|
246
|
+
/**
|
|
247
|
+
* @deprecated Use FormControlValue
|
|
248
|
+
*/
|
|
246
249
|
declare abstract class AbstractControlSuperclass<OuterType, InnerType = OuterType> extends WrappedControlSuperclass<OuterType, InnerType> implements Validator, OnInit {
|
|
247
250
|
private _cdr;
|
|
248
251
|
private _destroyRef;
|
|
@@ -256,6 +259,9 @@ declare abstract class AbstractControlSuperclass<OuterType, InnerType = OuterTyp
|
|
|
256
259
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractControlSuperclass<any, any>, never, never, {}, {}, never, never, true, never>;
|
|
257
260
|
}
|
|
258
261
|
|
|
262
|
+
/**
|
|
263
|
+
* @deprecated Use FormControlValue
|
|
264
|
+
*/
|
|
259
265
|
declare abstract class FormGroupSuperclass<OuterType, InnerType = OuterType> extends AbstractControlSuperclass<OuterType, InnerType> implements OnInit {
|
|
260
266
|
protected emptyValue: InnerType;
|
|
261
267
|
setDisabledState(_isDisabled: boolean): void;
|
|
@@ -273,12 +279,18 @@ declare const createControlProviders: (component: () => Type<unknown>) => Provid
|
|
|
273
279
|
*/
|
|
274
280
|
declare function getErrorsTree(control: AbstractControl): ValidationErrors | null;
|
|
275
281
|
|
|
282
|
+
/**
|
|
283
|
+
* @deprecated Use FormControlValue
|
|
284
|
+
*/
|
|
276
285
|
declare class FormControlSuperclass<OuterType, InnerType = OuterType> extends AbstractControlSuperclass<OuterType, InnerType> {
|
|
277
286
|
control: FormControl<InnerType>;
|
|
278
287
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormControlSuperclass<any, any>, never>;
|
|
279
288
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlSuperclass<any, any>, never, never, {}, {}, never, never, true, never>;
|
|
280
289
|
}
|
|
281
290
|
|
|
291
|
+
/**
|
|
292
|
+
* @deprecated Use FormControlValue
|
|
293
|
+
*/
|
|
282
294
|
declare abstract class FormComponentSuperclass<OuterType> extends FormComponentSuperclass$1<OuterType> implements Validator, OnInit {
|
|
283
295
|
private _cdr;
|
|
284
296
|
private _destroyRef;
|
|
@@ -290,6 +302,9 @@ declare abstract class FormComponentSuperclass<OuterType> extends FormComponentS
|
|
|
290
302
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FormComponentSuperclass<any>, never, never, {}, {}, never, never, true, never>;
|
|
291
303
|
}
|
|
292
304
|
|
|
305
|
+
/**
|
|
306
|
+
* @deprecated Use FormControlValue
|
|
307
|
+
*/
|
|
293
308
|
declare abstract class FormArraySuperclass<OuterType extends unknown[], InnerType = OuterType> extends FormGroupSuperclass<OuterType, InnerType> {
|
|
294
309
|
protected outerToInnerValue(outer: OuterType): InnerType;
|
|
295
310
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormArraySuperclass<any, any>, never>;
|
|
@@ -1239,6 +1254,7 @@ interface BaseLink {
|
|
|
1239
1254
|
icon?: string;
|
|
1240
1255
|
children?: BaseLink[];
|
|
1241
1256
|
isHidden?: boolean;
|
|
1257
|
+
divider?: boolean;
|
|
1242
1258
|
}
|
|
1243
1259
|
type Link = PossiblyAsyncValue<Overwrite<BaseLink, {
|
|
1244
1260
|
children?: Link[];
|