gd-bs 6.9.19 → 6.9.21

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
@@ -1473,6 +1473,9 @@ declare module 'gd-bs/components/form/formTypes' {
1473
1473
  /** Appends rows to the form */
1474
1474
  appendRows: (rows: Array<IFormRow>) => void;
1475
1475
 
1476
+ /** Clears the validation on the form. */
1477
+ clearValidation: () => void;
1478
+
1476
1479
  /** The form controls */
1477
1480
  controls: Array<IFormControl>;
1478
1481
 
@@ -2833,7 +2836,7 @@ declare module 'gd-bs/components/table/types' {
2833
2836
 
2834
2837
  updateColumn: (elCol: HTMLElement, colIdx: number, row: any) => void;
2835
2838
 
2836
- updateRow: (elRow: HTMLElement, row: any) => void;
2839
+ updateRow: (elRow: HTMLElement, row: any, hiddenColIndexes?: number[]) => void;
2837
2840
  }
2838
2841
 
2839
2842
  /**