gd-bs 5.9.0 → 5.9.3

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
@@ -1648,7 +1648,7 @@ declare module 'gd-bs/components/listBox/types' {
1648
1648
  */
1649
1649
  export const ListBox: (props: IListBoxProps, template?: string) => IListBox;
1650
1650
 
1651
- import { IBase } from "gd-bs/components/types";
1651
+ import { IBase, IBaseProps } from "gd-bs/components/types";
1652
1652
  import { IDropdownItem } from "gd-bs/components/dropdown/types";
1653
1653
 
1654
1654
  /**
@@ -1671,7 +1671,7 @@ declare module 'gd-bs/components/listBox/types' {
1671
1671
  /**
1672
1672
  * List Box Properties
1673
1673
  */
1674
- export interface IListBoxProps {
1674
+ export interface IListBoxProps extends IBaseProps<IListBox> {
1675
1675
  label?: string;
1676
1676
  id?: string;
1677
1677
  isReadonly?: boolean;