@mission-studio/puck 1.0.18 → 1.0.19
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/dist/resolve/index.js +1 -1
- package/dist/resolve/index.mjs +1 -1
- package/package.json +1 -1
package/dist/resolve/index.js
CHANGED
|
@@ -162,7 +162,7 @@ function resolveProp(theme, entries, value) {
|
|
|
162
162
|
return resolveThemeableColor(theme, value);
|
|
163
163
|
}
|
|
164
164
|
if (isColorValue(value)) {
|
|
165
|
-
return value;
|
|
165
|
+
return resolveThemeableColor(theme, value);
|
|
166
166
|
}
|
|
167
167
|
if (typeof value === "object" && value !== null && "useEntry" in value) {
|
|
168
168
|
return resolveEntryValue(entries, value);
|
package/dist/resolve/index.mjs
CHANGED
|
@@ -71,7 +71,7 @@ function resolveProp(theme, entries, value) {
|
|
|
71
71
|
return resolveThemeableColor(theme, value);
|
|
72
72
|
}
|
|
73
73
|
if (isColorValue(value)) {
|
|
74
|
-
return value;
|
|
74
|
+
return resolveThemeableColor(theme, value);
|
|
75
75
|
}
|
|
76
76
|
if (typeof value === "object" && value !== null && "useEntry" in value) {
|
|
77
77
|
return resolveEntryValue(entries, value);
|