@tekkare/auriga 0.2.20 → 0.2.22

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/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.20"
7
+ "version": "0.2.22"
8
8
  }
@@ -213,7 +213,9 @@ export default defineComponent({
213
213
  let percentageValue = new Intl.NumberFormat("fr-FR").format(
214
214
  ((value - previousVal) / previousVal * 100).toFixed(1)
215
215
  ).replace(",", ".");
216
- if (percentageValue > 0) {
216
+ if (previousVal === 0) {
217
+ returnValue = "-";
218
+ } else if (percentageValue > 0) {
217
219
  returnValue = returnValue + " (+" + percentageValue + "%)";
218
220
  } else {
219
221
  returnValue = returnValue + " (" + percentageValue + "%)";
@@ -326,7 +328,10 @@ export default defineComponent({
326
328
  0
327
329
  );
328
330
  let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / seriesTotal).toFixed(1)).replace(",", ".");
329
- returnValue = returnValue + " (" + percentage2 + "%)";
331
+ if (seriesTotal === 0) {
332
+ returnValue = "-";
333
+ } else
334
+ returnValue = returnValue + " (" + percentage2 + "%)";
330
335
  }
331
336
  return returnValue;
332
337
  }
@@ -398,7 +403,10 @@ export default defineComponent({
398
403
  0
399
404
  );
400
405
  let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / seriesTotal).toFixed(1)).replace(",", ".");
401
- returnValue = returnValue + " (" + percentage2 + "%)";
406
+ if (seriesTotal === 0) {
407
+ returnValue = "-";
408
+ } else
409
+ returnValue = returnValue + " (" + percentage2 + "%)";
402
410
  }
403
411
  return returnValue;
404
412
  }
@@ -476,7 +484,10 @@ export default defineComponent({
476
484
  (d) => groupTotal = groupTotal + d.data[opt.dataPointIndex]
477
485
  );
478
486
  let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / groupTotal).toFixed(1)).replace(",", ".");
479
- returnValue = returnValue + " (" + percentage2 + "%)";
487
+ if (groupTotal === 0) {
488
+ returnValue = "-";
489
+ } else
490
+ returnValue = returnValue + " (" + percentage2 + "%)";
480
491
  }
481
492
  return returnValue;
482
493
  }
@@ -624,7 +635,10 @@ export default defineComponent({
624
635
  0
625
636
  );
626
637
  let percentage2 = new Intl.NumberFormat("fr-FR").format((100 * value / seriesTotal).toFixed(1)).replace(",", ".");
627
- returnValue = returnValue + " (" + percentage2 + "%)";
638
+ if (seriesTotal === 0) {
639
+ returnValue = "-";
640
+ } else
641
+ returnValue = returnValue + " (" + percentage2 + "%)";
628
642
  }
629
643
  return returnValue;
630
644
  }
