@plumeria/core 0.14.8 → 0.14.9
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/index.js +4 -3
- package/dist/index.mjs +4 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -107,9 +107,10 @@ function props(...objects) {
|
|
|
107
107
|
uniqueStyleSheets.forEach((sheet) => injectedStyleSheets.add(sheet));
|
|
108
108
|
if (typeof require_css.globalPromise_1 === "undefined") require_css.initPromise_1();
|
|
109
109
|
require_css.resolvePromise_1(uniqueStyleSheets.join(""));
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
if (zss_engine.isTestingDevelopment) {
|
|
111
|
+
for (const { hash, sheet } of [...orderedKeys, ...rightmostKeys]) if (uniqueStyleSheets.includes(sheet)) injectIfNeeded(hash, sheet);
|
|
112
|
+
}
|
|
113
|
+
return classList.join(" ");
|
|
113
114
|
}
|
|
114
115
|
|
|
115
116
|
function global(object) {
|
package/dist/index.mjs
CHANGED
|
@@ -106,9 +106,10 @@ function props(...objects) {
|
|
|
106
106
|
uniqueStyleSheets.forEach((sheet) => injectedStyleSheets.add(sheet));
|
|
107
107
|
if (typeof globalPromise_1 === "undefined") initPromise_1();
|
|
108
108
|
resolvePromise_1(uniqueStyleSheets.join(""));
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
109
|
+
if (isTestingDevelopment) {
|
|
110
|
+
for (const { hash, sheet } of [...orderedKeys, ...rightmostKeys]) if (uniqueStyleSheets.includes(sheet)) injectIfNeeded(hash, sheet);
|
|
111
|
+
}
|
|
112
|
+
return classList.join(" ");
|
|
112
113
|
}
|
|
113
114
|
|
|
114
115
|
function global(object) {
|