@pushwoosh/dumb-components 1.1.111 → 1.1.112

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.
@@ -4,6 +4,8 @@ import { DropdownMenu } from '../DropdownMenu';
4
4
  export const DropdownMenuButton = ({
5
5
  label,
6
6
  isScrollable,
7
+ isDisabled,
8
+ isLoading,
7
9
  openOnMount,
8
10
  menuZIndex,
9
11
  menuPlacement,
@@ -25,7 +27,9 @@ export const DropdownMenuButton = ({
25
27
  ...buttonProps,
26
28
  boxRef: ref,
27
29
  onClick: onClick,
28
- isOpen: isOpen
30
+ isOpen: isOpen,
31
+ isDisabled: isDisabled,
32
+ isLoading: isLoading
29
33
  }, label)
30
34
  }, children);
31
35
  };
@@ -4,6 +4,8 @@ import { type RequiredButtonProps } from '../../../Button';
4
4
  export type DropdownMenuButtonProps = {
5
5
  label: ReactNode;
6
6
  isScrollable?: boolean;
7
+ isDisabled?: boolean;
8
+ isLoading?: boolean;
7
9
  openOnMount?: boolean;
8
10
  menuZIndex?: number;
9
11
  menuPlacement?: Placement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/dumb-components",
3
- "version": "1.1.111",
3
+ "version": "1.1.112",
4
4
  "description": "React components to build Pushwoosh products",
5
5
  "main": "index.js",
6
6
  "module": "index.js",