gd-bs 6.6.92 → 6.6.93

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
  }