gd-bs 6.9.11 → 6.9.13
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/build/components/carousel/index.js +2 -2
- package/build/components/floating-ui/index.js +5 -2
- 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 +1 -1
- package/dist/gd-bs-icons.js.LICENSE.txt +4 -4
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +1 -0
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.js.LICENSE.txt +4 -4
- package/dist/gd-bs.min.js +1 -1
- package/package.json +2 -2
- package/src/components/carousel/index.ts +2 -2
- package/src/components/floating-ui/index.ts +6 -2
- package/src/components/floating-ui/types.d.ts +1 -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
|
@@ -3214,6 +3214,7 @@ declare module 'gd-bs/components/floating-ui/types' {
|
|
|
3214
3214
|
export interface IFloatingUIProps extends IBaseProps<IFloatingUI> {
|
|
3215
3215
|
elContent: HTMLElement;
|
|
3216
3216
|
elTarget: HTMLElement;
|
|
3217
|
+
id?: string;
|
|
3217
3218
|
onHide?: (el?: HTMLElement) => void;
|
|
3218
3219
|
onShow?: (el?: HTMLElement) => void;
|
|
3219
3220
|
options?: IFloatingUIOptions;
|