gd-bs 5.5.7 → 5.6.0
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/bs.js +1 -1
- package/build/components/form/control.js +5 -5
- package/build/components/form/index.js +15 -0
- package/dist/gd-bs-icons.js +3 -3
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +3 -0
- package/dist/gd-bs.js +3 -3
- package/dist/gd-bs.min.js +1 -1
- package/index.html +15 -10
- package/package.json +1 -1
- package/src/bs.scss +17 -0
- package/src/components/form/control.ts +5 -5
- package/src/components/form/formTypes.d.ts +3 -0
- package/src/components/form/index.ts +16 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -1413,6 +1413,9 @@ declare module 'gd-bs/components/form/formTypes' {
|
|
|
1413
1413
|
/** Hides the form. */
|
|
1414
1414
|
hide: () => void;
|
|
1415
1415
|
|
|
1416
|
+
/** Inserts a control into the form */
|
|
1417
|
+
insertControl: (idx: number, control: IFormControlProps) => void;
|
|
1418
|
+
|
|
1416
1419
|
/** Validates the form */
|
|
1417
1420
|
isValid: () => boolean;
|
|
1418
1421
|
|