@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.
Files changed (57) hide show
  1. package/dist/ecs/database/create-database.js +2 -1
  2. package/dist/ecs/database/create-database.js.map +1 -1
  3. package/dist/ecs/database/database.d.ts +2 -1
  4. package/dist/ecs/index.d.ts +0 -1
  5. package/dist/ecs/index.js +0 -1
  6. package/dist/ecs/index.js.map +1 -1
  7. package/dist/ecs/world/create-world.js +10 -5
  8. package/dist/ecs/world/create-world.js.map +1 -1
  9. package/dist/ecs/world/index.d.ts +1 -0
  10. package/dist/ecs/world/index.js +1 -0
  11. package/dist/ecs/world/index.js.map +1 -1
  12. package/dist/ecs/world/system-phase.d.ts +5 -0
  13. package/dist/ecs/world/system-phase.js +14 -0
  14. package/dist/ecs/world/system-phase.js.map +1 -0
  15. package/dist/ecs/world/system.d.ts +5 -0
  16. package/dist/ecs/world/world.d.ts +2 -0
  17. package/dist/graphics/camera/camera.d.ts +1 -1
  18. package/dist/graphics/camera/camera.js +1 -1
  19. package/dist/graphics/camera/camera.js.map +1 -1
  20. package/dist/lit/elements/index.d.ts +0 -3
  21. package/dist/lit/elements/index.js +0 -3
  22. package/dist/lit/elements/index.js.map +1 -1
  23. package/dist/math/f32/f32.d.ts +8 -0
  24. package/dist/math/f32/f32.js +24 -0
  25. package/dist/math/f32/f32.js.map +1 -0
  26. package/dist/math/i32/i32.d.ts +7 -0
  27. package/dist/math/i32/i32.js +24 -0
  28. package/dist/math/i32/i32.js.map +1 -0
  29. package/dist/math/index.d.ts +6 -0
  30. package/dist/math/index.js +6 -0
  31. package/dist/math/index.js.map +1 -1
  32. package/dist/math/u32/u32.d.ts +8 -0
  33. package/dist/math/u32/u32.js +24 -0
  34. package/dist/math/u32/u32.js.map +1 -0
  35. package/dist/observe/to-async-generator.js +4 -4
  36. package/dist/observe/to-async-generator.js.map +1 -1
  37. package/dist/samples/todo/elements/todo-list/todo-list-presentation.d.ts +1 -1
  38. package/dist/samples/todo/elements/todo-row/todo-row.d.ts +1 -1
  39. package/dist/samples/todo/elements/todo-toolbar/todo-toolbar.js +1 -1
  40. package/dist/samples/todo/elements/todo-toolbar/todo-toolbar.js.map +1 -1
  41. package/dist/samples/todo/services/dependent-state-service/create-dependent-state-service.js +1 -1
  42. package/dist/samples/todo/services/dependent-state-service/create-dependent-state-service.js.map +1 -1
  43. package/dist/samples/todo/services/state-service/create-todo-database.d.ts +4 -4
  44. package/dist/samples/todo/services/state-service/create-todo-database.js +1 -1
  45. package/dist/samples/todo/services/state-service/create-todo-database.js.map +1 -1
  46. package/dist/samples/todo/services/state-service/create-todo-store.d.ts +3 -3
  47. package/dist/samples/todo/services/state-service/create-todo-store.js +2 -2
  48. package/dist/samples/todo/services/state-service/create-todo-store.js.map +1 -1
  49. package/dist/samples/todo/services/state-service/todo-state-service.d.ts +1 -1
  50. package/dist/samples/todo/services/state-service/transactions/delete-todo.d.ts +1 -1
  51. package/dist/samples/todo/services/state-service/transactions/drag-todo.d.ts +1 -1
  52. package/dist/samples/todo/services/state-service/transactions/index.d.ts +1 -1
  53. package/dist/samples/todo/services/state-service/transactions/index.js +1 -1
  54. package/dist/samples/todo/services/state-service/transactions/index.js.map +1 -1
  55. package/dist/samples/todo/services/state-service/transactions/toggle-complete.d.ts +1 -1
  56. package/dist/tsconfig.tsbuildinfo +1 -1
  57. package/package.json +2 -2
@@ -1,3 +1,3 @@
1
- import { type Entity } from '@adobe/data/ecs';
1
+ import { type Entity } from '../../../../../ecs/index.js';
2
2
  import { type TodoStore } from '../create-todo-store.js';
3
3
  export declare const deleteTodo: (t: TodoStore, id: Entity) => void;
@@ -1,4 +1,4 @@
1
- import { Entity } from '@adobe/data/ecs';
1
+ import { Entity } from '../../../../../ecs/index.js';
2
2
  import { type TodoStore } from '../create-todo-store.js';
3
3
  export declare const dragTodo: (t: TodoStore, props: {
4
4
  todo: Entity;
@@ -20,4 +20,4 @@ export * from './delete-todo.js';
20
20
  export * from './toggle-complete.js';
21
21
  export * from './create-bulk-todos.js';
22
22
  export * from './drag-todo.js';
23
- export { applyOperations } from '@adobe/data/ecs';
23
+ export { applyOperations } from '../../../../../ecs/index.js';
@@ -21,5 +21,5 @@ export * from './toggle-complete.js';
21
21
  export * from './create-bulk-todos.js';
22
22
  export * from './drag-todo.js';
23
23
  // This is used by the undo-redo actions, the implementation is in the data package.
24
- export { applyOperations } from '@adobe/data/ecs';
24
+ export { applyOperations } from '../../../../../ecs/index.js';
25
25
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/samples/todo/services/state-service/transactions/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;4EAgB4E;AAC5E,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,oFAAoF;AACpF,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/samples/todo/services/state-service/transactions/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;4EAgB4E;AAC5E,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,oFAAoF;AACpF,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC"}
@@ -15,6 +15,6 @@
15
15
  * is strictly forbidden unless prior written permission is obtained
16
16
  * from Adobe.
17
17
  **************************************************************************/
18
- import { type Entity } from '@adobe/data/ecs';
18
+ import { type Entity } from '../../../../../ecs/index.js';
19
19
  import { type TodoStore } from '../create-todo-store.js';
20
20
  export declare const toggleComplete: (t: TodoStore, id: Entity) => void;