Skip to content

Commit 81a62c5

Browse files
Build
1 parent 43abdd8 commit 81a62c5

File tree

13 files changed

+32
-25
lines changed

13 files changed

+32
-25
lines changed

dist/plugin/components/VInlineAutocomplete/VInlineAutocomplete.vue.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
224224
type: globalThis.PropType<boolean | "exact">;
225225
};
226226
clearIcon: {
227-
type: globalThis.PropType<string>;
228-
default: undefined;
227+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
228+
default: string;
229229
};
230230
clearable: {
231231
type: globalThis.PropType<boolean>;
@@ -485,8 +485,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
485485
type: globalThis.PropType<boolean | "exact">;
486486
};
487487
clearIcon: {
488-
type: globalThis.PropType<string>;
489-
default: undefined;
488+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
489+
default: string;
490490
};
491491
clearable: {
492492
type: globalThis.PropType<boolean>;
@@ -574,7 +574,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
574574
underlineWidth: string;
575575
underlined: boolean;
576576
valueColor: string;
577-
clearIcon: string;
577+
clearIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
578578
clearable: boolean;
579579
hideSelected: boolean;
580580
itemTitle: string | boolean | readonly (string | number)[] | ((item: any, fallback?: any) => any) | null;

dist/plugin/components/VInlineAutocomplete/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { SharedProps } from '../../types';
33
import type VInlineAutocomplete from './VInlineAutocomplete.vue';
44
export interface VInlineAutocompleteProps extends Omit<SharedProps, 'falseValue' | 'iconFalse' | 'iconFalseColor' | 'iconFalseTitle' | 'iconTrue' | 'iconTrueColor' | 'iconTrueTitle' | 'icons' | 'trueValue' | 'truncateLength' | 'truncateSuffix'> {
55
autoSelectFirst?: VAutocomplete['$props']['autoSelectFirst'];
6-
clearIcon?: string | undefined;
6+
clearIcon?: VAutocomplete['$props']['clearIcon'];
77
clearable?: VAutocomplete['$props']['clearable'];
88
density?: VAutocomplete['$props']['density'];
99
hideSelected?: VAutocomplete['$props']['hideSelected'];

dist/plugin/components/VInlineCustomField/VInlineCustomField.vue.d.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
229229
default: string;
230230
};
231231
clearIcon: {
232-
type: globalThis.PropType<string>;
232+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
233+
default: string;
233234
};
234235
rules: {
235236
type: globalThis.PropType<readonly ((string | boolean) | PromiseLike<string | boolean> | ((value: any) => string | boolean) | ((value: any) => PromiseLike<string | boolean>))[]>;
@@ -467,7 +468,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
467468
default: string;
468469
};
469470
clearIcon: {
470-
type: globalThis.PropType<string>;
471+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
472+
default: string;
471473
};
472474
rules: {
473475
type: globalThis.PropType<readonly ((string | boolean) | PromiseLike<string | boolean> | ((value: any) => string | boolean) | ((value: any) => PromiseLike<string | boolean>))[]>;
@@ -530,15 +532,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
530532
underlineWidth: string;
531533
underlined: boolean;
532534
valueColor: string;
535+
clearIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
533536
}, {}>, Partial<Record<NonNullable<string | number>, (_: any) => any>> & {
534537
default?(_: {
535538
loading: boolean;
536539
modelValue: any;
537540
originalValue: any;
538-
clearIcon: string | undefined;
539541
rules: readonly ((string | boolean) | ((value: any) => string | boolean) | ((value: any) => PromiseLike<string | boolean>) | {
540542
then: <TResult1 = string | boolean, TResult2 = never>(onfulfilled?: ((value: string | boolean) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => PromiseLike<TResult1 | TResult2>;
541543
})[] | undefined;
544+
clearIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
542545
truncateLength: number | undefined;
543546
truncateSuffix: string;
544547
variant: "outlined" | "plain" | "underlined" | "filled" | "solo" | "solo-inverted" | "solo-filled";

dist/plugin/components/VInlineSelect/VInlineSelect.vue.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
221221
default: string;
222222
};
223223
clearIcon: {
224-
type: globalThis.PropType<string>;
225-
default: undefined;
224+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
225+
default: string;
226226
};
227227
clearable: {
228228
type: globalThis.PropType<boolean>;
@@ -476,8 +476,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
476476
default: string;
477477
};
478478
clearIcon: {
479-
type: globalThis.PropType<string>;
480-
default: undefined;
479+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
480+
default: string;
481481
};
482482
clearable: {
483483
type: globalThis.PropType<boolean>;
@@ -562,7 +562,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
562562
underlineWidth: string;
563563
underlined: boolean;
564564
valueColor: string;
565-
clearIcon: string;
565+
clearIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
566566
clearable: boolean;
567567
hideSelected: boolean;
568568
itemTitle: string | boolean | readonly (string | number)[] | ((item: any, fallback?: any) => any) | null;

dist/plugin/components/VInlineSelect/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { VSelect } from 'vuetify/components';
22
import type { SharedProps } from '../../types';
33
import type VInlineSelect from './VInlineSelect.vue';
44
export interface VInlineSelectProps extends Omit<SharedProps, 'falseValue' | 'iconFalse' | 'iconFalseColor' | 'iconFalseTitle' | 'iconTrue' | 'iconTrueColor' | 'iconTrueTitle' | 'icons' | 'trueValue' | 'truncateLength' | 'truncateSuffix'> {
5-
clearIcon?: string | undefined;
5+
clearIcon?: VSelect['$props']['clearIcon'];
66
clearable?: VSelect['$props']['clearable'];
77
density?: VSelect['$props']['density'];
88
hideSelected?: VSelect['$props']['hideSelected'];

dist/plugin/components/VInlineTextField/VInlineTextField.vue.d.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
229229
default: string;
230230
};
231231
clearIcon: {
232-
type: globalThis.PropType<string>;
232+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
233+
default: string;
233234
};
234235
rules: {
235236
type: globalThis.PropType<readonly ((string | boolean) | PromiseLike<string | boolean> | ((value: any) => string | boolean) | ((value: any) => PromiseLike<string | boolean>))[]>;
@@ -467,7 +468,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
467468
default: string;
468469
};
469470
clearIcon: {
470-
type: globalThis.PropType<string>;
471+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
472+
default: string;
471473
};
472474
rules: {
473475
type: globalThis.PropType<readonly ((string | boolean) | PromiseLike<string | boolean> | ((value: any) => string | boolean) | ((value: any) => PromiseLike<string | boolean>))[]>;
@@ -530,6 +532,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
530532
underlineWidth: string;
531533
underlined: boolean;
532534
valueColor: string;
535+
clearIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
533536
}, {}>, Partial<Record<NonNullable<string | number>, (_: any) => any>> & Partial<Record<NonNullable<string | number>, (_: any) => any>>>;
534537
export default _default;
535538
type __VLS_WithTemplateSlots<T, S> = T & {

dist/plugin/components/VInlineTextField/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { VTextField } from 'vuetify/components';
22
import type { SharedProps } from '../../types';
33
import type VInlineTextField from './VInlineTextField.vue';
44
export interface VInlineTextFieldProps extends Omit<SharedProps, 'falseValue' | 'iconFalse' | 'iconFalseColor' | 'iconFalseTitle' | 'iconTrue' | 'iconTrueColor' | 'iconTrueTitle' | 'icons' | 'trueValue'> {
5-
clearIcon?: string | undefined;
5+
clearIcon?: VTextField['$props']['clearIcon'];
66
density?: VTextField['$props']['density'];
77
rules?: VTextField['$props']['rules'];
88
variant?: VTextField['$props']['variant'];

dist/plugin/components/VInlineTextarea/VInlineTextarea.vue.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
229229
default: string;
230230
};
231231
clearIcon: {
232-
type: globalThis.PropType<string>;
232+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
233233
};
234234
rules: {
235235
type: globalThis.PropType<readonly ((string | boolean) | PromiseLike<string | boolean> | ((value: any) => string | boolean) | ((value: any) => PromiseLike<string | boolean>))[]>;
@@ -475,7 +475,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
475475
default: string;
476476
};
477477
clearIcon: {
478-
type: globalThis.PropType<string>;
478+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
479479
};
480480
rules: {
481481
type: globalThis.PropType<readonly ((string | boolean) | PromiseLike<string | boolean> | ((value: any) => string | boolean) | ((value: any) => PromiseLike<string | boolean>))[]>;

dist/plugin/components/VInlineTextarea/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { SharedProps } from '../../types';
33
import type VInlineTextarea from './VInlineTextarea.vue';
44
export interface VInlineTextareaProps extends Omit<SharedProps, 'falseValue' | 'iconFalse' | 'iconFalseColor' | 'iconFalseTitle' | 'iconTrue' | 'iconTrueColor' | 'iconTrueTitle' | 'icons' | 'trueValue'> {
55
autoGrow?: VTextarea['$props']['autoGrow'];
6-
clearIcon?: string | undefined;
6+
clearIcon?: VTextarea['$props']['clearIcon'];
77
density?: VTextarea['$props']['density'];
88
rows?: VTextarea['$props']['rows'];
99
rules?: VTextarea['$props']['rules'];

dist/plugin/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export interface UseCardContainerClass {
174174
}
175175
export interface UseGetIcon {
176176
(options: {
177-
icon: string | undefined;
177+
icon: VIconValue;
178178
iconOptions: IconOptions | undefined;
179179
name: string;
180180
}): string;

0 commit comments

Comments
 (0)