vue-phaserjs 1.32.0 → 1.34.0
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/LICENSE +201 -201
- package/README.md +43 -43
- package/dist/components/Text.vue.d.ts +2 -2
- package/dist/composables/useAnimations.d.ts +2 -2
- package/dist/hooks/onCreate.d.ts +1 -0
- package/dist/hooks/onInit.d.ts +1 -0
- package/dist/hooks/onNextTick.d.ts +1 -0
- package/dist/hooks/onPreload.d.ts +1 -0
- package/dist/hooks/onShutdown.d.ts +1 -0
- package/dist/hooks/onUpdate.d.ts +1 -0
- package/dist/index.d.ts +0 -2
- package/dist/index.js +5058 -5058
- package/dist/models/configuration/components/AlphaConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/AlphaSingleConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/BlendModeConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/ComputedSizeConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/DepthConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/FXConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/FlipConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/MaskConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/OriginConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/PathFollowerComponentConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/PipelineConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/ScrollFactorConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/SizeConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/TextureConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/TextureCropConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/TintConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/TransformConfiguration.d.ts +1 -1
- package/dist/models/configuration/components/VisibleConfiguration.d.ts +1 -1
- package/package.json +6 -6
- package/dist/util/types/ExcludeFunctionProperties.d.ts +0 -3
- package/dist/util/types/FunctionProperties.d.ts +0 -3
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type AlphaConfiguration = ExcludeFunctionProperties<GameObjects.Components.Alpha>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type AlphaSingleConfiguration = ExcludeFunctionProperties<GameObjects.Components.AlphaSingle>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type BlendModeConfiguration = ExcludeFunctionProperties<GameObjects.Components.BlendMode>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type ComputedSizeConfiguration = ExcludeFunctionProperties<GameObjects.Components.ComputedSize>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type DepthConfiguration = ExcludeFunctionProperties<GameObjects.Components.Depth>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type FXConfiguration = ExcludeFunctionProperties<GameObjects.Components.FX>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type FlipConfiguration = ExcludeFunctionProperties<GameObjects.Components.Flip>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type MaskConfiguration = ExcludeFunctionProperties<GameObjects.Components.Mask>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type OriginConfiguration = ExcludeFunctionProperties<GameObjects.Components.Origin & {
|
|
4
4
|
origin: number;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type PathFollowerComponentConfiguration = ExcludeFunctionProperties<GameObjects.Components.PathFollower>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type PipelineConfiguration = ExcludeFunctionProperties<GameObjects.Components.Pipeline>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type ScrollFactorConfiguration = ExcludeFunctionProperties<GameObjects.Components.ScrollFactor & {
|
|
4
4
|
scrollFactor: number;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type SizeConfiguration = ExcludeFunctionProperties<GameObjects.Components.Size>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseTextureConfiguration } from './BaseTextureConfiguration';
|
|
2
|
-
import { ExcludeFunctionProperties } from '
|
|
2
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
3
3
|
import { GameObjects } from 'phaser';
|
|
4
4
|
import { Except } from 'type-fest';
|
|
5
5
|
export type TextureConfiguration = ExcludeFunctionProperties<BaseTextureConfiguration & Except<GameObjects.Components.Texture, keyof BaseTextureConfiguration>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseTextureConfiguration } from './BaseTextureConfiguration';
|
|
2
|
-
import { ExcludeFunctionProperties } from '
|
|
2
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
3
3
|
import { GameObjects } from 'phaser';
|
|
4
4
|
import { Except } from 'type-fest';
|
|
5
5
|
export type TextureCropConfiguration = ExcludeFunctionProperties<BaseTextureConfiguration & Except<GameObjects.Components.TextureCrop, keyof BaseTextureConfiguration>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type TintConfiguration = ExcludeFunctionProperties<GameObjects.Components.Tint>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type TransformConfiguration = ExcludeFunctionProperties<GameObjects.Components.Transform>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ExcludeFunctionProperties } from '
|
|
1
|
+
import { ExcludeFunctionProperties } from '@esposter/shared';
|
|
2
2
|
import { GameObjects } from 'phaser';
|
|
3
3
|
export type VisibleConfiguration = ExcludeFunctionProperties<GameObjects.Components.Visible>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-phaserjs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.34.0",
|
|
4
4
|
"description": "A component library to integrate Phaser Framework with Vue.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"export:gen": "ctix build --config ../configuration/.ctirc-vue && ctix build --config ../configuration/.ctirc-ts"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@esposter/shared": "1.
|
|
36
|
-
"parse-tmx": "1.
|
|
35
|
+
"@esposter/shared": "1.34.0",
|
|
36
|
+
"parse-tmx": "1.34.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@esposter/configuration": "1.
|
|
39
|
+
"@esposter/configuration": "1.34.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"phaser": "^3.87.0",
|
|
43
43
|
"phaser3-rex-plugins": "^1.80.12",
|
|
44
|
-
"pinia": "^2.3.
|
|
44
|
+
"pinia": "^2.3.1",
|
|
45
45
|
"vue": "^3.5.13"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "e10cc75e241288efb1589b2283fdf1857791f4b6"
|
|
48
48
|
}
|