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/build/components/form/control.js +6 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +1 -0
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/form/control.ts +3 -0
- package/src/components/form/controlTypes.d.ts +1 -0
package/package.json
CHANGED
|
@@ -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
|
|