data-primals-engine 1.6.0 → 1.6.2-rc1
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 +968 -924
- package/client/package-lock.json +524 -5
- package/client/package.json +2 -1
- package/client/src/App.scss +14 -1
- package/client/src/Dashboard.jsx +4 -0
- package/client/src/DataLayout.jsx +85 -20
- package/client/src/DataLayout.scss +32 -6
- package/client/src/DataTable.jsx +19 -12
- package/client/src/ModelCreator.jsx +12 -12
- package/client/src/ModelCreator.scss +1 -1
- package/client/src/ModelImporter.jsx +4 -1
- package/client/src/ViewSwitcher.jsx +1 -1
- package/client/src/WorkflowEditor.jsx +317 -0
- package/client/src/WorkflowEditor.scss +16 -0
- package/package.json +142 -142
- package/src/defaultModels.js +12 -2
- package/src/i18n.js +35 -3
- package/src/index.js +1 -0
- package/src/modules/data/data.operations.js +91 -5
- package/src/modules/user.js +14 -9
- package/src/modules/workflow.js +1 -4
- package/src/packs.js +239 -24
- package/test/data.integration.test.js +75 -0
- package/test/user.test.js +106 -1
package/client/package-lock.json
CHANGED
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"react-leaflet": "^4.2.1",
|
|
38
38
|
"react-router": "^7.8.1",
|
|
39
39
|
"react-switch": "^7.1.0",
|
|
40
|
+
"reactflow": "^11.0.0-next.0",
|
|
40
41
|
"uniqid": "^5.4.0",
|
|
41
42
|
"yet-another-react-lightbox": "^3.25.0"
|
|
42
43
|
},
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
"globals": "^15.15.0",
|
|
53
54
|
"process": "^0.11.10",
|
|
54
55
|
"sass-embedded": "^1.90.0",
|
|
55
|
-
"vite": "^6.
|
|
56
|
+
"vite": "^6.4.1"
|
|
56
57
|
},
|
|
57
58
|
"peerDependencies": {
|
|
58
59
|
"@tiptap/react": "^2.26.1",
|
|
@@ -1714,6 +1715,108 @@
|
|
|
1714
1715
|
"react-dom": "^18.0.0"
|
|
1715
1716
|
}
|
|
1716
1717
|
},
|
|
1718
|
+
"node_modules/@reactflow/background": {
|
|
1719
|
+
"version": "11.3.14",
|
|
1720
|
+
"resolved": "https://registry.npmjs.org/@reactflow/background/-/background-11.3.14.tgz",
|
|
1721
|
+
"integrity": "sha512-Gewd7blEVT5Lh6jqrvOgd4G6Qk17eGKQfsDXgyRSqM+CTwDqRldG2LsWN4sNeno6sbqVIC2fZ+rAUBFA9ZEUDA==",
|
|
1722
|
+
"license": "MIT",
|
|
1723
|
+
"dependencies": {
|
|
1724
|
+
"@reactflow/core": "11.11.4",
|
|
1725
|
+
"classcat": "^5.0.3",
|
|
1726
|
+
"zustand": "^4.4.1"
|
|
1727
|
+
},
|
|
1728
|
+
"peerDependencies": {
|
|
1729
|
+
"react": ">=17",
|
|
1730
|
+
"react-dom": ">=17"
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
"node_modules/@reactflow/controls": {
|
|
1734
|
+
"version": "11.2.14",
|
|
1735
|
+
"resolved": "https://registry.npmjs.org/@reactflow/controls/-/controls-11.2.14.tgz",
|
|
1736
|
+
"integrity": "sha512-MiJp5VldFD7FrqaBNIrQ85dxChrG6ivuZ+dcFhPQUwOK3HfYgX2RHdBua+gx+40p5Vw5It3dVNp/my4Z3jF0dw==",
|
|
1737
|
+
"license": "MIT",
|
|
1738
|
+
"dependencies": {
|
|
1739
|
+
"@reactflow/core": "11.11.4",
|
|
1740
|
+
"classcat": "^5.0.3",
|
|
1741
|
+
"zustand": "^4.4.1"
|
|
1742
|
+
},
|
|
1743
|
+
"peerDependencies": {
|
|
1744
|
+
"react": ">=17",
|
|
1745
|
+
"react-dom": ">=17"
|
|
1746
|
+
}
|
|
1747
|
+
},
|
|
1748
|
+
"node_modules/@reactflow/core": {
|
|
1749
|
+
"version": "11.11.4",
|
|
1750
|
+
"resolved": "https://registry.npmjs.org/@reactflow/core/-/core-11.11.4.tgz",
|
|
1751
|
+
"integrity": "sha512-H4vODklsjAq3AMq6Np4LE12i1I4Ta9PrDHuBR9GmL8uzTt2l2jh4CiQbEMpvMDcp7xi4be0hgXj+Ysodde/i7Q==",
|
|
1752
|
+
"license": "MIT",
|
|
1753
|
+
"dependencies": {
|
|
1754
|
+
"@types/d3": "^7.4.0",
|
|
1755
|
+
"@types/d3-drag": "^3.0.1",
|
|
1756
|
+
"@types/d3-selection": "^3.0.3",
|
|
1757
|
+
"@types/d3-zoom": "^3.0.1",
|
|
1758
|
+
"classcat": "^5.0.3",
|
|
1759
|
+
"d3-drag": "^3.0.0",
|
|
1760
|
+
"d3-selection": "^3.0.0",
|
|
1761
|
+
"d3-zoom": "^3.0.0",
|
|
1762
|
+
"zustand": "^4.4.1"
|
|
1763
|
+
},
|
|
1764
|
+
"peerDependencies": {
|
|
1765
|
+
"react": ">=17",
|
|
1766
|
+
"react-dom": ">=17"
|
|
1767
|
+
}
|
|
1768
|
+
},
|
|
1769
|
+
"node_modules/@reactflow/minimap": {
|
|
1770
|
+
"version": "11.7.14",
|
|
1771
|
+
"resolved": "https://registry.npmjs.org/@reactflow/minimap/-/minimap-11.7.14.tgz",
|
|
1772
|
+
"integrity": "sha512-mpwLKKrEAofgFJdkhwR5UQ1JYWlcAAL/ZU/bctBkuNTT1yqV+y0buoNVImsRehVYhJwffSWeSHaBR5/GJjlCSQ==",
|
|
1773
|
+
"license": "MIT",
|
|
1774
|
+
"dependencies": {
|
|
1775
|
+
"@reactflow/core": "11.11.4",
|
|
1776
|
+
"@types/d3-selection": "^3.0.3",
|
|
1777
|
+
"@types/d3-zoom": "^3.0.1",
|
|
1778
|
+
"classcat": "^5.0.3",
|
|
1779
|
+
"d3-selection": "^3.0.0",
|
|
1780
|
+
"d3-zoom": "^3.0.0",
|
|
1781
|
+
"zustand": "^4.4.1"
|
|
1782
|
+
},
|
|
1783
|
+
"peerDependencies": {
|
|
1784
|
+
"react": ">=17",
|
|
1785
|
+
"react-dom": ">=17"
|
|
1786
|
+
}
|
|
1787
|
+
},
|
|
1788
|
+
"node_modules/@reactflow/node-resizer": {
|
|
1789
|
+
"version": "2.2.14",
|
|
1790
|
+
"resolved": "https://registry.npmjs.org/@reactflow/node-resizer/-/node-resizer-2.2.14.tgz",
|
|
1791
|
+
"integrity": "sha512-fwqnks83jUlYr6OHcdFEedumWKChTHRGw/kbCxj0oqBd+ekfs+SIp4ddyNU0pdx96JIm5iNFS0oNrmEiJbbSaA==",
|
|
1792
|
+
"license": "MIT",
|
|
1793
|
+
"dependencies": {
|
|
1794
|
+
"@reactflow/core": "11.11.4",
|
|
1795
|
+
"classcat": "^5.0.4",
|
|
1796
|
+
"d3-drag": "^3.0.0",
|
|
1797
|
+
"d3-selection": "^3.0.0",
|
|
1798
|
+
"zustand": "^4.4.1"
|
|
1799
|
+
},
|
|
1800
|
+
"peerDependencies": {
|
|
1801
|
+
"react": ">=17",
|
|
1802
|
+
"react-dom": ">=17"
|
|
1803
|
+
}
|
|
1804
|
+
},
|
|
1805
|
+
"node_modules/@reactflow/node-toolbar": {
|
|
1806
|
+
"version": "1.3.14",
|
|
1807
|
+
"resolved": "https://registry.npmjs.org/@reactflow/node-toolbar/-/node-toolbar-1.3.14.tgz",
|
|
1808
|
+
"integrity": "sha512-rbynXQnH/xFNu4P9H+hVqlEUafDCkEoCy0Dg9mG22Sg+rY/0ck6KkrAQrYrTgXusd+cEJOMK0uOOFCK2/5rSGQ==",
|
|
1809
|
+
"license": "MIT",
|
|
1810
|
+
"dependencies": {
|
|
1811
|
+
"@reactflow/core": "11.11.4",
|
|
1812
|
+
"classcat": "^5.0.3",
|
|
1813
|
+
"zustand": "^4.4.1"
|
|
1814
|
+
},
|
|
1815
|
+
"peerDependencies": {
|
|
1816
|
+
"react": ">=17",
|
|
1817
|
+
"react-dom": ">=17"
|
|
1818
|
+
}
|
|
1819
|
+
},
|
|
1717
1820
|
"node_modules/@remirror/core-constants": {
|
|
1718
1821
|
"version": "3.0.0",
|
|
1719
1822
|
"resolved": "https://registry.npmjs.org/@remirror/core-constants/-/core-constants-3.0.0.tgz",
|
|
@@ -2457,12 +2560,271 @@
|
|
|
2457
2560
|
"@babel/types": "^7.20.7"
|
|
2458
2561
|
}
|
|
2459
2562
|
},
|
|
2563
|
+
"node_modules/@types/d3": {
|
|
2564
|
+
"version": "7.4.3",
|
|
2565
|
+
"resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz",
|
|
2566
|
+
"integrity": "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==",
|
|
2567
|
+
"license": "MIT",
|
|
2568
|
+
"dependencies": {
|
|
2569
|
+
"@types/d3-array": "*",
|
|
2570
|
+
"@types/d3-axis": "*",
|
|
2571
|
+
"@types/d3-brush": "*",
|
|
2572
|
+
"@types/d3-chord": "*",
|
|
2573
|
+
"@types/d3-color": "*",
|
|
2574
|
+
"@types/d3-contour": "*",
|
|
2575
|
+
"@types/d3-delaunay": "*",
|
|
2576
|
+
"@types/d3-dispatch": "*",
|
|
2577
|
+
"@types/d3-drag": "*",
|
|
2578
|
+
"@types/d3-dsv": "*",
|
|
2579
|
+
"@types/d3-ease": "*",
|
|
2580
|
+
"@types/d3-fetch": "*",
|
|
2581
|
+
"@types/d3-force": "*",
|
|
2582
|
+
"@types/d3-format": "*",
|
|
2583
|
+
"@types/d3-geo": "*",
|
|
2584
|
+
"@types/d3-hierarchy": "*",
|
|
2585
|
+
"@types/d3-interpolate": "*",
|
|
2586
|
+
"@types/d3-path": "*",
|
|
2587
|
+
"@types/d3-polygon": "*",
|
|
2588
|
+
"@types/d3-quadtree": "*",
|
|
2589
|
+
"@types/d3-random": "*",
|
|
2590
|
+
"@types/d3-scale": "*",
|
|
2591
|
+
"@types/d3-scale-chromatic": "*",
|
|
2592
|
+
"@types/d3-selection": "*",
|
|
2593
|
+
"@types/d3-shape": "*",
|
|
2594
|
+
"@types/d3-time": "*",
|
|
2595
|
+
"@types/d3-time-format": "*",
|
|
2596
|
+
"@types/d3-timer": "*",
|
|
2597
|
+
"@types/d3-transition": "*",
|
|
2598
|
+
"@types/d3-zoom": "*"
|
|
2599
|
+
}
|
|
2600
|
+
},
|
|
2601
|
+
"node_modules/@types/d3-array": {
|
|
2602
|
+
"version": "3.2.2",
|
|
2603
|
+
"resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz",
|
|
2604
|
+
"integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==",
|
|
2605
|
+
"license": "MIT"
|
|
2606
|
+
},
|
|
2607
|
+
"node_modules/@types/d3-axis": {
|
|
2608
|
+
"version": "3.0.6",
|
|
2609
|
+
"resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz",
|
|
2610
|
+
"integrity": "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==",
|
|
2611
|
+
"license": "MIT",
|
|
2612
|
+
"dependencies": {
|
|
2613
|
+
"@types/d3-selection": "*"
|
|
2614
|
+
}
|
|
2615
|
+
},
|
|
2616
|
+
"node_modules/@types/d3-brush": {
|
|
2617
|
+
"version": "3.0.6",
|
|
2618
|
+
"resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz",
|
|
2619
|
+
"integrity": "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==",
|
|
2620
|
+
"license": "MIT",
|
|
2621
|
+
"dependencies": {
|
|
2622
|
+
"@types/d3-selection": "*"
|
|
2623
|
+
}
|
|
2624
|
+
},
|
|
2625
|
+
"node_modules/@types/d3-chord": {
|
|
2626
|
+
"version": "3.0.6",
|
|
2627
|
+
"resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz",
|
|
2628
|
+
"integrity": "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==",
|
|
2629
|
+
"license": "MIT"
|
|
2630
|
+
},
|
|
2631
|
+
"node_modules/@types/d3-color": {
|
|
2632
|
+
"version": "3.1.3",
|
|
2633
|
+
"resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
|
|
2634
|
+
"integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
|
|
2635
|
+
"license": "MIT"
|
|
2636
|
+
},
|
|
2637
|
+
"node_modules/@types/d3-contour": {
|
|
2638
|
+
"version": "3.0.6",
|
|
2639
|
+
"resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz",
|
|
2640
|
+
"integrity": "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==",
|
|
2641
|
+
"license": "MIT",
|
|
2642
|
+
"dependencies": {
|
|
2643
|
+
"@types/d3-array": "*",
|
|
2644
|
+
"@types/geojson": "*"
|
|
2645
|
+
}
|
|
2646
|
+
},
|
|
2647
|
+
"node_modules/@types/d3-delaunay": {
|
|
2648
|
+
"version": "6.0.4",
|
|
2649
|
+
"resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz",
|
|
2650
|
+
"integrity": "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==",
|
|
2651
|
+
"license": "MIT"
|
|
2652
|
+
},
|
|
2653
|
+
"node_modules/@types/d3-dispatch": {
|
|
2654
|
+
"version": "3.0.7",
|
|
2655
|
+
"resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz",
|
|
2656
|
+
"integrity": "sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==",
|
|
2657
|
+
"license": "MIT"
|
|
2658
|
+
},
|
|
2659
|
+
"node_modules/@types/d3-drag": {
|
|
2660
|
+
"version": "3.0.7",
|
|
2661
|
+
"resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz",
|
|
2662
|
+
"integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==",
|
|
2663
|
+
"license": "MIT",
|
|
2664
|
+
"dependencies": {
|
|
2665
|
+
"@types/d3-selection": "*"
|
|
2666
|
+
}
|
|
2667
|
+
},
|
|
2668
|
+
"node_modules/@types/d3-dsv": {
|
|
2669
|
+
"version": "3.0.7",
|
|
2670
|
+
"resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz",
|
|
2671
|
+
"integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==",
|
|
2672
|
+
"license": "MIT"
|
|
2673
|
+
},
|
|
2674
|
+
"node_modules/@types/d3-ease": {
|
|
2675
|
+
"version": "3.0.2",
|
|
2676
|
+
"resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz",
|
|
2677
|
+
"integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==",
|
|
2678
|
+
"license": "MIT"
|
|
2679
|
+
},
|
|
2680
|
+
"node_modules/@types/d3-fetch": {
|
|
2681
|
+
"version": "3.0.7",
|
|
2682
|
+
"resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz",
|
|
2683
|
+
"integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==",
|
|
2684
|
+
"license": "MIT",
|
|
2685
|
+
"dependencies": {
|
|
2686
|
+
"@types/d3-dsv": "*"
|
|
2687
|
+
}
|
|
2688
|
+
},
|
|
2689
|
+
"node_modules/@types/d3-force": {
|
|
2690
|
+
"version": "3.0.10",
|
|
2691
|
+
"resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz",
|
|
2692
|
+
"integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==",
|
|
2693
|
+
"license": "MIT"
|
|
2694
|
+
},
|
|
2695
|
+
"node_modules/@types/d3-format": {
|
|
2696
|
+
"version": "3.0.4",
|
|
2697
|
+
"resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz",
|
|
2698
|
+
"integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==",
|
|
2699
|
+
"license": "MIT"
|
|
2700
|
+
},
|
|
2701
|
+
"node_modules/@types/d3-geo": {
|
|
2702
|
+
"version": "3.1.0",
|
|
2703
|
+
"resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz",
|
|
2704
|
+
"integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==",
|
|
2705
|
+
"license": "MIT",
|
|
2706
|
+
"dependencies": {
|
|
2707
|
+
"@types/geojson": "*"
|
|
2708
|
+
}
|
|
2709
|
+
},
|
|
2710
|
+
"node_modules/@types/d3-hierarchy": {
|
|
2711
|
+
"version": "3.1.7",
|
|
2712
|
+
"resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz",
|
|
2713
|
+
"integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==",
|
|
2714
|
+
"license": "MIT"
|
|
2715
|
+
},
|
|
2716
|
+
"node_modules/@types/d3-interpolate": {
|
|
2717
|
+
"version": "3.0.4",
|
|
2718
|
+
"resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
|
|
2719
|
+
"integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
|
|
2720
|
+
"license": "MIT",
|
|
2721
|
+
"dependencies": {
|
|
2722
|
+
"@types/d3-color": "*"
|
|
2723
|
+
}
|
|
2724
|
+
},
|
|
2725
|
+
"node_modules/@types/d3-path": {
|
|
2726
|
+
"version": "3.1.1",
|
|
2727
|
+
"resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz",
|
|
2728
|
+
"integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==",
|
|
2729
|
+
"license": "MIT"
|
|
2730
|
+
},
|
|
2731
|
+
"node_modules/@types/d3-polygon": {
|
|
2732
|
+
"version": "3.0.2",
|
|
2733
|
+
"resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz",
|
|
2734
|
+
"integrity": "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==",
|
|
2735
|
+
"license": "MIT"
|
|
2736
|
+
},
|
|
2737
|
+
"node_modules/@types/d3-quadtree": {
|
|
2738
|
+
"version": "3.0.6",
|
|
2739
|
+
"resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz",
|
|
2740
|
+
"integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==",
|
|
2741
|
+
"license": "MIT"
|
|
2742
|
+
},
|
|
2743
|
+
"node_modules/@types/d3-random": {
|
|
2744
|
+
"version": "3.0.3",
|
|
2745
|
+
"resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz",
|
|
2746
|
+
"integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==",
|
|
2747
|
+
"license": "MIT"
|
|
2748
|
+
},
|
|
2749
|
+
"node_modules/@types/d3-scale": {
|
|
2750
|
+
"version": "4.0.9",
|
|
2751
|
+
"resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz",
|
|
2752
|
+
"integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==",
|
|
2753
|
+
"license": "MIT",
|
|
2754
|
+
"dependencies": {
|
|
2755
|
+
"@types/d3-time": "*"
|
|
2756
|
+
}
|
|
2757
|
+
},
|
|
2758
|
+
"node_modules/@types/d3-scale-chromatic": {
|
|
2759
|
+
"version": "3.1.0",
|
|
2760
|
+
"resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
|
|
2761
|
+
"integrity": "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==",
|
|
2762
|
+
"license": "MIT"
|
|
2763
|
+
},
|
|
2764
|
+
"node_modules/@types/d3-selection": {
|
|
2765
|
+
"version": "3.0.11",
|
|
2766
|
+
"resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz",
|
|
2767
|
+
"integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==",
|
|
2768
|
+
"license": "MIT"
|
|
2769
|
+
},
|
|
2770
|
+
"node_modules/@types/d3-shape": {
|
|
2771
|
+
"version": "3.1.7",
|
|
2772
|
+
"resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.7.tgz",
|
|
2773
|
+
"integrity": "sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==",
|
|
2774
|
+
"license": "MIT",
|
|
2775
|
+
"dependencies": {
|
|
2776
|
+
"@types/d3-path": "*"
|
|
2777
|
+
}
|
|
2778
|
+
},
|
|
2779
|
+
"node_modules/@types/d3-time": {
|
|
2780
|
+
"version": "3.0.4",
|
|
2781
|
+
"resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz",
|
|
2782
|
+
"integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==",
|
|
2783
|
+
"license": "MIT"
|
|
2784
|
+
},
|
|
2785
|
+
"node_modules/@types/d3-time-format": {
|
|
2786
|
+
"version": "4.0.3",
|
|
2787
|
+
"resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz",
|
|
2788
|
+
"integrity": "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==",
|
|
2789
|
+
"license": "MIT"
|
|
2790
|
+
},
|
|
2791
|
+
"node_modules/@types/d3-timer": {
|
|
2792
|
+
"version": "3.0.2",
|
|
2793
|
+
"resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz",
|
|
2794
|
+
"integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==",
|
|
2795
|
+
"license": "MIT"
|
|
2796
|
+
},
|
|
2797
|
+
"node_modules/@types/d3-transition": {
|
|
2798
|
+
"version": "3.0.9",
|
|
2799
|
+
"resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz",
|
|
2800
|
+
"integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==",
|
|
2801
|
+
"license": "MIT",
|
|
2802
|
+
"dependencies": {
|
|
2803
|
+
"@types/d3-selection": "*"
|
|
2804
|
+
}
|
|
2805
|
+
},
|
|
2806
|
+
"node_modules/@types/d3-zoom": {
|
|
2807
|
+
"version": "3.0.8",
|
|
2808
|
+
"resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz",
|
|
2809
|
+
"integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==",
|
|
2810
|
+
"license": "MIT",
|
|
2811
|
+
"dependencies": {
|
|
2812
|
+
"@types/d3-interpolate": "*",
|
|
2813
|
+
"@types/d3-selection": "*"
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2460
2816
|
"node_modules/@types/estree": {
|
|
2461
2817
|
"version": "1.0.8",
|
|
2462
2818
|
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
2463
2819
|
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
2464
2820
|
"dev": true
|
|
2465
2821
|
},
|
|
2822
|
+
"node_modules/@types/geojson": {
|
|
2823
|
+
"version": "7946.0.16",
|
|
2824
|
+
"resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz",
|
|
2825
|
+
"integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==",
|
|
2826
|
+
"license": "MIT"
|
|
2827
|
+
},
|
|
2466
2828
|
"node_modules/@types/hast": {
|
|
2467
2829
|
"version": "3.0.4",
|
|
2468
2830
|
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
|
|
@@ -3086,6 +3448,12 @@
|
|
|
3086
3448
|
"url": "https://paulmillr.com/funding/"
|
|
3087
3449
|
}
|
|
3088
3450
|
},
|
|
3451
|
+
"node_modules/classcat": {
|
|
3452
|
+
"version": "5.0.5",
|
|
3453
|
+
"resolved": "https://registry.npmjs.org/classcat/-/classcat-5.0.5.tgz",
|
|
3454
|
+
"integrity": "sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==",
|
|
3455
|
+
"license": "MIT"
|
|
3456
|
+
},
|
|
3089
3457
|
"node_modules/classnames": {
|
|
3090
3458
|
"version": "2.5.1",
|
|
3091
3459
|
"resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz",
|
|
@@ -3222,6 +3590,111 @@
|
|
|
3222
3590
|
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
|
|
3223
3591
|
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
|
|
3224
3592
|
},
|
|
3593
|
+
"node_modules/d3-color": {
|
|
3594
|
+
"version": "3.1.0",
|
|
3595
|
+
"resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
|
|
3596
|
+
"integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
|
|
3597
|
+
"license": "ISC",
|
|
3598
|
+
"engines": {
|
|
3599
|
+
"node": ">=12"
|
|
3600
|
+
}
|
|
3601
|
+
},
|
|
3602
|
+
"node_modules/d3-dispatch": {
|
|
3603
|
+
"version": "3.0.1",
|
|
3604
|
+
"resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz",
|
|
3605
|
+
"integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==",
|
|
3606
|
+
"license": "ISC",
|
|
3607
|
+
"engines": {
|
|
3608
|
+
"node": ">=12"
|
|
3609
|
+
}
|
|
3610
|
+
},
|
|
3611
|
+
"node_modules/d3-drag": {
|
|
3612
|
+
"version": "3.0.0",
|
|
3613
|
+
"resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz",
|
|
3614
|
+
"integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==",
|
|
3615
|
+
"license": "ISC",
|
|
3616
|
+
"dependencies": {
|
|
3617
|
+
"d3-dispatch": "1 - 3",
|
|
3618
|
+
"d3-selection": "3"
|
|
3619
|
+
},
|
|
3620
|
+
"engines": {
|
|
3621
|
+
"node": ">=12"
|
|
3622
|
+
}
|
|
3623
|
+
},
|
|
3624
|
+
"node_modules/d3-ease": {
|
|
3625
|
+
"version": "3.0.1",
|
|
3626
|
+
"resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
|
|
3627
|
+
"integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
|
|
3628
|
+
"license": "BSD-3-Clause",
|
|
3629
|
+
"engines": {
|
|
3630
|
+
"node": ">=12"
|
|
3631
|
+
}
|
|
3632
|
+
},
|
|
3633
|
+
"node_modules/d3-interpolate": {
|
|
3634
|
+
"version": "3.0.1",
|
|
3635
|
+
"resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
|
|
3636
|
+
"integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
|
|
3637
|
+
"license": "ISC",
|
|
3638
|
+
"dependencies": {
|
|
3639
|
+
"d3-color": "1 - 3"
|
|
3640
|
+
},
|
|
3641
|
+
"engines": {
|
|
3642
|
+
"node": ">=12"
|
|
3643
|
+
}
|
|
3644
|
+
},
|
|
3645
|
+
"node_modules/d3-selection": {
|
|
3646
|
+
"version": "3.0.0",
|
|
3647
|
+
"resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz",
|
|
3648
|
+
"integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==",
|
|
3649
|
+
"license": "ISC",
|
|
3650
|
+
"engines": {
|
|
3651
|
+
"node": ">=12"
|
|
3652
|
+
}
|
|
3653
|
+
},
|
|
3654
|
+
"node_modules/d3-timer": {
|
|
3655
|
+
"version": "3.0.1",
|
|
3656
|
+
"resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
|
|
3657
|
+
"integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
|
|
3658
|
+
"license": "ISC",
|
|
3659
|
+
"engines": {
|
|
3660
|
+
"node": ">=12"
|
|
3661
|
+
}
|
|
3662
|
+
},
|
|
3663
|
+
"node_modules/d3-transition": {
|
|
3664
|
+
"version": "3.0.1",
|
|
3665
|
+
"resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz",
|
|
3666
|
+
"integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==",
|
|
3667
|
+
"license": "ISC",
|
|
3668
|
+
"dependencies": {
|
|
3669
|
+
"d3-color": "1 - 3",
|
|
3670
|
+
"d3-dispatch": "1 - 3",
|
|
3671
|
+
"d3-ease": "1 - 3",
|
|
3672
|
+
"d3-interpolate": "1 - 3",
|
|
3673
|
+
"d3-timer": "1 - 3"
|
|
3674
|
+
},
|
|
3675
|
+
"engines": {
|
|
3676
|
+
"node": ">=12"
|
|
3677
|
+
},
|
|
3678
|
+
"peerDependencies": {
|
|
3679
|
+
"d3-selection": "2 - 3"
|
|
3680
|
+
}
|
|
3681
|
+
},
|
|
3682
|
+
"node_modules/d3-zoom": {
|
|
3683
|
+
"version": "3.0.0",
|
|
3684
|
+
"resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz",
|
|
3685
|
+
"integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==",
|
|
3686
|
+
"license": "ISC",
|
|
3687
|
+
"dependencies": {
|
|
3688
|
+
"d3-dispatch": "1 - 3",
|
|
3689
|
+
"d3-drag": "2 - 3",
|
|
3690
|
+
"d3-interpolate": "1 - 3",
|
|
3691
|
+
"d3-selection": "2 - 3",
|
|
3692
|
+
"d3-transition": "2 - 3"
|
|
3693
|
+
},
|
|
3694
|
+
"engines": {
|
|
3695
|
+
"node": ">=12"
|
|
3696
|
+
}
|
|
3697
|
+
},
|
|
3225
3698
|
"node_modules/data-view-buffer": {
|
|
3226
3699
|
"version": "1.0.2",
|
|
3227
3700
|
"resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
|
|
@@ -6532,6 +7005,24 @@
|
|
|
6532
7005
|
"lodash": "^4.0.1"
|
|
6533
7006
|
}
|
|
6534
7007
|
},
|
|
7008
|
+
"node_modules/reactflow": {
|
|
7009
|
+
"version": "11.11.4",
|
|
7010
|
+
"resolved": "https://registry.npmjs.org/reactflow/-/reactflow-11.11.4.tgz",
|
|
7011
|
+
"integrity": "sha512-70FOtJkUWH3BAOsN+LU9lCrKoKbtOPnz2uq0CV2PLdNSwxTXOhCbsZr50GmZ+Rtw3jx8Uv7/vBFtCGixLfd4Og==",
|
|
7012
|
+
"license": "MIT",
|
|
7013
|
+
"dependencies": {
|
|
7014
|
+
"@reactflow/background": "11.3.14",
|
|
7015
|
+
"@reactflow/controls": "11.2.14",
|
|
7016
|
+
"@reactflow/core": "11.11.4",
|
|
7017
|
+
"@reactflow/minimap": "11.7.14",
|
|
7018
|
+
"@reactflow/node-resizer": "2.2.14",
|
|
7019
|
+
"@reactflow/node-toolbar": "1.3.14"
|
|
7020
|
+
},
|
|
7021
|
+
"peerDependencies": {
|
|
7022
|
+
"react": ">=17",
|
|
7023
|
+
"react-dom": ">=17"
|
|
7024
|
+
}
|
|
7025
|
+
},
|
|
6535
7026
|
"node_modules/readdirp": {
|
|
6536
7027
|
"version": "4.1.2",
|
|
6537
7028
|
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
|
|
@@ -7997,7 +8488,6 @@
|
|
|
7997
8488
|
"version": "1.5.0",
|
|
7998
8489
|
"resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz",
|
|
7999
8490
|
"integrity": "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==",
|
|
8000
|
-
"peer": true,
|
|
8001
8491
|
"peerDependencies": {
|
|
8002
8492
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
8003
8493
|
}
|
|
@@ -8018,10 +8508,11 @@
|
|
|
8018
8508
|
}
|
|
8019
8509
|
},
|
|
8020
8510
|
"node_modules/vite": {
|
|
8021
|
-
"version": "6.
|
|
8022
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-6.
|
|
8023
|
-
"integrity": "sha512
|
|
8511
|
+
"version": "6.4.1",
|
|
8512
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
|
|
8513
|
+
"integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
|
|
8024
8514
|
"dev": true,
|
|
8515
|
+
"license": "MIT",
|
|
8025
8516
|
"dependencies": {
|
|
8026
8517
|
"esbuild": "^0.25.0",
|
|
8027
8518
|
"fdir": "^6.4.4",
|
|
@@ -8287,6 +8778,34 @@
|
|
|
8287
8778
|
"funding": {
|
|
8288
8779
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
8289
8780
|
}
|
|
8781
|
+
},
|
|
8782
|
+
"node_modules/zustand": {
|
|
8783
|
+
"version": "4.5.7",
|
|
8784
|
+
"resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz",
|
|
8785
|
+
"integrity": "sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==",
|
|
8786
|
+
"license": "MIT",
|
|
8787
|
+
"dependencies": {
|
|
8788
|
+
"use-sync-external-store": "^1.2.2"
|
|
8789
|
+
},
|
|
8790
|
+
"engines": {
|
|
8791
|
+
"node": ">=12.7.0"
|
|
8792
|
+
},
|
|
8793
|
+
"peerDependencies": {
|
|
8794
|
+
"@types/react": ">=16.8",
|
|
8795
|
+
"immer": ">=9.0.6",
|
|
8796
|
+
"react": ">=16.8"
|
|
8797
|
+
},
|
|
8798
|
+
"peerDependenciesMeta": {
|
|
8799
|
+
"@types/react": {
|
|
8800
|
+
"optional": true
|
|
8801
|
+
},
|
|
8802
|
+
"immer": {
|
|
8803
|
+
"optional": true
|
|
8804
|
+
},
|
|
8805
|
+
"react": {
|
|
8806
|
+
"optional": true
|
|
8807
|
+
}
|
|
8808
|
+
}
|
|
8290
8809
|
}
|
|
8291
8810
|
}
|
|
8292
8811
|
}
|
package/client/package.json
CHANGED
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"i18next": "^25.4.0",
|
|
50
50
|
"lowlight": "^3.3.0",
|
|
51
51
|
"react": "^18.3.1",
|
|
52
|
+
"reactflow": "^11.0.0-next.0",
|
|
52
53
|
"react-big-calendar": "^1.15.0",
|
|
53
54
|
"react-color": "^2.19.3",
|
|
54
55
|
"react-dom": "^18.3.1",
|
|
@@ -70,6 +71,6 @@
|
|
|
70
71
|
"globals": "^15.15.0",
|
|
71
72
|
"process": "^0.11.10",
|
|
72
73
|
"sass-embedded": "^1.90.0",
|
|
73
|
-
"vite": "^6.
|
|
74
|
+
"vite": "^6.4.1"
|
|
74
75
|
}
|
|
75
76
|
}
|
package/client/src/App.scss
CHANGED
|
@@ -178,6 +178,12 @@ h2 {
|
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
+
.btn .no-mobile-text {
|
|
182
|
+
@media only screen and (max-width: 768px){
|
|
183
|
+
display: none;
|
|
184
|
+
}
|
|
185
|
+
display: block;
|
|
186
|
+
}
|
|
181
187
|
.model-list {
|
|
182
188
|
max-height: 30vh;
|
|
183
189
|
|
|
@@ -348,8 +354,14 @@ input[type=color] {
|
|
|
348
354
|
min-width: 80px;
|
|
349
355
|
height: 30px;
|
|
350
356
|
}
|
|
351
|
-
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
#content .models {
|
|
352
361
|
width: 100%;
|
|
362
|
+
h2 {
|
|
363
|
+
margin-bottom: 0;
|
|
364
|
+
}
|
|
353
365
|
@media only screen and (min-width: 1024px){
|
|
354
366
|
max-width: 320px;
|
|
355
367
|
}
|
|
@@ -557,6 +569,7 @@ label + .field, label + input, label + select {
|
|
|
557
569
|
margin: 2px;
|
|
558
570
|
}
|
|
559
571
|
}
|
|
572
|
+
|
|
560
573
|
.languages {
|
|
561
574
|
display: none;
|
|
562
575
|
gap: 8px;
|
package/client/src/Dashboard.jsx
CHANGED
|
@@ -354,6 +354,10 @@ export function DashboardsPage() {
|
|
|
354
354
|
return (
|
|
355
355
|
<div className="dashboards-page">
|
|
356
356
|
<div className={"flex right actions"}>
|
|
357
|
+
<Button onClick={() => {
|
|
358
|
+
nav('/user/'+getUserHash(me)+'/dashboards');
|
|
359
|
+
}}><FaEye /> <Trans i18nKey={"dashboards.title"}>Tableaux de bord</Trans></Button>
|
|
360
|
+
|
|
357
361
|
<Button onClick={() => {
|
|
358
362
|
nav("/user/"+getUserHash(me)+"/?model="+(selectedModel?.name||'dashboard'));
|
|
359
363
|
}}><FaNoteSticky /> <Trans i18nKey={"models"}>Modèles</Trans></Button>
|