quasar-factory-lib 0.0.31 → 0.0.32
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/pages/TablePage.vue.d.ts +13 -0
- package/dist/quasar-factory-lib.js +334 -331
- package/dist/quasar-factory-lib.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Table/Table.vue +0 -3
- package/src/components/Table/components/TableSlotBody.vue +2 -1
- package/src/components/Table/components/TableSlotGrid.vue +2 -3
- package/src/css/app.css +7 -0
- package/src/pages/TablePage.vue +19 -3
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
+
smallDevice: boolean;
|
|
2
3
|
showSkeleton: boolean;
|
|
3
4
|
showDialog: boolean;
|
|
4
5
|
forceRender: boolean;
|
|
@@ -20,6 +21,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
20
21
|
label: string;
|
|
21
22
|
align: string;
|
|
22
23
|
sortable: boolean;
|
|
24
|
+
customizedClass: (row: {
|
|
25
|
+
customizedClass: string;
|
|
26
|
+
}) => string;
|
|
23
27
|
showBasicCheckbox?: undefined;
|
|
24
28
|
showCustomizedIcon?: undefined;
|
|
25
29
|
field?: undefined;
|
|
@@ -48,6 +52,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
48
52
|
align: string;
|
|
49
53
|
sortable: boolean;
|
|
50
54
|
showBasicCheckbox: boolean;
|
|
55
|
+
customizedClass?: undefined;
|
|
51
56
|
showCustomizedIcon?: undefined;
|
|
52
57
|
field?: undefined;
|
|
53
58
|
editable?: undefined;
|
|
@@ -75,6 +80,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
75
80
|
align: string;
|
|
76
81
|
sortable: boolean;
|
|
77
82
|
showCustomizedIcon: boolean;
|
|
83
|
+
customizedClass?: undefined;
|
|
78
84
|
showBasicCheckbox?: undefined;
|
|
79
85
|
field?: undefined;
|
|
80
86
|
editable?: undefined;
|
|
@@ -108,6 +114,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
108
114
|
popupEditDataCy: string;
|
|
109
115
|
popupEditMask: string;
|
|
110
116
|
required?: undefined;
|
|
117
|
+
customizedClass?: undefined;
|
|
111
118
|
showBasicCheckbox?: undefined;
|
|
112
119
|
showCustomizedIcon?: undefined;
|
|
113
120
|
showCustomizedButton?: undefined;
|
|
@@ -134,6 +141,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
134
141
|
btnColor: string;
|
|
135
142
|
required?: undefined;
|
|
136
143
|
align?: undefined;
|
|
144
|
+
customizedClass?: undefined;
|
|
137
145
|
showBasicCheckbox?: undefined;
|
|
138
146
|
showCustomizedIcon?: undefined;
|
|
139
147
|
editable?: undefined;
|
|
@@ -156,6 +164,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
156
164
|
required?: undefined;
|
|
157
165
|
align?: undefined;
|
|
158
166
|
sortable?: undefined;
|
|
167
|
+
customizedClass?: undefined;
|
|
159
168
|
showBasicCheckbox?: undefined;
|
|
160
169
|
showCustomizedIcon?: undefined;
|
|
161
170
|
editable?: undefined;
|
|
@@ -189,6 +198,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
189
198
|
checkBoxColorCaseFalse: string;
|
|
190
199
|
checkBoxDataCy: string;
|
|
191
200
|
align?: undefined;
|
|
201
|
+
customizedClass?: undefined;
|
|
192
202
|
showBasicCheckbox?: undefined;
|
|
193
203
|
showCustomizedIcon?: undefined;
|
|
194
204
|
editable?: undefined;
|
|
@@ -216,6 +226,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
216
226
|
popupEditDataCy: string;
|
|
217
227
|
showInputPopupEdit: boolean;
|
|
218
228
|
align?: undefined;
|
|
229
|
+
customizedClass?: undefined;
|
|
219
230
|
showBasicCheckbox?: undefined;
|
|
220
231
|
showCustomizedIcon?: undefined;
|
|
221
232
|
popupEditMask?: undefined;
|
|
@@ -237,6 +248,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
237
248
|
sortable: boolean;
|
|
238
249
|
required?: undefined;
|
|
239
250
|
align?: undefined;
|
|
251
|
+
customizedClass?: undefined;
|
|
240
252
|
showBasicCheckbox?: undefined;
|
|
241
253
|
showCustomizedIcon?: undefined;
|
|
242
254
|
editable?: undefined;
|
|
@@ -277,6 +289,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
277
289
|
pageLength(): number;
|
|
278
290
|
filter(): object;
|
|
279
291
|
}, {
|
|
292
|
+
getClass(colName: string, rowName: string): "text-negative" | "text-positive";
|
|
280
293
|
saveSelectedColumns(columns: string[]): void;
|
|
281
294
|
filterMethod(rows: string | [], terms: {
|
|
282
295
|
search: string;
|