@devtable/dashboard 14.43.4 → 14.44.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/dist/components/plugins/plugin-context.d.ts +144 -0
- package/dist/contexts/panel-context.d.ts +288 -0
- package/dist/dashboard-editor/model/panels/panel.d.ts +72 -0
- package/dist/dashboard-editor/model/queries/queries.d.ts +135 -0
- package/dist/dashboard-editor/model/queries/query.d.ts +5 -0
- package/dist/dashboard.es.js +528 -520
- package/dist/dashboard.umd.js +5 -5
- package/dist/model/meta-model/dashboard/content/query/merico-metric-query.d.ts +8 -0
- package/dist/model/meta-model/dashboard/content/query/query.d.ts +4 -0
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +48 -0
- package/dist/model/render-model/dashboard/content/queries/mute-query.d.ts +5 -0
- package/dist/model/render-model/dashboard/content/queries/queries.d.ts +101 -0
- package/dist/model/render-model/dashboard/content/queries/query.d.ts +5 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +20 -20
package/dist/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devtable/dashboard",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.44.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -63,25 +63,25 @@
|
|
|
63
63
|
"@tabler/icons-react": "2.25.0",
|
|
64
64
|
"@tanstack/react-table": "8.10.0",
|
|
65
65
|
"@tanstack/react-virtual": "3.10.8",
|
|
66
|
-
"@tiptap/core": "^
|
|
67
|
-
"@tiptap/extension-code-block": "^
|
|
68
|
-
"@tiptap/extension-code-block-lowlight": "^
|
|
69
|
-
"@tiptap/extension-color": "^
|
|
70
|
-
"@tiptap/extension-highlight": "^
|
|
71
|
-
"@tiptap/extension-link": "^
|
|
72
|
-
"@tiptap/extension-placeholder": "^
|
|
73
|
-
"@tiptap/extension-subscript": "^
|
|
74
|
-
"@tiptap/extension-superscript": "^
|
|
75
|
-
"@tiptap/extension-table": "^
|
|
76
|
-
"@tiptap/extension-table-cell": "^
|
|
77
|
-
"@tiptap/extension-table-header": "^
|
|
78
|
-
"@tiptap/extension-table-row": "^
|
|
79
|
-
"@tiptap/extension-text-align": "^
|
|
80
|
-
"@tiptap/extension-text-style": "^
|
|
81
|
-
"@tiptap/extension-underline": "^
|
|
82
|
-
"@tiptap/pm": "^
|
|
83
|
-
"@tiptap/react": "^
|
|
84
|
-
"@tiptap/starter-kit": "^
|
|
66
|
+
"@tiptap/core": "^v2.14.0",
|
|
67
|
+
"@tiptap/extension-code-block": "^v2.14.0",
|
|
68
|
+
"@tiptap/extension-code-block-lowlight": "^v2.14.0",
|
|
69
|
+
"@tiptap/extension-color": "^v2.14.0",
|
|
70
|
+
"@tiptap/extension-highlight": "^v2.14.0",
|
|
71
|
+
"@tiptap/extension-link": "^v2.14.0",
|
|
72
|
+
"@tiptap/extension-placeholder": "^v2.14.0",
|
|
73
|
+
"@tiptap/extension-subscript": "^v2.14.0",
|
|
74
|
+
"@tiptap/extension-superscript": "^v2.14.0",
|
|
75
|
+
"@tiptap/extension-table": "^v2.14.0",
|
|
76
|
+
"@tiptap/extension-table-cell": "^v2.14.0",
|
|
77
|
+
"@tiptap/extension-table-header": "^v2.14.0",
|
|
78
|
+
"@tiptap/extension-table-row": "^v2.14.0",
|
|
79
|
+
"@tiptap/extension-text-align": "^v2.14.0",
|
|
80
|
+
"@tiptap/extension-text-style": "^v2.14.0",
|
|
81
|
+
"@tiptap/extension-underline": "^v2.14.0",
|
|
82
|
+
"@tiptap/pm": "^v2.14.0",
|
|
83
|
+
"@tiptap/react": "^v2.14.0",
|
|
84
|
+
"@tiptap/starter-kit": "^v2.14.0",
|
|
85
85
|
"@types/chroma-js": "^2.1.4",
|
|
86
86
|
"ahooks": "^3.3.11",
|
|
87
87
|
"axios": "^1.7.7",
|