@devtable/dashboard 2.6.0 → 3.0.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/README.md +25 -1
- package/dist/dashboard.es.js +7490 -7207
- package/dist/dashboard.umd.js +22 -22
- package/dist/panel/plugin-adaptor.d.ts +7 -0
- package/dist/panel/viz/index.d.ts +1 -1
- package/dist/plugins/hooks/index.d.ts +2 -0
- package/dist/plugins/hooks/use-channel-event.d.ts +2 -0
- package/dist/plugins/hooks/use-storage-data.d.ts +6 -0
- package/dist/plugins/index.d.ts +4 -0
- package/dist/plugins/json-plugin-storage.d.ts +8 -4
- package/dist/plugins/message-channels.d.ts +0 -1
- package/dist/plugins/plugin-data-migrator/index.d.ts +1 -0
- package/dist/plugins/plugin-data-migrator/plugin-data-migrator.d.ts +13 -0
- package/dist/plugins/viz-components/table/index.d.ts +2 -0
- package/dist/{panel/viz → plugins/viz-components}/table/type.d.ts +1 -0
- package/dist/{panel/viz → plugins/viz-components}/table/value-type-selector.d.ts +0 -0
- package/dist/{panel/viz → plugins/viz-components}/table/value.d.ts +0 -0
- package/dist/plugins/viz-components/table/viz-table-panel.d.ts +3 -0
- package/dist/plugins/viz-components/table/viz-table.d.ts +3 -0
- package/dist/plugins/viz-manager/components.d.ts +1 -2
- package/dist/plugins/viz-manager/index.d.ts +1 -0
- package/dist/types/plugin/index.d.ts +9 -5
- package/package.json +8 -4
- package/dist/panel/viz/table/index.d.ts +0 -10
- package/dist/panel/viz/table/panel.d.ts +0 -3
package/README.md
CHANGED
|
@@ -7,6 +7,30 @@ cd devtable/dashboard && yarn
|
|
|
7
7
|
# 2. run demo
|
|
8
8
|
cd devtable/dashboard/packages/core && yarn build
|
|
9
9
|
```
|
|
10
|
+
|
|
10
11
|
see `package.json` for more scripts
|
|
11
12
|
|
|
12
|
-
use `../demo` for debugging
|
|
13
|
+
use `../demo` for debugging
|
|
14
|
+
|
|
15
|
+
## Testing
|
|
16
|
+
|
|
17
|
+
Use cypress for component testing.
|
|
18
|
+
|
|
19
|
+
```shell
|
|
20
|
+
$ nx cypress dashboard
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Use vitest for other types of testing.
|
|
24
|
+
|
|
25
|
+
```shell
|
|
26
|
+
$ nx vitest dashboard
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Use `-c ci` to run tests in headless mode.
|
|
30
|
+
|
|
31
|
+
```shell
|
|
32
|
+
$ nx cypress dashboard -c ci
|
|
33
|
+
$ nx vitest dashboard -c ci
|
|
34
|
+
# run both in parallel
|
|
35
|
+
$ nx test dashboard -c ci
|
|
36
|
+
```
|