@effect-app/vue-components 1.6.6 → 1.6.7
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,6 +1,7 @@
|
|
|
1
1
|
export * as OmegaErrorsContext from "./OmegaErrorsContext";
|
|
2
2
|
export * from "./OmegaFormStuff";
|
|
3
|
-
export { type OmegaFormReturn, useOmegaForm } from "./useOmegaForm";
|
|
3
|
+
export { type OmegaConfig, type OmegaFormReturn, useOmegaForm } from "./useOmegaForm";
|
|
4
|
+
export { type InputProps, type MergedInputProps } from "./InputProps";
|
|
4
5
|
export { default as OmegaInput } from "./OmegaInput.vue";
|
|
5
6
|
export { default as OmegaVuetifyInput } from "./OmegaInternalInput.vue";
|
|
6
7
|
export { useOnClose, usePreventClose } from "./blockDialog";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/vue-components",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.7",
|
|
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": "
|
|
55
|
-
"
|
|
54
|
+
"@effect-app/vue": "2.84.2",
|
|
55
|
+
"effect-app": "3.10.1"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "pnpm build:run",
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export * as OmegaErrorsContext from "./OmegaErrorsContext"
|
|
2
2
|
export * from "./OmegaFormStuff"
|
|
3
|
-
export { type OmegaFormReturn, useOmegaForm } from "./useOmegaForm"
|
|
3
|
+
export { type OmegaConfig, type OmegaFormReturn, useOmegaForm } from "./useOmegaForm"
|
|
4
4
|
|
|
5
|
+
export { type InputProps, type MergedInputProps } from "./InputProps"
|
|
5
6
|
export { default as OmegaInput } from "./OmegaInput.vue"
|
|
6
7
|
export { default as OmegaVuetifyInput } from "./OmegaInternalInput.vue"
|
|
7
8
|
|