matcha-components 20.194.0 → 20.196.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/fesm2022/matcha-components.mjs +486 -484
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2413,6 +2413,7 @@ declare class MatchaChipComponent implements OnInit, AfterViewInit {
|
|
|
2413
2413
|
removed: EventEmitter<MatchaChipComponent>;
|
|
2414
2414
|
/** Evento emitido quando o chip é destruído */
|
|
2415
2415
|
destroyed: EventEmitter<MatchaChipComponent>;
|
|
2416
|
+
_hasCustomRemoveIcon: boolean;
|
|
2416
2417
|
constructor(_elementRef: ElementRef);
|
|
2417
2418
|
ngOnInit(): void;
|
|
2418
2419
|
ngAfterViewInit(): void;
|
|
@@ -2664,7 +2665,7 @@ declare class MatchaSnackBarComponent implements OnInit, OnDestroy {
|
|
|
2664
2665
|
duration: number;
|
|
2665
2666
|
visible: boolean;
|
|
2666
2667
|
private timeoutId;
|
|
2667
|
-
get colorAttr(): "error" | "
|
|
2668
|
+
get colorAttr(): "error" | "info" | "warning" | "success";
|
|
2668
2669
|
get positionAttr(): "top" | "bottom";
|
|
2669
2670
|
get classes(): string;
|
|
2670
2671
|
constructor(snackBarService: MatchaSnackBarService);
|