Skip to content

Commit 946804a

Browse files
Merge pull request #43 from webdevnerdstuff/dev
v1.0.2
2 parents 1e2aed4 + 476f0dd commit 946804a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+8947
-10095
lines changed

Diff for: .eslintrc.js

-5
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ module.exports = {
4040
'vue',
4141
],
4242
root: true,
43-
settings: {
44-
'import/resolver': {
45-
'babel-module': {},
46-
},
47-
},
4843
rules: {
4944
'@typescript-eslint/ban-ts-comment': 0,
5045
'@typescript-eslint/ban-types': [

Diff for: dist/plugin/VInlineCheckbox.vue.d.ts

+12-12
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
138138
default: boolean;
139139
};
140140
displayAppendIcon: {
141-
type: globalThis.PropType<import('../types').VIconValue>;
141+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
142142
default: undefined;
143143
};
144144
displayAppendIconColor: {
@@ -150,7 +150,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
150150
default: string;
151151
};
152152
displayAppendInnerIcon: {
153-
type: globalThis.PropType<import('../types').VIconValue>;
153+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
154154
default: undefined;
155155
};
156156
displayAppendInnerIconColor: {
@@ -162,7 +162,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
162162
default: string;
163163
};
164164
displayPrependIcon: {
165-
type: globalThis.PropType<import('../types').VIconValue>;
165+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
166166
default: undefined;
167167
};
168168
displayPrependIconColor: {
@@ -174,7 +174,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
174174
default: string;
175175
};
176176
displayPrependInnerIcon: {
177-
type: globalThis.PropType<import('../types').VIconValue>;
177+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
178178
default: undefined;
179179
};
180180
displayPrependInnerIconColor: {
@@ -399,7 +399,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
399399
default: boolean;
400400
};
401401
displayAppendIcon: {
402-
type: globalThis.PropType<import('../types').VIconValue>;
402+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
403403
default: undefined;
404404
};
405405
displayAppendIconColor: {
@@ -411,7 +411,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
411411
default: string;
412412
};
413413
displayAppendInnerIcon: {
414-
type: globalThis.PropType<import('../types').VIconValue>;
414+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
415415
default: undefined;
416416
};
417417
displayAppendInnerIconColor: {
@@ -423,7 +423,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
423423
default: string;
424424
};
425425
displayPrependIcon: {
426-
type: globalThis.PropType<import('../types').VIconValue>;
426+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
427427
default: undefined;
428428
};
429429
displayPrependIconColor: {
@@ -435,7 +435,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
435435
default: string;
436436
};
437437
displayPrependInnerIcon: {
438-
type: globalThis.PropType<import('../types').VIconValue>;
438+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
439439
default: undefined;
440440
};
441441
displayPrependInnerIconColor: {
@@ -551,16 +551,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
551551
cell: boolean;
552552
cellUnderlineFullWidth: boolean;
553553
closeSiblings: boolean;
554-
displayAppendIcon: import('../types').VIconValue;
554+
displayAppendIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
555555
displayAppendIconColor: string;
556556
displayAppendIconSize: string | number;
557-
displayAppendInnerIcon: import('../types').VIconValue;
557+
displayAppendInnerIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
558558
displayAppendInnerIconColor: string;
559559
displayAppendInnerIconSize: string | number;
560-
displayPrependIcon: import('../types').VIconValue;
560+
displayPrependIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
561561
displayPrependIconColor: string;
562562
displayPrependIconSize: string | number;
563-
displayPrependInnerIcon: import('../types').VIconValue;
563+
displayPrependInnerIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
564564
displayPrependInnerIconColor: string;
565565
displayPrependInnerIconSize: string | number;
566566
emptyText: string;

Diff for: dist/plugin/VInlineCustomField.vue.d.ts

+28-28
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3030
type: globalThis.PropType<boolean>;
3131
default: boolean;
3232
};
33+
variant: {
34+
type: globalThis.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
35+
default: "underlined";
36+
};
3337
loading: {
3438
type: globalThis.PropType<boolean>;
3539
default: boolean;
@@ -38,10 +42,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3842
type: globalThis.PropType<boolean>;
3943
default: boolean;
4044
};
41-
variant: {
42-
type: globalThis.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
43-
default: "underlined";
44-
};
4545
clearIcon: {
4646
type: globalThis.PropType<string>;
4747
};
@@ -116,7 +116,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
116116
default: boolean;
117117
};
118118
displayAppendIcon: {
119-
type: globalThis.PropType<import('../types').VIconValue>;
119+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
120120
default: undefined;
121121
};
122122
displayAppendIconColor: {
@@ -128,7 +128,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
128128
default: string;
129129
};
130130
displayAppendInnerIcon: {
131-
type: globalThis.PropType<import('../types').VIconValue>;
131+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
132132
default: undefined;
133133
};
134134
displayAppendInnerIconColor: {
@@ -140,7 +140,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
140140
default: string;
141141
};
142142
displayPrependIcon: {
143-
type: globalThis.PropType<import('../types').VIconValue>;
143+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
144144
default: undefined;
145145
};
146146
displayPrependIconColor: {
@@ -152,7 +152,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
152152
default: string;
153153
};
154154
displayPrependInnerIcon: {
155-
type: globalThis.PropType<import('../types').VIconValue>;
155+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
156156
default: undefined;
157157
};
158158
displayPrependInnerIconColor: {
@@ -269,6 +269,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
269269
type: globalThis.PropType<boolean>;
270270
default: boolean;
271271
};
272+
variant: {
273+
type: globalThis.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
274+
default: "underlined";
275+
};
272276
loading: {
273277
type: globalThis.PropType<boolean>;
274278
default: boolean;
@@ -277,10 +281,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
277281
type: globalThis.PropType<boolean>;
278282
default: boolean;
279283
};
280-
variant: {
281-
type: globalThis.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
282-
default: "underlined";
283-
};
284284
clearIcon: {
285285
type: globalThis.PropType<string>;
286286
};
@@ -355,7 +355,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
355355
default: boolean;
356356
};
357357
displayAppendIcon: {
358-
type: globalThis.PropType<import('../types').VIconValue>;
358+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
359359
default: undefined;
360360
};
361361
displayAppendIconColor: {
@@ -367,7 +367,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
367367
default: string;
368368
};
369369
displayAppendInnerIcon: {
370-
type: globalThis.PropType<import('../types').VIconValue>;
370+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
371371
default: undefined;
372372
};
373373
displayAppendInnerIconColor: {
@@ -379,7 +379,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
379379
default: string;
380380
};
381381
displayPrependIcon: {
382-
type: globalThis.PropType<import('../types').VIconValue>;
382+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
383383
default: undefined;
384384
};
385385
displayPrependIconColor: {
@@ -391,7 +391,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
391391
default: string;
392392
};
393393
displayPrependInnerIcon: {
394-
type: globalThis.PropType<import('../types').VIconValue>;
394+
type: globalThis.PropType<string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent>;
395395
default: undefined;
396396
};
397397
displayPrependInnerIconColor: {
@@ -481,9 +481,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
481481
disabled: boolean;
482482
density: "default" | "comfortable" | "compact" | null;
483483
hideDetails: boolean;
484+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
484485
loading: boolean;
485486
autofocus: boolean;
486-
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
487487
underlined: boolean;
488488
truncateLength: number;
489489
truncateSuffix: string;
@@ -500,16 +500,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
500500
cell: boolean;
501501
cellUnderlineFullWidth: boolean;
502502
closeSiblings: boolean;
503-
displayAppendIcon: import('../types').VIconValue;
503+
displayAppendIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
504504
displayAppendIconColor: string;
505505
displayAppendIconSize: string | number;
506-
displayAppendInnerIcon: import('../types').VIconValue;
506+
displayAppendInnerIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
507507
displayAppendInnerIconColor: string;
508508
displayAppendInnerIconSize: string | number;
509-
displayPrependIcon: import('../types').VIconValue;
509+
displayPrependIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
510510
displayPrependIconColor: string;
511511
displayPrependIconSize: string | number;
512-
displayPrependInnerIcon: import('../types').VIconValue;
512+
displayPrependInnerIcon: string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent;
513513
displayPrependInnerIconColor: string;
514514
displayPrependInnerIconSize: string | number;
515515
emptyText: string;
@@ -536,11 +536,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
536536
modelValue: any;
537537
originalValue: any;
538538
error: boolean;
539-
rules?: readonly ((string | boolean) | ((value: any) => string | boolean) | ((value: any) => PromiseLike<string | boolean>) | {
539+
rules: readonly ((string | boolean) | ((value: any) => string | boolean) | ((value: any) => PromiseLike<string | boolean>) | {
540540
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>;
541541
})[] | undefined;
542-
clearIcon?: string | undefined;
543-
item?: Record<string, unknown> | undefined;
542+
clearIcon: string | undefined;
543+
item: Record<string, unknown> | undefined;
544544
required: boolean;
545545
truncateLength: number | undefined;
546546
truncateSuffix: string;
@@ -572,16 +572,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
572572
color: string;
573573
density: "default" | "comfortable" | "compact" | null;
574574
disabled: boolean;
575-
displayAppendIcon: import('../types').VIconValue | undefined;
575+
displayAppendIcon: (string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent) | undefined;
576576
displayAppendIconColor: string | undefined;
577577
displayAppendIconSize: string | number;
578-
displayAppendInnerIcon: import('../types').VIconValue | undefined;
578+
displayAppendInnerIcon: (string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent) | undefined;
579579
displayAppendInnerIconColor: string | undefined;
580580
displayAppendInnerIconSize: string | number;
581-
displayPrependIcon: import('../types').VIconValue | undefined;
581+
displayPrependIcon: (string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent) | undefined;
582582
displayPrependIconColor: string | undefined;
583583
displayPrependIconSize: string | number;
584-
displayPrependInnerIcon: import('../types').VIconValue | undefined;
584+
displayPrependInnerIcon: (string | (string | [path: string, opacity: number])[] | import("vue").JSXComponent) | undefined;
585585
displayPrependInnerIconColor: string | undefined;
586586
displayPrependInnerIconSize: string | number;
587587
emptyText: string;

0 commit comments

Comments
 (0)