Skip to content

Commit 93c35a3

Browse files
Merge pull request #39 from webdevnerdstuff/dev
Dev
2 parents 5812f97 + a37d2f5 commit 93c35a3

29 files changed

+2703
-1965
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
All notable changes to the "vuetify-inline-fields" plugin will be documented in this file.
33

44
## v1.0.0
5-
TBD
5+
12-01-2023
66
[main] (@webdevnerdstuff)
7-
* Official release depends on when the Vue team decides if they are going to keep experimental `defineModel` feature. [Blog](https://blog.vuejs.org/posts/vue-3-3#definemodel)
7+
Official Release
88

99
## v1.0.0-beta-2
10-
11-09-23
10+
11-09-2023
1111
[main] (@webdevnerdstuff)
1212
* Update lab components to regular components due to Vuetify official releases
1313
* Update packages

README.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</p>
44

55
<p>
6-
<h1 align="center">Vuetify Inline Fields (beta)</h1>
6+
<h1 align="center">Vuetify Inline Fields</h1>
77
</p>
88

99
<p align="center">
@@ -24,15 +24,6 @@ Vuetify Inline Fields Component Library offers a comprehensive collection of reu
2424
Additionally, this library provides enhanced integration specifically tailored for usage within data tables. Developers can seamlessly integrate inline form fields directly into their data table cells, facilitating efficient inline editing and data manipulation. This feature empowers users to make changes directly within the table, streamlining the editing process and improving productivity.
2525

2626

27-
## Development Playground
28-
29-
The `vuetify-inline-fields` is still in beta. If you would like to test the component library out, you can clone the repo and run the following commands:
30-
31-
`pnpm i && pnpm play`
32-
33-
This will open up a Playground page that loads the file `./src/playground/PlaygroundPage.vue`. You can edit this file to test out the component.
34-
35-
3627
## Installation
3728

3829
Using [pnpm](https://pnpm.io/):

dist/plugin/VInlineCheckbox.vue.d.ts

+86-59
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,34 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
5757
required: {
5858
type: globalThis.PropType<boolean>;
5959
};
60+
iconFalse: {
61+
type: globalThis.PropType<string>;
62+
default: undefined;
63+
};
64+
iconFalseColor: {
65+
type: globalThis.PropType<string>;
66+
default: string;
67+
};
68+
iconFalseTitle: {
69+
type: globalThis.PropType<string>;
70+
default: string;
71+
};
72+
iconTrue: {
73+
type: globalThis.PropType<string>;
74+
default: undefined;
75+
};
76+
iconTrueColor: {
77+
type: globalThis.PropType<string>;
78+
default: string;
79+
};
80+
iconTrueTitle: {
81+
type: globalThis.PropType<string>;
82+
default: string;
83+
};
84+
icons: {
85+
type: globalThis.PropType<boolean>;
86+
default: boolean;
87+
};
6088
cancelButtonColor: {
6189
type: globalThis.PropType<string>;
6290
default: string;
@@ -97,6 +125,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
97125
type: globalThis.PropType<any>;
98126
default: () => {};
99127
};
128+
cell: {
129+
type: globalThis.PropType<boolean>;
130+
default: boolean;
131+
};
132+
cellUnderlineFullWidth: {
133+
type: globalThis.PropType<boolean>;
134+
default: boolean;
135+
};
100136
closeSiblings: {
101137
type: globalThis.PropType<boolean>;
102138
default: boolean;
@@ -157,35 +193,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
157193
type: globalThis.PropType<boolean>;
158194
default: boolean;
159195
};
160-
hideSaveIcon: {
196+
hideCancelIcon: {
161197
type: globalThis.PropType<boolean>;
162198
default: boolean;
163199
};
164-
iconFalse: {
165-
type: globalThis.PropType<string>;
166-
default: undefined;
167-
};
168-
iconFalseColor: {
169-
type: globalThis.PropType<string>;
170-
default: string;
171-
};
172-
iconFalseTitle: {
173-
type: globalThis.PropType<string>;
174-
default: string;
175-
};
176-
iconTrue: {
177-
type: globalThis.PropType<string>;
178-
default: undefined;
179-
};
180-
iconTrueColor: {
181-
type: globalThis.PropType<string>;
182-
default: string;
183-
};
184-
iconTrueTitle: {
185-
type: globalThis.PropType<string>;
186-
default: string;
187-
};
188-
icons: {
200+
hideSaveIcon: {
189201
type: globalThis.PropType<boolean>;
190202
default: boolean;
191203
};
@@ -306,6 +318,34 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
306318
required: {
307319
type: globalThis.PropType<boolean>;
308320
};
321+
iconFalse: {
322+
type: globalThis.PropType<string>;
323+
default: undefined;
324+
};
325+
iconFalseColor: {
326+
type: globalThis.PropType<string>;
327+
default: string;
328+
};
329+
iconFalseTitle: {
330+
type: globalThis.PropType<string>;
331+
default: string;
332+
};
333+
iconTrue: {
334+
type: globalThis.PropType<string>;
335+
default: undefined;
336+
};
337+
iconTrueColor: {
338+
type: globalThis.PropType<string>;
339+
default: string;
340+
};
341+
iconTrueTitle: {
342+
type: globalThis.PropType<string>;
343+
default: string;
344+
};
345+
icons: {
346+
type: globalThis.PropType<boolean>;
347+
default: boolean;
348+
};
309349
cancelButtonColor: {
310350
type: globalThis.PropType<string>;
311351
default: string;
@@ -346,6 +386,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
346386
type: globalThis.PropType<any>;
347387
default: () => {};
348388
};
389+
cell: {
390+
type: globalThis.PropType<boolean>;
391+
default: boolean;
392+
};
393+
cellUnderlineFullWidth: {
394+
type: globalThis.PropType<boolean>;
395+
default: boolean;
396+
};
349397
closeSiblings: {
350398
type: globalThis.PropType<boolean>;
351399
default: boolean;
@@ -406,35 +454,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
406454
type: globalThis.PropType<boolean>;
407455
default: boolean;
408456
};
409-
hideSaveIcon: {
457+
hideCancelIcon: {
410458
type: globalThis.PropType<boolean>;
411459
default: boolean;
412460
};
413-
iconFalse: {
414-
type: globalThis.PropType<string>;
415-
default: undefined;
416-
};
417-
iconFalseColor: {
418-
type: globalThis.PropType<string>;
419-
default: string;
420-
};
421-
iconFalseTitle: {
422-
type: globalThis.PropType<string>;
423-
default: string;
424-
};
425-
iconTrue: {
426-
type: globalThis.PropType<string>;
427-
default: undefined;
428-
};
429-
iconTrueColor: {
430-
type: globalThis.PropType<string>;
431-
default: string;
432-
};
433-
iconTrueTitle: {
434-
type: globalThis.PropType<string>;
435-
default: string;
436-
};
437-
icons: {
461+
hideSaveIcon: {
438462
type: globalThis.PropType<boolean>;
439463
default: boolean;
440464
};
@@ -507,6 +531,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
507531
hideDetails: boolean;
508532
loading: boolean;
509533
underlined: boolean;
534+
iconFalse: string;
535+
iconFalseColor: string;
536+
iconFalseTitle: string;
537+
iconTrue: string;
538+
iconTrueColor: string;
539+
iconTrueTitle: string;
540+
icons: boolean;
510541
cancelButtonColor: string;
511542
cancelButtonSize: string | number;
512543
cancelButtonTitle: string;
@@ -517,6 +548,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
517548
cardOffsetX: number;
518549
cardOffsetY: number;
519550
cardProps: any;
551+
cell: boolean;
552+
cellUnderlineFullWidth: boolean;
520553
closeSiblings: boolean;
521554
displayAppendIcon: import('../types').VIconValue;
522555
displayAppendIconColor: string;
@@ -532,14 +565,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
532565
displayPrependInnerIconSize: string | number;
533566
emptyText: string;
534567
fieldOnly: boolean;
568+
hideCancelIcon: boolean;
535569
hideSaveIcon: boolean;
536-
iconFalse: string;
537-
iconFalseColor: string;
538-
iconFalseTitle: string;
539-
iconTrue: string;
540-
iconTrueColor: string;
541-
iconTrueTitle: string;
542-
icons: boolean;
543570
loadingIcon: string;
544571
loadingIconColor: string;
545572
loadingWait: boolean;

dist/plugin/VInlineCustomField.vue.d.ts

+30
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
103103
type: globalThis.PropType<any>;
104104
default: () => {};
105105
};
106+
cell: {
107+
type: globalThis.PropType<boolean>;
108+
default: boolean;
109+
};
110+
cellUnderlineFullWidth: {
111+
type: globalThis.PropType<boolean>;
112+
default: boolean;
113+
};
106114
closeSiblings: {
107115
type: globalThis.PropType<boolean>;
108116
default: boolean;
@@ -163,6 +171,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
163171
type: globalThis.PropType<boolean>;
164172
default: boolean;
165173
};
174+
hideCancelIcon: {
175+
type: globalThis.PropType<boolean>;
176+
default: boolean;
177+
};
166178
hideSaveIcon: {
167179
type: globalThis.PropType<boolean>;
168180
default: boolean;
@@ -330,6 +342,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
330342
type: globalThis.PropType<any>;
331343
default: () => {};
332344
};
345+
cell: {
346+
type: globalThis.PropType<boolean>;
347+
default: boolean;
348+
};
349+
cellUnderlineFullWidth: {
350+
type: globalThis.PropType<boolean>;
351+
default: boolean;
352+
};
333353
closeSiblings: {
334354
type: globalThis.PropType<boolean>;
335355
default: boolean;
@@ -390,6 +410,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
390410
type: globalThis.PropType<boolean>;
391411
default: boolean;
392412
};
413+
hideCancelIcon: {
414+
type: globalThis.PropType<boolean>;
415+
default: boolean;
416+
};
393417
hideSaveIcon: {
394418
type: globalThis.PropType<boolean>;
395419
default: boolean;
@@ -473,6 +497,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
473497
cardOffsetX: number;
474498
cardOffsetY: number;
475499
cardProps: any;
500+
cell: boolean;
501+
cellUnderlineFullWidth: boolean;
476502
closeSiblings: boolean;
477503
displayAppendIcon: import('../types').VIconValue;
478504
displayAppendIconColor: string;
@@ -488,6 +514,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
488514
displayPrependInnerIconSize: string | number;
489515
emptyText: string;
490516
fieldOnly: boolean;
517+
hideCancelIcon: boolean;
491518
hideSaveIcon: boolean;
492519
loadingIcon: string;
493520
loadingIconColor: string;
@@ -518,6 +545,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
518545
truncateLength: number | undefined;
519546
truncateSuffix: string;
520547
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
548+
hideCancelIcon: boolean;
521549
hideSaveIcon: boolean;
522550
loadingIcon: string | undefined;
523551
loadingIconColor: string;
@@ -538,6 +566,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
538566
cardOffsetX: number;
539567
cardOffsetY: number;
540568
cardProps: any;
569+
cell: boolean;
570+
cellUnderlineFullWidth: boolean;
541571
closeSiblings: boolean;
542572
color: string;
543573
density: "default" | "comfortable" | "compact" | null;

0 commit comments

Comments
 (0)