quasar-factory-lib 0.0.35 → 0.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/TaskNavBar/TaskNavBar.vue.d.ts +0 -1
- package/dist/pages/NavBarPage.vue.d.ts +0 -1
- package/dist/pages/TablePage.vue.d.ts +4 -17
- package/dist/quasar-factory-lib.js +1800 -1782
- package/dist/quasar-factory-lib.umd.cjs +10 -10
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Table/Table.vue +3 -0
- package/src/components/Table/components/TableSlotBody.vue +4 -4
- package/src/components/Table/components/TableSlotGrid.vue +3 -5
- package/src/components/Table/components/TableSlotHeader.vue +0 -1
- package/src/components/TaskNavBar/TaskNavBar.vue +9 -16
- package/src/components/TaskNavBar/css/taskNavBar.css +8 -14
- package/src/css/app.css +0 -18
- package/src/pages/TablePage.vue +31 -51
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
-
smallDevice: boolean;
|
|
3
|
-
showSkeleton: boolean;
|
|
4
2
|
showDialog: boolean;
|
|
5
3
|
forceRender: boolean;
|
|
6
4
|
store: import("pinia").Store<"tableStore", {
|
|
@@ -21,9 +19,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
21
19
|
label: string;
|
|
22
20
|
align: string;
|
|
23
21
|
sortable: boolean;
|
|
24
|
-
customizedTextClass: (row: {
|
|
25
|
-
customizedTextClass: string;
|
|
26
|
-
}) => string;
|
|
27
22
|
showBasicCheckbox?: undefined;
|
|
28
23
|
showCustomizedIcon?: undefined;
|
|
29
24
|
field?: undefined;
|
|
@@ -47,12 +42,11 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
47
42
|
showInputPopupEdit?: undefined;
|
|
48
43
|
} | {
|
|
49
44
|
name: string;
|
|
45
|
+
required: boolean;
|
|
50
46
|
label: string;
|
|
51
47
|
align: string;
|
|
52
48
|
sortable: boolean;
|
|
53
49
|
showBasicCheckbox: boolean;
|
|
54
|
-
required?: undefined;
|
|
55
|
-
customizedTextClass?: undefined;
|
|
56
50
|
showCustomizedIcon?: undefined;
|
|
57
51
|
field?: undefined;
|
|
58
52
|
editable?: undefined;
|
|
@@ -80,7 +74,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
80
74
|
align: string;
|
|
81
75
|
sortable: boolean;
|
|
82
76
|
showCustomizedIcon: boolean;
|
|
83
|
-
customizedTextClass?: undefined;
|
|
84
77
|
showBasicCheckbox?: undefined;
|
|
85
78
|
field?: undefined;
|
|
86
79
|
editable?: undefined;
|
|
@@ -114,7 +107,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
114
107
|
popupEditDataCy: string;
|
|
115
108
|
popupEditMask: string;
|
|
116
109
|
required?: undefined;
|
|
117
|
-
customizedTextClass?: undefined;
|
|
118
110
|
showBasicCheckbox?: undefined;
|
|
119
111
|
showCustomizedIcon?: undefined;
|
|
120
112
|
showCustomizedButton?: undefined;
|
|
@@ -141,7 +133,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
141
133
|
btnColor: string;
|
|
142
134
|
required?: undefined;
|
|
143
135
|
align?: undefined;
|
|
144
|
-
customizedTextClass?: undefined;
|
|
145
136
|
showBasicCheckbox?: undefined;
|
|
146
137
|
showCustomizedIcon?: undefined;
|
|
147
138
|
editable?: undefined;
|
|
@@ -164,7 +155,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
164
155
|
required?: undefined;
|
|
165
156
|
align?: undefined;
|
|
166
157
|
sortable?: undefined;
|
|
167
|
-
customizedTextClass?: undefined;
|
|
168
158
|
showBasicCheckbox?: undefined;
|
|
169
159
|
showCustomizedIcon?: undefined;
|
|
170
160
|
editable?: undefined;
|
|
@@ -190,15 +180,14 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
190
180
|
label: string;
|
|
191
181
|
field: string;
|
|
192
182
|
sortable: boolean;
|
|
183
|
+
required: boolean;
|
|
193
184
|
showCustomizedCheckBox: boolean;
|
|
194
185
|
checkedIcon: string;
|
|
195
186
|
uncheckedIcon: string;
|
|
196
187
|
checkBoxColorCaseTrue: string;
|
|
197
188
|
checkBoxColorCaseFalse: string;
|
|
198
189
|
checkBoxDataCy: string;
|
|
199
|
-
required?: undefined;
|
|
200
190
|
align?: undefined;
|
|
201
|
-
customizedTextClass?: undefined;
|
|
202
191
|
showBasicCheckbox?: undefined;
|
|
203
192
|
showCustomizedIcon?: undefined;
|
|
204
193
|
editable?: undefined;
|
|
@@ -218,15 +207,14 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
218
207
|
label: string;
|
|
219
208
|
field: string;
|
|
220
209
|
sortable: boolean;
|
|
210
|
+
required: boolean;
|
|
221
211
|
editable: boolean;
|
|
222
212
|
showEditIcon: boolean;
|
|
223
213
|
popupEditEmit: string;
|
|
224
214
|
popupEditInputtype: string;
|
|
225
215
|
popupEditDataCy: string;
|
|
226
216
|
showInputPopupEdit: boolean;
|
|
227
|
-
required?: undefined;
|
|
228
217
|
align?: undefined;
|
|
229
|
-
customizedTextClass?: undefined;
|
|
230
218
|
showBasicCheckbox?: undefined;
|
|
231
219
|
showCustomizedIcon?: undefined;
|
|
232
220
|
popupEditMask?: undefined;
|
|
@@ -248,7 +236,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
248
236
|
sortable: boolean;
|
|
249
237
|
required?: undefined;
|
|
250
238
|
align?: undefined;
|
|
251
|
-
customizedTextClass?: undefined;
|
|
252
239
|
showBasicCheckbox?: undefined;
|
|
253
240
|
showCustomizedIcon?: undefined;
|
|
254
241
|
editable?: undefined;
|
|
@@ -289,7 +276,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
289
276
|
pageLength(): number;
|
|
290
277
|
filter(): object;
|
|
291
278
|
}, {
|
|
292
|
-
getClass(slotType: string, props: string, rowName: string): void;
|
|
293
279
|
saveSelectedColumns(columns: string[]): void;
|
|
294
280
|
filterMethod(rows: string | [], terms: {
|
|
295
281
|
search: string;
|
|
@@ -297,6 +283,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
297
283
|
onUpdateBasicCheckboxValue(rows: object[]): void;
|
|
298
284
|
onUpdateCustomizedCheckboxValue(rows: object[]): void;
|
|
299
285
|
setItemNotFound(rows: object[]): void;
|
|
286
|
+
close(): void;
|
|
300
287
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
301
288
|
Table: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
302
289
|
columns: {
|