Skip to content

Commit ae8369b

Browse files
build
1 parent 4dc9abd commit ae8369b

File tree

5 files changed

+737
-736
lines changed

5 files changed

+737
-736
lines changed

dist/plugin/components/fields/VSFCustom/VSFCustom.vue.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ declare function __VLS_template(): {
5353
blur: () => Promise<void>;
5454
change: () => Promise<void>;
5555
input: () => Promise<void>;
56+
onUpdate: (value: any) => void;
5657
field: {
5758
options: KeyStringAny<any> | undefined;
5859
required: boolean | undefined;
@@ -101,7 +102,6 @@ declare function __VLS_template(): {
101102
variant?: string | undefined;
102103
transition?: import('vuetify/lib/components/index.mjs').VStepperWindowItem["transition"] | undefined;
103104
errorMessages: any;
104-
modelValue: any;
105105
};
106106
}) => any>>;
107107
refs: {};

dist/plugin/index.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { PluginOptions } from './types';
22
import { Plugin } from 'vue';
33
import { default as FieldLabel } from './components/shared/FieldLabel.vue';
44
import { default as VStepperForm } from './VStepperForm.vue';
5-
export declare const globalOptions: unique symbol;
65
export declare function createVStepperForm(options?: PluginOptions): Plugin;
76
export default VStepperForm;
87
export { FieldLabel, VStepperForm, };

dist/plugin/utils/globals.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
import { InjectionKey } from 'vue';
2+
import { PluginOptions } from '../types';
13
export declare const componentName = "v-stepper-form";
4+
export declare const pluginOptionsInjectionKey: InjectionKey<PluginOptions>;

dist/vuetify-stepper-form.cjs.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuetify-stepper-form.es.js

+730-731
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)