matcha-components 19.41.0 → 19.43.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.
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import { QueryList, AfterContentInit } from '@angular/core';
|
|
1
|
+
import { QueryList, AfterContentInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { MatchaAccordionItemComponent } from '../accordion-item/accordion-item.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class MatchaAccordionComponent implements AfterContentInit {
|
|
5
5
|
private _multiple;
|
|
6
6
|
set multiple(value: boolean | string);
|
|
7
7
|
get multiple(): boolean;
|
|
8
|
+
openedChange: EventEmitter<boolean>;
|
|
8
9
|
items: QueryList<MatchaAccordionItemComponent>;
|
|
9
10
|
ngAfterContentInit(): void;
|
|
10
11
|
toggleItem(selectedItem: MatchaAccordionItemComponent): void;
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAccordionComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionComponent, "matcha-accordion", never, { "multiple": { "alias": "multiple"; "required": false; }; }, {}, ["items"], ["*"], false, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionComponent, "matcha-accordion", never, { "multiple": { "alias": "multiple"; "required": false; }; }, { "openedChange": "openedChange"; }, ["items"], ["*"], false, never>;
|
|
13
14
|
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class MatchaAccordionItemComponent {
|
|
3
|
+
export declare class MatchaAccordionItemComponent implements OnInit {
|
|
4
4
|
private _stretch;
|
|
5
|
+
private _isOpen;
|
|
6
|
+
set stretch(value: boolean | string);
|
|
5
7
|
get stretch(): boolean;
|
|
6
|
-
set
|
|
8
|
+
set isOpen(value: boolean | string);
|
|
9
|
+
get isOpen(): boolean;
|
|
7
10
|
toggle: EventEmitter<boolean>;
|
|
8
|
-
|
|
11
|
+
ngOnInit(): void;
|
|
9
12
|
toggleAccordion(): void;
|
|
10
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaAccordionItemComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionItemComponent, "matcha-accordion-item", never, { "stretch": { "alias": "stretch"; "required": false; }; }, { "toggle": "
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaAccordionItemComponent, "matcha-accordion-item", never, { "stretch": { "alias": "stretch"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; }, { "toggle": "toggle"; }, never, ["matcha-accordion-header", "matcha-accordion-content", "*"], false, never>;
|
|
12
15
|
}
|