@crystallize/design-system 1.11.5 → 1.11.6
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/CHANGELOG.md +6 -0
- package/dist/index.css +8 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.js +1050 -963
- package/dist/index.mjs +931 -844
- package/package.json +1 -1
- package/src/card/card.css +2 -2
- package/src/iconography/catalogue.tsx +0 -1
- package/src/iconography/check-with-circle.tsx +38 -0
- package/src/iconography/copy-with-cloud.tsx +51 -0
- package/src/iconography/copy.tsx +19 -5
- package/src/iconography/edit.tsx +9 -7
- package/src/iconography/index.ts +6 -2
- package/src/input-with-label/input-with-label.css +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -1187,7 +1187,7 @@ button {
|
|
|
1187
1187
|
|
|
1188
1188
|
/* src/card/card.css */
|
|
1189
1189
|
.c-card {
|
|
1190
|
-
border-radius: 0.
|
|
1190
|
+
border-radius: 0.375rem;
|
|
1191
1191
|
--tw-bg-opacity: 1;
|
|
1192
1192
|
background-color: rgb(var(--c-color-gray-50-900) / var(--tw-bg-opacity));
|
|
1193
1193
|
padding: 1rem;
|
|
@@ -1200,6 +1200,12 @@ button {
|
|
|
1200
1200
|
.c-card-elevate {
|
|
1201
1201
|
--tw-bg-opacity: 1;
|
|
1202
1202
|
background-color: rgb(var(--c-color-elevate) / var(--tw-bg-opacity));
|
|
1203
|
+
--tw-shadow: 0 2px 4px rgba(130,138,144,0.15);
|
|
1204
|
+
--tw-shadow-colored: 0 2px 4px var(--tw-shadow-color);
|
|
1205
|
+
box-shadow:
|
|
1206
|
+
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
1207
|
+
var(--tw-ring-shadow, 0 0 #0000),
|
|
1208
|
+
var(--tw-shadow);
|
|
1203
1209
|
}
|
|
1204
1210
|
|
|
1205
1211
|
/* src/action-menu/action-menu.css */
|
|
@@ -1781,6 +1787,7 @@ button {
|
|
|
1781
1787
|
text-overflow: ellipsis;
|
|
1782
1788
|
font-size: 1rem;
|
|
1783
1789
|
line-height: 1.5rem;
|
|
1790
|
+
font-weight: 500;
|
|
1784
1791
|
}
|
|
1785
1792
|
.c-input-with-label-append {
|
|
1786
1793
|
margin-right: -0.75rem;
|