From 63f21111d28333cd6007c37529df99c08060e21b Mon Sep 17 00:00:00 2001
From: Josh <44883293+josh-bagwell@users.noreply.github.com>
Date: Tue, 7 Jan 2025 13:31:41 -0700
Subject: [PATCH 1/8] feat: Update CKR Dub and Logo References (#3089)
Fixes: #3012
Updated and added new dub and logo references in `preview`.
[category:Components]
Release Note:
Workday has new logos with updated colors. We've added these to the `preview` package for a smooth transition for consumers.
If you would like to consume these, here is the import:
```tsx
import {dubLogoPrimary, dubLogoReversed} from '@workday/canvas-kit-preview-react/common'
```
---
modules/preview-react/common/index.ts | 1 +
.../common/lib/parts/_brand-assets.ts | 19 +++++++++++++++++++
.../preview-react/common/lib/parts/index.ts | 1 +
3 files changed, 21 insertions(+)
create mode 100644 modules/preview-react/common/index.ts
create mode 100644 modules/preview-react/common/lib/parts/_brand-assets.ts
create mode 100644 modules/preview-react/common/lib/parts/index.ts
diff --git a/modules/preview-react/common/index.ts b/modules/preview-react/common/index.ts
new file mode 100644
index 0000000000..4d0460a842
--- /dev/null
+++ b/modules/preview-react/common/index.ts
@@ -0,0 +1 @@
+export * from './lib/parts';
diff --git a/modules/preview-react/common/lib/parts/_brand-assets.ts b/modules/preview-react/common/lib/parts/_brand-assets.ts
new file mode 100644
index 0000000000..9803749e3e
--- /dev/null
+++ b/modules/preview-react/common/lib/parts/_brand-assets.ts
@@ -0,0 +1,19 @@
+const CDN_URI = 'https://static.workday.com/brand-logos/';
+
+export const dubLogoPrimary = ``;
+
+export const dubLogoReversed = ``;
+
+export const dubLogoMonoBlue = ``;
+
+export const dubLogoMonoWhite = ``;
+
+export const wdayLogoPrimary = ``;
+
+export const wdayLogoReversed = ``;
+
+export const wdayLogoMonoBlue = ``;
+
+export const wdayLogoMonoWhite = ``;
+
+export const miniWdayLogoBlue = ``;
diff --git a/modules/preview-react/common/lib/parts/index.ts b/modules/preview-react/common/lib/parts/index.ts
new file mode 100644
index 0000000000..72eaa4aeee
--- /dev/null
+++ b/modules/preview-react/common/lib/parts/index.ts
@@ -0,0 +1 @@
+export * from './_brand-assets';
From 89515bbee1fc89eefc0e584f6194efc6b6266397 Mon Sep 17 00:00:00 2001
From: josh-bagwell
Date: Tue, 7 Jan 2025 20:34:56 +0000
Subject: [PATCH 2/8] chore: Release v11.2.0 [skip release]
---
CHANGELOG.md | 13 +++++++++++++
lerna.json | 2 +-
modules/codemod/package.json | 2 +-
modules/css/package.json | 2 +-
modules/docs/package.json | 10 +++++-----
modules/labs-css/package.json | 2 +-
modules/labs-react/package.json | 4 ++--
modules/popup-stack/package.json | 2 +-
modules/preview-css/package.json | 2 +-
modules/preview-react/package.json | 6 +++---
modules/react-fonts/package.json | 2 +-
modules/react/package.json | 6 +++---
modules/styling-transform/package.json | 4 ++--
modules/styling/package.json | 4 ++--
14 files changed, 37 insertions(+), 24 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e41507a478..2842e30e3b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [v11.2.0](https://github.com/Workday/canvas-kit/releases/tag/v11.2.0) (2025-01-07)
+
+### Components
+
+- feat: Update CKR Dub and Logo References ([#3089](https://github.com/Workday/canvas-kit/pull/3089)) ([@josh-bagwell](https://github.com/josh-bagwell))
+ Workday has new logos with updated colors. We've added these to the `preview` package for a smooth transition for consumers.
+
+ If you would like to consume these, here is the import:
+ ```tsx
+ import {dubLogoPrimary, dubLogoReversed} from '@workday/canvas-kit-preview-react/common'
+ ```
+
+
## [v11.1.26](https://github.com/Workday/canvas-kit/releases/tag/v11.1.26) (2024-12-20)
### Components
diff --git a/lerna.json b/lerna.json
index 04535af82e..fdbb4c1fb7 100644
--- a/lerna.json
+++ b/lerna.json
@@ -2,7 +2,7 @@
"packages": [
"modules/**"
],
- "version": "11.1.26",
+ "version": "11.2.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
diff --git a/modules/codemod/package.json b/modules/codemod/package.json
index 3f31d6f9a9..aa3c78836d 100644
--- a/modules/codemod/package.json
+++ b/modules/codemod/package.json
@@ -2,7 +2,7 @@
"name": "@workday/canvas-kit-codemod",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "A collection of codemods for use on Workday Canvas Kit packages.",
"main": "dist/es6/index.js",
"sideEffects": false,
diff --git a/modules/css/package.json b/modules/css/package.json
index a2c615c2d2..aa14b59cc1 100644
--- a/modules/css/package.json
+++ b/modules/css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-css",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "The parent module that contains all Workday Canvas Kit CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/docs/package.json b/modules/docs/package.json
index a1dcefc455..0afa74bc0a 100644
--- a/modules/docs/package.json
+++ b/modules/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-docs",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "Documentation components of Canvas Kit components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -44,10 +44,10 @@
"dependencies": {
"@emotion/styled": "^11.6.0",
"@storybook/csf": "0.0.1",
- "@workday/canvas-kit-labs-react": "^11.1.26",
- "@workday/canvas-kit-preview-react": "^11.1.26",
- "@workday/canvas-kit-react": "^11.1.26",
- "@workday/canvas-kit-styling": "^11.1.26",
+ "@workday/canvas-kit-labs-react": "^11.2.0",
+ "@workday/canvas-kit-preview-react": "^11.2.0",
+ "@workday/canvas-kit-react": "^11.2.0",
+ "@workday/canvas-kit-styling": "^11.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.0",
"markdown-to-jsx": "^7.2.0",
diff --git a/modules/labs-css/package.json b/modules/labs-css/package.json
index 381bc82eb4..6205554612 100644
--- a/modules/labs-css/package.json
+++ b/modules/labs-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-css",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "The parent module that contains all Workday Canvas Kit Labs CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/labs-react/package.json b/modules/labs-react/package.json
index 07693f472e..7b0a4ada0e 100644
--- a/modules/labs-react/package.json
+++ b/modules/labs-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-react",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "Canvas Kit Labs is an incubator for new and experimental components. Since we have a rather rigorous process for getting components in at a production level, it can be valuable to make them available earlier while we continuously iterate on the API/functionality. The Labs modules allow us to do that as needed.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,7 +46,7 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^11.1.26",
+ "@workday/canvas-kit-react": "^11.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/design-assets-types": "^0.2.8",
"chroma-js": "^2.1.0",
diff --git a/modules/popup-stack/package.json b/modules/popup-stack/package.json
index 63c7af0684..f0b9239129 100644
--- a/modules/popup-stack/package.json
+++ b/modules/popup-stack/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-popup-stack",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "Stack for managing popup UIs to coordinate global concerns like escape key handling and rendering order",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-css/package.json b/modules/preview-css/package.json
index fd8815110e..503f085d54 100644
--- a/modules/preview-css/package.json
+++ b/modules/preview-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-css",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "The parent module that contains all Workday Canvas Kit Preview CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-react/package.json b/modules/preview-react/package.json
index a348445975..86bcbc0962 100644
--- a/modules/preview-react/package.json
+++ b/modules/preview-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-react",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "Canvas Kit Preview is made up of components that have the full design and a11y review, are part of the DS ecosystem and are approved for use in product. The API's could be subject to change, but not without strong communication and migration strategies.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,8 +46,8 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^11.1.26",
- "@workday/canvas-kit-styling": "^11.1.26",
+ "@workday/canvas-kit-react": "^11.2.0",
+ "@workday/canvas-kit-styling": "^11.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.0",
"@workday/design-assets-types": "^0.2.8"
diff --git a/modules/react-fonts/package.json b/modules/react-fonts/package.json
index c059db4527..cbf8a30c72 100644
--- a/modules/react-fonts/package.json
+++ b/modules/react-fonts/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react-fonts",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "Fonts for canvas-kit-react",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/react/package.json b/modules/react/package.json
index c68df646c6..4aa4f92543 100644
--- a/modules/react/package.json
+++ b/modules/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "The parent module that contains all Workday Canvas Kit React components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -49,8 +49,8 @@
"@emotion/styled": "^11.6.0",
"@popperjs/core": "^2.5.4",
"@workday/canvas-colors-web": "^2.0.0",
- "@workday/canvas-kit-popup-stack": "^11.1.26",
- "@workday/canvas-kit-styling": "^11.1.26",
+ "@workday/canvas-kit-popup-stack": "^11.2.0",
+ "@workday/canvas-kit-styling": "^11.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.0",
"@workday/design-assets-types": "^0.2.8",
diff --git a/modules/styling-transform/package.json b/modules/styling-transform/package.json
index ebd1b3690b..6620b5863d 100644
--- a/modules/styling-transform/package.json
+++ b/modules/styling-transform/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling-transform",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -34,7 +34,7 @@
],
"dependencies": {
"@emotion/serialize": "^1.0.2",
- "@workday/canvas-kit-styling": "^11.1.26",
+ "@workday/canvas-kit-styling": "^11.2.0",
"@workday/canvas-tokens-web": "^2.0.0",
"stylis": "4.0.13",
"typescript": "4.2"
diff --git a/modules/styling/package.json b/modules/styling/package.json
index 5d8fcea69c..b0c3d7d606 100644
--- a/modules/styling/package.json
+++ b/modules/styling/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling",
- "version": "11.1.26",
+ "version": "11.2.0",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -53,7 +53,7 @@
"@emotion/react": "^11.7.1",
"@emotion/serialize": "^1.0.2",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^11.1.26",
+ "@workday/canvas-kit-react": "^11.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.0",
"typescript": "4.2"
From d77bb1ed2c3c921acc709f797fd91d0aaa0551ef Mon Sep 17 00:00:00 2001
From: josh-bagwell
Date: Tue, 7 Jan 2025 21:08:24 +0000
Subject: [PATCH 3/8] chore: Release v12.2.0 [skip release]
---
CHANGELOG.md | 13 +++++++++++++
lerna.json | 2 +-
modules/codemod/package.json | 2 +-
modules/css/package.json | 2 +-
modules/docs/package.json | 10 +++++-----
modules/labs-css/package.json | 2 +-
modules/labs-react/package.json | 6 +++---
modules/popup-stack/package.json | 2 +-
modules/preview-css/package.json | 2 +-
modules/preview-react/package.json | 6 +++---
modules/react-fonts/package.json | 2 +-
modules/react/package.json | 6 +++---
modules/styling-transform/package.json | 4 ++--
modules/styling/package.json | 4 ++--
14 files changed, 38 insertions(+), 25 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7f09722210..74a9a5f0a2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [v12.2.0](https://github.com/Workday/canvas-kit/releases/tag/v12.2.0) (2025-01-07)
+
+### Components
+
+- feat: Update CKR Dub and Logo References ([#3089](https://github.com/Workday/canvas-kit/pull/3089)) ([@josh-bagwell](https://github.com/josh-bagwell))
+ Workday has new logos with updated colors. We've added these to the `preview` package for a smooth transition for consumers.
+
+ If you would like to consume these, here is the import:
+ ```tsx
+ import {dubLogoPrimary, dubLogoReversed} from '@workday/canvas-kit-preview-react/common'
+ ```
+
+
## [v11.2.0](https://github.com/Workday/canvas-kit/releases/tag/v11.2.0) (2025-01-07)
### Components
diff --git a/lerna.json b/lerna.json
index 89b5d0b922..60baef80b9 100644
--- a/lerna.json
+++ b/lerna.json
@@ -2,7 +2,7 @@
"packages": [
"modules/**"
],
- "version": "12.1.16",
+ "version": "12.2.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
diff --git a/modules/codemod/package.json b/modules/codemod/package.json
index ab26fc7f06..eefdcdf02d 100644
--- a/modules/codemod/package.json
+++ b/modules/codemod/package.json
@@ -2,7 +2,7 @@
"name": "@workday/canvas-kit-codemod",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "A collection of codemods for use on Workday Canvas Kit packages.",
"main": "dist/es6/index.js",
"sideEffects": false,
diff --git a/modules/css/package.json b/modules/css/package.json
index e1ce6b2485..e3470b2627 100644
--- a/modules/css/package.json
+++ b/modules/css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-css",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "The parent module that contains all Workday Canvas Kit CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/docs/package.json b/modules/docs/package.json
index 54773ed7aa..fa988d57a6 100644
--- a/modules/docs/package.json
+++ b/modules/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-docs",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "Documentation components of Canvas Kit components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -44,10 +44,10 @@
"dependencies": {
"@emotion/styled": "^11.6.0",
"@storybook/csf": "0.0.1",
- "@workday/canvas-kit-labs-react": "^12.1.16",
- "@workday/canvas-kit-preview-react": "^12.1.16",
- "@workday/canvas-kit-react": "^12.1.16",
- "@workday/canvas-kit-styling": "^12.1.16",
+ "@workday/canvas-kit-labs-react": "^12.2.0",
+ "@workday/canvas-kit-preview-react": "^12.2.0",
+ "@workday/canvas-kit-react": "^12.2.0",
+ "@workday/canvas-kit-styling": "^12.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"markdown-to-jsx": "^7.2.0",
diff --git a/modules/labs-css/package.json b/modules/labs-css/package.json
index 3b8a321985..3dc1eaa9c6 100644
--- a/modules/labs-css/package.json
+++ b/modules/labs-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-css",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "The parent module that contains all Workday Canvas Kit Labs CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/labs-react/package.json b/modules/labs-react/package.json
index 8841c8b6a0..0eb250a4bd 100644
--- a/modules/labs-react/package.json
+++ b/modules/labs-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-react",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "Canvas Kit Labs is an incubator for new and experimental components. Since we have a rather rigorous process for getting components in at a production level, it can be valuable to make them available earlier while we continuously iterate on the API/functionality. The Labs modules allow us to do that as needed.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,8 +46,8 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^12.1.16",
- "@workday/canvas-kit-styling": "^12.1.16",
+ "@workday/canvas-kit-react": "^12.2.0",
+ "@workday/canvas-kit-styling": "^12.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"@workday/design-assets-types": "^0.2.8",
diff --git a/modules/popup-stack/package.json b/modules/popup-stack/package.json
index 55b79c1aba..3beb12e254 100644
--- a/modules/popup-stack/package.json
+++ b/modules/popup-stack/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-popup-stack",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "Stack for managing popup UIs to coordinate global concerns like escape key handling and rendering order",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-css/package.json b/modules/preview-css/package.json
index 4995b7625d..5621f44ebd 100644
--- a/modules/preview-css/package.json
+++ b/modules/preview-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-css",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "The parent module that contains all Workday Canvas Kit Preview CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-react/package.json b/modules/preview-react/package.json
index 3d10e7c056..563f83ab8f 100644
--- a/modules/preview-react/package.json
+++ b/modules/preview-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-react",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "Canvas Kit Preview is made up of components that have the full design and a11y review, are part of the DS ecosystem and are approved for use in product. The API's could be subject to change, but not without strong communication and migration strategies.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,8 +46,8 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^12.1.16",
- "@workday/canvas-kit-styling": "^12.1.16",
+ "@workday/canvas-kit-react": "^12.2.0",
+ "@workday/canvas-kit-styling": "^12.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"@workday/design-assets-types": "^0.2.8"
diff --git a/modules/react-fonts/package.json b/modules/react-fonts/package.json
index 071b2d3c86..9cb465c852 100644
--- a/modules/react-fonts/package.json
+++ b/modules/react-fonts/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react-fonts",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "Fonts for canvas-kit-react",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/react/package.json b/modules/react/package.json
index cd3db27292..ba844ef622 100644
--- a/modules/react/package.json
+++ b/modules/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "The parent module that contains all Workday Canvas Kit React components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -49,8 +49,8 @@
"@emotion/styled": "^11.6.0",
"@popperjs/core": "^2.5.4",
"@workday/canvas-colors-web": "^2.0.0",
- "@workday/canvas-kit-popup-stack": "^12.1.16",
- "@workday/canvas-kit-styling": "^12.1.16",
+ "@workday/canvas-kit-popup-stack": "^12.2.0",
+ "@workday/canvas-kit-styling": "^12.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"@workday/design-assets-types": "^0.2.8",
diff --git a/modules/styling-transform/package.json b/modules/styling-transform/package.json
index e58d64f62b..dd826f3a92 100644
--- a/modules/styling-transform/package.json
+++ b/modules/styling-transform/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling-transform",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -34,7 +34,7 @@
],
"dependencies": {
"@emotion/serialize": "^1.0.2",
- "@workday/canvas-kit-styling": "^12.1.16",
+ "@workday/canvas-kit-styling": "^12.2.0",
"@workday/canvas-tokens-web": "^2.0.1",
"stylis": "4.0.13",
"ts-node": "^10.9.1",
diff --git a/modules/styling/package.json b/modules/styling/package.json
index b932744b18..e9f8639c9b 100644
--- a/modules/styling/package.json
+++ b/modules/styling/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling",
- "version": "12.1.16",
+ "version": "12.2.0",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -53,7 +53,7 @@
"@emotion/react": "^11.7.1",
"@emotion/serialize": "^1.0.2",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^12.1.16",
+ "@workday/canvas-kit-react": "^12.2.0",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"typescript": "5.0"
From 0b95c5e900227395d0b2a5339fa776177a5f0c66 Mon Sep 17 00:00:00 2001
From: Josh <44883293+josh-bagwell@users.noreply.github.com>
Date: Tue, 7 Jan 2025 15:27:07 -0700
Subject: [PATCH 4/8] fix: Added CKR Dub and Logo References to preview package
(#3093)
Fixes: #3092
Added the new and updated CKR Dub and logo references to export from the preview package.
[category:Components]
---
modules/preview-react/index.ts | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/preview-react/index.ts b/modules/preview-react/index.ts
index d0a5f54083..3219c5f582 100644
--- a/modules/preview-react/index.ts
+++ b/modules/preview-react/index.ts
@@ -1,4 +1,5 @@
export * from './color-picker';
+export * from './common';
export * from './divider';
export * from './form-field';
export * from './loading-sparkles';
From ab29c0d8306dfaa2692f0c9c67c2d69a25ec4bc8 Mon Sep 17 00:00:00 2001
From: alanbsmith
Date: Tue, 7 Jan 2025 22:29:00 +0000
Subject: [PATCH 5/8] chore: Release v11.2.1 [skip release]
---
CHANGELOG.md | 7 +++++++
lerna.json | 2 +-
modules/codemod/package.json | 2 +-
modules/css/package.json | 2 +-
modules/docs/package.json | 10 +++++-----
modules/labs-css/package.json | 2 +-
modules/labs-react/package.json | 4 ++--
modules/popup-stack/package.json | 2 +-
modules/preview-css/package.json | 2 +-
modules/preview-react/package.json | 6 +++---
modules/react-fonts/package.json | 2 +-
modules/react/package.json | 6 +++---
modules/styling-transform/package.json | 4 ++--
modules/styling/package.json | 4 ++--
14 files changed, 31 insertions(+), 24 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2842e30e3b..7ab3a78036 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [v11.2.1](https://github.com/Workday/canvas-kit/releases/tag/v11.2.1) (2025-01-07)
+
+### Components
+
+- fix: Added CKR Dub and Logo References to preview package ([#3093](https://github.com/Workday/canvas-kit/pull/3093)) ([@josh-bagwell](https://github.com/josh-bagwell))
+
+
## [v11.2.0](https://github.com/Workday/canvas-kit/releases/tag/v11.2.0) (2025-01-07)
### Components
diff --git a/lerna.json b/lerna.json
index fdbb4c1fb7..7cde1928ff 100644
--- a/lerna.json
+++ b/lerna.json
@@ -2,7 +2,7 @@
"packages": [
"modules/**"
],
- "version": "11.2.0",
+ "version": "11.2.1",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
diff --git a/modules/codemod/package.json b/modules/codemod/package.json
index aa3c78836d..a147b320a7 100644
--- a/modules/codemod/package.json
+++ b/modules/codemod/package.json
@@ -2,7 +2,7 @@
"name": "@workday/canvas-kit-codemod",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "A collection of codemods for use on Workday Canvas Kit packages.",
"main": "dist/es6/index.js",
"sideEffects": false,
diff --git a/modules/css/package.json b/modules/css/package.json
index aa14b59cc1..ea2a2d2a94 100644
--- a/modules/css/package.json
+++ b/modules/css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-css",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "The parent module that contains all Workday Canvas Kit CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/docs/package.json b/modules/docs/package.json
index 0afa74bc0a..405736c8df 100644
--- a/modules/docs/package.json
+++ b/modules/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-docs",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "Documentation components of Canvas Kit components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -44,10 +44,10 @@
"dependencies": {
"@emotion/styled": "^11.6.0",
"@storybook/csf": "0.0.1",
- "@workday/canvas-kit-labs-react": "^11.2.0",
- "@workday/canvas-kit-preview-react": "^11.2.0",
- "@workday/canvas-kit-react": "^11.2.0",
- "@workday/canvas-kit-styling": "^11.2.0",
+ "@workday/canvas-kit-labs-react": "^11.2.1",
+ "@workday/canvas-kit-preview-react": "^11.2.1",
+ "@workday/canvas-kit-react": "^11.2.1",
+ "@workday/canvas-kit-styling": "^11.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.0",
"markdown-to-jsx": "^7.2.0",
diff --git a/modules/labs-css/package.json b/modules/labs-css/package.json
index 6205554612..fafb3a0175 100644
--- a/modules/labs-css/package.json
+++ b/modules/labs-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-css",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "The parent module that contains all Workday Canvas Kit Labs CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/labs-react/package.json b/modules/labs-react/package.json
index 7b0a4ada0e..ff80e8ae9d 100644
--- a/modules/labs-react/package.json
+++ b/modules/labs-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-react",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "Canvas Kit Labs is an incubator for new and experimental components. Since we have a rather rigorous process for getting components in at a production level, it can be valuable to make them available earlier while we continuously iterate on the API/functionality. The Labs modules allow us to do that as needed.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,7 +46,7 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^11.2.0",
+ "@workday/canvas-kit-react": "^11.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/design-assets-types": "^0.2.8",
"chroma-js": "^2.1.0",
diff --git a/modules/popup-stack/package.json b/modules/popup-stack/package.json
index f0b9239129..231a191e9d 100644
--- a/modules/popup-stack/package.json
+++ b/modules/popup-stack/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-popup-stack",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "Stack for managing popup UIs to coordinate global concerns like escape key handling and rendering order",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-css/package.json b/modules/preview-css/package.json
index 503f085d54..34df380494 100644
--- a/modules/preview-css/package.json
+++ b/modules/preview-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-css",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "The parent module that contains all Workday Canvas Kit Preview CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-react/package.json b/modules/preview-react/package.json
index 86bcbc0962..f74788fc25 100644
--- a/modules/preview-react/package.json
+++ b/modules/preview-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-react",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "Canvas Kit Preview is made up of components that have the full design and a11y review, are part of the DS ecosystem and are approved for use in product. The API's could be subject to change, but not without strong communication and migration strategies.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,8 +46,8 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^11.2.0",
- "@workday/canvas-kit-styling": "^11.2.0",
+ "@workday/canvas-kit-react": "^11.2.1",
+ "@workday/canvas-kit-styling": "^11.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.0",
"@workday/design-assets-types": "^0.2.8"
diff --git a/modules/react-fonts/package.json b/modules/react-fonts/package.json
index cbf8a30c72..1ecaf27037 100644
--- a/modules/react-fonts/package.json
+++ b/modules/react-fonts/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react-fonts",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "Fonts for canvas-kit-react",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/react/package.json b/modules/react/package.json
index 4aa4f92543..8c0276746c 100644
--- a/modules/react/package.json
+++ b/modules/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "The parent module that contains all Workday Canvas Kit React components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -49,8 +49,8 @@
"@emotion/styled": "^11.6.0",
"@popperjs/core": "^2.5.4",
"@workday/canvas-colors-web": "^2.0.0",
- "@workday/canvas-kit-popup-stack": "^11.2.0",
- "@workday/canvas-kit-styling": "^11.2.0",
+ "@workday/canvas-kit-popup-stack": "^11.2.1",
+ "@workday/canvas-kit-styling": "^11.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.0",
"@workday/design-assets-types": "^0.2.8",
diff --git a/modules/styling-transform/package.json b/modules/styling-transform/package.json
index 6620b5863d..bd4f1caf9b 100644
--- a/modules/styling-transform/package.json
+++ b/modules/styling-transform/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling-transform",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -34,7 +34,7 @@
],
"dependencies": {
"@emotion/serialize": "^1.0.2",
- "@workday/canvas-kit-styling": "^11.2.0",
+ "@workday/canvas-kit-styling": "^11.2.1",
"@workday/canvas-tokens-web": "^2.0.0",
"stylis": "4.0.13",
"typescript": "4.2"
diff --git a/modules/styling/package.json b/modules/styling/package.json
index b0c3d7d606..d0811d867d 100644
--- a/modules/styling/package.json
+++ b/modules/styling/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling",
- "version": "11.2.0",
+ "version": "11.2.1",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -53,7 +53,7 @@
"@emotion/react": "^11.7.1",
"@emotion/serialize": "^1.0.2",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^11.2.0",
+ "@workday/canvas-kit-react": "^11.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.0",
"typescript": "4.2"
From 792c7100603df558cd7e43e46e01982a7998b5b6 Mon Sep 17 00:00:00 2001
From: alanbsmith
Date: Tue, 7 Jan 2025 22:58:12 +0000
Subject: [PATCH 6/8] chore: Release v12.2.1 [skip release]
---
CHANGELOG.md | 7 +++++++
lerna.json | 2 +-
modules/codemod/package.json | 2 +-
modules/css/package.json | 2 +-
modules/docs/package.json | 10 +++++-----
modules/labs-css/package.json | 2 +-
modules/labs-react/package.json | 6 +++---
modules/popup-stack/package.json | 2 +-
modules/preview-css/package.json | 2 +-
modules/preview-react/package.json | 6 +++---
modules/react-fonts/package.json | 2 +-
modules/react/package.json | 6 +++---
modules/styling-transform/package.json | 4 ++--
modules/styling/package.json | 4 ++--
14 files changed, 32 insertions(+), 25 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index df3720d963..9ba89679ae 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [v12.2.1](https://github.com/Workday/canvas-kit/releases/tag/v12.2.1) (2025-01-07)
+
+### Components
+
+- fix: Added CKR Dub and Logo References to preview package ([#3093](https://github.com/Workday/canvas-kit/pull/3093)) ([@josh-bagwell](https://github.com/josh-bagwell))
+
+
## [v11.2.1](https://github.com/Workday/canvas-kit/releases/tag/v11.2.1) (2025-01-07)
### Components
diff --git a/lerna.json b/lerna.json
index 60baef80b9..31d0f82df2 100644
--- a/lerna.json
+++ b/lerna.json
@@ -2,7 +2,7 @@
"packages": [
"modules/**"
],
- "version": "12.2.0",
+ "version": "12.2.1",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
diff --git a/modules/codemod/package.json b/modules/codemod/package.json
index eefdcdf02d..b47bafd599 100644
--- a/modules/codemod/package.json
+++ b/modules/codemod/package.json
@@ -2,7 +2,7 @@
"name": "@workday/canvas-kit-codemod",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "A collection of codemods for use on Workday Canvas Kit packages.",
"main": "dist/es6/index.js",
"sideEffects": false,
diff --git a/modules/css/package.json b/modules/css/package.json
index e3470b2627..548a15a0ef 100644
--- a/modules/css/package.json
+++ b/modules/css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-css",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "The parent module that contains all Workday Canvas Kit CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/docs/package.json b/modules/docs/package.json
index fa988d57a6..b0261466b6 100644
--- a/modules/docs/package.json
+++ b/modules/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-docs",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "Documentation components of Canvas Kit components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -44,10 +44,10 @@
"dependencies": {
"@emotion/styled": "^11.6.0",
"@storybook/csf": "0.0.1",
- "@workday/canvas-kit-labs-react": "^12.2.0",
- "@workday/canvas-kit-preview-react": "^12.2.0",
- "@workday/canvas-kit-react": "^12.2.0",
- "@workday/canvas-kit-styling": "^12.2.0",
+ "@workday/canvas-kit-labs-react": "^12.2.1",
+ "@workday/canvas-kit-preview-react": "^12.2.1",
+ "@workday/canvas-kit-react": "^12.2.1",
+ "@workday/canvas-kit-styling": "^12.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"markdown-to-jsx": "^7.2.0",
diff --git a/modules/labs-css/package.json b/modules/labs-css/package.json
index 3dc1eaa9c6..97767bf5d3 100644
--- a/modules/labs-css/package.json
+++ b/modules/labs-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-css",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "The parent module that contains all Workday Canvas Kit Labs CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/labs-react/package.json b/modules/labs-react/package.json
index 0eb250a4bd..f7bcef5b4d 100644
--- a/modules/labs-react/package.json
+++ b/modules/labs-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-react",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "Canvas Kit Labs is an incubator for new and experimental components. Since we have a rather rigorous process for getting components in at a production level, it can be valuable to make them available earlier while we continuously iterate on the API/functionality. The Labs modules allow us to do that as needed.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,8 +46,8 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^12.2.0",
- "@workday/canvas-kit-styling": "^12.2.0",
+ "@workday/canvas-kit-react": "^12.2.1",
+ "@workday/canvas-kit-styling": "^12.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"@workday/design-assets-types": "^0.2.8",
diff --git a/modules/popup-stack/package.json b/modules/popup-stack/package.json
index 3beb12e254..33152ca644 100644
--- a/modules/popup-stack/package.json
+++ b/modules/popup-stack/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-popup-stack",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "Stack for managing popup UIs to coordinate global concerns like escape key handling and rendering order",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-css/package.json b/modules/preview-css/package.json
index 5621f44ebd..53a81ee18b 100644
--- a/modules/preview-css/package.json
+++ b/modules/preview-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-css",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "The parent module that contains all Workday Canvas Kit Preview CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-react/package.json b/modules/preview-react/package.json
index 563f83ab8f..fd17c5b351 100644
--- a/modules/preview-react/package.json
+++ b/modules/preview-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-react",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "Canvas Kit Preview is made up of components that have the full design and a11y review, are part of the DS ecosystem and are approved for use in product. The API's could be subject to change, but not without strong communication and migration strategies.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,8 +46,8 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^12.2.0",
- "@workday/canvas-kit-styling": "^12.2.0",
+ "@workday/canvas-kit-react": "^12.2.1",
+ "@workday/canvas-kit-styling": "^12.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"@workday/design-assets-types": "^0.2.8"
diff --git a/modules/react-fonts/package.json b/modules/react-fonts/package.json
index 9cb465c852..1d46d95ae9 100644
--- a/modules/react-fonts/package.json
+++ b/modules/react-fonts/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react-fonts",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "Fonts for canvas-kit-react",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/react/package.json b/modules/react/package.json
index ba844ef622..56e36069c1 100644
--- a/modules/react/package.json
+++ b/modules/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "The parent module that contains all Workday Canvas Kit React components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -49,8 +49,8 @@
"@emotion/styled": "^11.6.0",
"@popperjs/core": "^2.5.4",
"@workday/canvas-colors-web": "^2.0.0",
- "@workday/canvas-kit-popup-stack": "^12.2.0",
- "@workday/canvas-kit-styling": "^12.2.0",
+ "@workday/canvas-kit-popup-stack": "^12.2.1",
+ "@workday/canvas-kit-styling": "^12.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"@workday/design-assets-types": "^0.2.8",
diff --git a/modules/styling-transform/package.json b/modules/styling-transform/package.json
index dd826f3a92..582dcad4b6 100644
--- a/modules/styling-transform/package.json
+++ b/modules/styling-transform/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling-transform",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -34,7 +34,7 @@
],
"dependencies": {
"@emotion/serialize": "^1.0.2",
- "@workday/canvas-kit-styling": "^12.2.0",
+ "@workday/canvas-kit-styling": "^12.2.1",
"@workday/canvas-tokens-web": "^2.0.1",
"stylis": "4.0.13",
"ts-node": "^10.9.1",
diff --git a/modules/styling/package.json b/modules/styling/package.json
index e9f8639c9b..93ccd4596d 100644
--- a/modules/styling/package.json
+++ b/modules/styling/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling",
- "version": "12.2.0",
+ "version": "12.2.1",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -53,7 +53,7 @@
"@emotion/react": "^11.7.1",
"@emotion/serialize": "^1.0.2",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^12.2.0",
+ "@workday/canvas-kit-react": "^12.2.1",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"typescript": "5.0"
From 786eb95c0609bb8fb3710d683096086629b65a1f Mon Sep 17 00:00:00 2001
From: Manuel Carrera
Date: Tue, 7 Jan 2025 16:24:34 -0700
Subject: [PATCH 7/8] fix: Add overflowWrap on MenuItem (#3094)
Fixes: https://github.com/Workday/canvas-kit/issues/3091
[category:Components]
Co-authored-by: manuel.carrera
---
modules/react/menu/lib/MenuItem.tsx | 1 +
modules/react/menu/stories/testingVisual.stories.tsx | 1 +
2 files changed, 2 insertions(+)
diff --git a/modules/react/menu/lib/MenuItem.tsx b/modules/react/menu/lib/MenuItem.tsx
index 0cf94473dc..75bf236d5d 100644
--- a/modules/react/menu/lib/MenuItem.tsx
+++ b/modules/react/menu/lib/MenuItem.tsx
@@ -68,6 +68,7 @@ export const menuItemStencil = createStencil({
transition: 'background-color 80ms, color 80ms',
backgroundColor: 'inherit',
minHeight: system.space.x10,
+ overflowWrap: 'anywhere',
// We want the icon colors to be the same as the text color
[systemIconStencil.vars.color]: 'currentcolor',
diff --git a/modules/react/menu/stories/testingVisual.stories.tsx b/modules/react/menu/stories/testingVisual.stories.tsx
index d66750cc73..1c1b907c32 100644
--- a/modules/react/menu/stories/testingVisual.stories.tsx
+++ b/modules/react/menu/stories/testingVisual.stories.tsx
@@ -33,6 +33,7 @@ const AllStatesMenuItem = () => (
Focused & Hovered Item
Disabled Item
Wrapped Text Item Wrapped Text Item Wrapped Text Item
+ Superlonglinethatshouldbreakonitsownwithouthavingtodoanythingspecial
Menu item between dividers
From 43600098f5347d9100d07a8663721bbaede5a4f1 Mon Sep 17 00:00:00 2001
From: alanbsmith
Date: Tue, 7 Jan 2025 23:26:21 +0000
Subject: [PATCH 8/8] chore: Release v12.2.2 [skip release]
---
CHANGELOG.md | 7 +++++++
lerna.json | 2 +-
modules/codemod/package.json | 2 +-
modules/css/package.json | 2 +-
modules/docs/package.json | 10 +++++-----
modules/labs-css/package.json | 2 +-
modules/labs-react/package.json | 6 +++---
modules/popup-stack/package.json | 2 +-
modules/preview-css/package.json | 2 +-
modules/preview-react/package.json | 6 +++---
modules/react-fonts/package.json | 2 +-
modules/react/package.json | 6 +++---
modules/styling-transform/package.json | 4 ++--
modules/styling/package.json | 4 ++--
14 files changed, 32 insertions(+), 25 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9ba89679ae..9ab4fcd1cb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [v12.2.2](https://github.com/Workday/canvas-kit/releases/tag/v12.2.2) (2025-01-07)
+
+### Components
+
+- fix: Add overflowWrap on MenuItem ([#3094](https://github.com/Workday/canvas-kit/pull/3094)) ([@mannycarrera4](https://github.com/mannycarrera4), manuel.carrera)
+
+
## [v12.2.1](https://github.com/Workday/canvas-kit/releases/tag/v12.2.1) (2025-01-07)
### Components
diff --git a/lerna.json b/lerna.json
index 31d0f82df2..05ddf71170 100644
--- a/lerna.json
+++ b/lerna.json
@@ -2,7 +2,7 @@
"packages": [
"modules/**"
],
- "version": "12.2.1",
+ "version": "12.2.2",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
diff --git a/modules/codemod/package.json b/modules/codemod/package.json
index b47bafd599..770d72ca54 100644
--- a/modules/codemod/package.json
+++ b/modules/codemod/package.json
@@ -2,7 +2,7 @@
"name": "@workday/canvas-kit-codemod",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "A collection of codemods for use on Workday Canvas Kit packages.",
"main": "dist/es6/index.js",
"sideEffects": false,
diff --git a/modules/css/package.json b/modules/css/package.json
index 548a15a0ef..894d1d1c85 100644
--- a/modules/css/package.json
+++ b/modules/css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-css",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "The parent module that contains all Workday Canvas Kit CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/docs/package.json b/modules/docs/package.json
index b0261466b6..9a283be72d 100644
--- a/modules/docs/package.json
+++ b/modules/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-docs",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "Documentation components of Canvas Kit components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -44,10 +44,10 @@
"dependencies": {
"@emotion/styled": "^11.6.0",
"@storybook/csf": "0.0.1",
- "@workday/canvas-kit-labs-react": "^12.2.1",
- "@workday/canvas-kit-preview-react": "^12.2.1",
- "@workday/canvas-kit-react": "^12.2.1",
- "@workday/canvas-kit-styling": "^12.2.1",
+ "@workday/canvas-kit-labs-react": "^12.2.2",
+ "@workday/canvas-kit-preview-react": "^12.2.2",
+ "@workday/canvas-kit-react": "^12.2.2",
+ "@workday/canvas-kit-styling": "^12.2.2",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"markdown-to-jsx": "^7.2.0",
diff --git a/modules/labs-css/package.json b/modules/labs-css/package.json
index 97767bf5d3..75d67ff41d 100644
--- a/modules/labs-css/package.json
+++ b/modules/labs-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-css",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "The parent module that contains all Workday Canvas Kit Labs CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/labs-react/package.json b/modules/labs-react/package.json
index f7bcef5b4d..e6d370e27a 100644
--- a/modules/labs-react/package.json
+++ b/modules/labs-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-labs-react",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "Canvas Kit Labs is an incubator for new and experimental components. Since we have a rather rigorous process for getting components in at a production level, it can be valuable to make them available earlier while we continuously iterate on the API/functionality. The Labs modules allow us to do that as needed.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,8 +46,8 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^12.2.1",
- "@workday/canvas-kit-styling": "^12.2.1",
+ "@workday/canvas-kit-react": "^12.2.2",
+ "@workday/canvas-kit-styling": "^12.2.2",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"@workday/design-assets-types": "^0.2.8",
diff --git a/modules/popup-stack/package.json b/modules/popup-stack/package.json
index 33152ca644..2a9a3b8827 100644
--- a/modules/popup-stack/package.json
+++ b/modules/popup-stack/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-popup-stack",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "Stack for managing popup UIs to coordinate global concerns like escape key handling and rendering order",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-css/package.json b/modules/preview-css/package.json
index 53a81ee18b..1653f9b7c4 100644
--- a/modules/preview-css/package.json
+++ b/modules/preview-css/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-css",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "The parent module that contains all Workday Canvas Kit Preview CSS components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/preview-react/package.json b/modules/preview-react/package.json
index fd17c5b351..1439470f0f 100644
--- a/modules/preview-react/package.json
+++ b/modules/preview-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-preview-react",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "Canvas Kit Preview is made up of components that have the full design and a11y review, are part of the DS ecosystem and are approved for use in product. The API's could be subject to change, but not without strong communication and migration strategies.",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -46,8 +46,8 @@
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^12.2.1",
- "@workday/canvas-kit-styling": "^12.2.1",
+ "@workday/canvas-kit-react": "^12.2.2",
+ "@workday/canvas-kit-styling": "^12.2.2",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"@workday/design-assets-types": "^0.2.8"
diff --git a/modules/react-fonts/package.json b/modules/react-fonts/package.json
index 1d46d95ae9..9ca087c4bc 100644
--- a/modules/react-fonts/package.json
+++ b/modules/react-fonts/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react-fonts",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "Fonts for canvas-kit-react",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
diff --git a/modules/react/package.json b/modules/react/package.json
index 56e36069c1..5d1f733e0c 100644
--- a/modules/react/package.json
+++ b/modules/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-react",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "The parent module that contains all Workday Canvas Kit React components",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -49,8 +49,8 @@
"@emotion/styled": "^11.6.0",
"@popperjs/core": "^2.5.4",
"@workday/canvas-colors-web": "^2.0.0",
- "@workday/canvas-kit-popup-stack": "^12.2.1",
- "@workday/canvas-kit-styling": "^12.2.1",
+ "@workday/canvas-kit-popup-stack": "^12.2.2",
+ "@workday/canvas-kit-styling": "^12.2.2",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"@workday/design-assets-types": "^0.2.8",
diff --git a/modules/styling-transform/package.json b/modules/styling-transform/package.json
index 582dcad4b6..0e206a202c 100644
--- a/modules/styling-transform/package.json
+++ b/modules/styling-transform/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling-transform",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -34,7 +34,7 @@
],
"dependencies": {
"@emotion/serialize": "^1.0.2",
- "@workday/canvas-kit-styling": "^12.2.1",
+ "@workday/canvas-kit-styling": "^12.2.2",
"@workday/canvas-tokens-web": "^2.0.1",
"stylis": "4.0.13",
"ts-node": "^10.9.1",
diff --git a/modules/styling/package.json b/modules/styling/package.json
index 93ccd4596d..862d45087e 100644
--- a/modules/styling/package.json
+++ b/modules/styling/package.json
@@ -1,6 +1,6 @@
{
"name": "@workday/canvas-kit-styling",
- "version": "12.2.1",
+ "version": "12.2.2",
"description": "The custom CSS in JS solution that takes JS styles and turns them into static CSS",
"author": "Workday, Inc. (https://www.workday.com)",
"license": "Apache-2.0",
@@ -53,7 +53,7 @@
"@emotion/react": "^11.7.1",
"@emotion/serialize": "^1.0.2",
"@emotion/styled": "^11.6.0",
- "@workday/canvas-kit-react": "^12.2.1",
+ "@workday/canvas-kit-react": "^12.2.2",
"@workday/canvas-system-icons-web": "^3.0.0",
"@workday/canvas-tokens-web": "^2.0.1",
"typescript": "5.0"