@community-release/nx-ui 0.0.28 → 0.0.29

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.d.mts CHANGED
@@ -193,7 +193,12 @@ var module = defineNuxtModule({
193
193
  extensions: ["vue"]
194
194
  });
195
195
  addComponent({
196
- filePath: resolve("./runtime/components/accordion/item"),
196
+ filePath: resolve("./runtime/components/notice/notice-item"),
197
+ name: "ui-notice-item",
198
+ global: false
199
+ });
200
+ addComponent({
201
+ filePath: resolve("./runtime/components/accordion/accordion-item"),
197
202
  name: "ui-accordion-item",
198
203
  global: false
199
204
  });
package/dist/module.d.ts CHANGED
@@ -193,7 +193,12 @@ var module = defineNuxtModule({
193
193
  extensions: ["vue"]
194
194
  });
195
195
  addComponent({
196
- filePath: resolve("./runtime/components/accordion/item"),
196
+ filePath: resolve("./runtime/components/notice/notice-item"),
197
+ name: "ui-notice-item",
198
+ global: false
199
+ });
200
+ addComponent({
201
+ filePath: resolve("./runtime/components/accordion/accordion-item"),
197
202
  name: "ui-accordion-item",
198
203
  global: false
199
204
  });
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "ui",
3
3
  "configKey": "ui",
4
- "version": "0.0.28"
4
+ "version": "0.0.29"
5
5
  }
package/dist/module.mjs CHANGED
@@ -193,7 +193,12 @@ const module = defineNuxtModule({
193
193
  extensions: ["vue"]
194
194
  });
195
195
  addComponent({
196
- filePath: resolve("./runtime/components/accordion/item"),
196
+ filePath: resolve("./runtime/components/notice/notice-item"),
197
+ name: "ui-notice-item",
198
+ global: false
199
+ });
200
+ addComponent({
201
+ filePath: resolve("./runtime/components/accordion/accordion-item"),
197
202
  name: "ui-accordion-item",
198
203
  global: false
199
204
  });
@@ -11,6 +11,7 @@
11
11
  // Imports
12
12
  import { ref, computed, provide } from 'vue';
13
13
  import comProps from '#build/ui.accordion.mjs';
14
+ import UiAccordionItem from './accordion-item.vue';
14
15
 
15
16
  // Data
16
17
  const props = defineProps({
@@ -52,5 +52,6 @@ export default function(callback, start, end, duration) {
52
52
  if (progress < 1) requestAnimationFrame(step);
53
53
  };
54
54
 
55
- requestAnimationFrame(step);
55
+ if (typeof requestAnimationFrame !== 'undefined')
56
+ requestAnimationFrame(step);
56
57
  }
@@ -17,7 +17,7 @@
17
17
  <script setup>
18
18
  import { storeToRefs } from 'pinia';
19
19
  import { useUINoticeStore } from './store';
20
- import UiNoticeItem from './item.vue';
20
+ import UiNoticeItem from './notice-item.vue';
21
21
 
22
22
  const store = useUINoticeStore();
23
23
  const { items } = storeToRefs(store);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@community-release/nx-ui",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "nx-ui - Nuxt UI library",
5
5
  "repository": {
6
6
  "type": "git",