@bagelink/vue 0.0.965 → 0.0.968

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.965",
4
+ "version": "0.0.968",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -31,6 +31,7 @@
31
31
  "require": "./dist/index.cjs",
32
32
  "import": "./dist/index.mjs"
33
33
  },
34
+ "./style.css": "./dist/style.css",
34
35
  "./*": "./*"
35
36
  },
36
37
  "main": "./dist/index.mjs",
@@ -196,8 +196,8 @@ async function registerLastItemObserver() {
196
196
 
197
197
  useIntersectionObserver(lastItem, ([entry]) => {
198
198
  if (entry.isIntersecting && computedData.value.length) {
199
- // void onLastItemVisible?.()
200
- emit('lastItemVisible')
199
+ void onLastItemVisible?.()
200
+ // emit('lastItemVisible')
201
201
  }
202
202
  }, { threshold: 0.5 }) }
203
203
 
package/vite.config.ts CHANGED
@@ -22,6 +22,7 @@ export default defineConfig(() => ({
22
22
  entry: resolve(indexDir, 'index.ts'),
23
23
  formats: ['es', 'cjs'],
24
24
  fileName: (module, entry) => `${entry}.${module === 'es' ? 'mjs' : module}`,
25
+ cssFileName: 'style',
25
26
  },
26
27
  rollupOptions: {
27
28
  // external modules won't be bundled into your library