vue-unwrap 1.1.0 → 1.1.1

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 +4 -5
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -26,13 +26,12 @@ declare function useUnwrap<N = NodeRef, P = Record<string, any>>(propTypes?: Rec
26
26
  };
27
27
  //#endregion
28
28
  //#region src/Unwrap.vue.d.ts
29
- declare const dom: _$vue.ComputedRef<{
30
- el: Element | null;
31
- children: _$vue.ShallowReactive<NodeRef[]>;
32
- }>;
33
29
  type __VLS_Slots = {
34
30
  default(props: {
35
- dom: typeof dom;
31
+ dom: {
32
+ el: Element | null;
33
+ children: NodeRef[];
34
+ };
36
35
  }): any;
37
36
  };
38
37
  declare const __VLS_base: _$vue.DefineComponent<{}, {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vue-unwrap",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "description": "Conditional wrapper component for Vue 3 with child ref aggregation.",
6
6
  "author": "Andrea 'Fiad' Fiadone <hello@fiad.one>",
7
7
  "license": "MIT",