gd-bs 5.4.3 → 5.4.6
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/dropdown/item.js +3 -2
- package/build/components/form/index.js +10 -0
- package/dist/gd-bs-icons.js +3 -3
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +2 -2
- package/dist/gd-bs.js +3 -3
- package/dist/gd-bs.min.js +1 -1
- package/package.json +2 -2
- package/pnpm-lock.yaml +30 -37
- package/src/bs.scss +37 -6
- package/src/components/dropdown/item.ts +3 -2
- package/src/components/form/formTypes.d.ts +2 -2
- package/src/components/form/index.ts +17 -1
package/dist/gd-bs.d.ts
CHANGED
|
@@ -1390,10 +1390,10 @@ declare module 'gd-bs/components/form/formTypes' {
|
|
|
1390
1390
|
*/
|
|
1391
1391
|
export interface IForm {
|
|
1392
1392
|
/** Appends controls to the form */
|
|
1393
|
-
appendControls: (controls: Array<IFormControlProps>) =>
|
|
1393
|
+
appendControls: (controls: Array<IFormControlProps>) => Array<IFormControl>;
|
|
1394
1394
|
|
|
1395
1395
|
/** Appends rows to the form */
|
|
1396
|
-
appendRows: (rows: Array<IFormRow>) =>
|
|
1396
|
+
appendRows: (rows: Array<IFormRow>) => Array<IFormControl>;
|
|
1397
1397
|
|
|
1398
1398
|
/** The form controls */
|
|
1399
1399
|
controls: Array<IFormControl>;
|