gd-bs 6.8.1 → 6.8.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/build/components/floating-ui/index.js +2 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +5 -4
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/floating-ui/index.ts +3 -0
- package/src/components/floating-ui/types.d.ts +1 -0
- package/src/components/popover/types.d.ts +2 -2
- package/src/components/tooltip/types.d.ts +2 -2
package/dist/gd-bs.d.ts
CHANGED
|
@@ -2551,7 +2551,7 @@ declare module 'gd-bs/components/popover/types' {
|
|
|
2551
2551
|
|
|
2552
2552
|
import { IBaseProps } from "gd-bs/components/types";
|
|
2553
2553
|
import { IButtonProps } from "gd-bs/components/button/types";
|
|
2554
|
-
import { IFloatingUIOptions, IFloatingUIPlacements, IFloatingUITypes } from "gd-bs/components/floating-ui/types";
|
|
2554
|
+
import { IFloatingUI, IFloatingUIOptions, IFloatingUIPlacements, IFloatingUITypes } from "gd-bs/components/floating-ui/types";
|
|
2555
2555
|
|
|
2556
2556
|
/**
|
|
2557
2557
|
* Popover
|
|
@@ -2561,7 +2561,7 @@ declare module 'gd-bs/components/popover/types' {
|
|
|
2561
2561
|
el: HTMLElement;
|
|
2562
2562
|
|
|
2563
2563
|
/** The floating ui instance. */
|
|
2564
|
-
floatingUI:
|
|
2564
|
+
floatingUI: IFloatingUI;
|
|
2565
2565
|
|
|
2566
2566
|
/** Enables the popover. */
|
|
2567
2567
|
enable: () => void;
|
|
@@ -3028,7 +3028,7 @@ declare module 'gd-bs/components/tooltip/types' {
|
|
|
3028
3028
|
import { IBaseProps } from "gd-bs/components/types";
|
|
3029
3029
|
import { IButtonProps, IButton } from "gd-bs/components/button/types";
|
|
3030
3030
|
import { IDropdownProps, IDropdown } from "gd-bs/components/dropdown/types";
|
|
3031
|
-
import { IFloatingUIOptions, IFloatingUIPlacements, IFloatingUITypes } from "gd-bs/components/floating-ui/types";
|
|
3031
|
+
import { IFloatingUI, IFloatingUIOptions, IFloatingUIPlacements, IFloatingUITypes } from "gd-bs/components/floating-ui/types";
|
|
3032
3032
|
|
|
3033
3033
|
/**
|
|
3034
3034
|
* Tooltip
|
|
@@ -3050,7 +3050,7 @@ declare module 'gd-bs/components/tooltip/types' {
|
|
|
3050
3050
|
ddl?: IDropdown;
|
|
3051
3051
|
|
|
3052
3052
|
/** The floating ui instance. */
|
|
3053
|
-
floatingUI:
|
|
3053
|
+
floatingUI: IFloatingUI;
|
|
3054
3054
|
|
|
3055
3055
|
/** Toggles an element's tooltip. */
|
|
3056
3056
|
toggle: () => void;
|
|
@@ -3188,6 +3188,7 @@ declare module 'gd-bs/components/floating-ui/types' {
|
|
|
3188
3188
|
addIgnoreElement: (el: Element) => void;
|
|
3189
3189
|
hide: () => void;
|
|
3190
3190
|
isVisible: boolean;
|
|
3191
|
+
refreshPosition: () => void;
|
|
3191
3192
|
removeIgnoreElement: (el: Element) => void;
|
|
3192
3193
|
setContent: (el: string | Element) => void;
|
|
3193
3194
|
show: () => void;
|