@@ -212,5 +212,5 @@ export default defineComponent({
212
212
  </script>
213
213
 
214
214
  <style scoped>
215
- .map{margin-top:24px}.p24{padding:24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:8px auto auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.p-24{padding:0 24px}
215
+ .map{margin-top:24px;width:100%}.p24{padding:24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:8px auto auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.p-24{padding:0 24px}
216
216
  </style>
@@ -194,5 +194,5 @@ export default defineComponent({
194
194
  </script>
195
195
 
196
196
  <style scoped>
197
- .map{margin-top:24px}.p24{padding:24px}.p-24{padding:0 24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}
197
+ .map{margin-top:24px;width:100%}.p24{padding:24px}.p-24{padding:0 24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}
198
198
  </style>
@@ -212,5 +212,5 @@ export default defineComponent({
212
212
  </script>
213
213
 
214
214
  <style scoped>
215
- .map{margin-top:24px}.p24{padding:24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.p-24{padding:0 24px}
215
+ .map{margin-top:24px;width:100%}.p24{padding:24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.p-24{padding:0 24px}
216
216
  </style>
@@ -1138,5 +1138,5 @@ export default defineComponent({
1138
1138
  </script>
1139
1139
 
1140
1140
  <style scoped>
1141
- .p-24{padding:0 24px}.map_container{display:flex;flex-direction:column;gap:24px;height:500px;max-height:500px;min-height:500px;min-width:500px;overflow:hidden;position:relative;width:100%}.map{margin-top:24px;z-index:2}.map_placeholder path{fill:var(--medium)!important;stroke:var(--medium)!important;stroke-width:2px}.scaled{transform:scale(3)}.large_scale,.scaled{position:absolute;transition:all .1s}.large_scale{transform:scale(5)}.small_scale{position:absolute;transform:scale(2.2);transition:all .1s}.normal{transform:scale(1)}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .1s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:auto auto 24px;min-width:400px;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.map_placeholder{position:absolute;z-index:1}.back_button{background-color:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--dark);cursor:pointer;font-size:14px;font-weight:400;left:24px;line-height:160%;padding:8px 12px;position:absolute;top:24px;z-index:97}.blue{color:var(--primary)}
1141
+ .p-24{padding:0 24px}.map_container{display:flex;flex-direction:column;gap:24px;height:500px;max-height:500px;min-height:500px;min-width:500px;overflow:hidden;position:relative;width:100%}.map{margin-top:24px;width:100%;z-index:2}.map_placeholder path{fill:var(--medium)!important;stroke:var(--medium)!important;stroke-width:2px}.scaled{transform:scale(3)}.large_scale,.scaled{position:absolute;transition:all .1s}.large_scale{transform:scale(5)}.small_scale{position:absolute;transform:scale(2.2);transition:all .1s}.normal{transform:scale(1)}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .1s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:auto auto 24px;min-width:400px;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.map_placeholder{position:absolute;z-index:1}.back_button{background-color:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--dark);cursor:pointer;font-size:14px;font-weight:400;left:24px;line-height:160%;padding:8px 12px;position:absolute;top:24px;z-index:97}.blue{color:var(--primary)}
1142
1142
  </style>
@@ -212,5 +212,5 @@ export default defineComponent({
212
212
  </script>
213
213
 
214
214
  <style scoped>
215
- .map{margin-top:24px}.p24{padding:24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:8px auto auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.p-24{padding:0 24px}
215
+ .map{margin-top:24px;width:100%}.p24{padding:24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:8px auto auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.p-24{padding:0 24px}
216
216
  </style>
@@ -62,6 +62,7 @@
62
62
  }}
63
63
  </p>
64
64
  <textarea
65
+ v-model="scopeDescr"
65
66
  name="ScopeDescr"
66
67
  cols="40"
67
68
  rows="5"
@@ -88,7 +88,7 @@
88
88
  :id="`${contIndex}-row`"
89
89
  :class="
90
90
  !alternateColor
91
- ? whiteLines.includes(contIndex)
91
+ ? getWhiteLines.includes(contIndex)
92
92
  ? 'white_bg'
93
93
  : 'grey_bg'
94
94
  : isOdd(contIndex)
@@ -122,7 +122,7 @@
122
122
  v-bind:value="value"
123
123
  ></slot>
124
124
  <div v-else-if="autoCrop === true">
125
- <table-row-crop :value="value" />
125
+ <table-row-crop :key="cropKey" :value="value" />
126
126
  </div>
127
127
  <!-- <div v-else-if="autoCrop === true" class="display_auto_crop">
128
128
  <p
@@ -262,7 +262,6 @@ import argBtn from "./argBtn.vue";
262
262
  import argSortIcon from "./argSortIcon.vue";
263
263
  import tableRowCrop from "./tableRowCrop.vue";
264
264
  import {
265
- onMounted,
266
265
  ref,
267
266
  computed,
268
267
  watch,
@@ -399,6 +398,7 @@ export default defineComponent({
399
398
  const toggleCrop = ref(null);
400
399
  const hasReadMore = ref([]);
401
400
  const tableKey = ref(0);
401
+ const cropKey = ref(0);
402
402
  const alternateColor = computed(() => {
403
403
  return props.whiteLines === null ? true : false;
404
404
  });
@@ -470,6 +470,12 @@ export default defineComponent({
470
470
  }
471
471
  return false;
472
472
  }
473
+ watch(
474
+ () => sortDir.value,
475
+ () => {
476
+ cropKey.value += 1;
477
+ }
478
+ );
473
479
  function sortDatas(index) {
474
480
  if (sortCol.value === props.heads[index]) {
475
481
  sortDir.value = sortDir.value === "asc" ? "desc" : sortDir.value === "desc" ? null : "asc";
@@ -703,17 +709,32 @@ export default defineComponent({
703
709
  savePageSize.value = props.pageSize;
704
710
  showToggle.value = props.toggleDisplay;
705
711
  }
706
- onMounted(() => {
712
+ const areObjectsIdentical = (obj1, obj2) => {
713
+ if (!Array.isArray(obj1) || !Array.isArray(obj2)) {
714
+ return false;
715
+ }
716
+ if (obj1.length !== obj2.length) {
717
+ return false;
718
+ }
719
+ return obj1.every((value, index) => {
720
+ return value === obj2[index];
721
+ });
722
+ };
723
+ const getWhiteLines = computed(() => {
724
+ const newIndexes = [];
725
+ if (props.whiteLines !== null) {
726
+ props.whiteLines?.forEach((elem) => {
727
+ const index = finalTable.value.findIndex(
728
+ (a) => areObjectsIdentical(
729
+ a,
730
+ props.contents[elem].values.map((b) => b === null ? "-" : b)
731
+ ) === true
732
+ );
733
+ newIndexes.push(index);
734
+ });
735
+ }
736
+ return newIndexes;
707
737
  });
708
- function applyToggleCrop(index, value) {
709
- if (toggleCrop.value !== null) {
710
- if (toggleCrop.value.index === index && toggleCrop.value.value === value) {
711
- toggleCrop.value = null;
712
- } else
713
- toggleCrop.value = { index, value };
714
- } else
715
- toggleCrop.value = { index, value };
716
- }
717
738
  return {
718
739
  sortCol,
719
740
  sortDir,
@@ -755,9 +776,10 @@ export default defineComponent({
755
776
  sendSearch,
756
777
  toggleCrop,
757
778
  hasReadMore,
758
- applyToggleCrop,
759
779
  tableKey,
760
- alternateColor
780
+ alternateColor,
781
+ cropKey,
782
+ getWhiteLines
761
783
  };
762
784
  }
763
785
  });
@@ -18,10 +18,10 @@ declare const _default: import("vue").DefineComponent<{
18
18
  };
19
19
  contents: {
20
20
  type: {
21
- (arrayLength: number): Object[];
22
- (...items: Object[]): Object[];
23
- new (arrayLength: number): Object[];
24
- new (...items: Object[]): Object[];
21
+ (arrayLength: number): any[];
22
+ (...items: any[]): any[];
23
+ new (arrayLength: number): any[];
24
+ new (...items: any[]): any[];
25
25
  isArray(arg: any): arg is any[];
26
26
  readonly prototype: any[];
27
27
  from<T>(arrayLike: ArrayLike<T>): T[];
@@ -214,9 +214,10 @@ declare const _default: import("vue").DefineComponent<{
214
214
  sendSearch: () => void;
215
215
  toggleCrop: import("vue").Ref<any>;
216
216
  hasReadMore: import("vue").Ref<string[]>;
217
- applyToggleCrop: (index: number, value: number) => void;
218
217
  tableKey: import("vue").Ref<number>;
219
218
  alternateColor: import("vue").ComputedRef<boolean>;
219
+ cropKey: import("vue").Ref<number>;
220
+ getWhiteLines: import("vue").ComputedRef<number[]>;
220
221
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "changeInputValue"[], "changeInputValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
221
222
  heads: {
222
223
  type: {
@@ -237,10 +238,10 @@ declare const _default: import("vue").DefineComponent<{
237
238
  };
238
239
  contents: {
239
240
  type: {
240
- (arrayLength: number): Object[];
241
- (...items: Object[]): Object[];
242
- new (arrayLength: number): Object[];
243
- new (...items: Object[]): Object[];
241
+ (arrayLength: number): any[];
242
+ (...items: any[]): any[];
243
+ new (arrayLength: number): any[];
244
+ new (...items: any[]): any[];
244
245
  isArray(arg: any): arg is any[];
245
246
  readonly prototype: any[];
246
247
  from<T>(arrayLike: ArrayLike<T>): T[];
@@ -398,7 +399,7 @@ declare const _default: import("vue").DefineComponent<{
398
399
  sort: boolean;
399
400
  lang: string;
400
401
  search: boolean;
401
- contents: Object[];
402
+ contents: any[];
402
403
  pageSize: number;
403
404
  searchColumns: number[];
404
405
  columnType: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.20",
3
+ "version": "0.2.22",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",