@workday/canvas-kit-css 16.0.0-alpha.0464-next.0 → 16.0.0-alpha.0465-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/combobox.css CHANGED
@@ -1,12 +1,3 @@
1
- .cnvs-combobox-card {
2
- box-sizing: border-box;
3
- }
4
-
5
- .cnvs-combobox-card :where([data-part="list-box-container"]) {
6
- border-radius: var(--cnvs-sys-shape-xxl, var(--cnvs-sys-shape-x6, 1.5rem));
7
- }
8
-
9
-
10
1
  .cnvs-combobox-menu-list {
11
2
  box-sizing: border-box;
12
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workday/canvas-kit-css",
3
- "version": "16.0.0-alpha.0464-next.0",
3
+ "version": "16.0.0-alpha.0465-next.0",
4
4
  "type": "module",
5
5
  "description": "The parent module that contains all Workday Canvas Kit CSS components",
6
6
  "author": "Workday, Inc. (https://www.workday.com)",
@@ -26,5 +26,5 @@
26
26
  "components",
27
27
  "workday"
28
28
  ],
29
- "gitHead": "e91ae68242623c9e4d24b9fbdc3ce7ea8368c425"
29
+ "gitHead": "02dd284d77ccf92991d5526190f453d442ccebcc"
30
30
  }
package/popup.css CHANGED
@@ -10,6 +10,41 @@
10
10
  }
11
11
 
12
12
 
13
+ .cnvs-popup-button-group {
14
+ box-sizing: border-box;
15
+ display: flex;
16
+ gap: var(--cnvs-sys-gap-sm, var(--cnvs-sys-space-x2, 0.5rem));
17
+ }
18
+
19
+ @media screen and (max-width: 768px) {
20
+ .cnvs-popup-button-group {
21
+ flex-direction: column;
22
+ }
23
+
24
+
25
+ }
26
+
27
+
28
+ .cnvs-popup-button-group.position-start {
29
+ justify-content: flex-start;
30
+ }
31
+
32
+
33
+ .cnvs-popup-button-group.position-center {
34
+ justify-content: center;
35
+ }
36
+
37
+
38
+ .cnvs-popup-button-group.position-end {
39
+ justify-content: flex-end;
40
+ }
41
+
42
+
43
+ .cnvs-popup-button-group.grow button {
44
+ width: 100%;
45
+ }
46
+
47
+
13
48
  @keyframes animation-29kkhp {
14
49
  0% {
15
50
  opacity: 1;
@@ -52,6 +87,7 @@
52
87
  @media screen and (max-width: 768px) {
53
88
  .cnvs-popup-card {
54
89
  transform-origin: bottom center;
90
+ padding: var(--cnvs-sys-padding-lg, var(--cnvs-sys-space-x5, 1.25rem));
55
91
  }
56
92
 
57
93
 
package/toast.css CHANGED
@@ -11,8 +11,8 @@
11
11
  .cnvs-toast-close-icon {
12
12
  box-sizing: border-box;
13
13
  position: absolute;
14
- inset-block-start: 0.125rem;
15
- inset-inline-end: 0.125rem;
14
+ inset-block-start: var(--cnvs-base-size-50, 0.25rem);
15
+ inset-inline-end: var(--cnvs-base-size-50, 0.25rem);
16
16
  }
17
17
 
18
18