quasar-factory-lib 0.0.36 → 0.0.38
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/Table/Table.vue.d.ts +1 -1
- package/dist/pages/TablePage.vue.d.ts +20 -20
- package/dist/quasar-factory-lib.js +1102 -1099
- package/dist/quasar-factory-lib.umd.cjs +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Table/Table.vue +6 -3
- package/src/components/Table/components/TableFilter.vue +1 -1
- package/src/components/Table/components/TableSlotBody.vue +4 -4
- package/src/components/Table/components/TableSlotGrid.vue +4 -5
- package/src/components/Table/utils/infiniteScroll.ts +0 -1
- package/src/components/TaskNavBar/TaskNavBar.vue +2 -2
- package/src/css/app.css +0 -14
- package/src/pages/TablePage.vue +8 -51
- package/src/utils/infiniteScroll.ts +0 -1
|
@@ -93,7 +93,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
93
93
|
toggleSearchVisibility(store: {
|
|
94
94
|
disableScannerButtons: boolean;
|
|
95
95
|
lastFilterValue: string;
|
|
96
|
-
|
|
96
|
+
valueInputFilterTable: string;
|
|
97
97
|
}): void;
|
|
98
98
|
toogleColumnsSelectorVisibility(): void;
|
|
99
99
|
filterInputFocus(): void;
|
|
@@ -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;
|
|
@@ -271,7 +258,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
271
258
|
showInputPopupEdit?: undefined;
|
|
272
259
|
})[];
|
|
273
260
|
rows: never[];
|
|
274
|
-
rowsData: {
|
|
261
|
+
rowsData: ({
|
|
262
|
+
tdStyle: string;
|
|
275
263
|
name: string;
|
|
276
264
|
booleanIcon: boolean;
|
|
277
265
|
available: boolean;
|
|
@@ -283,13 +271,25 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
283
271
|
sodium: number;
|
|
284
272
|
calcium: string;
|
|
285
273
|
iron: string;
|
|
286
|
-
}
|
|
274
|
+
} | {
|
|
275
|
+
name: string;
|
|
276
|
+
booleanIcon: boolean;
|
|
277
|
+
available: boolean;
|
|
278
|
+
calories: number;
|
|
279
|
+
fat: number;
|
|
280
|
+
carbs: number;
|
|
281
|
+
checked: boolean;
|
|
282
|
+
protein: number;
|
|
283
|
+
sodium: number;
|
|
284
|
+
calcium: string;
|
|
285
|
+
iron: string;
|
|
286
|
+
tdStyle?: undefined;
|
|
287
|
+
})[];
|
|
287
288
|
visibleColumns: never[];
|
|
288
289
|
}, {
|
|
289
290
|
pageLength(): number;
|
|
290
291
|
filter(): object;
|
|
291
292
|
}, {
|
|
292
|
-
getClass(slotType: string, props: string, rowName: string): void;
|
|
293
293
|
saveSelectedColumns(columns: string[]): void;
|
|
294
294
|
filterMethod(rows: string | [], terms: {
|
|
295
295
|
search: string;
|
|
@@ -393,7 +393,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
393
393
|
toggleSearchVisibility(store: {
|
|
394
394
|
disableScannerButtons: boolean;
|
|
395
395
|
lastFilterValue: string;
|
|
396
|
-
|
|
396
|
+
valueInputFilterTable: string;
|
|
397
397
|
}): void;
|
|
398
398
|
toogleColumnsSelectorVisibility(): void;
|
|
399
399
|
filterInputFocus(): void;
|