gd-bs 5.6.6 → 5.6.9

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