matcha-components 20.63.0 → 20.65.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
|
@@ -1573,7 +1573,7 @@ declare class MatchaSliderComponent implements ControlValueAccessor, OnInit, OnD
|
|
|
1573
1573
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaSliderComponent, "matcha-slider", never, { "value": { "alias": "value"; "required": false; }; "highValue": { "alias": "highValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; "highValueChange": "highValueChange"; "userChange": "userChange"; "userChangeEnd": "userChangeEnd"; }, never, never, false, never>;
|
|
1574
1574
|
}
|
|
1575
1575
|
|
|
1576
|
-
declare class MatchaChipComponent {
|
|
1576
|
+
declare class MatchaChipComponent implements AfterViewInit {
|
|
1577
1577
|
_elementRef: ElementRef;
|
|
1578
1578
|
/** Cor do chip (primary, accent, warn) */
|
|
1579
1579
|
color: 'primary' | 'accent' | 'warn' | string;
|
|
@@ -1599,6 +1599,9 @@ declare class MatchaChipComponent {
|
|
|
1599
1599
|
destroyed: EventEmitter<MatchaChipComponent>;
|
|
1600
1600
|
get hostClasses(): string;
|
|
1601
1601
|
constructor(_elementRef: ElementRef);
|
|
1602
|
+
ngAfterViewInit(): void;
|
|
1603
|
+
private _setupChipRemoveDirective;
|
|
1604
|
+
hasCustomRemoveIcon(): boolean;
|
|
1602
1605
|
/** Manipula o clique no chip */
|
|
1603
1606
|
_handleClick(event: Event): void;
|
|
1604
1607
|
/** Manipula o evento de teclado */
|