gd-bs 5.8.7 → 5.8.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 +32 -22
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +9 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/inputGroup/index.ts +37 -23
- package/src/components/inputGroup/types.d.ts +9 -1
package/dist/gd-bs.d.ts
CHANGED
|
@@ -1499,8 +1499,13 @@ declare module 'gd-bs/components/inputGroup/types' {
|
|
|
1499
1499
|
import { IBaseProps } from "gd-bs/components/types";
|
|
1500
1500
|
import { IButtonProps } from "gd-bs/components/button/types";
|
|
1501
1501
|
|
|
1502
|
+
/** Input Group File Value */
|
|
1503
|
+
export interface IInputGroupFileValue {
|
|
1504
|
+
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1502
1507
|
/**
|
|
1503
|
-
*
|
|
1508
|
+
* Input Group
|
|
1504
1509
|
*/
|
|
1505
1510
|
export interface IInputGroup {
|
|
1506
1511
|
/** The input group element. */
|
|
@@ -1509,6 +1514,9 @@ declare module 'gd-bs/components/inputGroup/types' {
|
|
|
1509
1514
|
/** Reference to the textbox input/textarea element. */
|
|
1510
1515
|
elTextbox: HTMLInputElement | HTMLTextAreaElement;
|
|
1511
1516
|
|
|
1517
|
+
/** Method to get the file information. */
|
|
1518
|
+
getFileInfo: () => IInputGroupFileValue;
|
|
1519
|
+
|
|
1512
1520
|
/** Method to get the value. */
|
|
1513
1521
|
getValue: () => string;
|
|
1514
1522
|
|