gd-bs 5.8.6 → 5.8.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
@@ -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
- * Button Group
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