marko 6.0.83 → 6.0.84
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/debug/dom.js +1 -1
- package/dist/debug/dom.mjs +1 -1
- package/dist/debug/html.js +1 -1
- package/dist/debug/html.mjs +1 -1
- package/dist/dom.js +1 -1
- package/dist/dom.mjs +1 -1
- package/dist/html.js +1 -1
- package/dist/html.mjs +1 -1
- package/package.json +1 -1
package/dist/debug/dom.js
CHANGED
@@ -201,7 +201,7 @@ function normalizeDynamicRenderer(value) {
|
|
201
201
|
if (value) {
|
202
202
|
if (typeof value === "string") return value;
|
203
203
|
const normalized = value.content || value.default || value;
|
204
|
-
if ("___id" in normalized) {
|
204
|
+
if (/* @__KEY__ */ "___id" in normalized) {
|
205
205
|
return normalized;
|
206
206
|
}
|
207
207
|
}
|
package/dist/debug/dom.mjs
CHANGED
@@ -101,7 +101,7 @@ function normalizeDynamicRenderer(value) {
|
|
101
101
|
if (value) {
|
102
102
|
if (typeof value === "string") return value;
|
103
103
|
const normalized = value.content || value.default || value;
|
104
|
-
if ("___id" in normalized) {
|
104
|
+
if (/* @__KEY__ */ "___id" in normalized) {
|
105
105
|
return normalized;
|
106
106
|
}
|
107
107
|
}
|
package/dist/debug/html.js
CHANGED
@@ -164,7 +164,7 @@ function normalizeDynamicRenderer(value) {
|
|
164
164
|
if (value) {
|
165
165
|
if (typeof value === "string") return value;
|
166
166
|
const normalized = value.content || value.default || value;
|
167
|
-
if ("___id" in normalized) {
|
167
|
+
if (/* @__KEY__ */ "___id" in normalized) {
|
168
168
|
return normalized;
|
169
169
|
}
|
170
170
|
}
|
package/dist/debug/html.mjs
CHANGED
@@ -75,7 +75,7 @@ function normalizeDynamicRenderer(value) {
|
|
75
75
|
if (value) {
|
76
76
|
if (typeof value === "string") return value;
|
77
77
|
const normalized = value.content || value.default || value;
|
78
|
-
if ("___id" in normalized) {
|
78
|
+
if (/* @__KEY__ */ "___id" in normalized) {
|
79
79
|
return normalized;
|
80
80
|
}
|
81
81
|
}
|
package/dist/dom.js
CHANGED
@@ -166,7 +166,7 @@ function normalizeDynamicRenderer(value) {
|
|
166
166
|
if (value) {
|
167
167
|
if (typeof value == "string") return value;
|
168
168
|
let normalized = value.content || value.default || value;
|
169
|
-
if ("
|
169
|
+
if (/* @__KEY__ */ "l" in normalized)
|
170
170
|
return normalized;
|
171
171
|
}
|
172
172
|
}
|
package/dist/dom.mjs
CHANGED
@@ -69,7 +69,7 @@ function normalizeDynamicRenderer(value) {
|
|
69
69
|
if (value) {
|
70
70
|
if (typeof value == "string") return value;
|
71
71
|
let normalized = value.content || value.default || value;
|
72
|
-
if ("
|
72
|
+
if (/* @__KEY__ */ "l" in normalized)
|
73
73
|
return normalized;
|
74
74
|
}
|
75
75
|
}
|
package/dist/html.js
CHANGED
@@ -135,7 +135,7 @@ function normalizeDynamicRenderer(value) {
|
|
135
135
|
if (value) {
|
136
136
|
if (typeof value == "string") return value;
|
137
137
|
let normalized = value.content || value.default || value;
|
138
|
-
if ("
|
138
|
+
if (/* @__KEY__ */ "h" in normalized)
|
139
139
|
return normalized;
|
140
140
|
}
|
141
141
|
}
|
package/dist/html.mjs
CHANGED
@@ -49,7 +49,7 @@ function normalizeDynamicRenderer(value) {
|
|
49
49
|
if (value) {
|
50
50
|
if (typeof value == "string") return value;
|
51
51
|
let normalized = value.content || value.default || value;
|
52
|
-
if ("
|
52
|
+
if (/* @__KEY__ */ "h" in normalized)
|
53
53
|
return normalized;
|
54
54
|
}
|
55
55
|
}
|