@jay-framework/runtime 0.15.2 → 0.15.3

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -1426,7 +1426,7 @@ function hydrateForEach(accessor, trackBy, adoptItem, createItem) {
1426
1426
  const adoptedItems = [];
1427
1427
  for (const item of initialItems) {
1428
1428
  const id = String(item[trackBy]);
1429
- const itemDom = context.resolveCoordinate(id);
1429
+ const itemDom = context.peekCoordinate(id);
1430
1430
  const childContext = context.forItem(item, id);
1431
1431
  const adopted = withContext(CONSTRUCTION_CONTEXT_MARKER, childContext, () => {
1432
1432
  const elements = adoptItem();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jay-framework/runtime",
3
- "version": "0.15.2",
3
+ "version": "0.15.3",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
@@ -23,11 +23,11 @@
23
23
  "test:watch": "vitest"
24
24
  },
25
25
  "dependencies": {
26
- "@jay-framework/list-compare": "^0.15.2",
27
- "@jay-framework/reactive": "^0.15.2"
26
+ "@jay-framework/list-compare": "^0.15.3",
27
+ "@jay-framework/reactive": "^0.15.3"
28
28
  },
29
29
  "devDependencies": {
30
- "@jay-framework/dev-environment": "^0.15.2",
30
+ "@jay-framework/dev-environment": "^0.15.3",
31
31
  "@testing-library/jest-dom": "^6.2.0",
32
32
  "@types/jsdom": "^21.1.6",
33
33
  "@types/node": "^20.11.5",