gd-bs 5.3.9 → 5.4.2
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/.github/workflows/build.yml +4 -1
- package/build/bs.js +1 -1
- package/build/components/carousel/index.js +6 -2
- package/build/components/carousel/item.js +2 -0
- package/build/components/modal/index.js +1 -1
- package/build/components/navbar/index.js +1 -1
- package/build/components/offcanvas/index.js +1 -1
- package/dist/gd-bs-icons.js +9 -9
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +3 -0
- package/dist/gd-bs.js +6 -6
- package/dist/gd-bs.min.js +1 -1
- package/package.json +2 -2
- package/pnpm-lock.yaml +444 -212
- package/src/bs.scss +5 -0
- package/src/components/carousel/index.ts +8 -2
- package/src/components/carousel/item.ts +3 -0
- package/src/components/carousel/types.d.ts +3 -0
- package/src/components/modal/index.ts +1 -1
- package/src/components/navbar/index.ts +1 -1
- package/src/components/offcanvas/index.ts +1 -1
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
|
}
|