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/build/components/inputGroup/index.js +3 -3
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +4 -1
- package/dist/gd-bs.js +10 -666
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/inputGroup/index.ts +3 -3
- package/src/components/inputGroup/types.d.ts +5 -2
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
|
|