@kaizen/components 1.63.1 → 1.63.2

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/styles.css CHANGED
@@ -27,36 +27,6 @@
27
27
  .OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path {
28
28
  fill: var(--color-white, #ffffff);
29
29
  }
30
- .Menu-module_menu__iHYqh {
31
- background-color: var(--color-white);
32
- color: var(--color-purple-800);
33
- width: 248px;
34
- max-height: 22rem;
35
- overflow: auto;
36
- padding-block: var(--spacing-6);
37
- outline: none;
38
- border-radius: var(--border-solid-border-radius);
39
- box-shadow: var(--shadow-large-box-shadow);
40
- }
41
-
42
- .Menu-module_menu__iHYqh .react-aria-Header {
43
- font-family: var(--typography-heading-6-font-family);
44
- font-size: var(--typography-heading-6-font-size);
45
- letter-spacing: var(--typography-heading-6-letter-spacing);
46
- font-weight: var(--typography-heading-6-font-weight);
47
- line-height: var(--typography-heading-6-line-height);
48
- padding: var(--spacing-6) 10px;
49
- margin-inline: var(--spacing-6);
50
- }
51
-
52
- .Menu-module_menu__iHYqh section:not(:last-of-type)::after {
53
- width: 100%;
54
- height: 1px;
55
- background-color: var(--border-solid-border-color);
56
- content: "";
57
- display: block;
58
- margin-block: var(--spacing-6);
59
- }
60
30
  .MenuItem-module_item__DPerF {
61
31
  font-family: var(--typography-paragraph-body-font-family);
62
32
  font-size: var(--typography-paragraph-body-font-size);
@@ -91,6 +61,36 @@
91
61
  .MenuItem-module_item__DPerF[data-disabled] {
92
62
  opacity: 0.3;
93
63
  }
64
+ .Menu-module_menu__iHYqh {
65
+ background-color: var(--color-white);
66
+ color: var(--color-purple-800);
67
+ width: 248px;
68
+ max-height: 22rem;
69
+ overflow: auto;
70
+ padding-block: var(--spacing-6);
71
+ outline: none;
72
+ border-radius: var(--border-solid-border-radius);
73
+ box-shadow: var(--shadow-large-box-shadow);
74
+ }
75
+
76
+ .Menu-module_menu__iHYqh .react-aria-Header {
77
+ font-family: var(--typography-heading-6-font-family);
78
+ font-size: var(--typography-heading-6-font-size);
79
+ letter-spacing: var(--typography-heading-6-letter-spacing);
80
+ font-weight: var(--typography-heading-6-font-weight);
81
+ line-height: var(--typography-heading-6-line-height);
82
+ padding: var(--spacing-6) 10px;
83
+ margin-inline: var(--spacing-6);
84
+ }
85
+
86
+ .Menu-module_menu__iHYqh section:not(:last-of-type)::after {
87
+ width: 100%;
88
+ height: 1px;
89
+ background-color: var(--border-solid-border-color);
90
+ content: "";
91
+ display: block;
92
+ margin-block: var(--spacing-6);
93
+ }
94
94
  .Button-module_button__QOSYH {
95
95
  --button-min-height-width: var(--spacing-48);
96
96
  --button-padding-x: calc(
@@ -6,6 +6,9 @@ import { TooltipProps } from "../__overlays__/Tooltip/v1";
6
6
  import { VariantType } from "./types";
7
7
  export type ActionProps = ButtonProps & {
8
8
  tooltip?: TooltipProps;
9
+ "aria-label"?: string;
10
+ "aria-labelledby"?: string;
11
+ "aria-describedby"?: string;
9
12
  };
10
13
  type LayoutType = "default" | "inline" | "stacked";
11
14
  type IllustrationType = "spot" | "scene";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "1.63.1",
3
+ "version": "1.63.2",
4
4
  "description": "Kaizen component library",
5
5
  "author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
6
6
  "homepage": "https://cultureamp.design",
@@ -12,6 +12,9 @@ import styles from "./GuidanceBlock.module.scss"
12
12
 
13
13
  export type ActionProps = ButtonProps & {
14
14
  tooltip?: TooltipProps
15
+ "aria-label"?: string
16
+ "aria-labelledby"?: string
17
+ "aria-describedby"?: string
15
18
  }
16
19
 
17
20
  type LayoutType = "default" | "inline" | "stacked"