gd-bs 6.2.4 → 6.2.6

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
@@ -394,6 +394,7 @@ declare module 'gd-bs/components/button/types' {
394
394
  badge?: IBadgeProps;
395
395
  controls?: string | Array<string>;
396
396
  data?: any;
397
+ description?: string;
397
398
  dismiss?: string;
398
399
  href?: string;
399
400
  iconClassName?: string;
@@ -406,6 +407,7 @@ declare module 'gd-bs/components/button/types' {
406
407
  isLarge?: boolean;
407
408
  isLink?: boolean;
408
409
  isSmall?: boolean;
410
+ label?: string;
409
411
  onClick?: (button?: IButtonProps, ev?: Event) => void;
410
412
  spinnerProps?: ISpinnerProps;
411
413
  tabIndex?: number;
@@ -1035,6 +1037,9 @@ declare module 'gd-bs/components/dropdown/types' {
1035
1037
  /** Updates the dropdown items. */
1036
1038
  setItems: (items: Array<IDropdownItem>) => void;
1037
1039
 
1040
+ /** Updates the label of the dropdown. */
1041
+ setLabel: (value: string) => void;
1042
+
1038
1043
  /** Enables/Disables the dark theme. */
1039
1044
  setTheme: (isDark: boolean) => void;
1040
1045
 
@@ -1096,7 +1101,6 @@ declare module 'gd-bs/components/dropdown/types' {
1096
1101
  onChange?: (item?: IDropdownItem | Array<IDropdownItem>, ev?: Event) => void;
1097
1102
  onMenuRendering?: (props: IPopoverProps) => IPopoverProps;
1098
1103
  required?: boolean;
1099
- setLabelToValue?: boolean;
1100
1104
  title?: string;
1101
1105
  type?: number;
1102
1106
  value?: any;