@vnejs/contracts.scales 0.1.1 → 0.1.2

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/index.d.ts CHANGED
@@ -13,9 +13,9 @@ export type { SubscribeEvents } from "./events.js";
13
13
  export { getScaleKey } from "./keys.js";
14
14
  export type { ScaleType } from "./keys.js";
15
15
  export type { ModuleGlobalStateScales, ScaleEntry } from "./module-global-state.js";
16
- export { PARAMS, TYPES, ENTITIES } from "./params.js";
16
+ export { PARAMS, TYPES } from "./params.js";
17
17
  export type { Params } from "./params.js";
18
- export type { ScaleTypes, ScaleEntities } from "./params.js";
18
+ export type { ScaleTypes } from "./params.js";
19
19
  export type ScaleState = ScaleEntry;
20
20
  declare module "@vnejs/module" {
21
21
  interface ModuleGlobalState {
package/dist/index.js CHANGED
@@ -5,4 +5,4 @@ export const PLUGIN_NAME = "SCALES";
5
5
  export { CONSTANTS } from "./const.js";
6
6
  export { SUBSCRIBE_EVENTS };
7
7
  export { getScaleKey } from "./keys.js";
8
- export { PARAMS, TYPES, ENTITIES } from "./params.js";
8
+ export { PARAMS, TYPES } from "./params.js";
package/dist/params.d.ts CHANGED
@@ -1,13 +1,9 @@
1
1
  import type { Widen } from "@vnejs/shared";
2
2
  export interface ScaleTypes {
3
3
  }
4
- export interface ScaleEntities {
5
- }
6
4
  export declare const TYPES: ScaleTypes;
7
- export declare const ENTITIES: ScaleEntities;
8
5
  declare const PARAMS_DEFAULT: {
9
6
  TYPES: ScaleTypes;
10
- ENTITIES: ScaleEntities;
11
7
  };
12
8
  export type Params = Widen<typeof PARAMS_DEFAULT>;
13
9
  export declare const PARAMS: Params;
package/dist/params.js CHANGED
@@ -1,7 +1,5 @@
1
1
  export const TYPES = {};
2
- export const ENTITIES = {};
3
2
  const PARAMS_DEFAULT = {
4
3
  TYPES,
5
- ENTITIES,
6
4
  };
7
5
  export const PARAMS = PARAMS_DEFAULT;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnejs/contracts.scales",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Contracts for @vnejs/plugins.scales",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -16,9 +16,9 @@ export type { SubscribeEvents } from "./events.js";
16
16
  export { getScaleKey } from "./keys.js";
17
17
  export type { ScaleType } from "./keys.js";
18
18
  export type { ModuleGlobalStateScales, ScaleEntry } from "./module-global-state.js";
19
- export { PARAMS, TYPES, ENTITIES } from "./params.js";
19
+ export { PARAMS, TYPES } from "./params.js";
20
20
  export type { Params } from "./params.js";
21
- export type { ScaleTypes, ScaleEntities } from "./params.js";
21
+ export type { ScaleTypes } from "./params.js";
22
22
 
23
23
  export type ScaleState = ScaleEntry;
24
24
 
package/src/params.ts CHANGED
@@ -2,15 +2,10 @@ import type { Widen } from "@vnejs/shared";
2
2
 
3
3
  export interface ScaleTypes {}
4
4
 
5
- export interface ScaleEntities {}
6
-
7
5
  export const TYPES = {} as ScaleTypes;
8
6
 
9
- export const ENTITIES = {} as ScaleEntities;
10
-
11
7
  const PARAMS_DEFAULT = {
12
8
  TYPES,
13
- ENTITIES,
14
9
  };
15
10
 
16
11
  export type Params = Widen<typeof PARAMS_DEFAULT>;