@kaizen/components 1.79.3 → 1.79.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.
@@ -40,7 +40,6 @@ var StatelessMenu = function (_a) {
40
40
  'onMouseDown': function (e) {
41
41
  return e.preventDefault();
42
42
  },
43
- 'aria-haspopup': true,
44
43
  'aria-expanded': isMenuVisible
45
44
  });
46
45
  React.useEffect(function () {
@@ -32,7 +32,6 @@ const StatelessMenu = /*#__PURE__*/function () {
32
32
  'onMouseDown': function (e) {
33
33
  return e.preventDefault();
34
34
  },
35
- 'aria-haspopup': true,
36
35
  'aria-expanded': isMenuVisible
37
36
  });
38
37
  useEffect(function () {
package/dist/styles.css CHANGED
@@ -1853,6 +1853,7 @@
1853
1853
  position: relative;
1854
1854
  border: 1px solid transparent;
1855
1855
  border-radius: var(--border-borderless-border-radius);
1856
+ z-index: 0;
1856
1857
  }
1857
1858
 
1858
1859
  /* This absolute element is used to give the illusion of a gradient border without expanding the size of the Well/Card */
@@ -41,7 +41,6 @@ export type StatelessMenuProps = {
41
41
  'renderButton': (args: {
42
42
  'onClick': (e: any) => void;
43
43
  'onMouseDown': (e: any) => void;
44
- 'aria-haspopup': boolean;
45
44
  'aria-expanded': boolean;
46
45
  }) => React.ReactElement;
47
46
  'onClick'?: (event: SyntheticEvent) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "1.79.3",
3
+ "version": "1.79.4",
4
4
  "description": "Kaizen component library",
5
5
  "author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
6
6
  "homepage": "https://cultureamp.design",
@@ -46,7 +46,6 @@ export type StatelessMenuProps = {
46
46
  'renderButton': (args: {
47
47
  'onClick': (e: any) => void
48
48
  'onMouseDown': (e: any) => void
49
- 'aria-haspopup': boolean
50
49
  'aria-expanded': boolean
51
50
  }) => React.ReactElement
52
51
  'onClick'?: (event: SyntheticEvent) => void
@@ -76,7 +75,6 @@ export const StatelessMenu = ({
76
75
  toggleMenuDropdown()
77
76
  },
78
77
  'onMouseDown': (e: React.MouseEvent<Element, MouseEvent>) => e.preventDefault(),
79
- 'aria-haspopup': true,
80
78
  'aria-expanded': isMenuVisible,
81
79
  })
82
80