@timeax/digital-service-engine 0.2.5 → 0.2.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/dist/core/index.cjs +1 -1
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.js +1 -1
- package/dist/core/index.js.map +1 -1
- package/dist/react/index.cjs +146 -96
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.js +146 -96
- package/dist/react/index.js.map +1 -1
- package/dist/workspace/index.cjs +146 -96
- package/dist/workspace/index.cjs.map +1 -1
- package/dist/workspace/index.js +146 -96
- package/dist/workspace/index.js.map +1 -1
- package/package.json +7 -7
package/dist/core/index.js
CHANGED
|
@@ -3354,7 +3354,7 @@ function createNodeIndex(builder) {
|
|
|
3354
3354
|
for (const fieldId of visible) {
|
|
3355
3355
|
const node = getField(fieldId);
|
|
3356
3356
|
if (!node) continue;
|
|
3357
|
-
const explicit = includes.has(fieldId)
|
|
3357
|
+
const explicit = includes.has(fieldId);
|
|
3358
3358
|
results.push(explicit ? node : { ...node, isInherited: true });
|
|
3359
3359
|
}
|
|
3360
3360
|
return Object.freeze(results);
|