otimus-library 0.3.64 → 0.3.65
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/otimus-library.mjs +25 -3
- package/fesm2022/otimus-library.mjs.map +1 -1
- package/index.d.ts +8 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -606,18 +606,24 @@ declare class OcAccordionItemComponent {
|
|
|
606
606
|
static ɵcmp: i0.ɵɵComponentDeclaration<OcAccordionItemComponent, "oc-accordion-item", never, { "ocIsOpen": { "alias": "ocIsOpen"; "required": false; }; "ocTitle": { "alias": "ocTitle"; "required": false; }; "ocStyle": { "alias": "ocStyle"; "required": false; }; }, { "ocToggle": "ocToggle"; "closeAllItems": "closeAllItems"; }, never, ["[ocHeader]", "*"], true, never>;
|
|
607
607
|
}
|
|
608
608
|
|
|
609
|
-
declare class OcAccordionComponent implements AfterViewInit {
|
|
609
|
+
declare class OcAccordionComponent implements AfterViewInit, OnDestroy {
|
|
610
610
|
private styleThemeService;
|
|
611
611
|
items: QueryList<OcAccordionItemComponent>;
|
|
612
612
|
ocAlternate: boolean;
|
|
613
613
|
ocCurrentIndex?: number;
|
|
614
614
|
ocStyle: OcStyleThemeType;
|
|
615
|
+
ocDynamicItems: boolean;
|
|
616
|
+
private itemSubscriptions;
|
|
617
|
+
private changesSubscription?;
|
|
615
618
|
constructor(styleThemeService: StyleThemeService);
|
|
616
619
|
ngAfterViewInit(): void;
|
|
620
|
+
ngOnDestroy(): void;
|
|
621
|
+
private subscribeToItems;
|
|
622
|
+
private cleanupSubscriptions;
|
|
617
623
|
closeAllItems(): void;
|
|
618
624
|
alternateToIndex(index: number): void;
|
|
619
625
|
static ɵfac: i0.ɵɵFactoryDeclaration<OcAccordionComponent, never>;
|
|
620
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OcAccordionComponent, "oc-accordion", never, { "ocAlternate": { "alias": "ocAlternate"; "required": false; }; "ocCurrentIndex": { "alias": "ocCurrentIndex"; "required": false; }; "ocStyle": { "alias": "ocStyle"; "required": false; }; }, {}, ["items"], ["*"], true, never>;
|
|
626
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OcAccordionComponent, "oc-accordion", never, { "ocAlternate": { "alias": "ocAlternate"; "required": false; }; "ocCurrentIndex": { "alias": "ocCurrentIndex"; "required": false; }; "ocStyle": { "alias": "ocStyle"; "required": false; }; "ocDynamicItems": { "alias": "ocDynamicItems"; "required": false; }; }, {}, ["items"], ["*"], true, never>;
|
|
621
627
|
}
|
|
622
628
|
|
|
623
629
|
declare class OcMessageComponent {
|