@workday/canvas-kit-docs 13.2.54 → 13.2.55

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.
@@ -510569,6 +510569,46 @@ export const docs = (typeof window !== 'undefined' && window.__docs) ||
510569
510569
  }
510570
510570
  }
510571
510571
  },
510572
+ {
510573
+ "name": "maybeWrapCSSVariables",
510574
+ "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/styling/lib/cs.ts",
510575
+ "description": "Wrap all unwrapped CSS Variables. For example, `{padding: '--foo'}` will be replaced with\n`{padding: 'var(--foo)'}`. It also works on variables in the middle of the property. Takes any\nstring and returns a string with CSS variables wrapped if necessary.\n\n```ts\nmaybeWrapCSSVariables('1rem'); // 1rem\nmaybeWrapCSSVariables('--foo'); // var(--foo)\nmaybeWrapCSSVariables('var(--foo)'); // var(--foo)\nmaybeWrapCSSVariables('calc(--foo)'); // calc(var(--foo))\n```",
510576
+ "declarations": [
510577
+ {
510578
+ "name": "maybeWrapCSSVariables",
510579
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/styling/lib/cs.ts"
510580
+ }
510581
+ ],
510582
+ "tags": {},
510583
+ "type": {
510584
+ "kind": "function",
510585
+ "parameters": [
510586
+ {
510587
+ "kind": "parameter",
510588
+ "name": "input",
510589
+ "type": {
510590
+ "kind": "primitive",
510591
+ "value": "string"
510592
+ },
510593
+ "required": true,
510594
+ "rest": false,
510595
+ "description": "",
510596
+ "declarations": [
510597
+ {
510598
+ "name": "input",
510599
+ "filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/styling/lib/cs.ts"
510600
+ }
510601
+ ],
510602
+ "tags": {}
510603
+ }
510604
+ ],
510605
+ "members": [],
510606
+ "returnType": {
510607
+ "kind": "primitive",
510608
+ "value": "string"
510609
+ }
510610
+ }
510611
+ },
510572
510612
  {
510573
510613
  "name": "wrapProperty",
510574
510614
  "fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/styling/lib/cs.ts",
@@ -18,11 +18,11 @@ export const packageJSONFile = `{
18
18
  "@emotion/react": "11.11.4",
19
19
  "@types/react": "18.2.60",
20
20
  "@types/react-dom": "18.2.19",
21
- "@workday/canvas-kit-labs-react": "13.2.54",
22
- "@workday/canvas-kit-preview-react": "13.2.54",
23
- "@workday/canvas-kit-react": "13.2.54",
24
- "@workday/canvas-kit-react-fonts": "^13.2.54",
25
- "@workday/canvas-kit-styling": "13.2.54",
21
+ "@workday/canvas-kit-labs-react": "13.2.55",
22
+ "@workday/canvas-kit-preview-react": "13.2.55",
23
+ "@workday/canvas-kit-react": "13.2.55",
24
+ "@workday/canvas-kit-react-fonts": "^13.2.55",
25
+ "@workday/canvas-kit-styling": "13.2.55",
26
26
  "@workday/canvas-system-icons-web": "3.0.22",
27
27
  "@workday/canvas-tokens-web": "2.0.0"
28
28
  },
@@ -18,11 +18,11 @@ export const packageJSONFile = `{
18
18
  "@emotion/react": "11.11.4",
19
19
  "@types/react": "18.2.60",
20
20
  "@types/react-dom": "18.2.19",
21
- "@workday/canvas-kit-labs-react": "13.2.54",
22
- "@workday/canvas-kit-preview-react": "13.2.54",
23
- "@workday/canvas-kit-react": "13.2.54",
24
- "@workday/canvas-kit-react-fonts": "^13.2.54",
25
- "@workday/canvas-kit-styling": "13.2.54",
21
+ "@workday/canvas-kit-labs-react": "13.2.55",
22
+ "@workday/canvas-kit-preview-react": "13.2.55",
23
+ "@workday/canvas-kit-react": "13.2.55",
24
+ "@workday/canvas-kit-react-fonts": "^13.2.55",
25
+ "@workday/canvas-kit-styling": "13.2.55",
26
26
  "@workday/canvas-system-icons-web": "3.0.22",
27
27
  "@workday/canvas-tokens-web": "2.0.0"
28
28
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workday/canvas-kit-docs",
3
- "version": "13.2.54",
3
+ "version": "13.2.55",
4
4
  "description": "Documentation components of Canvas Kit components",
5
5
  "author": "Workday, Inc. (https://www.workday.com)",
6
6
  "license": "Apache-2.0",
@@ -45,10 +45,10 @@
45
45
  "@emotion/styled": "^11.6.0",
46
46
  "@stackblitz/sdk": "^1.11.0",
47
47
  "@storybook/csf": "0.0.1",
48
- "@workday/canvas-kit-labs-react": "^13.2.54",
49
- "@workday/canvas-kit-preview-react": "^13.2.54",
50
- "@workday/canvas-kit-react": "^13.2.54",
51
- "@workday/canvas-kit-styling": "^13.2.54",
48
+ "@workday/canvas-kit-labs-react": "^13.2.55",
49
+ "@workday/canvas-kit-preview-react": "^13.2.55",
50
+ "@workday/canvas-kit-react": "^13.2.55",
51
+ "@workday/canvas-kit-styling": "^13.2.55",
52
52
  "@workday/canvas-system-icons-web": "^3.0.35",
53
53
  "@workday/canvas-tokens-web": "^2.1.1",
54
54
  "markdown-to-jsx": "^7.2.0",
@@ -61,5 +61,5 @@
61
61
  "mkdirp": "^1.0.3",
62
62
  "typescript": "5.0"
63
63
  },
64
- "gitHead": "c49b7f05ebaafaa10342a9a86c725e572ead36c4"
64
+ "gitHead": "9cda434c5b5bcc021d5c77883f3de8f49df0b430"
65
65
  }