gd-bs 5.4.8 → 5.5.1

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
@@ -2390,6 +2390,9 @@ declare module 'gd-bs/components/popover/types' {
2390
2390
  /** Toggles an element's popover. */
2391
2391
  toggle: () => void;
2392
2392
 
2393
+ /** Sets the tippy content. */
2394
+ setContent: (content: string | Element) => void;
2395
+
2393
2396
  /** Reveals an element’s popover. */
2394
2397
  show: () => void;
2395
2398
  }
@@ -2853,7 +2856,7 @@ declare module 'gd-bs/components/tooltip/types' {
2853
2856
  /**
2854
2857
  * Tooltip Placements
2855
2858
  */
2856
- export const TooltipPlacements: ITooltipPlacements;
2859
+ export const TooltipPlacements: ITooltipPlacements;
2857
2860
 
2858
2861
  /**
2859
2862
  * Tooltip Types
@@ -2886,6 +2889,9 @@ declare module 'gd-bs/components/tooltip/types' {
2886
2889
  /** Toggles an element's tooltip. */
2887
2890
  toggle: () => void;
2888
2891
 
2892
+ /** Sets the tippy content. */
2893
+ setContent: (content: string | Element) => void;
2894
+
2889
2895
  /** Reveals an element’s tooltip. */
2890
2896
  show: () => void;
2891
2897
  }
@@ -2922,7 +2928,7 @@ declare module 'gd-bs/components/tooltip/types' {
2922
2928
  /**
2923
2929
  * Tooltip Placements
2924
2930
  */
2925
- export type ITooltipPlacements = {
2931
+ export type ITooltipPlacements = {
2926
2932
  Auto: number;
2927
2933
  AutoStart: number;
2928
2934
  AutoEnd: number;