gd-bs 5.6.5 → 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
|
/**
|
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@ import { IButtonProps } from "../button/types";
|
|
|
43
43
|
* Button Group
|
|
44
44
|
*/
|
|
45
45
|
export interface IInputGroup {
|
|
46
|
-
/** The element. */
|
|
46
|
+
/** The input group element. */
|
|
47
47
|
el: HTMLElement;
|
|
48
48
|
|
|
49
49
|
/** Method to get the value. */
|
|
@@ -51,12 +51,15 @@ export interface IInputGroup {
|
|
|
51
51
|
|
|
52
52
|
/** Hides the input group. */
|
|
53
53
|
hide: () => void;
|
|
54
|
-
|
|
54
|
+
|
|
55
55
|
/** Method to set the value. */
|
|
56
56
|
setValue: (value: string) => void;
|
|
57
57
|
|
|
58
58
|
/** Shows the input group. */
|
|
59
59
|
show: () => void;
|
|
60
|
+
|
|
61
|
+
/** Reference to the textbox input/textarea element. */
|
|
62
|
+
textbox: HTMLInputElement | HTMLTextAreaElement;
|
|
60
63
|
}
|
|
61
64
|
|
|
62
65
|
/**
|