gd-bs 6.6.92 → 6.6.94

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
@@ -2,10 +2,9 @@
2
2
 
3
3
  declare module 'gd-bs' {
4
4
  import * as Components from "gd-bs/components/components";
5
- var render: (el: HTMLElement) => void;
6
5
 
7
6
  export {
8
- Components, render
7
+ Components
9
8
  }
10
9
  }
11
10
 
@@ -1514,11 +1513,11 @@ declare module 'gd-bs/components/form/formTypes' {
1514
1513
  controls?: Array<IFormControlProps>;
1515
1514
  groupClassName?: string;
1516
1515
  isFloating?: boolean;
1517
- rowClassName?: string;
1518
- rows?: Array<IFormRow>;
1519
1516
  onControlRendering?: (control: IFormControlProps) => void | PromiseLike<IFormControlProps>;
1520
1517
  onControlRendered?: (control: IFormControl) => void | PromiseLike<IFormControl>;
1521
1518
  onRendered?: (controls: Array<IFormControl>) => void;
1519
+ rowClassName?: string;
1520
+ rows?: Array<IFormRow>;
1522
1521
  validationType?: number;
1523
1522
  value?: any;
1524
1523
  }
@@ -3197,7 +3196,7 @@ declare module 'gd-bs/components/floating-ui/types' {
3197
3196
  offset?: number | any;
3198
3197
  shift?: boolean | any;
3199
3198
  size?: boolean | any;
3200
- trigger?: 'click' | 'focus' | 'mouse';
3199
+ trigger?: '' | 'click' | 'focus' | 'mouse';
3201
3200
  }
3202
3201
 
3203
3202
  export interface IFloatingUIProps extends IBaseProps<IFloatingUI> {