@tableslayer/ui 0.1.3 → 0.1.5
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
import jsonData from '
|
|
2
|
+
import jsonData from '@tableslayer/ui/typedoc.json';
|
|
3
3
|
import Markdown from '@magidoc/plugin-svelte-marked';
|
|
4
4
|
import { Table, Th, Td, Title, Spacer } from '@tableslayer/ui';
|
|
5
5
|
export let componentName = '';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tableslayer/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"license": "FSL-1.1-ALv2",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"homepage": "https://github.com/Siege-Perilous/tableslayer/tree/main/packages/ui",
|
|
19
19
|
"scripts": {
|
|
20
|
-
"dev": "
|
|
20
|
+
"dev": "svelte-package --watch",
|
|
21
21
|
"build": "svelte-kit sync && vite build && npm run package",
|
|
22
22
|
"preview": "vite preview",
|
|
23
23
|
"tsc": "tsc",
|
|
@@ -31,12 +31,13 @@
|
|
|
31
31
|
},
|
|
32
32
|
"exports": {
|
|
33
33
|
".": {
|
|
34
|
-
"types": "./
|
|
35
|
-
"svelte": "./
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"svelte": "./dist/index.js",
|
|
36
|
+
"default": "./dist/index.js"
|
|
36
37
|
},
|
|
37
38
|
"./styles/*.css": {
|
|
38
|
-
"import": "./
|
|
39
|
-
"require": "./
|
|
39
|
+
"import": "./dist/styles/*.css",
|
|
40
|
+
"require": "./dist/styles/*.css"
|
|
40
41
|
},
|
|
41
42
|
"./typedoc.json": {
|
|
42
43
|
"import": "./typedocgen.json",
|
|
@@ -48,18 +49,6 @@
|
|
|
48
49
|
"!dist/**/*.test.*",
|
|
49
50
|
"!dist/**/*.spec.*"
|
|
50
51
|
],
|
|
51
|
-
"publishConfig": {
|
|
52
|
-
"exports": {
|
|
53
|
-
".": {
|
|
54
|
-
"types": "./dist/index.d.ts",
|
|
55
|
-
"svelte": "./dist/index.js"
|
|
56
|
-
},
|
|
57
|
-
"./styles/*.css": {
|
|
58
|
-
"import": "./dist/styles/*.css",
|
|
59
|
-
"require": "./dist/styles/*.css"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
52
|
"peerDependencies": {
|
|
64
53
|
"@melt-ui/svelte": "^0.86.2",
|
|
65
54
|
"@sveltejs/kit": "^2.16.0",
|
|
@@ -104,7 +93,7 @@
|
|
|
104
93
|
"uuid": "^13.0.0",
|
|
105
94
|
"zod": "^4.3.6"
|
|
106
95
|
},
|
|
107
|
-
"svelte": "./
|
|
108
|
-
"types": "./
|
|
96
|
+
"svelte": "./dist/index.js",
|
|
97
|
+
"types": "./dist/index.d.ts",
|
|
109
98
|
"type": "module"
|
|
110
99
|
}
|