@vnejs/contracts.canvas.layers.ml 0.1.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.
@@ -0,0 +1,4 @@
1
+ export declare const CONSTANTS: {
2
+ readonly LAYER: "ml";
3
+ };
4
+ export type Constants = typeof CONSTANTS;
package/dist/const.js ADDED
@@ -0,0 +1,3 @@
1
+ export const CONSTANTS = {
2
+ LAYER: "ml",
3
+ };
@@ -0,0 +1,4 @@
1
+ export declare const SUBSCRIBE_EVENTS: {
2
+ readonly UPDATE: "vne:layer_ml:update";
3
+ };
4
+ export type SubscribeEvents = typeof SUBSCRIBE_EVENTS;
package/dist/events.js ADDED
@@ -0,0 +1,3 @@
1
+ export const SUBSCRIBE_EVENTS = {
2
+ UPDATE: "vne:layer_ml:update",
3
+ };
@@ -0,0 +1,20 @@
1
+ import "@vnejs/shared";
2
+ import { CONSTANTS } from "./const.js";
3
+ import { SUBSCRIBE_EVENTS } from "./events.js";
4
+ import { PARAMS } from "./params.js";
5
+ export declare const PLUGIN_NAME: "LAYER_ML";
6
+ export type PluginName = typeof PLUGIN_NAME;
7
+ export { CONSTANTS };
8
+ export type { Constants } from "./const.js";
9
+ export { SUBSCRIBE_EVENTS };
10
+ export type { SubscribeEvents } from "./events.js";
11
+ export { PARAMS };
12
+ export type { Params } from "./params.js";
13
+ declare module "@vnejs/shared" {
14
+ interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {
15
+ }
16
+ interface VnePluginConstantsMap extends Record<typeof PLUGIN_NAME, typeof CONSTANTS> {
17
+ }
18
+ interface VnePluginParamsMap extends Record<typeof PLUGIN_NAME, typeof PARAMS> {
19
+ }
20
+ }
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ import "@vnejs/shared";
2
+ import { CONSTANTS } from "./const.js";
3
+ import { SUBSCRIBE_EVENTS } from "./events.js";
4
+ import { PARAMS } from "./params.js";
5
+ export const PLUGIN_NAME = "LAYER_ML";
6
+ export { CONSTANTS };
7
+ export { SUBSCRIBE_EVENTS };
8
+ export { PARAMS };
@@ -0,0 +1,7 @@
1
+ import type { Widen } from "@vnejs/shared";
2
+ declare const PARAMS_DEFAULT: {
3
+ ZINDEX: number;
4
+ };
5
+ export type Params = Widen<typeof PARAMS_DEFAULT>;
6
+ export declare const PARAMS: Params;
7
+ export {};
package/dist/params.js ADDED
@@ -0,0 +1,4 @@
1
+ const PARAMS_DEFAULT = {
2
+ ZINDEX: -2000,
3
+ };
4
+ export const PARAMS = PARAMS_DEFAULT;
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@vnejs/contracts.canvas.layers.ml",
3
+ "version": "0.1.3",
4
+ "description": "Contracts for @vnejs/plugins.canvas.layers.ml",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "src",
18
+ "tsconfig.json"
19
+ ],
20
+ "scripts": {
21
+ "build": "npx @vnejs/monorepo package",
22
+ "publish:major": "npx @vnejs/monorepo publish major --access public",
23
+ "publish:minor": "npx @vnejs/monorepo publish minor --access public",
24
+ "publish:patch": "npx @vnejs/monorepo publish patch --access public"
25
+ },
26
+ "author": "",
27
+ "license": "ISC",
28
+ "peerDependencies": {
29
+ "@vnejs/shared": "~0.1.0"
30
+ },
31
+ "devDependencies": {
32
+ "@vnejs/configs.ts-common": "~0.1.0"
33
+ }
34
+ }
package/src/const.ts ADDED
@@ -0,0 +1,5 @@
1
+ export const CONSTANTS = {
2
+ LAYER: "ml",
3
+ } as const;
4
+
5
+ export type Constants = typeof CONSTANTS;
package/src/events.ts ADDED
@@ -0,0 +1,5 @@
1
+ export const SUBSCRIBE_EVENTS = {
2
+ UPDATE: "vne:layer_ml:update",
3
+ } as const;
4
+
5
+ export type SubscribeEvents = typeof SUBSCRIBE_EVENTS;
package/src/index.ts ADDED
@@ -0,0 +1,23 @@
1
+ import "@vnejs/shared";
2
+
3
+ import { CONSTANTS } from "./const.js";
4
+ import { SUBSCRIBE_EVENTS } from "./events.js";
5
+ import { PARAMS } from "./params.js";
6
+
7
+ export const PLUGIN_NAME = "LAYER_ML" as const;
8
+ export type PluginName = typeof PLUGIN_NAME;
9
+
10
+ export { CONSTANTS };
11
+ export type { Constants } from "./const.js";
12
+ export { SUBSCRIBE_EVENTS };
13
+ export type { SubscribeEvents } from "./events.js";
14
+ export { PARAMS };
15
+ export type { Params } from "./params.js";
16
+
17
+ declare module "@vnejs/shared" {
18
+ interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {}
19
+
20
+ interface VnePluginConstantsMap extends Record<typeof PLUGIN_NAME, typeof CONSTANTS> {}
21
+
22
+ interface VnePluginParamsMap extends Record<typeof PLUGIN_NAME, typeof PARAMS> {}
23
+ }
package/src/params.ts ADDED
@@ -0,0 +1,8 @@
1
+ import type { Widen } from "@vnejs/shared";
2
+
3
+ const PARAMS_DEFAULT = {
4
+ ZINDEX: -2000,
5
+ };
6
+
7
+ export type Params = Widen<typeof PARAMS_DEFAULT>;
8
+ export const PARAMS: Params = PARAMS_DEFAULT;
package/tsconfig.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "@vnejs/configs.ts-common/tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "src",
5
+ "outDir": "dist"
6
+ },
7
+ "include": ["src/**/*.ts"],
8
+ "exclude": ["dist", "node_modules"]
9
+ }