gd-bs 6.3.3 → 6.3.4
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/control.js +14 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.js.LICENSE.txt +210 -210
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +2 -0
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.js.LICENSE.txt +210 -210
- package/dist/gd-bs.min.js +1 -1
- package/package.json +2 -2
- package/pnpm-lock.yaml +4 -4
- package/src/components/form/control.ts +14 -0
- package/src/components/form/controlTypes.d.ts +2 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -1296,12 +1296,14 @@ declare module 'gd-bs/components/form/controlTypes' {
|
|
|
1296
1296
|
* Form Control Properties - TextField
|
|
1297
1297
|
*/
|
|
1298
1298
|
export interface IFormControlPropsTextField extends IFormControlProps {
|
|
1299
|
+
appendedLabel?: string;
|
|
1299
1300
|
el?: HTMLInputElement;
|
|
1300
1301
|
onChange?: (value: string, ev?: Event) => void;
|
|
1301
1302
|
onControlRendering?: (control: IFormControlPropsTextField) => void | PromiseLike<IFormControlPropsTextField>;
|
|
1302
1303
|
onGetValue?: (control: IFormControlPropsTextField) => any;
|
|
1303
1304
|
onValidate?: (control: IFormControlPropsTextField, value: IFormControlValidationResult) => boolean | IFormControlValidationResult;
|
|
1304
1305
|
placeholder?: string;
|
|
1306
|
+
prependedLabel?: string;
|
|
1305
1307
|
rows?: number;
|
|
1306
1308
|
}
|
|
1307
1309
|
|