@rpgjs/tiledmap 5.0.0-beta.8 → 5.0.0-beta.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @rpgjs/tiledmap
2
2
 
3
+ ## 5.0.0-beta.9
4
+
5
+ ### Major Changes
6
+
7
+ - c456d25: beta.9
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [c456d25]
12
+ - @rpgjs/client@5.0.0-beta.9
13
+ - @rpgjs/common@5.0.0-beta.9
14
+ - @rpgjs/server@5.0.0-beta.9
15
+ - @rpgjs/vite@5.0.0-beta.9
16
+
3
17
  ## 5.0.0-beta.8
4
18
 
5
19
  ### Major Changes
@@ -1,7 +1,7 @@
1
1
  import { TiledParser } from "./index2.js";
2
2
  import { prepareTiledPhysicsData } from "./index3.js";
3
3
  import client_default from "./index4.js";
4
- import component from "./index5.js";
4
+ import __ce_component from "./index5.js";
5
5
  import { createModule } from "@rpgjs/common";
6
6
  import { provideLoadMap } from "@rpgjs/client";
7
7
  //#region src/index.ts
@@ -25,7 +25,7 @@ function provideTiledMap(options) {
25
25
  parsedMap.tilesets = tilesets;
26
26
  const obj = {
27
27
  data: mapData,
28
- component,
28
+ component: __ce_component,
29
29
  parsedMap,
30
30
  id: map,
31
31
  params: { basePath: options.basePath }
@@ -17,5 +17,6 @@ function component($$props) {
17
17
  objectLayer: () => h(EventLayerComponent)
18
18
  }));
19
19
  }
20
+ var __ce_component = component;
20
21
  //#endregion
21
- export { component as default };
22
+ export { __ce_component as default };
@@ -0,0 +1,4 @@
1
+ export declare function provideTiledMap(options: {
2
+ basePath: string;
3
+ onLoadMap?: (map: string) => Promise<void>;
4
+ }): any[];
@@ -0,0 +1,7 @@
1
+ import { MapClass } from '@canvasengine/tiled';
2
+ type AnyMap = {
3
+ tiled?: MapClass;
4
+ };
5
+ export declare function prepareTiledPhysicsData(mapData: any, map: AnyMap): void;
6
+ export declare function applyTiledPointEvents(mapData: any): void;
7
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpgjs/tiledmap",
3
- "version": "5.0.0-beta.8",
3
+ "version": "5.0.0-beta.9",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {
@@ -23,10 +23,10 @@
23
23
  "description": "RPGJS is a framework for creating RPG/MMORPG games",
24
24
  "peerDependencies": {
25
25
  "@canvasengine/presets": "*",
26
- "@rpgjs/client": "5.0.0-beta.8",
27
- "@rpgjs/common": "5.0.0-beta.8",
28
- "@rpgjs/server": "5.0.0-beta.8",
29
- "@rpgjs/vite": "5.0.0-beta.8",
26
+ "@rpgjs/client": "5.0.0-beta.9",
27
+ "@rpgjs/common": "5.0.0-beta.9",
28
+ "@rpgjs/server": "5.0.0-beta.9",
29
+ "@rpgjs/vite": "5.0.0-beta.9",
30
30
  "canvasengine": "*"
31
31
  },
32
32
  "publishConfig": {
File without changes
File without changes
File without changes
File without changes