bt-core-app 1.1.7 → 1.1.9

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,6 +1,6 @@
1
1
  {
2
2
  "name": "bt-core-app",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "Core app tools for some basic features like navigation, authentication, server apis, and cosmetics",
5
5
  "homepage": "https://github.com/BlitzItTech/bt-core",
6
6
  "bugs": {
@@ -8,6 +8,8 @@
8
8
  },
9
9
  "type": "module",
10
10
  "types": "./dist/index.d.ts",
11
+ "main": "./dist/bt-core-app.js",
12
+ "exports": "./dist/bt-core-app.js",
11
13
  "scripts": {
12
14
  "dev": "vite",
13
15
  "build": "vue-tsc && vite build",
@@ -563,7 +563,7 @@ export function useList(props: ListProps, emit?: ListEvents, options?: UseListOp
563
563
 
564
564
  onMounted(async () => {
565
565
  if (props.eager == true)
566
- await refresh({ deepRefresh: route.params?.refresh == 'true' ?? false })
566
+ await refresh({ deepRefresh: route.params?.refresh == 'true' })
567
567
  })
568
568
 
569
569
  return {
@@ -1,3 +0,0 @@
1
- {
2
- "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
3
- }