prez-components 4.2.0 → 4.3.1
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/components/ProvenanceDiagram.vue.d.ts +7 -0
- package/dist/components/bblock/GraphNode.vue.d.ts +8 -0
- package/dist/index.d.ts +3 -1
- package/dist/prez-components.css +1 -1
- package/dist/prez-components.js +80242 -48457
- package/dist/prez-components.umd.cjs +403 -526
- package/dist/types.d.ts +26 -0
- package/package.json +23 -17
package/dist/types.d.ts
CHANGED
|
@@ -240,3 +240,29 @@ export interface DataProviderProps {
|
|
|
240
240
|
message: Component;
|
|
241
241
|
};
|
|
242
242
|
}
|
|
243
|
+
export interface DependencyViewerProps {
|
|
244
|
+
data: any;
|
|
245
|
+
nodeSize?: number;
|
|
246
|
+
}
|
|
247
|
+
export interface GraphNodeProps {
|
|
248
|
+
itemClass?: string;
|
|
249
|
+
radius: number;
|
|
250
|
+
scale: number;
|
|
251
|
+
fill: string;
|
|
252
|
+
stroke: string;
|
|
253
|
+
}
|
|
254
|
+
export interface ProvenanceDiagramProps {
|
|
255
|
+
data: any;
|
|
256
|
+
}
|
|
257
|
+
export interface ProvenanceNode {
|
|
258
|
+
id: string;
|
|
259
|
+
name: string;
|
|
260
|
+
label?: any;
|
|
261
|
+
data?: any;
|
|
262
|
+
}
|
|
263
|
+
export interface ProvenanceLink {
|
|
264
|
+
source: string;
|
|
265
|
+
target: string;
|
|
266
|
+
value: number;
|
|
267
|
+
edgeLabel: object;
|
|
268
|
+
}
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prez-components",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "A Vue.js component library for rendering RDF data for use with Prez UI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/
|
|
9
|
+
"url": "git+https://github.com/RDFLib/prez-ui.git",
|
|
10
10
|
"directory": "packages/prez-components"
|
|
11
11
|
},
|
|
12
|
-
"homepage": "https://github.com/
|
|
12
|
+
"homepage": "https://github.com/RDFLib/prez-ui/tree/main/packages/prez-components#readme",
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/
|
|
14
|
+
"url": "https://github.com/RDFLib/prez-ui/issues"
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"dist"
|
|
@@ -34,28 +34,34 @@
|
|
|
34
34
|
"vue": "^3.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@tailwindcss/vite": "^4.1.
|
|
37
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
38
38
|
"@tanstack/vue-table": "^8.21.3",
|
|
39
39
|
"@vueuse/core": "^13.9.0",
|
|
40
40
|
"class-variance-authority": "^0.7.1",
|
|
41
41
|
"clsx": "^2.1.1",
|
|
42
|
-
"
|
|
42
|
+
"dagre": "^0.8.5",
|
|
43
|
+
"dompurify": "^3.3.1",
|
|
44
|
+
"echarts": "^6.0.0",
|
|
43
45
|
"lucide-vue-next": "^0.544.0",
|
|
44
|
-
"marked": "^16.
|
|
45
|
-
"mermaid": "^11.
|
|
46
|
-
"reka-ui": "^2.
|
|
47
|
-
"tailwind-merge": "^3.
|
|
48
|
-
"tailwindcss": "^4.1.
|
|
49
|
-
"tw-animate-css": "^1.
|
|
50
|
-
"
|
|
51
|
-
"
|
|
46
|
+
"marked": "^16.4.2",
|
|
47
|
+
"mermaid": "^11.12.2",
|
|
48
|
+
"reka-ui": "^2.6.1",
|
|
49
|
+
"tailwind-merge": "^3.4.0",
|
|
50
|
+
"tailwindcss": "^4.1.18",
|
|
51
|
+
"tw-animate-css": "^1.4.0",
|
|
52
|
+
"v-network-graph": "^0.9.21",
|
|
53
|
+
"vue-echarts": "^8.0.1",
|
|
54
|
+
"vue-router": "^4.6.4",
|
|
55
|
+
"prez-lib": "4.3.1"
|
|
52
56
|
},
|
|
53
57
|
"devDependencies": {
|
|
54
|
-
"@types/
|
|
55
|
-
"@
|
|
58
|
+
"@types/dagre": "^0.7.53",
|
|
59
|
+
"@types/node": "^24.10.4",
|
|
60
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
56
61
|
"concurrently": "^9.2.1",
|
|
62
|
+
"sass-embedded": "^1.95.1",
|
|
57
63
|
"typescript": "5.9.2",
|
|
58
|
-
"vite": "^7.
|
|
64
|
+
"vite": "^7.3.0",
|
|
59
65
|
"vite-plugin-dts": "^4.5.4",
|
|
60
66
|
"vue-tsc": "3.0.7"
|
|
61
67
|
},
|