@effect-app/vue-components 1.6.0 → 1.6.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.
@@ -1,7 +1,7 @@
1
1
  import { type DeepKeys, DeepValue, StandardSchemaV1Issue, ValidationError, ValidationErrorMap } from "@tanstack/vue-form";
2
2
  import { Effect, Order, S } from "effect-app";
3
3
  import { type InjectionKey } from "vue";
4
- import { type InputProps } from "./InputProps";
4
+ import { MergedInputProps } from "./InputProps";
5
5
  import { DefaultInputProps, type FilterItems, type FormProps, type MetaRecord, type NestedKeyOf, OmegaAutoGenMeta, OmegaError, type OmegaFormApi, OmegaFormState, OmegaInputProps, ShowErrorsOn } from "./OmegaFormStuff";
6
6
  type keysRule<T> = {
7
7
  keys?: NestedKeyOf<T>[];
@@ -71,7 +71,7 @@ export interface OmegaFormReturn<From extends Record<PropertyKey, any>, To exten
71
71
  expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
72
72
  attrs: any;
73
73
  slots: {
74
- default(props: InputProps<From, Name>): void;
74
+ default(props: MergedInputProps<From, Name>): void;
75
75
  };
76
76
  emit: {};
77
77
  }>) => import("vue").VNode & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-app/vue-components",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "peerDependencies": {
5
5
  "@mdi/js": "^7.4.47",
6
6
  "effect": "^3.18.0",
@@ -51,8 +51,8 @@
51
51
  "highlight.js": "^11.11.1",
52
52
  "mitt": "^3.0.1",
53
53
  "vue3-highlightjs": "^1.0.5",
54
- "effect-app": "3.9.0",
55
- "@effect-app/vue": "2.83.0"
54
+ "@effect-app/vue": "2.84.0",
55
+ "effect-app": "3.9.0"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "pnpm build:run",
@@ -8,7 +8,7 @@ import { runtimeFiberAsPromise } from "effect-app/utils"
8
8
  import { isObject } from "effect/Predicate"
9
9
  import { Component, computed, ConcreteComponent, h, type InjectionKey, onBeforeUnmount, onMounted, onUnmounted, watch } from "vue"
10
10
  import { usePreventClose } from "./blockDialog"
11
- import { type InputProps } from "./InputProps"
11
+ import { MergedInputProps } from "./InputProps"
12
12
  import OmegaArray from "./OmegaArray.vue"
13
13
  import OmegaAutoGen from "./OmegaAutoGen.vue"
14
14
  import { buildOmegaErrors } from "./OmegaErrorsContext"
@@ -161,7 +161,7 @@ export interface OmegaFormReturn<
161
161
  expose(exposed: import("vue").ShallowUnwrapRef<{}>): void
162
162
  attrs: any
163
163
  slots: {
164
- default(props: InputProps<From, Name>): void
164
+ default(props: MergedInputProps<From, Name>): void
165
165
  }
166
166
  emit: {}
167
167
  }>