gd-bs 5.8.7 → 5.9.0

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,14 @@ 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
+ data: ArrayBuffer;
1505
+ name: string;
1506
+ }
1507
+
1502
1508
  /**
1503
- * Button Group
1509
+ * Input Group
1504
1510
  */
1505
1511
  export interface IInputGroup {
1506
1512
  /** The input group element. */
@@ -1509,6 +1515,9 @@ declare module 'gd-bs/components/inputGroup/types' {
1509
1515
  /** Reference to the textbox input/textarea element. */
1510
1516
  elTextbox: HTMLInputElement | HTMLTextAreaElement;
1511
1517
 
1518
+ /** Method to get the file information. */
1519
+ getFileInfo: () => IInputGroupFileValue;
1520
+
1512
1521
  /** Method to get the value. */
1513
1522
  getValue: () => string;
1514
1523