react-semaphor 0.0.37719 → 0.1.0
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/CHANGELOG.md +54 -0
- package/dist/chunks/dashboard-plus-BDQLhRLH.js +270 -0
- package/dist/chunks/dashboard-plus-CuVaDeqE.js +20277 -0
- package/dist/chunks/index-CsQT_gTd.js +980 -0
- package/dist/chunks/index-opTTQPdi.js +102557 -0
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +4 -2
- package/dist/index.cjs +6 -1
- package/dist/index.js +238 -35
- package/dist/style.css +1 -1
- package/dist/surfboard/index.cjs +1 -1
- package/dist/surfboard/index.js +4 -2
- package/dist/types/dashboard.d.ts +742 -21
- package/dist/types/index.cjs +1 -1
- package/dist/types/index.js +8 -1
- package/dist/types/main.d.ts +1410 -64
- package/dist/types/surfboard.d.ts +741 -20
- package/dist/types/types.d.ts +741 -20
- package/package.json +39 -16
- package/dist/chunks/index-B2UB5v7l.js +0 -411
- package/dist/chunks/index-CaTx9ujK.js +0 -192
- package/dist/chunks/index-DXddLbEP.js +0 -64003
- package/dist/chunks/index-DybOvW7V.js +0 -6117
- package/dist/chunks/lucide-react-BInWIJ_d.js +0 -27626
- package/dist/chunks/lucide-react-DCVg_bGB.js +0 -7321
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"email": "support@semaphor.cloud"
|
|
6
6
|
},
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"version": "0.0
|
|
8
|
+
"version": "0.1.0",
|
|
9
9
|
"description": "Fully interactive and customizable dashboards for your apps.",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"react",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
],
|
|
16
16
|
"type": "module",
|
|
17
17
|
"files": [
|
|
18
|
-
"dist"
|
|
18
|
+
"dist",
|
|
19
|
+
"CHANGELOG.md"
|
|
19
20
|
],
|
|
20
21
|
"main": "dist/index.cjs",
|
|
21
22
|
"module": "dist/index.js",
|
|
@@ -42,28 +43,48 @@
|
|
|
42
43
|
"dev": "vite",
|
|
43
44
|
"build": "tsc && vite build",
|
|
44
45
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
45
|
-
"preview": "vite preview"
|
|
46
|
+
"preview": "vite preview",
|
|
47
|
+
"deploy": "./scripts/deploy.sh",
|
|
48
|
+
"deploy:patch": "./scripts/deploy.sh patch",
|
|
49
|
+
"deploy:minor": "./scripts/deploy.sh minor",
|
|
50
|
+
"deploy:major": "./scripts/deploy.sh major",
|
|
51
|
+
"release:public": "./scripts/npm-release.sh",
|
|
52
|
+
"release:public:patch": "./scripts/npm-release.sh patch",
|
|
53
|
+
"release:public:minor": "./scripts/npm-release.sh minor",
|
|
54
|
+
"release:public:major": "./scripts/npm-release.sh major",
|
|
55
|
+
"link:status": "./scripts/link-helper.sh status",
|
|
56
|
+
"link:check": "./scripts/link-helper.sh check",
|
|
57
|
+
"link:create": "./scripts/link-helper.sh link",
|
|
58
|
+
"link:remove": "./scripts/link-helper.sh unlink",
|
|
59
|
+
"link:restore": "./scripts/link-helper.sh restore"
|
|
46
60
|
},
|
|
47
61
|
"dependencies": {
|
|
48
|
-
"@ai-sdk/react": "^
|
|
62
|
+
"@ai-sdk/react": "^2.0.72",
|
|
63
|
+
"@dnd-kit/core": "^6.3.1",
|
|
64
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
65
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
49
66
|
"@headlessui/react": "^2.2.0",
|
|
50
67
|
"@monaco-editor/react": "^4.7.0-rc.0",
|
|
51
68
|
"@r2wc/react-to-web-component": "^2.0.4",
|
|
52
69
|
"@radix-ui/react-accordion": "^1.2.2",
|
|
53
70
|
"@radix-ui/react-alert-dialog": "^1.1.4",
|
|
71
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
54
72
|
"@radix-ui/react-checkbox": "^1.1.3",
|
|
55
73
|
"@radix-ui/react-collapsible": "^1.1.2",
|
|
56
|
-
"@radix-ui/react-
|
|
74
|
+
"@radix-ui/react-context-menu": "^2.2.15",
|
|
75
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
57
76
|
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
58
77
|
"@radix-ui/react-hover-card": "^1.1.4",
|
|
59
78
|
"@radix-ui/react-icons": "^1.3.2",
|
|
60
79
|
"@radix-ui/react-label": "^2.1.1",
|
|
61
80
|
"@radix-ui/react-popover": "^1.1.4",
|
|
81
|
+
"@radix-ui/react-progress": "^1.0.3",
|
|
62
82
|
"@radix-ui/react-radio-group": "^1.2.2",
|
|
63
83
|
"@radix-ui/react-scroll-area": "^1.2.2",
|
|
64
84
|
"@radix-ui/react-select": "^2.1.4",
|
|
65
85
|
"@radix-ui/react-separator": "^1.1.1",
|
|
66
|
-
"@radix-ui/react-
|
|
86
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
87
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
67
88
|
"@radix-ui/react-switch": "^1.1.2",
|
|
68
89
|
"@radix-ui/react-tabs": "^1.1.2",
|
|
69
90
|
"@radix-ui/react-toggle": "^1.1.1",
|
|
@@ -71,29 +92,31 @@
|
|
|
71
92
|
"@tailwindcss/container-queries": "^0.1.1",
|
|
72
93
|
"@tanstack/react-query": "^5.62.15",
|
|
73
94
|
"@tanstack/react-table": "^8.11.7",
|
|
74
|
-
"ai": "^
|
|
95
|
+
"ai": "^5.0.7",
|
|
75
96
|
"chart.js": "^4.4.1",
|
|
97
|
+
"chartjs-chart-funnel": "^4.2.4",
|
|
76
98
|
"chartjs-chart-geo": "^4.3.4",
|
|
77
99
|
"chartjs-plugin-datalabels": "^2.2.0",
|
|
78
100
|
"class-variance-authority": "^0.7.0",
|
|
79
101
|
"clsx": "^2.0.0",
|
|
80
|
-
"cmdk": "^1.
|
|
81
|
-
"date-fns": "^3.
|
|
82
|
-
"
|
|
102
|
+
"cmdk": "^1.1.1",
|
|
103
|
+
"date-fns": "^3.6.0",
|
|
104
|
+
"date-fns-tz": "^3.2.0",
|
|
83
105
|
"immer": "^10.0.3",
|
|
84
106
|
"jwt-decode": "^4.0.0",
|
|
85
|
-
"lodash": "^4.
|
|
107
|
+
"lodash.merge": "^4.6.2",
|
|
86
108
|
"lucide-react": "^0.453.0",
|
|
87
109
|
"ms": "^2.1.3",
|
|
88
110
|
"next-themes": "^0.4.4",
|
|
89
111
|
"prism-react-renderer": "^2.4.1",
|
|
90
|
-
"react-day-picker": "^
|
|
112
|
+
"react-day-picker": "^9.9.0",
|
|
91
113
|
"react-error-boundary": "^4.1.2",
|
|
92
114
|
"react-grid-layout": "^1.5.0",
|
|
93
115
|
"react-icons": "^5.0.1",
|
|
94
116
|
"react-markdown": "^9.0.1",
|
|
95
117
|
"react-resizable-panels": "^2.1.7",
|
|
96
118
|
"react-select": "^5.9.0",
|
|
119
|
+
"remark-gfm": "^4.0.1",
|
|
97
120
|
"sonner": "^1.5.0",
|
|
98
121
|
"tailwind-merge": "^2.1.0",
|
|
99
122
|
"tailwindcss-animate": "^1.0.7",
|
|
@@ -101,16 +124,16 @@
|
|
|
101
124
|
"zustand": "^4.4.7"
|
|
102
125
|
},
|
|
103
126
|
"peerDependencies": {
|
|
104
|
-
"react": "^
|
|
105
|
-
"react-dom": "^
|
|
127
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
128
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
106
129
|
},
|
|
107
130
|
"devDependencies": {
|
|
108
|
-
"@microsoft/api-extractor": "^7.
|
|
131
|
+
"@microsoft/api-extractor": "^7.52.1",
|
|
109
132
|
"@tanstack/react-query-devtools": "^5.62.15",
|
|
110
133
|
"@types/chart.js": "^2.9.41",
|
|
111
134
|
"@types/dompurify": "^3.0.5",
|
|
112
135
|
"@types/jsoneditor": "^9.9.5",
|
|
113
|
-
"@types/lodash": "^4.
|
|
136
|
+
"@types/lodash.merge": "^4.6.9",
|
|
114
137
|
"@types/ms": "^0.7.34",
|
|
115
138
|
"@types/node": "^20.14.2",
|
|
116
139
|
"@types/postcss-prefix-selector": "^1.16.3",
|