@kaizen/components 1.67.5 → 1.67.7

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/bin/codemod.sh CHANGED
@@ -25,11 +25,11 @@ TARGET_DIR="$BASEPATH/$transformDir"
25
25
 
26
26
  # Print the parameters (for debugging purposes)
27
27
  echo ""
28
- echo "RUNNING - codemod '$codemodFileName' on the dir:"
28
+ echo "Attempting to run codemod '$codemodFileName' on the dir:"
29
29
  echo "$TARGET_DIR"
30
30
  echo ""
31
31
 
32
- if npx tsx $CODEMOD_PATH $TARGET_DIR; then
32
+ if npx tsx@latest $CODEMOD_PATH $TARGET_DIR; then
33
33
  echo "Codemod '$codemodFileName' completed successfully in directory '$transformDir'"
34
34
  else
35
35
  echo "Codemod '$codemodFileName' could not be run in '$TARGET_DIR'"
@@ -2,13 +2,16 @@
2
2
  # Kaizen codemods
3
3
  This directory is a collection of codemods that can be executed via CLI with the `kaizen-codemod` command.
4
4
 
5
- ## Prerequisite
6
- Install `@kaizen/components`.
5
+ ## Prerequisites
6
+
7
+ Install `@kaizen/components`
7
8
 
8
9
  ## CLI pattern
9
10
 
11
+ _Note: Navigate into the directory which has installed `@kaizen/components` then run the codemod script._
12
+
10
13
  ```
11
- kaizen-codemod {DIR} {CODEMOD_NAME}
14
+ pnpm kaizen-codemod {DIR} {CODEMOD_NAME}
12
15
  ```
13
16
 
14
17
  DIR - the directory to run the codemod for. Note that node_modules are excluded.
@@ -16,7 +19,7 @@ CODEMOD_NAME - the name of the codemod (refer to list below).
16
19
 
17
20
  Example:
18
21
  ```
19
- kaizen-codemod src migrateWellVariantToColor
22
+ pnpm kaizen-codemod src migrateWellVariantToColor
20
23
  ```
21
24
 
22
25
  ## Available codemods
