Skip to content

Commit 18e6594

Browse files
authored
Merge pull request #2 from bcdev/forman-callbacks
Introduced callbacks
2 parents edb9abb + bda95c9 commit 18e6594

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+2125
-751
lines changed

dashi/.eslintrc.cjs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ module.exports = {
22
root: true,
33
env: { browser: true, es2020: true },
44
extends: [
5-
'eslint:recommended',
6-
'plugin:@typescript-eslint/recommended',
7-
'plugin:react-hooks/recommended',
5+
"eslint:recommended",
6+
"plugin:@typescript-eslint/recommended",
7+
"plugin:react-hooks/recommended",
88
],
9-
ignorePatterns: ['dist', '.eslintrc.cjs'],
10-
parser: '@typescript-eslint/parser',
11-
plugins: ['react-refresh'],
9+
ignorePatterns: ["dist", ".eslintrc.cjs"],
10+
parser: "@typescript-eslint/parser",
11+
plugins: ["react-refresh"],
1212
rules: {
13-
'react-refresh/only-export-components': [
14-
'warn',
13+
"react-refresh/only-export-components": [
14+
"warn",
1515
{ allowConstantExport: true },
1616
],
17+
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
1718
},
18-
}
19+
};

dashi/package-lock.json

Lines changed: 52 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dashi/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dashi",
33
"private": true,
4-
"version": "0.0.1",
4+
"version": "0.0.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -12,10 +12,12 @@
1212
"preview": "vite preview"
1313
},
1414
"dependencies": {
15+
"immer": "^10.1.1",
1516
"plotly.js": "^2.35.2",
1617
"react": "^18.3.1",
1718
"react-dom": "^18.3.1",
18-
"react-plotly.js": "^2.6.0"
19+
"react-plotly.js": "^2.6.0",
20+
"zustand": "^5.0.0-rc.2"
1921
},
2022
"devDependencies": {
2123
"@types/node": "^20.11.17",

dashi/src/App.css

Lines changed: 0 additions & 15 deletions
This file was deleted.

dashi/src/App.tsx

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)