matcha-components 20.275.2 → 20.276.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 +561 -524
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -339,6 +339,7 @@ declare class MatchaPanelComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
339
339
|
private destroy$;
|
|
340
340
|
private globalListener?;
|
|
341
341
|
private clickListener?;
|
|
342
|
+
private resizeObserver?;
|
|
342
343
|
constructor(elRef: ElementRef, renderer: Renderer2, cdr: ChangeDetectorRef);
|
|
343
344
|
ngOnInit(): void;
|
|
344
345
|
ngOnDestroy(): void;
|
|
@@ -353,6 +354,8 @@ declare class MatchaPanelComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
353
354
|
* Abre o painel
|
|
354
355
|
*/
|
|
355
356
|
openPanel(): void;
|
|
357
|
+
/** Reposiciona o painel sempre que a altura/largura do conteúdo muda. */
|
|
358
|
+
private observeContentResize;
|
|
356
359
|
/**
|
|
357
360
|
* Fecha o painel
|
|
358
361
|
*/
|
|
@@ -2760,7 +2763,7 @@ declare class MatchaSnackBarComponent implements OnInit, OnDestroy {
|
|
|
2760
2763
|
visible: boolean;
|
|
2761
2764
|
private timeoutId;
|
|
2762
2765
|
get colorAttr(): "error" | "warning" | "info" | "success";
|
|
2763
|
-
get positionAttr(): "
|
|
2766
|
+
get positionAttr(): "bottom" | "top";
|
|
2764
2767
|
get classes(): string;
|
|
2765
2768
|
constructor(snackBarService: MatchaSnackBarService);
|
|
2766
2769
|
ngOnInit(): void;
|