@tekkare/auriga 0.1.159 → 0.1.160

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.1.159"
7
+ "version": "0.1.160"
8
8
  }
@@ -379,10 +379,10 @@ export default defineComponent({
379
379
  watch(
380
380
  () => props.contents,
381
381
  (newContent) => {
382
- tableKey.value += 1;
383
382
  saveTable.value = Object.assign([], [...new Set(fillTable.value)]);
384
383
  dataValues.value = fillTable.value;
385
384
  currentPage.value = 1;
385
+ tableKey.value += 1;
386
386
  }
387
387
  );
388
388
  watch(
@@ -1,6 +1,9 @@
1
1
  <template>
2
2
  <div ref="element" class="oip_list gap-6">
3
- <p :class="isBig && typeof value === 'string' && !showMore ? 'crop' : ''">
3
+ <p
4
+ :class="isBig && typeof value === 'string' && !showMore ? 'crop' : ''"
5
+ class="wrap-line"
6
+ >
4
7
  {{ value }}
5
8
  </p>
6
9
  <p v-if="showReadMore" class="read_more" @click="toggleShowMore()">
@@ -55,5 +58,5 @@ export default defineComponent({
55
58
  </script>
56
59
 
57
60
  <style scoped>
58
- .read_more{color:var(--primary);cursor:pointer;text-decoration:underline}.crop{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
61
+ .read_more{color:var(--primary);cursor:pointer;text-decoration:underline}.crop{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.wrap-line{white-space:pre-line}
59
62
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.159",
3
+ "version": "0.1.160",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",