gd-bs 5.6.3 → 5.6.6

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,7 +1501,7 @@ 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
1507
  /** Method to get the value. */
@@ -1515,6 +1515,9 @@ declare module 'gd-bs/components/inputGroup/types' {
1515
1515
 
1516
1516
  /** Shows the input group. */
1517
1517
  show: () => void;
1518
+
1519
+ /** Reference to the textbox input/textarea element. */
1520
+ textbox: HTMLInputElement | HTMLTextAreaElement;
1518
1521
  }
1519
1522
 
1520
1523
  /**