@workday/canvas-kit-css 12.4.0-1015-next.0 → 13.0.0-alpha.1009-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 +2 -2
- package/button.css +21 -0
- package/loading-dots.css +2 -2
- package/modal.css +2 -2
- package/package.json +2 -2
- package/popup.css +2 -2
- package/skeleton.css +71 -0
package/badge.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-p07h3g {
|
|
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-
|
|
15
|
+
animation: animation-p07h3g 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
|
@@ -434,6 +434,27 @@
|
|
|
434
434
|
}
|
|
435
435
|
|
|
436
436
|
|
|
437
|
+
.cnvs-external-hyperlink {
|
|
438
|
+
box-sizing: border-box;
|
|
439
|
+
display: inline-flex;
|
|
440
|
+
flex-direction: row;
|
|
441
|
+
align-items: center;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.cnvs-external-hyperlink [data-part="external-hyperlink-icon"] {
|
|
445
|
+
--cnvs-system-icon-color: currentColor;
|
|
446
|
+
--cnvs-svg-size: 1em;
|
|
447
|
+
width: calc(1em - 0.0625rem);
|
|
448
|
+
min-width: calc(var(--cnvs-sys-space-x4) - 0.0625rem);
|
|
449
|
+
margin-inline-start: calc(var(--cnvs-sys-space-x1) - 0.125rem);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.cnvs-external-hyperlink [data-part="external-hyperlink-icon"]>svg {
|
|
453
|
+
min-width: var(--cnvs-sys-space-x4);
|
|
454
|
+
min-height: var(--cnvs-sys-space-x4);
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
|
|
437
458
|
.cnvs-primary-button {
|
|
438
459
|
box-sizing: border-box;
|
|
439
460
|
--cnvs-button-background: var(--cnvs-brand-action-base, var(--cnvs-brand-primary-base));
|
package/loading-dots.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-p07h51 {
|
|
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-
|
|
28
|
+
animation-name: animation-p07h51;
|
|
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/modal.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-p07h53 {
|
|
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-
|
|
21
|
+
animation-name: animation-p07h53;
|
|
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": "
|
|
3
|
+
"version": "13.0.0-alpha.1009-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": "
|
|
28
|
+
"gitHead": "86905802e45baf8c7c06c3f673597dc2792c6dc5"
|
|
29
29
|
}
|
package/popup.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@keyframes animation-
|
|
1
|
+
@keyframes animation-p07hx {
|
|
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-
|
|
30
|
+
animation-name: animation-p07hx;
|
|
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);
|
package/skeleton.css
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
.cnvs-skeleton-shape {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
background-color: var(--cnvs-skeleton-shape-background-color, var(--cnvs-sys-color-bg-alt-strong));
|
|
4
|
+
border-radius: var(--cnvs-skeleton-shape-border-radius, var(--cnvs-sys-space-zero));
|
|
5
|
+
height: var(--cnvs-skeleton-shape-height, 100%);
|
|
6
|
+
width: var(--cnvs-skeleton-shape-width);
|
|
7
|
+
margin-bottom: var(--cnvs-sys-space-x4);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
.cnvs-skeleton-header {
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
background-color: var(--cnvs-skeleton-header-background-color, var(--cnvs-sys-color-bg-alt-strong));
|
|
14
|
+
border-radius: 0;
|
|
15
|
+
height: var(--cnvs-skeleton-header-height, calc(var(--cnvs-sys-space-x1) * 7));
|
|
16
|
+
width: var(--cnvs-skeleton-header-width);
|
|
17
|
+
margin-bottom: var(--cnvs-sys-space-x4);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
.cnvs-skeleton-text {
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
margin-bottom: var(--cnvs-sys-space-x6);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.cnvs-skeleton-text [data-part="skeleton-text-lines"] {
|
|
27
|
+
background-color: var(--cnvs-skeleton-text-background-color, var(--cnvs-sys-color-bg-alt-strong));
|
|
28
|
+
height: 1.3125rem;
|
|
29
|
+
margin-block-end: var(--cnvs-sys-space-x3);
|
|
30
|
+
border-radius: var(--cnvs-sys-shape-half);
|
|
31
|
+
width: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.cnvs-skeleton-text [data-part="skeleton-text-lines"]:last-child {
|
|
35
|
+
width: 60%;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
@keyframes animation-p07h5g {
|
|
40
|
+
from {
|
|
41
|
+
opacity: 0.4;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
to {
|
|
45
|
+
opacity: 1;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.cnvs-skeleton {
|
|
51
|
+
box-sizing: border-box;
|
|
52
|
+
animation: animation-p07h5g 0.8s linear infinite alternate;
|
|
53
|
+
position: relative;
|
|
54
|
+
overflow: hidden;
|
|
55
|
+
height: 100%;
|
|
56
|
+
width: 100%;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.cnvs-skeleton [data-part="skeleton-accessible-hide"] {
|
|
60
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
61
|
+
clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
|
|
62
|
+
position: absolute;
|
|
63
|
+
overflow: hidden;
|
|
64
|
+
white-space: nowrap;
|
|
65
|
+
height: 1px;
|
|
66
|
+
width: 1px;
|
|
67
|
+
margin: -1px;
|
|
68
|
+
padding: 0;
|
|
69
|
+
border: 0;
|
|
70
|
+
}
|
|
71
|
+
|