asksuite-citrus 2.0.0-beta.7 → 2.0.0-beta.8

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.
@@ -2,7 +2,8 @@ import { ExtendablePanelComponent } from "./extendable-panel/extendable-panel.co
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class AccordionComponent {
4
4
  private subscriptions;
5
+ multiple: boolean;
5
6
  set panels(elements: ExtendablePanelComponent[]);
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "ask-accordion", never, {}, {}, ["panels"], ["ask-extendable-panel"], false, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "ask-accordion", never, { "multiple": { "alias": "multiple"; "required": false; }; }, {}, ["panels"], ["ask-extendable-panel"], false, never>;
8
9
  }
@@ -1,15 +1,20 @@
1
- import { ChangeDetectorRef, EventEmitter } from '@angular/core';
1
+ import { ChangeDetectorRef, EventEmitter, TemplateRef } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class ExtendablePanelComponent {
4
4
  private changeRef;
5
5
  isOpen: boolean;
6
6
  id?: number;
7
7
  highlight: boolean;
8
+ arrowPosition: 'left' | 'right';
9
+ headerTemplate: TemplateRef<any> | null;
10
+ panelClass: string;
11
+ contentGray: boolean;
12
+ isReply: boolean;
8
13
  closed: EventEmitter<void>;
9
14
  opened: EventEmitter<void>;
10
15
  constructor(changeRef: ChangeDetectorRef);
11
16
  open(): void;
12
17
  close(): void;
13
18
  static ɵfac: i0.ɵɵFactoryDeclaration<ExtendablePanelComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<ExtendablePanelComponent, "ask-extendable-panel", never, { "highlight": { "alias": "highlight"; "required": false; }; }, { "closed": "closed"; "opened": "opened"; }, never, ["[title]", "[description]", "[content]"], false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExtendablePanelComponent, "ask-extendable-panel", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; "arrowPosition": { "alias": "arrowPosition"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "contentGray": { "alias": "contentGray"; "required": false; }; "isReply": { "alias": "isReply"; "required": false; }; }, { "closed": "closed"; "opened": "opened"; }, never, ["[title]", "[description]", "[content]", "[footer]"], false, never>;
15
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asksuite-citrus",
3
- "version": "2.0.0-beta.7",
3
+ "version": "2.0.0-beta.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.7",
6
6
  "@angular/core": "^17.3.7",