gd-bs 5.9.1 → 5.9.4
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/bs.js +1 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +2 -2
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/listBox/types.d.ts +2 -2
- package/src/styles/_custom.scss +20 -3
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;
|