@proximus/lavender-carousel 2.0.0-alpha.19 → 2.0.0-alpha.190

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.
@@ -4,7 +4,7 @@ export declare class AppleSeed extends HTMLElement {
4
4
  static get observedAttributes(): string[];
5
5
  attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
6
6
  handleActive(oldValue: string, newValue: string): void;
7
- get $active(): Element;
7
+ get $active(): Element | null;
8
8
  get amount(): number;
9
9
  get active(): number;
10
10
  }
@@ -1,15 +1,13 @@
1
- import { AttributeBreakpointHandlerDelegate } from '@proximus/lavender-common';
2
1
  import '@proximus/lavender-layout';
3
2
  import '@proximus/lavender-button-icon';
4
3
  import '@proximus/lavender-icon';
5
4
  import './AppleSeed.ts';
6
5
  import { type AppleSeed } from './AppleSeed.ts';
6
+ export declare const CAROUSEL_ITEM_CONNECTED_EVENT = "px-carousel-item-connected";
7
7
  export declare class Carousel extends HTMLElement {
8
- visibleItemsAttributeDelegate: AttributeBreakpointHandlerDelegate;
8
+ #private;
9
9
  template: string;
10
10
  constructor();
11
- static get observedAttributes(): string[];
12
- attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
13
11
  connectedCallback(): void;
14
12
  private onScroll;
15
13
  private handleNextPrevious;
@@ -26,4 +24,5 @@ export declare class Carousel extends HTMLElement {
26
24
  export declare class CarouselItem extends HTMLElement {
27
25
  template: string;
28
26
  constructor();
27
+ connectedCallback(): void;
29
28
  }