gd-bs 5.6.5 → 5.6.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/dist/gd-bs.d.ts CHANGED
@@ -1501,9 +1501,12 @@ declare module 'gd-bs/components/inputGroup/types' {
1501
1501
  * Button Group
1502
1502
  */
1503
1503
  export interface IInputGroup {
1504
- /** The element. */
1504
+ /** The input group element. */
1505
1505
  el: HTMLElement;
1506
1506
 
1507
+ /** Reference to the textbox input/textarea element. */
1508
+ elTextbox: HTMLInputElement | HTMLTextAreaElement;
1509
+
1507
1510
  /** Method to get the value. */
1508
1511
  getValue: () => string;
1509
1512