classcard-ui 0.2.793 → 0.2.794
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/classcard-ui.common.js +57 -66
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +57 -66
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +1 -1
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CTable/CTable.vue +3 -17
package/package.json
CHANGED
|
@@ -379,9 +379,9 @@ export default {
|
|
|
379
379
|
type: Array,
|
|
380
380
|
},
|
|
381
381
|
// List of items to show download options
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
382
|
+
showDownloadDropdownList: {
|
|
383
|
+
type: Array,
|
|
384
|
+
},
|
|
385
385
|
// Function on changing page number
|
|
386
386
|
onPageChange: {
|
|
387
387
|
type: Function,
|
|
@@ -452,20 +452,6 @@ export default {
|
|
|
452
452
|
paginationRecords: this.paginationData,
|
|
453
453
|
reorderedArray: [...this.rows],
|
|
454
454
|
controlClick: false,
|
|
455
|
-
showDownloadDropdownList: [
|
|
456
|
-
{
|
|
457
|
-
title: "Download",
|
|
458
|
-
value: "summary",
|
|
459
|
-
description:
|
|
460
|
-
"Downloads each invoice, as a separate row, with invoice items comma separated.",
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
title: "Detailed download",
|
|
464
|
-
value: "detailed",
|
|
465
|
-
description:
|
|
466
|
-
"Downloads each invoice line-item, as a separate row (recommended for importing into accounting softwares).",
|
|
467
|
-
},
|
|
468
|
-
],
|
|
469
455
|
};
|
|
470
456
|
},
|
|
471
457
|
methods: {
|