gd-bs 6.3.3 → 6.3.5

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
@@ -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