@tekkare/auriga 0.1.132 → 0.1.133

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.132"
7
+ "version": "0.1.133"
8
8
  }
@@ -110,7 +110,7 @@ export default defineComponent({
110
110
  if (!element)
111
111
  return false;
112
112
  const rect = element.getBoundingClientRect();
113
- return rect.top <= getElementPosition("chapter_menu") + headerHeight.value;
113
+ return rect.top <= getElementPosition("chapter_menu") + 10;
114
114
  }
115
115
  function removeEvent(index, anchor, callback) {
116
116
  return new Promise((resolve) => {
@@ -129,7 +129,7 @@ export default defineComponent({
129
129
  await removeEvent(index, anchorId).then(() => {
130
130
  setTimeout(() => {
131
131
  document.addEventListener("scroll", scrollChapters);
132
- }, 1e3);
132
+ }, 1200);
133
133
  });
134
134
  }
135
135
  function setBarPosition() {
@@ -2,7 +2,7 @@
2
2
  <div
3
3
  v-show="displayTip"
4
4
  class="arg_tips_box"
5
- :class="showMore ? 'arg_tips_open' : 'arg_tips_collapse'"
5
+ :class="showMore ? 'arg_tips_open' : haveMore ? 'arg_tips_collapse' : ''"
6
6
  >
7
7
  <div class="tips_visible_content">
8
8
  <div class="oip_row v-center gap-8">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.132",
3
+ "version": "0.1.133",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",