quasar-factory-lib 0.0.81 → 0.0.83
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 -0
- package/dist/components/Table/components/TableSlotHeader.vue.d.ts +1 -0
- package/dist/components/Table/components/advanced-filters/GridAdvancedFilters.vue.d.ts +1 -0
- package/dist/layouts/PdaLayout.vue.d.ts +10 -39
- package/dist/pages/TablePage.vue.d.ts +1 -0
- package/dist/quasar-factory-lib.js +2525 -2470
- package/dist/quasar-factory-lib.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Table/Table.vue +2 -1
- package/src/components/Table/components/TableSlotHeader.vue +2 -1
- package/src/components/Table/components/advanced-filters/GridAdvancedFilters.vue +43 -6
- package/src/components/Table/css/table.css +1 -0
- package/src/layouts/PdaLayout.vue +22 -12
|
@@ -42,36 +42,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
42
42
|
checkBoxColorCaseFalse?: undefined;
|
|
43
43
|
checkBoxDataCy?: undefined;
|
|
44
44
|
showInputPopupEdit?: undefined;
|
|
45
|
-
} | {
|
|
46
|
-
name: string;
|
|
47
|
-
required: boolean;
|
|
48
|
-
label: string;
|
|
49
|
-
align: string;
|
|
50
|
-
sortable: boolean;
|
|
51
|
-
type?: undefined;
|
|
52
|
-
showBasicCheckbox?: undefined;
|
|
53
|
-
showCustomizedIcon?: undefined;
|
|
54
|
-
field?: undefined;
|
|
55
|
-
editable?: undefined;
|
|
56
|
-
showEditIcon?: undefined;
|
|
57
|
-
popupEditEmit?: undefined;
|
|
58
|
-
popupEditDataCy?: undefined;
|
|
59
|
-
mask?: undefined;
|
|
60
|
-
showSelectNumberOptions?: undefined;
|
|
61
|
-
popupEditInputtype?: undefined;
|
|
62
|
-
showCustomizedButton?: undefined;
|
|
63
|
-
btnIcon?: undefined;
|
|
64
|
-
btnEmit?: undefined;
|
|
65
|
-
dataCy?: undefined;
|
|
66
|
-
btnColor?: undefined;
|
|
67
|
-
inputMaxLength?: undefined;
|
|
68
|
-
showCustomizedCheckBox?: undefined;
|
|
69
|
-
checkedIcon?: undefined;
|
|
70
|
-
uncheckedIcon?: undefined;
|
|
71
|
-
checkBoxColorCaseTrue?: undefined;
|
|
72
|
-
checkBoxColorCaseFalse?: undefined;
|
|
73
|
-
checkBoxDataCy?: undefined;
|
|
74
|
-
showInputPopupEdit?: undefined;
|
|
75
45
|
} | {
|
|
76
46
|
name: string;
|
|
77
47
|
required: boolean;
|
|
@@ -79,7 +49,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
79
49
|
align: string;
|
|
80
50
|
sortable: boolean;
|
|
81
51
|
showBasicCheckbox: boolean;
|
|
82
|
-
type
|
|
52
|
+
type: string;
|
|
83
53
|
showCustomizedIcon?: undefined;
|
|
84
54
|
field?: undefined;
|
|
85
55
|
editable?: undefined;
|
|
@@ -109,7 +79,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
109
79
|
align: string;
|
|
110
80
|
sortable: boolean;
|
|
111
81
|
showCustomizedIcon: boolean;
|
|
112
|
-
type
|
|
82
|
+
type: string;
|
|
113
83
|
showBasicCheckbox?: undefined;
|
|
114
84
|
field?: undefined;
|
|
115
85
|
editable?: undefined;
|
|
@@ -145,8 +115,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
145
115
|
mask: string;
|
|
146
116
|
showSelectNumberOptions: boolean;
|
|
147
117
|
popupEditInputtype: string;
|
|
118
|
+
type: string;
|
|
148
119
|
required?: undefined;
|
|
149
|
-
type?: undefined;
|
|
150
120
|
showBasicCheckbox?: undefined;
|
|
151
121
|
showCustomizedIcon?: undefined;
|
|
152
122
|
showCustomizedButton?: undefined;
|
|
@@ -172,9 +142,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
172
142
|
btnEmit: string;
|
|
173
143
|
dataCy: string;
|
|
174
144
|
btnColor: string;
|
|
145
|
+
type: string;
|
|
175
146
|
required?: undefined;
|
|
176
147
|
align?: undefined;
|
|
177
|
-
type?: undefined;
|
|
178
148
|
showBasicCheckbox?: undefined;
|
|
179
149
|
showCustomizedIcon?: undefined;
|
|
180
150
|
editable?: undefined;
|
|
@@ -201,10 +171,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
201
171
|
popupEditDataCy: string;
|
|
202
172
|
inputMaxLength: number;
|
|
203
173
|
popupEditInputtype: string;
|
|
174
|
+
type: string;
|
|
204
175
|
required?: undefined;
|
|
205
176
|
align?: undefined;
|
|
206
177
|
sortable?: undefined;
|
|
207
|
-
type?: undefined;
|
|
208
178
|
showBasicCheckbox?: undefined;
|
|
209
179
|
showCustomizedIcon?: undefined;
|
|
210
180
|
showEditIcon?: undefined;
|
|
@@ -234,8 +204,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
234
204
|
checkBoxColorCaseTrue: string;
|
|
235
205
|
checkBoxColorCaseFalse: string;
|
|
236
206
|
checkBoxDataCy: string;
|
|
207
|
+
type: string;
|
|
237
208
|
align?: undefined;
|
|
238
|
-
type?: undefined;
|
|
239
209
|
showBasicCheckbox?: undefined;
|
|
240
210
|
showCustomizedIcon?: undefined;
|
|
241
211
|
editable?: undefined;
|
|
@@ -264,8 +234,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
264
234
|
popupEditInputtype: string;
|
|
265
235
|
popupEditDataCy: string;
|
|
266
236
|
showInputPopupEdit: boolean;
|
|
237
|
+
type: string;
|
|
267
238
|
align?: undefined;
|
|
268
|
-
type?: undefined;
|
|
269
239
|
showBasicCheckbox?: undefined;
|
|
270
240
|
showCustomizedIcon?: undefined;
|
|
271
241
|
mask?: undefined;
|
|
@@ -286,10 +256,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
286
256
|
name: string;
|
|
287
257
|
label: string;
|
|
288
258
|
field: string;
|
|
259
|
+
type: string;
|
|
289
260
|
required?: undefined;
|
|
290
261
|
align?: undefined;
|
|
291
262
|
sortable?: undefined;
|
|
292
|
-
type?: undefined;
|
|
293
263
|
showBasicCheckbox?: undefined;
|
|
294
264
|
showCustomizedIcon?: undefined;
|
|
295
265
|
editable?: undefined;
|
|
@@ -317,9 +287,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
317
287
|
label: string;
|
|
318
288
|
field: string;
|
|
319
289
|
sortable: boolean;
|
|
290
|
+
type: string;
|
|
320
291
|
required?: undefined;
|
|
321
292
|
align?: undefined;
|
|
322
|
-
type?: undefined;
|
|
323
293
|
showBasicCheckbox?: undefined;
|
|
324
294
|
showCustomizedIcon?: undefined;
|
|
325
295
|
editable?: undefined;
|
|
@@ -873,6 +843,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
873
843
|
};
|
|
874
844
|
}>, {}, {
|
|
875
845
|
showDialog: boolean;
|
|
846
|
+
maximizedToggle: boolean;
|
|
876
847
|
}, {
|
|
877
848
|
booleanCols(): any;
|
|
878
849
|
dateTimeCols(): any;
|