@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.cjs
CHANGED
|
@@ -3394,7 +3394,7 @@ function createNodeIndex(builder) {
|
|
|
3394
3394
|
for (const fieldId of visible) {
|
|
3395
3395
|
const node = getField(fieldId);
|
|
3396
3396
|
if (!node) continue;
|
|
3397
|
-
const explicit = includes.has(fieldId)
|
|
3397
|
+
const explicit = includes.has(fieldId);
|
|
3398
3398
|
results.push(explicit ? node : { ...node, isInherited: true });
|
|
3399
3399
|
}
|
|
3400
3400
|
return Object.freeze(results);
|