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/build/components/form/index.js +15 -0
- package/build/components/table/index.js +6 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +4 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/form/formTypes.d.ts +3 -0
- package/src/components/form/index.ts +17 -0
- package/src/components/table/index.ts +5 -1
- package/src/components/table/types.d.ts +1 -1
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
|
/**
|