@adobe/data 0.5.6 → 0.5.8
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/ecs/database/create-database.js +2 -1
- package/dist/ecs/database/create-database.js.map +1 -1
- package/dist/ecs/database/database.d.ts +2 -1
- package/dist/ecs/index.d.ts +0 -1
- package/dist/ecs/index.js +0 -1
- package/dist/ecs/index.js.map +1 -1
- package/dist/ecs/world/create-world.js +10 -5
- package/dist/ecs/world/create-world.js.map +1 -1
- package/dist/ecs/world/index.d.ts +1 -0
- package/dist/ecs/world/index.js +1 -0
- package/dist/ecs/world/index.js.map +1 -1
- package/dist/ecs/world/system-phase.d.ts +5 -0
- package/dist/ecs/world/system-phase.js +14 -0
- package/dist/ecs/world/system-phase.js.map +1 -0
- package/dist/ecs/world/system.d.ts +5 -0
- package/dist/ecs/world/world.d.ts +2 -0
- package/dist/graphics/camera/camera.d.ts +1 -1
- package/dist/graphics/camera/camera.js +1 -1
- package/dist/graphics/camera/camera.js.map +1 -1
- package/dist/lit/elements/index.d.ts +0 -3
- package/dist/lit/elements/index.js +0 -3
- package/dist/lit/elements/index.js.map +1 -1
- package/dist/math/f32/f32.d.ts +8 -0
- package/dist/math/f32/f32.js +24 -0
- package/dist/math/f32/f32.js.map +1 -0
- package/dist/math/i32/i32.d.ts +7 -0
- package/dist/math/i32/i32.js +24 -0
- package/dist/math/i32/i32.js.map +1 -0
- package/dist/math/index.d.ts +6 -0
- package/dist/math/index.js +6 -0
- package/dist/math/index.js.map +1 -1
- package/dist/math/u32/u32.d.ts +8 -0
- package/dist/math/u32/u32.js +24 -0
- package/dist/math/u32/u32.js.map +1 -0
- package/dist/observe/to-async-generator.js +4 -4
- package/dist/observe/to-async-generator.js.map +1 -1
- package/dist/samples/todo/elements/todo-list/todo-list-presentation.d.ts +1 -1
- package/dist/samples/todo/elements/todo-row/todo-row.d.ts +1 -1
- package/dist/samples/todo/elements/todo-toolbar/todo-toolbar.js +1 -1
- package/dist/samples/todo/elements/todo-toolbar/todo-toolbar.js.map +1 -1
- package/dist/samples/todo/services/dependent-state-service/create-dependent-state-service.js +1 -1
- package/dist/samples/todo/services/dependent-state-service/create-dependent-state-service.js.map +1 -1
- package/dist/samples/todo/services/state-service/create-todo-database.d.ts +4 -4
- package/dist/samples/todo/services/state-service/create-todo-database.js +1 -1
- package/dist/samples/todo/services/state-service/create-todo-database.js.map +1 -1
- package/dist/samples/todo/services/state-service/create-todo-store.d.ts +3 -3
- package/dist/samples/todo/services/state-service/create-todo-store.js +2 -2
- package/dist/samples/todo/services/state-service/create-todo-store.js.map +1 -1
- package/dist/samples/todo/services/state-service/todo-state-service.d.ts +1 -1
- package/dist/samples/todo/services/state-service/transactions/delete-todo.d.ts +1 -1
- package/dist/samples/todo/services/state-service/transactions/drag-todo.d.ts +1 -1
- package/dist/samples/todo/services/state-service/transactions/index.d.ts +1 -1
- package/dist/samples/todo/services/state-service/transactions/index.js +1 -1
- package/dist/samples/todo/services/state-service/transactions/index.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/toggle-complete.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/data",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8",
|
|
4
4
|
"description": "Adobe data oriented programming library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"stylelint": "^16.2.1",
|
|
148
148
|
"stylelint-config-standard": "^36.0.0",
|
|
149
149
|
"typedoc": "^0.28.9",
|
|
150
|
-
"typescript": "^5.
|
|
150
|
+
"typescript": "^5.8.3",
|
|
151
151
|
"uuid": "^10.0.0",
|
|
152
152
|
"vite": "^5.1.1",
|
|
153
153
|
"vitest": "^1.6.0",
|