matcha-components 20.74.0 → 20.76.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/index.d.ts
CHANGED
|
@@ -609,8 +609,13 @@ declare class MatchaFormFieldComponent implements AfterViewInit {
|
|
|
609
609
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaFormFieldComponent, "matcha-form-field", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sizeXs": { "alias": "size-xs"; "required": false; }; "sizeSm": { "alias": "size-sm"; "required": false; }; "sizeMd": { "alias": "size-md"; "required": false; }; "sizeLg": { "alias": "size-lg"; "required": false; }; "sizeXl": { "alias": "size-xl"; "required": false; }; }, {}, ["controlDir"], ["matcha-label", "*", "matcha-error", "matcha-autocomplete", "matcha-hint-text"], false, never>;
|
|
610
610
|
}
|
|
611
611
|
|
|
612
|
-
declare class MatchaLabelComponent {
|
|
612
|
+
declare class MatchaLabelComponent implements AfterViewInit {
|
|
613
|
+
private elementRef;
|
|
613
614
|
color: 'red' | 'pink' | 'purple' | 'deep-purple' | 'indigo' | 'blue' | 'light-blue' | 'cyan' | 'teal' | 'green' | 'light-green' | 'lime' | 'yellow' | 'amber' | 'orange' | 'deep-orange' | 'primary' | 'accent' | 'warn' | 'brown' | 'grey' | 'blue-grey' | 'primary' | 'accent' | 'warn';
|
|
615
|
+
isRequired: boolean;
|
|
616
|
+
constructor(elementRef: ElementRef);
|
|
617
|
+
ngAfterViewInit(): void;
|
|
618
|
+
private checkIfRequired;
|
|
614
619
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaLabelComponent, never>;
|
|
615
620
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaLabelComponent, "matcha-label", never, { "color": { "alias": "color"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
616
621
|
}
|