@vnejs/contracts.text.inject 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/events.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export declare const SUBSCRIBE_EVENTS: {
2
+ readonly EMIT: "vne:text_inject:emit";
2
3
  readonly REG: "vne:text_inject:reg";
3
4
  };
4
5
  export type SubscribeEvents = typeof SUBSCRIBE_EVENTS;
package/dist/events.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export const SUBSCRIBE_EVENTS = {
2
+ EMIT: "vne:text_inject:emit",
2
3
  REG: "vne:text_inject:reg",
3
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnejs/contracts.text.inject",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Contracts for @vnejs/plugins.text.inject",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/events.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export const SUBSCRIBE_EVENTS = {
2
+ EMIT: "vne:text_inject:emit",
2
3
  REG: "vne:text_inject:reg",
3
4
  } as const;
4
5