classcard-ui 0.2.793 → 0.2.795
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 +65 -72
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +65 -72
- 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/CSelect/CSelect.vue +3 -1
- package/src/components/CTable/CTable.vue +3 -17
- package/src/stories/CSelect.stories.js +4 -0
package/package.json
CHANGED
|
@@ -147,7 +147,9 @@
|
|
|
147
147
|
>
|
|
148
148
|
</c-icon>
|
|
149
149
|
<span
|
|
150
|
-
:class="
|
|
150
|
+
:class="
|
|
151
|
+
option.photo || option.initials ? 'ml-3' : 'text-left'
|
|
152
|
+
"
|
|
151
153
|
class="list-options block break-words font-normal"
|
|
152
154
|
>{{ option[renderOptionName] }}
|
|
153
155
|
</span>
|
|
@@ -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: {
|
|
@@ -48,6 +48,10 @@ Default.args = {
|
|
|
48
48
|
{ code: "one0", value: "onee54" },
|
|
49
49
|
{ code: "one34", value: "onee43" },
|
|
50
50
|
{ code: "one23", value: "onee32" },
|
|
51
|
+
{
|
|
52
|
+
code: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but als",
|
|
53
|
+
value: "onee33",
|
|
54
|
+
},
|
|
51
55
|
{ code: "two", value: "twoo", isDisabled: true },
|
|
52
56
|
],
|
|
53
57
|
addAction: {
|