gd-bs 5.4.7 → 5.4.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gd-bs",
3
- "version": "5.4.7",
3
+ "version": "5.4.8",
4
4
  "description": "Bootstrap JavaScript, TypeScript and Web Components library.",
5
5
  "main": "build/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -434,6 +434,9 @@ export class FormControl implements IFormControl {
434
434
  // The textbox control
435
435
  get control() { return this._cb || this._ddl || this._lb || this._tb || this._custom }
436
436
 
437
+ // The control label
438
+ get label() { return this._elLabel; }
439
+
437
440
  // The listbox control
438
441
  get listbox() { return this._lb; }
439
442
 
@@ -55,6 +55,7 @@ export interface IFormControl {
55
55
  isLoaded: () => PromiseLike<void>;
56
56
  isRendered: boolean;
57
57
  isValid: boolean;
58
+ label?: HTMLElement;
58
59
  props: IFormControlProps;
59
60
  textbox: IInputGroup;
60
61
  setLabel: (value: string) => void;