gd-bs 6.2.4 → 6.2.5
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/dropdown/index.js +9 -0
- package/build/components/form/control.js +1 -1
- package/build/components/form/group.js +8 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +3 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/dropdown/index.ts +10 -0
- package/src/components/dropdown/types.d.ts +3 -1
- package/src/components/form/control.ts +1 -1
- package/src/components/form/group.ts +9 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -1035,6 +1035,9 @@ declare module 'gd-bs/components/dropdown/types' {
|
|
|
1035
1035
|
/** Updates the dropdown items. */
|
|
1036
1036
|
setItems: (items: Array<IDropdownItem>) => void;
|
|
1037
1037
|
|
|
1038
|
+
/** Updates the label of the dropdown. */
|
|
1039
|
+
setLabel: (value: string) => void;
|
|
1040
|
+
|
|
1038
1041
|
/** Enables/Disables the dark theme. */
|
|
1039
1042
|
setTheme: (isDark: boolean) => void;
|
|
1040
1043
|
|
|
@@ -1096,7 +1099,6 @@ declare module 'gd-bs/components/dropdown/types' {
|
|
|
1096
1099
|
onChange?: (item?: IDropdownItem | Array<IDropdownItem>, ev?: Event) => void;
|
|
1097
1100
|
onMenuRendering?: (props: IPopoverProps) => IPopoverProps;
|
|
1098
1101
|
required?: boolean;
|
|
1099
|
-
setLabelToValue?: boolean;
|
|
1100
1102
|
title?: string;
|
|
1101
1103
|
type?: number;
|
|
1102
1104
|
value?: any;
|