package/dist/styles.css CHANGED
@@ -1,60 +1,4 @@
1
1
  @layer tokens, normalize, reset;@layer tokens{:root{--theme-key:heart;--animation-easing-function-ease-in-out:cubic-bezier(0.455,0.03,0.515,0.955);--animation-easing-function-ease-in:cubic-bezier(0.55,0.085,0.68,0.53);--animation-easing-function-ease-out:cubic-bezier(0.25,0.46,0.45,0.94);--animation-easing-function-linear:linear;--animation-easing-function-bounce-in:cubic-bezier(0.485,0.155,0.24,1.245);--animation-easing-function-bounce-out:cubic-bezier(0.485,0.155,0.515,0.845);--animation-easing-function-bounce-in-out:cubic-bezier(0.76,-0.245,0.24,1.245);--animation-duration-instant:0ms;--animation-duration-immediate:100ms;--animation-duration-rapid:200ms;--animation-duration-fast:300ms;--animation-duration-slow:400ms;--animation-duration-deliberate:700ms;--border-solid-border-width:2px;--border-solid-border-radius:7px;--border-solid-border-style:solid;--border-solid-border-color:#e1e2ea;--border-solid-border-color-rgb:225,226,234;--border-dashed-border-width:2px;--border-dashed-border-radius:7px;--border-dashed-border-style:dashed;--border-borderless-border-width:2px;--border-borderless-border-radius:7px;--border-borderless-border-style:solid;--border-borderless-border-color:transparent;--border-borderless-border-color-rgb:0,0,0;--border-focus-ring-border-width:2px;--border-focus-ring-border-radius:10px;--border-focus-ring-border-style:solid;--border-width-1:1px;--color-purple-100:#f4edf8;--color-purple-100-rgb:244,237,248;--color-purple-200:#dfc9ea;--color-purple-200-rgb:223,201,234;--color-purple-300:#c9a5dd;--color-purple-300-rgb:201,165,221;--color-purple-400:#ae67b1;--color-purple-400-rgb:174,103,177;--color-purple-500:#844587;--color-purple-500-rgb:132,69,135;--color-purple-600:#5f3361;--color-purple-600-rgb:95,51,97;--color-purple-700:#4a234d;--color-purple-700-rgb:74,35,77;--color-purple-800:#2f2438;--color-purple-800-rgb:47,36,56;--color-blue-100:#e6f6ff;--color-blue-100-rgb:230,246,255;--color-blue-200:#bde2f5;--color-blue-200-rgb:189,226,245;--color-blue-300:#73c0e8;--color-blue-300-rgb:115,192,232;--color-blue-400:#008bd6;--color-blue-400-rgb:0,139,214;--color-blue-500:#0168b3;--color-blue-500-rgb:1,104,179;--color-blue-600:#004970;--color-blue-600-rgb:0,73,112;--color-blue-700:#003157;--color-blue-700-rgb:0,49,87;--color-green-100:#e8f8f4;--color-green-100-rgb:232,248,244;--color-green-200:#c4ede2;--color-green-200-rgb:196,237,226;--color-green-300:#8fdbc7;--color-green-300-rgb:143,219,199;--color-green-400:#5dcaad;--color-green-400-rgb:93,202,173;--color-green-500:#3f9a86;--color-green-500-rgb:63,154,134;--color-green-600:#2c7d67;--color-green-600-rgb:44,125,103;--color-green-700:#22594a;--color-green-700-rgb:34,89,74;--color-yellow-100:#fff9e4;--color-yellow-100-rgb:255,249,228;--color-yellow-200:#ffeeb3;--color-yellow-200-rgb:255,238,179;--color-yellow-300:#ffe36e;--color-yellow-300-rgb:255,227,110;--color-yellow-400:#ffca4d;--color-yellow-400-rgb:255,202,77;--color-yellow-500:#ffb600;--color-yellow-500-rgb:255,182,0;--color-yellow-600:#c68600;--color-yellow-600-rgb:198,134,0;--color-yellow-700:#876400;--color-yellow-700-rgb:135,100,0;--color-red-100:#fdeaee;--color-red-100-rgb:253,234,238;--color-red-200:#f9c2cb;--color-red-200-rgb:249,194,203;--color-red-300:#f597a8;--color-red-300-rgb:245,151,168;--color-red-400:#e0707d;--color-red-400-rgb:224,112,125;--color-red-500:#c93b55;--color-red-500-rgb:201,59,85;--color-red-600:#a82433;--color-red-600-rgb:168,36,51;--color-red-700:#6c1e20;--color-red-700-rgb:108,30,32;--color-orange-100:#fff0e8;--color-orange-100-rgb:255,240,232;--color-orange-200:#ffd1b9;--color-orange-200-rgb:255,209,185;--color-orange-300:#ffb08a;--color-orange-300-rgb:255,176,138;--color-orange-400:#ff9461;--color-orange-400-rgb:255,148,97;--color-orange-500:#e96c2f;--color-orange-500-rgb:233,108,47;--color-orange-600:#b74302;--color-orange-600-rgb:183,67,2;--color-orange-700:#903c00;--color-orange-700-rgb:144,60,0;--color-gray-100:#f9f9f9;--color-gray-100-rgb:249,249,249;--color-gray-200:#f4f4f5;--color-gray-200-rgb:244,244,245;--color-gray-300:#eaeaec;--color-gray-300-rgb:234,234,236;--color-gray-400:#cdcdd0;--color-gray-400-rgb:205,205,208;--color-gray-500:#878792;--color-gray-500-rgb:135,135,146;--color-gray-600:#524e56;--color-gray-600-rgb:82,78,86;--color-white:#fff;--color-white-rgb:255,255,255;--color-black:#000;--color-black-rgb:0,0,0;--data-viz-favorable:#7dd5bd;--data-viz-favorable-rgb:125,213,189;--data-viz-unfavorable:#e68d97;--data-viz-unfavorable-rgb:230,141,151;--layout-content-max-width:1392px;--layout-content-max-width-with-sidebar:1080px;--layout-content-side-margin:72px;--layout-mobile-actions-drawer-height:60px;--layout-navigation-bar-height:72px;--layout-breakpoints-medium:768px;--layout-breakpoints-large:1080px;--shadow-small-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06);--shadow-large-box-shadow:0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08);--spacing-0:0;--spacing-1:.0625rem;--spacing-2:.125rem;--spacing-4:.25rem;--spacing-6:.375rem;--spacing-8:.5rem;--spacing-12:.75rem;--spacing-16:1rem;--spacing-20:1.25rem;--spacing-24:1.5rem;--spacing-32:2rem;--spacing-40:2.5rem;--spacing-48:3rem;--spacing-56:3.5rem;--spacing-64:4rem;--spacing-72:4.5rem;--spacing-80:5rem;--spacing-96:6rem;--spacing-112:7rem;--spacing-128:8rem;--spacing-160:10rem;--spacing-200:12.5rem;--spacing-240:15rem;--spacing-280:17.5rem;--spacing-320:20rem;--spacing-xs:0.375rem;--spacing-sm:0.75rem;--spacing-md:1.5rem;--spacing-lg:2.25rem;--spacing-xl:3rem;--spacing-xxl:3.75rem;--spacing-xxxl:4.5rem;--spacing-xxxxl:5.25rem;--spacing-xxxxxl:6rem;--typography-data-large-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-font-weight:700;--typography-data-large-font-size:5.25rem;--typography-data-large-line-height:5.25rem;--typography-data-large-letter-spacing:normal;--typography-data-large-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-units-font-weight:700;--typography-data-large-units-font-size:2.625rem;--typography-data-large-units-line-height:5.25rem;--typography-data-large-units-letter-spacing:normal;--typography-data-medium-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-font-weight:700;--typography-data-medium-font-size:3rem;--typography-data-medium-line-height:5rem;--typography-data-medium-letter-spacing:normal;--typography-data-medium-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-units-font-weight:700;--typography-data-medium-units-font-size:1.5rem;--typography-data-medium-units-line-height:5rem;--typography-data-medium-units-letter-spacing:normal;--typography-data-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-font-weight:700;--typography-data-small-font-size:1.5rem;--typography-data-small-line-height:1.5rem;--typography-data-small-letter-spacing:normal;--typography-data-small-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-units-font-weight:700;--typography-data-small-units-font-size:1.125rem;--typography-data-small-units-line-height:1.5rem;--typography-data-small-units-letter-spacing:normal;--typography-display-0-font-family:"Tiempos Headline",Georgia,serif;--typography-display-0-font-weight:800;--typography-display-0-font-size:4.5rem;--typography-display-0-line-height:5.25rem;--typography-display-0-letter-spacing:0em;--typography-heading-1-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-1-font-weight:500;--typography-heading-1-font-size:2.125rem;--typography-heading-1-line-height:2.625rem;--typography-heading-1-letter-spacing:normal;--typography-heading-2-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-2-font-weight:600;--typography-heading-2-font-size:1.75rem;--typography-heading-2-line-height:2.25rem;--typography-heading-2-letter-spacing:normal;--typography-heading-3-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-3-font-weight:600;--typography-heading-3-font-size:1.375rem;--typography-heading-3-line-height:1.875rem;--typography-heading-3-letter-spacing:normal;--typography-heading-4-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-4-font-weight:600;--typography-heading-4-font-size:1.125rem;--typography-heading-4-line-height:1.5rem;--typography-heading-4-letter-spacing:normal;--typography-heading-5-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-5-font-weight:600;--typography-heading-5-font-size:1rem;--typography-heading-5-line-height:1.5rem;--typography-heading-5-letter-spacing:normal;--typography-heading-6-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-6-font-weight:600;--typography-heading-6-font-size:0.875rem;--typography-heading-6-line-height:1.5rem;--typography-heading-6-letter-spacing:normal;--typography-paragraph-intro-lede-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-intro-lede-font-weight:400;--typography-paragraph-intro-lede-font-size:1.25rem;--typography-paragraph-intro-lede-line-height:1.875rem;--typography-paragraph-intro-lede-letter-spacing:0;--typography-paragraph-intro-lede-max-width:975px;--typography-paragraph-body-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-body-font-weight:400;--typography-paragraph-body-font-size:1rem;--typography-paragraph-body-line-height:1.5rem;--typography-paragraph-body-letter-spacing:normal;--typography-paragraph-body-max-width:780px;--typography-paragraph-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-small-font-weight:400;--typography-paragraph-small-font-size:0.875rem;--typography-paragraph-small-line-height:1.125rem;--typography-paragraph-small-letter-spacing:normal;--typography-paragraph-small-max-width:680px;--typography-paragraph-extra-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-extra-small-font-weight:400;--typography-paragraph-extra-small-font-size:0.75rem;--typography-paragraph-extra-small-line-height:1.125rem;--typography-paragraph-extra-small-letter-spacing:normal;--typography-paragraph-extra-small-max-width:600px;--typography-paragraph-bold-font-weight:600;--typography-button-primary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-primary-font-weight:500;--typography-button-primary-font-size:1.125rem;--typography-button-primary-line-height:1.5rem;--typography-button-primary-letter-spacing:normal;--typography-button-secondary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-secondary-font-weight:500;--typography-button-secondary-font-size:1rem;--typography-button-secondary-line-height:1.5rem;--typography-button-secondary-letter-spacing:normal}}@layer normalize{html{text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{appearance:none}::-webkit-file-upload-button{appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}}@layer reset{@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Tiempos Headline;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}}@layer reset{*,:after,:before{border-color:var(--border-solid-border-color,"currentColor");border-style:solid;border-width:0}}
2
- /** THIS IS AN AUTOGENERATED FILE **/
3
- /** THIS IS AN AUTOGENERATED FILE **/
4
- /** THIS IS AN AUTOGENERATED FILE **/
5
- /** THIS IS AN AUTOGENERATED FILE **/
6
- /** THIS IS AN AUTOGENERATED FILE **/
7
- /** THIS IS AN AUTOGENERATED FILE **/
8
- .Tooltip-module_tooltip__efL1m {
9
- max-width: 200px;
10
- padding: var(--spacing-8, 0.5rem) var(--spacing-12, 0.75rem);
11
- color: var(--color-white, #ffffff);
12
- text-align: center;
13
- font-family: var(--typography-paragraph-extra-small-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
14
- font-size: var(--typography-paragraph-extra-small-font-size, 0.75rem);
15
- font-weight: var(--typography-paragraph-extra-small-font-weight, 400);
16
- letter-spacing: var(--typography-paragraph-extra-small-letter-spacing, normal);
17
- line-height: var(--typography-paragraph-extra-small-line-height, 1.125rem);
18
- border-radius: var(--border-solid-border-radius, 7px);
19
- box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
20
- background-color: var(--color-purple-800, #2f2438);
21
- text-wrap: pretty;
22
- /* fixes FF gap */
23
- transform: translate3d(0, 0, 0);
24
- }
25
- .Tooltip-module_tooltip__efL1m.Tooltip-module_reversed__NnCbZ {
26
- background-color: var(--color-white, #ffffff);
27
- color: var(--color-purple-800, #2f2438);
28
- }
29
- .Tooltip-module_tooltip__efL1m[data-placement=top] {
30
- --origin: translateY(4px);
31
- }
32
- .Tooltip-module_tooltip__efL1m[data-placement=bottom] {
33
- --origin: translateY(-4px);
34
- }
35
- .Tooltip-module_tooltip__efL1m[data-placement=right] {
36
- --origin: translateX(-4px);
37
- }
38
- .Tooltip-module_tooltip__efL1m[data-placement=left] {
39
- --origin: translateX(4px);
40
- }
41
- .Tooltip-module_tooltip__efL1m[data-entering] {
42
- animation: Tooltip-module_slide__lFdGA var(--animation-duration-fast, 300ms);
43
- }
44
- .Tooltip-module_tooltip__efL1m[data-exiting] {
45
- animation: Tooltip-module_slide__lFdGA var(--animation-duration-fast, 300ms) reverse var(--animation-easing-function-ease-in, cubic-bezier(0.55, 0.085, 0.68, 0.53));
46
- }
47
-
48
- @keyframes Tooltip-module_slide__lFdGA {
49
- from {
50
- transform: var(--origin);
51
- opacity: 0;
52
- }
53
- to {
54
- transform: translateY(0);
55
- opacity: 1;
56
- }
57
- }
58
2
  .Menu-module_menu__iHYqh {
59
3
  background-color: var(--color-white);
60
4
  color: var(--color-purple-800);
@@ -85,6 +29,40 @@
85
29
  display: block;
86
30
  margin-block: var(--spacing-6);
87
31
  }
32
+ .MenuItem-module_item__DPerF {
33
+ font-family: var(--typography-paragraph-body-font-family);
34
+ font-size: var(--typography-paragraph-body-font-size);
35
+ letter-spacing: var(--typography-paragraph-body-letter-spacing);
36
+ font-weight: var(--typography-paragraph-body-font-weight);
37
+ line-height: var(--typography-paragraph-body-line-height);
38
+ color: rgba(var(--color-purple-800-rgb), 0.7);
39
+ padding: var(--spacing-6) var(--spacing-8);
40
+ border: var(--border-focus-ring-border-width) var(--border-focus-ring-border-style) transparent;
41
+ border-radius: 4px;
42
+ display: flex;
43
+ gap: 0 var(--spacing-8);
44
+ align-items: center;
45
+ margin-inline: var(--spacing-6);
46
+ text-decoration: none;
47
+ cursor: pointer;
48
+ }
49
+
50
+ .MenuItem-module_iconWrapper__bRdQN {
51
+ flex-shrink: 0;
52
+ display: flex;
53
+ align-items: center;
54
+ }
55
+
56
+ .MenuItem-module_item__DPerF[data-focused] {
57
+ background-color: var(--color-blue-100);
58
+ color: var(--color-blue-500);
59
+ outline: none;
60
+ border-color: var(--color-blue-500);
61
+ }
62
+
63
+ .MenuItem-module_item__DPerF[data-disabled] {
64
+ opacity: 0.3;
65
+ }
88
66
  .Button-module_button__QOSYH {
89
67
  --button-min-height-width: var(--spacing-48);
90
68
  --button-padding-x: calc(
@@ -173,42 +151,64 @@
173
151
  --button-icon-size: var(--spacing-16);
174
152
  gap: var(--spacing-8);
175
153
  }
176
- .MenuItem-module_item__DPerF {
177
- font-family: var(--typography-paragraph-body-font-family);
178
- font-size: var(--typography-paragraph-body-font-size);
179
- letter-spacing: var(--typography-paragraph-body-letter-spacing);
180
- font-weight: var(--typography-paragraph-body-font-weight);
181
- line-height: var(--typography-paragraph-body-line-height);
182
- color: rgba(var(--color-purple-800-rgb), 0.7);
183
- padding: var(--spacing-6) var(--spacing-8);
184
- border: var(--border-focus-ring-border-width) var(--border-focus-ring-border-style) transparent;
185
- border-radius: 4px;
186
- display: flex;
187
- gap: 0 var(--spacing-8);
188
- align-items: center;
189
- margin-inline: var(--spacing-6);
190
- text-decoration: none;
191
- cursor: pointer;
154
+ .Focusable-module_focusableWrapper__NfuIi {
155
+ display: inline-flex;
192
156
  }
193
-
194
- .MenuItem-module_iconWrapper__bRdQN {
195
- flex-shrink: 0;
196
- display: flex;
197
- align-items: center;
157
+ /** THIS IS AN AUTOGENERATED FILE **/
158
+ /** THIS IS AN AUTOGENERATED FILE **/
159
+ /** THIS IS AN AUTOGENERATED FILE **/
160
+ /** THIS IS AN AUTOGENERATED FILE **/
161
+ /** THIS IS AN AUTOGENERATED FILE **/
162
+ /** THIS IS AN AUTOGENERATED FILE **/
163
+ .Tooltip-module_tooltip__efL1m {
164
+ max-width: 200px;
165
+ padding: var(--spacing-8, 0.5rem) var(--spacing-12, 0.75rem);
166
+ color: var(--color-white, #ffffff);
167
+ text-align: center;
168
+ font-family: var(--typography-paragraph-extra-small-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
169
+ font-size: var(--typography-paragraph-extra-small-font-size, 0.75rem);
170
+ font-weight: var(--typography-paragraph-extra-small-font-weight, 400);
171
+ letter-spacing: var(--typography-paragraph-extra-small-letter-spacing, normal);
172
+ line-height: var(--typography-paragraph-extra-small-line-height, 1.125rem);
173
+ border-radius: var(--border-solid-border-radius, 7px);
174
+ box-shadow: var(--shadow-small-box-shadow, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 3px 16px 0 rgba(0, 0, 0, 0.06));
175
+ background-color: var(--color-purple-800, #2f2438);
176
+ text-wrap: pretty;
177
+ /* fixes FF gap */
178
+ transform: translate3d(0, 0, 0);
198
179
  }
199
-
200
- .MenuItem-module_item__DPerF[data-focused] {
201
- background-color: var(--color-blue-100);
202
- color: var(--color-blue-500);
203
- outline: none;
204
- border-color: var(--color-blue-500);
180
+ .Tooltip-module_tooltip__efL1m.Tooltip-module_reversed__NnCbZ {
181
+ background-color: var(--color-white, #ffffff);
182
+ color: var(--color-purple-800, #2f2438);
205
183
  }
206
-
207
- .MenuItem-module_item__DPerF[data-disabled] {
208
- opacity: 0.3;
184
+ .Tooltip-module_tooltip__efL1m[data-placement=top] {
185
+ --origin: translateY(4px);
209
186
  }
210
- .Focusable-module_focusableWrapper__NfuIi {
211
- display: inline-flex;
187
+ .Tooltip-module_tooltip__efL1m[data-placement=bottom] {
188
+ --origin: translateY(-4px);
189
+ }
190
+ .Tooltip-module_tooltip__efL1m[data-placement=right] {
191
+ --origin: translateX(-4px);
192
+ }
193
+ .Tooltip-module_tooltip__efL1m[data-placement=left] {
194
+ --origin: translateX(4px);
195
+ }
196
+ .Tooltip-module_tooltip__efL1m[data-entering] {
197
+ animation: Tooltip-module_slide__lFdGA var(--animation-duration-fast, 300ms);
198
+ }
199
+ .Tooltip-module_tooltip__efL1m[data-exiting] {
200
+ animation: Tooltip-module_slide__lFdGA var(--animation-duration-fast, 300ms) reverse var(--animation-easing-function-ease-in, cubic-bezier(0.55, 0.085, 0.68, 0.53));
201
+ }
202
+
203
+ @keyframes Tooltip-module_slide__lFdGA {
204
+ from {
205
+ transform: var(--origin);
206
+ opacity: 0;
207
+ }
208
+ to {
209
+ transform: translateY(0);
210
+ opacity: 1;
211
+ }
212
212
  }
213
213
  /** THIS IS AN AUTOGENERATED FILE **/
214
214
  /** THIS IS AN AUTOGENERATED FILE **/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaizen/components",
3
- "version": "1.67.5",
3
+ "version": "1.67.7",
4
4
  "description": "Kaizen component library",
5
5
  "author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
6
6
  "homepage": "https://cultureamp.design",
@@ -80,7 +80,6 @@
80
80
  "react-select": "^5.8.2",
81
81
  "react-textfit": "^1.1.1",
82
82
  "resize-observer-polyfill": "^1.5.1",
83
- "tsx": "^4.19.1",
84
83
  "use-debounce": "^10.0.4",
85
84
  "uuid": "^10.0.0"
86
85
  },
@@ -106,7 +105,7 @@
106
105
  "postcss": "^8.4.47",
107
106
  "postcss-cli": "^11.0.0",
108
107
  "postcss-import": "^16.1.0",
109
- "postcss-preset-env": "^10.0.7",
108
+ "postcss-preset-env": "^10.0.8",
110
109
  "postcss-scss": "^4.0.9",
111
110
  "query-string": "^9.1.1",
112
111
  "react": "^18.3.1",
@@ -117,24 +116,25 @@
117
116
  "sass": "^1.77.8",
118
117
  "serialize-query-params": "^2.0.2",
119
118
  "svgo": "^3.3.2",
120
- "tslib": "^2.7.0",
121
- "tsx": "^4.19.1",
122
- "@kaizen/design-tokens": "10.8.0",
123
- "@kaizen/package-bundler": "1.1.8"
119
+ "tslib": "^2.8.0",
120
+ "tsx": "^4.19.2",
121
+ "@kaizen/package-bundler": "1.1.9",
122
+ "@kaizen/design-tokens": "10.8.1"
123
+ },
124
+ "devDependenciesComments": {
125
+ "typescript": "Installed in root"
124
126
  },
125
127
  "peerDependencies": {
126
128
  "@cultureamp/i18n-react-intl": "^2.5.9",
127
129
  "react": "^18.3.1",
128
130
  "react-dom": "^18.3.1",
129
131
  "react-intl": "^6.6.8",
130
- "typescript": "^5.5.4"
131
- },
132
- "peerDependenciesComments": {
133
- "typescript": "Used for codemods"
132
+ "typescript": "5.x"
134
133
  },
135
134
  "peerDependenciesMeta": {
136
135
  "typescript": {
137
- "optional": true
136
+ "optional": true,
137
+ "comments": "Used for codemods"
138
138
  }
139
139
  },
140
140
  "scripts": {
@@ -2,6 +2,6 @@
2
2
 
3
3
  pnpm svgo -f ./assets/svgs/icons -o ./src/Icon/bin/built-svgs/
4
4
 
5
- npx tsx ./src/Icon/bin/wrapSVGs.ts --source-dir ./src/Icon/bin/built-svgs --output-dir ./src/Icon --delete-source-dir
5
+ pnpm tsx ./src/Icon/bin/wrapSVGs.ts --source-dir ./src/Icon/bin/built-svgs --output-dir ./src/Icon --delete-source-dir
6
6
 
7
7
  pnpm prettier -w ./src/Icon