matcha-components 20.136.0 → 20.140.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 +467 -562
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +2 -15
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -489,9 +489,7 @@ declare class MatchaGridComponent {
|
|
|
489
489
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaGridComponent, "matcha-grid", never, { "breakpoint": { "alias": "breakpoint"; "required": false; }; "col": { "alias": "col"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "class": { "alias": "class"; "required": false; }; "span": { "alias": "span"; "required": false; }; "rowspan": { "alias": "rowspan"; "required": false; }; "colspan": { "alias": "colspan"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
490
490
|
}
|
|
491
491
|
|
|
492
|
-
declare class MatchaMasonryComponent
|
|
493
|
-
private elementRef;
|
|
494
|
-
private cdr;
|
|
492
|
+
declare class MatchaMasonryComponent {
|
|
495
493
|
colSize: string | number | null;
|
|
496
494
|
smColSize: string | number | null;
|
|
497
495
|
mdColSize: string | number | null;
|
|
@@ -502,18 +500,7 @@ declare class MatchaMasonryComponent implements AfterViewInit, OnDestroy {
|
|
|
502
500
|
gapMd: string | number | null;
|
|
503
501
|
gapLg: string | number | null;
|
|
504
502
|
gapXl: string | number | null;
|
|
505
|
-
|
|
506
|
-
private resizeObserver?;
|
|
507
|
-
private originalItems;
|
|
508
|
-
private isDistributing;
|
|
509
|
-
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
510
|
-
ngAfterViewInit(): void;
|
|
511
|
-
ngOnDestroy(): void;
|
|
512
|
-
private captureOriginalItems;
|
|
513
|
-
private setupResizeObserver;
|
|
514
|
-
private distributeItems;
|
|
515
|
-
private getCurrentColumnCount;
|
|
516
|
-
getGapValue(): number;
|
|
503
|
+
get classes(): string;
|
|
517
504
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaMasonryComponent, never>;
|
|
518
505
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaMasonryComponent, "matcha-masonry", never, { "colSize": { "alias": "col"; "required": false; }; "smColSize": { "alias": "col-sm"; "required": false; }; "mdColSize": { "alias": "col-md"; "required": false; }; "lgColSize": { "alias": "col-lg"; "required": false; }; "xlColSize": { "alias": "col-xl"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "gapSm": { "alias": "gap-sm"; "required": false; }; "gapMd": { "alias": "gap-md"; "required": false; }; "gapLg": { "alias": "gap-lg"; "required": false; }; "gapXl": { "alias": "gap-xl"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
519
506
|
}
|