@workday/canvas-kit-css 14.0.0-alpha.1153-next.0 → 14.0.0-alpha.1162-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-ohid3s {
1
+ @keyframes animation-e9yn3s {
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-ohid3s 0.2s ease;
15
+ animation: animation-e9yn3s 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/loading-dots.css CHANGED
@@ -1,4 +1,4 @@
1
- @keyframes animation-ohid6e {
1
+ @keyframes animation-e9yn6e {
2
2
  0%, 80%, 100% {
3
3
  transform: scale(0);
4
4
  }
@@ -26,7 +26,7 @@
26
26
  outline: 0.125rem solid transparent;
27
27
  transform: scale(0);
28
28
  display: inline-block;
29
- animation-name: animation-ohid6e;
29
+ animation-name: animation-e9yn6e;
30
30
  animation-duration: calc(var(--cnvs-loading-dots-animation-duration-ms) * 35);
31
31
  animation-iteration-count: infinite;
32
32
  animation-timing-function: ease-in-out;
package/modal.css CHANGED
@@ -1,4 +1,4 @@
1
- @keyframes animation-ohid6g {
1
+ @keyframes animation-e9yn6g {
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-ohid6g;
21
+ animation-name: animation-e9yn6g;
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": "14.0.0-alpha.1153-next.0",
3
+ "version": "14.0.0-alpha.1162-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": "99af78970bf60236bf766f829a651499297a0b64"
28
+ "gitHead": "542377d8b4fcaf4fa3f40e4ef6ef66a8524e8de9"
29
29
  }
package/popup.css CHANGED
@@ -3,7 +3,7 @@
3
3
  }
4
4
 
5
5
 
6
- @keyframes animation-ohid10 {
6
+ @keyframes animation-e9yn10 {
7
7
  0% {
8
8
  opacity: 1;
9
9
  transform: translate(var(--cnvs-translate-position-x), var(--cnvs-translate-position-y));
@@ -31,7 +31,7 @@
31
31
  padding: var(--cnvs-sys-space-x6);
32
32
  max-height: var(--cnvs-popup-card-max-height);
33
33
  overflow-y: auto;
34
- animation-name: animation-ohid10;
34
+ animation-name: animation-e9yn10;
35
35
  animation-duration: 150ms;
36
36
  animation-timing-function: ease-out;
37
37
  transform-origin: var(--cnvs-popup-card-transform-origin-vertical) var(--cnvs-popup-card-transform-origin-horizontal);
package/skeleton.css CHANGED
@@ -36,7 +36,7 @@
36
36
  }
37
37
 
38
38
 
39
- @keyframes animation-ohid77 {
39
+ @keyframes animation-e9yn77 {
40
40
  from {
41
41
  opacity: 0.4;
42
42
  }
@@ -49,7 +49,7 @@
49
49
 
50
50
  .cnvs-skeleton {
51
51
  box-sizing: border-box;
52
- animation: animation-ohid77 0.8s linear infinite alternate;
52
+ animation: animation-e9yn77 0.8s linear infinite alternate;
53
53
  position: relative;
54
54
  overflow: hidden;
55
55
  height: 100%;
package/tabs.css CHANGED
@@ -84,16 +84,26 @@
84
84
  border-bottom: 0.0625rem solid var(--cnvs-sys-color-border-divider);
85
85
  gap: var(--cnvs-sys-space-x3);
86
86
  padding-inline: var(--cnvs-sys-space-x6);
87
- mask-image: none;
88
87
  }
89
88
 
90
89
 
91
90
  .cnvs-tabs-list.modality-touch {
91
+ overflow-x: auto;
92
92
  padding-inline: var(--cnvs-sys-space-zero);
93
93
  }
94
94
 
95
+ .cnvs-tabs-list.modality-touch[data-scroll-position="start"] {
96
+ mask-image: linear-gradient(to right, white 80%, transparent);
97
+ }
95
98
 
99
+ .cnvs-tabs-list.modality-touch[data-scroll-position="middle"] {
100
+ mask-image: linear-gradient(to left, white 80%, transparent),linear-gradient(to right, white 80%, transparent);
101
+ mask-composite: intersect;
102
+ }
96
103
 
104
+ .cnvs-tabs-list.modality-touch[data-scroll-position="end"] {
105
+ mask-image: linear-gradient(to left, white 80%, transparent);
106
+ }
97
107
 
98
108
 
99
109
 
@@ -101,15 +111,6 @@
101
111
 
102
112
 
103
113
 
104
- .cnvs-tabs-list.modality-touch.is-dragging.direction-left {
105
- mask-image: linear-gradient(to left, white 80%, transparent);
106
- }
107
-
108
-
109
- .cnvs-tabs-list.modality-touch.is-dragging.direction-right {
110
- mask-image: linear-gradient(to right, white 80%, transparent);
111
- }
112
-
113
114
 
114
115
  .cnvs-tabs-overflow-button {
115
116
  box-sizing: border-box;
package/tooltip.css CHANGED
@@ -1,4 +1,4 @@
1
- @keyframes animation-ohid2x {
1
+ @keyframes animation-e9yn2x {
2
2
  0% {
3
3
  opacity: 0;
4
4
  transform: translate(var(--cnvs-tooltip-translate-position-x), var(--cnvs-tooltip-translate-position-y));
@@ -22,7 +22,7 @@
22
22
  position: relative;
23
23
  padding: var(--cnvs-sys-space-x3);
24
24
  color: var(--cnvs-sys-color-text-inverse);
25
- animation-name: animation-ohid2x;
25
+ animation-name: animation-e9yn2x;
26
26
  animation-duration: 150ms;
27
27
  animation-timing-function: ease-out;
28
28
  transform-origin: var(--cnvs-tooltip-container-tooltip-transform-origin-vertical) var(--cnvs-tooltip-container-tooltip-transform-origin-horizontal);