@shrub/vue-3 0.5.44 → 0.5.45

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -20,7 +20,7 @@ export interface IVueConfiguration {
20
20
  /** Allows configuring the Vue application before the root component is mounted. */
21
21
  configure(callback: (app: App<Element>) => void): void;
22
22
  /** Mounts a root Vue component. */
23
- mount(component: DefineComponent, props?: RootProps | ((services: IServiceCollection) => RootProps)): void;
23
+ mount(component: DefineComponent<{}, {}, any>, props?: RootProps | ((services: IServiceCollection) => RootProps)): void;
24
24
  }
25
25
  export interface IVueModuleSettings {
26
26
  /** The element id to mount to; the default is #app. */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shrub/vue-3",
3
3
  "description": "A module that adds support for Vue 3 based apps.",
4
- "version": "0.5.44",
4
+ "version": "0.5.45",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -22,8 +22,8 @@
22
22
  "clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
23
23
  },
24
24
  "dependencies": {
25
- "@shrub/core": "0.5.44",
25
+ "@shrub/core": "0.5.45",
26
26
  "vue": "^3.2.20"
27
27
  },
28
- "gitHead": "e98c26b32490507da514c22942785bad35ea27c5"
28
+ "gitHead": "346d97348b67c1bc0c92da7604414da35fe3e96c"
29
29
  }