gd-bs 6.2.3 → 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/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;