@bexis2/bexis2-core-ui 0.0.5 → 0.0.6

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,10 +1,10 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
- "package": "svelte-package `./package/`",
7
+ "package": "svelte-package",
8
8
  "build": "vite build sync --watch",
9
9
  "preview": "vite preview",
10
10
  "test": "playwright test",
@@ -74,8 +74,11 @@
74
74
  ],
75
75
  "exports": {
76
76
  ".": {
77
- "types": "./dist/index.d.ts",
78
- "svelte": "./dist/index.js"
79
- }
77
+ "types": "./export/index.d.ts",
78
+ "svelte": "./export/index.js"
79
+ },
80
+ "files": [
81
+ "dist"
82
+ ]
80
83
  }
81
84
  }
@@ -0,0 +1,2 @@
1
+ /*place global styles here */
2
+ html, body { @apply h-full overflow-hidden; }
package/src/lib/index.ts CHANGED
@@ -7,13 +7,9 @@ import FileIcon from './components/File/FileIcon.svelte'
7
7
  import FileInfo from './components/File/FileInfo.svelte'
8
8
  import FileUploader from './components/File/FileUploader.svelte'
9
9
 
10
-
11
-
12
10
  export {ListView,TableView, FileInfo, FileIcon, FileUploader }
13
11
 
14
-
15
12
  export {Api} from './services/Api.js'
16
13
  export {host,username,password,setApiConfig} from './stores/apistore.js'
17
14
 
18
15
  export type {user, FileUploaderModel} from './models/Models.js'
19
-
@@ -1,2 +0,0 @@
1
- /*place global styles here */
2
- html, body { @apply h-full overflow-hidden; }