@genspectrum/dashboard-components 1.3.0 → 1.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/README.md +9 -0
- package/dist/assets/{mutationOverTimeWorker-C7saVShx.js.map → mutationOverTimeWorker-CQxrFo53.js.map} +1 -1
- package/dist/components.d.ts +28 -28
- package/dist/components.js +4 -10
- package/dist/components.js.map +1 -1
- package/dist/util.d.ts +28 -28
- package/package.json +1 -1
- package/src/preact/mutationsOverTime/__mockData__/withDisplayMutations.ts +352 -0
- package/src/preact/mutationsOverTime/getFilteredMutationsOverTime.spec.ts +0 -24
- package/src/preact/mutationsOverTime/getFilteredMutationsOverTimeData.ts +0 -8
- package/src/preact/mutationsOverTime/mutationOverTimeWorker.mock.ts +2 -0
- package/src/preact/mutationsOverTime/mutations-over-time.tsx +3 -4
- package/src/query/queryMutationsOverTime.spec.ts +98 -0
- package/src/query/queryMutationsOverTime.ts +72 -6
- package/src/query/queryMutationsOverTimeNewEndpoint.spec.ts +122 -0
- package/standalone-bundle/assets/{mutationOverTimeWorker-DRRi3aMG.js.map → mutationOverTimeWorker-CDACUs6w.js.map} +1 -1
- package/standalone-bundle/dashboard-components.js +21 -23
- package/standalone-bundle/dashboard-components.js.map +1 -1
package/README.md
CHANGED
|
@@ -77,6 +77,15 @@ We primarily provide two kinds of components:
|
|
|
77
77
|
npm ci
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
+
> [!NOTE]
|
|
81
|
+
> **For Mac users**: By default, the `package-lock.json` installs linux dependencies for the
|
|
82
|
+
> storybook test runner. To use it, you need to reinstall it:
|
|
83
|
+
>
|
|
84
|
+
> ```
|
|
85
|
+
> npm uninstall @storybook/test-runner
|
|
86
|
+
> npm install @storybook/test-runner --force
|
|
87
|
+
> ```
|
|
88
|
+
|
|
80
89
|
### Custom Elements Manifest
|
|
81
90
|
|
|
82
91
|
This package also ships a [Custom Elements Manifest](https://custom-elements-manifest.open-wc.org/),
|