gd-bs 6.7.5 → 6.7.7

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
@@ -1126,6 +1126,7 @@ declare module 'gd-bs/components/dropdown/types' {
1126
1126
  onMenuRendering?: (props: IFloatingUIProps) => IFloatingUIProps;
1127
1127
  placement?: number;
1128
1128
  required?: boolean;
1129
+ search?: boolean;
1129
1130
  title?: string;
1130
1131
  type?: number;
1131
1132
  updateLabel?: boolean;
@@ -3184,8 +3185,10 @@ declare module 'gd-bs/components/floating-ui/types' {
3184
3185
  export const FloatingUIPlacements: IFloatingUIPlacements;
3185
3186
 
3186
3187
  export interface IFloatingUI {
3188
+ addIgnoreElement: (el: Element) => void;
3187
3189
  hide: () => void;
3188
3190
  isVisible: boolean;
3191
+ removeIgnoreElement: (el: Element) => void;
3189
3192
  setContent: (el: string | Element) => void;
3190
3193
  show: () => void;
3191
3194
  toggle: () => void;
@@ -3208,6 +3211,8 @@ declare module 'gd-bs/components/floating-ui/types' {
3208
3211
  export interface IFloatingUIProps extends IBaseProps<IFloatingUI> {
3209
3212
  elContent: HTMLElement;
3210
3213
  elTarget: HTMLElement;
3214
+ onHide?: (el?: HTMLElement) => void;
3215
+ onShow?: (el?: HTMLElement) => void;
3211
3216
  options?: IFloatingUIOptions;
3212
3217
  placement?: number;
3213
3218
  show?: boolean;