gd-bs 5.4.0 → 5.4.3

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/dist/gd-bs.d.ts CHANGED
@@ -773,6 +773,7 @@ declare module 'gd-bs/components/carousel/types' {
773
773
  imageAlt?: string;
774
774
  imageUrl?: string;
775
775
  isActive?: boolean;
776
+ onRendered?: (el?: HTMLElement, props?: ICarouselItem) => void;
776
777
  }
777
778
 
778
779
  /**
@@ -796,6 +797,8 @@ declare module 'gd-bs/components/carousel/types' {
796
797
  id?: string;
797
798
  isDark?: boolean;
798
799
  items?: Array<ICarouselItem<T>>;
800
+ onRendered?: (el?: HTMLElement, props?: ICarouselProps) => void;
801
+ onSlideRendered?: (el?: HTMLElement, props?: ICarouselItem) => void;
799
802
  options?: ICarouselOptions;
800
803
  }
801
804
  }