@papermap/papermap 1.1.0 → 1.1.2
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/index.d.mts +936 -35
- package/dist/index.d.ts +936 -35
- package/dist/index.js +13040 -4956
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12998 -4921
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -1
- package/readme.md +673 -23
- package/styles.css +24 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@papermap/papermap",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Embeddable AI chat bar and UI components from the Papermap data analytics platform",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -34,6 +34,9 @@
|
|
|
34
34
|
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
35
35
|
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
36
36
|
"test": "vitest run",
|
|
37
|
+
"test:unit": "vitest run --project unit",
|
|
38
|
+
"test:storybook": "vitest run --project storybook",
|
|
39
|
+
"test:integration": "vitest run --project integration",
|
|
37
40
|
"test:watch": "vitest",
|
|
38
41
|
"validate": "npm run lint && npm run ts-check && npm run test",
|
|
39
42
|
"validate:watch": "npm run validate -- --watch",
|
|
@@ -54,11 +57,15 @@
|
|
|
54
57
|
"react-dom": ">=18"
|
|
55
58
|
},
|
|
56
59
|
"dependencies": {
|
|
60
|
+
"@dicebear/collection": "^9.2.2",
|
|
61
|
+
"@dicebear/core": "^9.2.2",
|
|
62
|
+
"@radix-ui/react-avatar": "^1.1.2",
|
|
57
63
|
"@radix-ui/react-collapsible": "^1.1.12",
|
|
58
64
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
59
65
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
60
66
|
"@radix-ui/react-hover-card": "^1.1.15",
|
|
61
67
|
"@radix-ui/react-icons": "^1.3.2",
|
|
68
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
62
69
|
"@radix-ui/react-select": "^2.2.6",
|
|
63
70
|
"@radix-ui/react-separator": "^1.1.8",
|
|
64
71
|
"@radix-ui/react-slider": "^1.3.6",
|
|
@@ -76,6 +83,7 @@
|
|
|
76
83
|
"html2canvas": "^1.4.1",
|
|
77
84
|
"lottie-react": "^2.4.1",
|
|
78
85
|
"lucide-react": "^0.460.0",
|
|
86
|
+
"next-themes": "^0.4.6",
|
|
79
87
|
"react-grid-layout": "^1.4.4",
|
|
80
88
|
"react-markdown": "^10.1.0",
|
|
81
89
|
"react-resizable": "^3.0.5",
|
|
@@ -89,9 +97,11 @@
|
|
|
89
97
|
"devDependencies": {
|
|
90
98
|
"@changesets/cli": "^2.29.7",
|
|
91
99
|
"@storybook/addon-essentials": "^8.6.14",
|
|
100
|
+
"@storybook/addon-interactions": "^8.6.18",
|
|
92
101
|
"@storybook/blocks": "^8.6.14",
|
|
93
102
|
"@storybook/react": "^8.6.18",
|
|
94
103
|
"@storybook/react-vite": "^8.6.18",
|
|
104
|
+
"@storybook/test": "^8.6.18",
|
|
95
105
|
"@testing-library/jest-dom": "^6.9.1",
|
|
96
106
|
"@testing-library/react": "^16.3.2",
|
|
97
107
|
"@testing-library/user-event": "^14.6.1",
|