Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions dist/plugin/VInlineCheckbox.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
[x: string]: (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: globalThis.PropType<any>;
error: {
type: globalThis.PropType<boolean>;
Expand Down Expand Up @@ -492,9 +494,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}>> & {
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
}, {
}>>, {
name: string;
color: string;
label: string;
Expand Down
8 changes: 4 additions & 4 deletions dist/plugin/VInlineCustomField.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
[x: string]: (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: globalThis.PropType<any>;
error: {
type: globalThis.PropType<boolean>;
Expand Down Expand Up @@ -448,9 +450,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}>> & {
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
}, {
}>>, {
name: string;
color: string;
label: string;
Expand Down
20 changes: 10 additions & 10 deletions dist/plugin/VInlineSelect.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
default: boolean;
};
itemTitle: {
type: globalThis.PropType<string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any)>;
type: globalThis.PropType<string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null>;
default: string;
};
itemValue: {
type: globalThis.PropType<string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any)>;
type: globalThis.PropType<string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null>;
default: string;
};
hideSelected: {
Expand Down Expand Up @@ -240,7 +240,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
[x: string]: (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: globalThis.PropType<any>;
error: {
type: globalThis.PropType<boolean>;
Expand Down Expand Up @@ -297,11 +299,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
default: boolean;
};
itemTitle: {
type: globalThis.PropType<string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any)>;
type: globalThis.PropType<string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null>;
default: string;
};
itemValue: {
type: globalThis.PropType<string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any)>;
type: globalThis.PropType<string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null>;
default: string;
};
hideSelected: {
Expand Down Expand Up @@ -482,9 +484,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}>> & {
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
}, {
}>>, {
name: string;
color: string;
label: string;
Expand All @@ -497,8 +497,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
clearIcon: string;
clearable: boolean;
itemTitle: string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any);
itemValue: string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any);
itemTitle: string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
itemValue: string | boolean | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
hideSelected: boolean;
menu: boolean;
underlined: boolean;
Expand Down
8 changes: 4 additions & 4 deletions dist/plugin/VInlineSwitch.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
[x: string]: (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: globalThis.PropType<any>;
error: {
type: globalThis.PropType<boolean>;
Expand Down Expand Up @@ -412,9 +414,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}>> & {
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
}, {
}>>, {
name: string;
color: string;
label: string;
Expand Down
8 changes: 4 additions & 4 deletions dist/plugin/VInlineTextField.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
[x: string]: (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: globalThis.PropType<any>;
error: {
type: globalThis.PropType<boolean>;
Expand Down Expand Up @@ -448,9 +450,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}>> & {
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
}, {
}>>, {
name: string;
color: string;
label: string;
Expand Down
8 changes: 4 additions & 4 deletions dist/plugin/VInlineTextarea.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
[x: string]: (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: globalThis.PropType<any>;
error: {
type: globalThis.PropType<boolean>;
Expand Down Expand Up @@ -464,9 +466,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
type: globalThis.PropType<string>;
default: string;
};
}>> & {
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
}, {
}>>, {
name: string;
color: string;
label: string;
Expand Down
4 changes: 3 additions & 1 deletion dist/plugin/components/DisplayedValue.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
underlined: {
type: globalThis.PropType<boolean>;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "toggleField"[], "toggleField", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
toggleField: (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
[x: string]: {
type: globalThis.PropType<any>;
};
Expand Down
5 changes: 4 additions & 1 deletion dist/plugin/components/SaveFieldButtons.vue.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ declare const _default: import("vue").DefineComponent<{
type: globalThis.PropType<string>;
required: true;
};
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "save")[], "close" | "save", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
close: (...args: any[]) => void;
save: (...args: any[]) => void;
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
error: {
type: globalThis.PropType<boolean>;
required: true;
Expand Down
Loading