@workday/canvas-kit-css 13.0.0-alpha.978-next.0 → 13.0.0-alpha.996-next.0

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/badge.css CHANGED
@@ -1,4 +1,4 @@
1
- @keyframes animation-fqq03d {
1
+ @keyframes animation-x8953f {
2
2
  from {
3
3
  transform: scale(0.85);
4
4
  }
@@ -12,7 +12,7 @@
12
12
  .cnvs-count-badge {
13
13
  box-sizing: border-box;
14
14
  align-items: center;
15
- animation: animation-fqq03d 0.2s ease;
15
+ animation: animation-x8953f 0.2s ease;
16
16
  background: var(--cnvs-sys-color-static-red-default);
17
17
  border-radius: var(--cnvs-sys-shape-round);
18
18
  color: var(--cnvs-sys-color-text-inverse);
package/button.css CHANGED
@@ -386,6 +386,54 @@
386
386
  }
387
387
 
388
388
 
389
+ .cnvs-hyperlink {
390
+ box-sizing: border-box;
391
+ font-family: var(--cnvs-sys-font-family-default);
392
+ text-decoration: underline;
393
+ color: var(--cnvs-sys-color-text-primary-default);
394
+ cursor: pointer;
395
+ border-radius: var(--cnvs-sys-shape-half);
396
+ display: inline-block;
397
+ padding: 0 2px;
398
+ margin: 0 -2px;
399
+ transition: color 0.15s,background-color 0.15s;
400
+ }
401
+
402
+ .cnvs-hyperlink:hover, .cnvs-hyperlink.hover {
403
+ color: var(--cnvs-sys-color-text-primary-strong);
404
+ background: var(--cnvs-sys-color-bg-alt-soft);
405
+ }
406
+
407
+ .cnvs-hyperlink:focus, .cnvs-hyperlink.focus, .cnvs-hyperlink:focus-visible {
408
+ box-shadow: 0 0 0 2px var(--cnvs-sys-color-bg-primary-default);
409
+ outline: none;
410
+ }
411
+
412
+ .cnvs-hyperlink:active, .cnvs-hyperlink.active {
413
+ color: var(--cnvs-sys-color-text-primary-stronger);
414
+ background: var(--cnvs-sys-color-bg-alt-default);
415
+ }
416
+
417
+
418
+ .cnvs-hyperlink.variant-inverse {
419
+ color: var(--cnvs-sys-color-text-inverse);
420
+ }
421
+
422
+ .cnvs-hyperlink.variant-inverse:hover, .cnvs-hyperlink.variant-inverse.hover {
423
+ color: var(--cnvs-sys-color-text-inverse);
424
+ background: rgba(255, 255, 255, 0.1);
425
+ }
426
+
427
+ .cnvs-hyperlink.variant-inverse:focus, .cnvs-hyperlink.variant-inverse.focus, .cnvs-hyperlink.variant-inverse:focus-visible {
428
+ box-shadow: 0 0 0 2px var(--cnvs-sys-color-text-inverse);
429
+ }
430
+
431
+ .cnvs-hyperlink.variant-inverse:active, .cnvs-hyperlink.variant-inverse.active {
432
+ color: var(--cnvs-sys-color-text-primary-stronger);
433
+ background: var(--cnvs-sys-color-bg-alt-soft);
434
+ }
435
+
436
+
389
437
  .cnvs-primary-button {
390
438
  box-sizing: border-box;
391
439
  --cnvs-button-background: var(--cnvs-brand-primary-base);
package/loading-dots.css CHANGED
@@ -1,4 +1,4 @@
1
- @keyframes animation-fqq04y {
1
+ @keyframes animation-x89550 {
2
2
  0%, 80%, 100% {
3
3
  transform: scale(0);
4
4
  }
@@ -25,7 +25,7 @@
25
25
  border-radius: var(--cnvs-sys-shape-round);
26
26
  transform: scale(0);
27
27
  display: inline-block;
28
- animation-name: animation-fqq04y;
28
+ animation-name: animation-x89550;
29
29
  animation-duration: calc(var(--cnvs-loading-dots-animation-duration-ms) * 35);
30
30
  animation-iteration-count: infinite;
31
31
  animation-timing-function: ease-in-out;
package/menu.css CHANGED
@@ -17,6 +17,7 @@
17
17
  transition: background-color 80ms,color 80ms;
18
18
  background-color: inherit;
19
19
  min-height: var(--cnvs-sys-space-x10);
20
+ overflow-wrap: anywhere;
20
21
  --cnvs-system-icon-color: currentcolor;
21
22
  }
22
23
 
package/modal.css CHANGED
@@ -1,4 +1,4 @@
1
- @keyframes animation-fqq050 {
1
+ @keyframes animation-x89552 {
2
2
  0% {
3
3
  background: none;
4
4
  }
@@ -18,7 +18,7 @@
18
18
  height: 100vh;
19
19
  background: var(--cnvs-sys-color-bg-overlay);
20
20
  animation-duration: 0.3s;
21
- animation-name: animation-fqq050;
21
+ animation-name: animation-x89552;
22
22
  }
23
23
 
24
24
  .wd-no-animation .cnvs-modal-overlay-container {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workday/canvas-kit-css",
3
- "version": "13.0.0-alpha.978-next.0",
3
+ "version": "13.0.0-alpha.996-next.0",
4
4
  "description": "The parent module that contains all Workday Canvas Kit CSS components",
5
5
  "author": "Workday, Inc. (https://www.workday.com)",
6
6
  "license": "Apache-2.0",
@@ -25,5 +25,5 @@
25
25
  "components",
26
26
  "workday"
27
27
  ],
28
- "gitHead": "e9eabae8567dfb68fc849f0d966c67711bef438b"
28
+ "gitHead": "340f917ae60082f246c1ac4201408bf32fa4741f"
29
29
  }
package/popup.css CHANGED
@@ -1,4 +1,4 @@
1
- @keyframes animation-fqq0x {
1
+ @keyframes animation-x895x {
2
2
  0% {
3
3
  opacity: 1;
4
4
  transform: translate(var(--cnvs-translate-position-x), var(--cnvs-translate-position-y));
@@ -27,7 +27,7 @@
27
27
  padding: var(--cnvs-sys-space-x6);
28
28
  max-height: var(--cnvs-popup-card-max-height);
29
29
  overflow-y: auto;
30
- animation-name: animation-fqq0x;
30
+ animation-name: animation-x895x;
31
31
  animation-duration: 150ms;
32
32
  animation-timing-function: ease-out;
33
33
  transform-origin: var(--cnvs-popup-card-transform-origin-vertical) var(--cnvs-popup-card-transform-origin-horizontal);