@cyberismo/backend 0.0.14 → 0.0.16
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/app.d.ts +21 -0
- package/dist/app.js +9 -3
- package/dist/app.js.map +1 -1
- package/dist/common/validationSchemas.d.ts +48 -0
- package/dist/domain/calculations/index.d.ts +15 -0
- package/dist/domain/calculations/index.js +1 -53
- package/dist/domain/calculations/index.js.map +1 -1
- package/dist/domain/calculations/schema.d.ts +16 -0
- package/dist/domain/calculations/schema.js +0 -7
- package/dist/domain/calculations/schema.js.map +1 -1
- package/dist/domain/calculations/service.d.ts +14 -0
- package/dist/domain/calculations/service.js +0 -5
- package/dist/domain/calculations/service.js.map +1 -1
- package/dist/domain/cardTypes/index.d.ts +15 -0
- package/dist/domain/cardTypes/schema.d.ts +17 -0
- package/dist/domain/cardTypes/service.d.ts +15 -0
- package/dist/domain/cards/index.d.ts +15 -0
- package/dist/domain/cards/index.js +24 -8
- package/dist/domain/cards/index.js.map +1 -1
- package/dist/domain/cards/lib.d.ts +29 -0
- package/dist/domain/cards/lib.js +74 -13
- package/dist/domain/cards/lib.js.map +1 -1
- package/dist/domain/cards/service.d.ts +61 -0
- package/dist/domain/cards/service.js +22 -18
- package/dist/domain/cards/service.js.map +1 -1
- package/dist/domain/fieldTypes/index.d.ts +15 -0
- package/dist/domain/fieldTypes/schema.d.ts +28 -0
- package/dist/domain/fieldTypes/service.d.ts +16 -0
- package/dist/domain/graphModels/index.d.ts +15 -0
- package/dist/domain/graphModels/schema.d.ts +16 -0
- package/dist/domain/graphModels/service.d.ts +14 -0
- package/dist/domain/graphViews/index.d.ts +15 -0
- package/dist/domain/graphViews/schema.d.ts +4 -0
- package/dist/domain/graphViews/service.d.ts +14 -0
- package/dist/domain/labels/index.d.ts +15 -0
- package/dist/domain/labels/index.js +33 -0
- package/dist/domain/labels/index.js.map +1 -0
- package/dist/domain/labels/service.d.ts +19 -0
- package/dist/domain/labels/service.js +21 -0
- package/dist/domain/labels/service.js.map +1 -0
- package/dist/domain/linkTypes/index.d.ts +15 -0
- package/dist/domain/linkTypes/schema.d.ts +16 -0
- package/dist/domain/linkTypes/service.d.ts +15 -0
- package/dist/domain/logicPrograms/index.d.ts +15 -0
- package/dist/domain/logicPrograms/service.d.ts +15 -0
- package/dist/domain/reports/index.d.ts +15 -0
- package/dist/domain/reports/schema.d.ts +16 -0
- package/dist/domain/reports/service.d.ts +14 -0
- package/dist/domain/resources/index.d.ts +15 -0
- package/dist/domain/resources/index.js +2 -20
- package/dist/domain/resources/index.js.map +1 -1
- package/dist/domain/resources/schema.d.ts +60 -0
- package/dist/domain/resources/schema.js +12 -1
- package/dist/domain/resources/schema.js.map +1 -1
- package/dist/domain/resources/service.d.ts +36 -0
- package/dist/domain/resources/service.js +14 -34
- package/dist/domain/resources/service.js.map +1 -1
- package/dist/domain/templates/index.d.ts +15 -0
- package/dist/domain/templates/index.js +1 -1
- package/dist/domain/templates/index.js.map +1 -1
- package/dist/domain/templates/schema.d.ts +22 -0
- package/dist/domain/templates/service.d.ts +16 -0
- package/dist/domain/tree/index.d.ts +15 -0
- package/dist/domain/tree/index.js +3 -2
- package/dist/domain/tree/index.js.map +1 -1
- package/dist/domain/tree/service.d.ts +22 -0
- package/dist/domain/tree/service.js +10 -2
- package/dist/domain/tree/service.js.map +1 -1
- package/dist/domain/workflows/index.d.ts +15 -0
- package/dist/domain/workflows/schema.d.ts +16 -0
- package/dist/domain/workflows/service.d.ts +14 -0
- package/dist/export.d.ts +42 -0
- package/dist/export.js +48 -152
- package/dist/export.js.map +1 -1
- package/dist/index.d.ts +13 -0
- package/dist/index.js +3 -4
- package/dist/index.js.map +1 -1
- package/dist/main.d.ts +1 -0
- package/dist/middleware/commandManager.d.ts +20 -0
- package/dist/middleware/tree.d.ts +9 -0
- package/dist/middleware/tree.js +13 -0
- package/dist/middleware/tree.js.map +1 -0
- package/dist/middleware/zvalidator.d.ts +9 -0
- package/dist/public/THIRD-PARTY.txt +164 -164
- package/dist/public/assets/{index-OjHhVGiV.js → index-D410yunq.js} +89249 -81256
- package/dist/public/assets/index-DnK7MBer.css +1 -0
- package/dist/public/index.html +2 -2
- package/dist/types.d.ts +29 -0
- package/dist/utils.d.ts +11 -0
- package/dist/utils.js +0 -32
- package/dist/utils.js.map +1 -1
- package/package.json +8 -8
- package/src/app.ts +11 -4
- package/src/domain/calculations/index.ts +1 -68
- package/src/domain/calculations/schema.ts +0 -9
- package/src/domain/calculations/service.ts +0 -11
- package/src/domain/cards/index.ts +33 -8
- package/src/domain/cards/lib.ts +95 -22
- package/src/domain/cards/service.ts +38 -37
- package/src/domain/labels/index.ts +36 -0
- package/src/domain/labels/service.ts +23 -0
- package/src/domain/resources/index.ts +3 -41
- package/src/domain/resources/schema.ts +13 -1
- package/src/domain/resources/service.ts +28 -67
- package/src/domain/templates/index.ts +1 -1
- package/src/domain/tree/index.ts +10 -3
- package/src/domain/tree/service.ts +15 -1
- package/src/export.ts +59 -192
- package/src/index.ts +7 -4
- package/src/middleware/tree.ts +17 -0
- package/src/types.ts +13 -0
- package/src/utils.ts +0 -39
- package/dist/public/assets/index-DA46eVkH.css +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Name: react
|
|
2
|
-
Version: 19.
|
|
2
|
+
Version: 19.2.0
|
|
3
3
|
License: MIT
|
|
4
4
|
Private: false
|
|
5
5
|
Description: React is a JavaScript library for building user interfaces.
|
|
@@ -33,7 +33,7 @@ SOFTWARE.
|
|
|
33
33
|
---
|
|
34
34
|
|
|
35
35
|
Name: react-dom
|
|
36
|
-
Version: 19.
|
|
36
|
+
Version: 19.2.0
|
|
37
37
|
License: MIT
|
|
38
38
|
Private: false
|
|
39
39
|
Description: React package for working with the DOM.
|
|
@@ -67,7 +67,7 @@ SOFTWARE.
|
|
|
67
67
|
---
|
|
68
68
|
|
|
69
69
|
Name: scheduler
|
|
70
|
-
Version: 0.
|
|
70
|
+
Version: 0.27.0
|
|
71
71
|
License: MIT
|
|
72
72
|
Private: false
|
|
73
73
|
Description: Cooperative scheduler for the browser environment.
|
|
@@ -911,6 +911,76 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
911
911
|
|
|
912
912
|
---
|
|
913
913
|
|
|
914
|
+
Name: @mui/material
|
|
915
|
+
Version: 7.3.2
|
|
916
|
+
License: MIT
|
|
917
|
+
Private: false
|
|
918
|
+
Description: Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
|
|
919
|
+
Repository: git+https://github.com/mui/material-ui.git
|
|
920
|
+
Homepage: https://mui.com/material-ui/
|
|
921
|
+
Author: MUI Team
|
|
922
|
+
License Copyright:
|
|
923
|
+
===
|
|
924
|
+
|
|
925
|
+
The MIT License (MIT)
|
|
926
|
+
|
|
927
|
+
Copyright (c) 2014 Call-Em-All
|
|
928
|
+
|
|
929
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
930
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
931
|
+
in the Software without restriction, including without limitation the rights
|
|
932
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
933
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
934
|
+
furnished to do so, subject to the following conditions:
|
|
935
|
+
|
|
936
|
+
The above copyright notice and this permission notice shall be included in all
|
|
937
|
+
copies or substantial portions of the Software.
|
|
938
|
+
|
|
939
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
940
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
941
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
942
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
943
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
944
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
945
|
+
SOFTWARE.
|
|
946
|
+
|
|
947
|
+
---
|
|
948
|
+
|
|
949
|
+
Name: @mui/icons-material
|
|
950
|
+
Version: 7.3.2
|
|
951
|
+
License: MIT
|
|
952
|
+
Private: false
|
|
953
|
+
Description: Material Design icons distributed as SVG React components.
|
|
954
|
+
Repository: git+https://github.com/mui/material-ui.git
|
|
955
|
+
Homepage: https://mui.com/material-ui/material-icons/
|
|
956
|
+
Author: MUI Team
|
|
957
|
+
License Copyright:
|
|
958
|
+
===
|
|
959
|
+
|
|
960
|
+
The MIT License (MIT)
|
|
961
|
+
|
|
962
|
+
Copyright (c) 2014 Call-Em-All
|
|
963
|
+
|
|
964
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
965
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
966
|
+
in the Software without restriction, including without limitation the rights
|
|
967
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
968
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
969
|
+
furnished to do so, subject to the following conditions:
|
|
970
|
+
|
|
971
|
+
The above copyright notice and this permission notice shall be included in all
|
|
972
|
+
copies or substantial portions of the Software.
|
|
973
|
+
|
|
974
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
975
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
976
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
977
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
978
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
979
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
980
|
+
SOFTWARE.
|
|
981
|
+
|
|
982
|
+
---
|
|
983
|
+
|
|
914
984
|
Name: use-sync-external-store
|
|
915
985
|
Version: 1.5.0
|
|
916
986
|
License: MIT
|
|
@@ -1395,7 +1465,7 @@ SOFTWARE.
|
|
|
1395
1465
|
---
|
|
1396
1466
|
|
|
1397
1467
|
Name: @cyberismo/data-handler
|
|
1398
|
-
Version: 0.0.
|
|
1468
|
+
Version: 0.0.16
|
|
1399
1469
|
License: AGPL-3.0
|
|
1400
1470
|
Private: false
|
|
1401
1471
|
Description: Command handler for cards and web service
|
|
@@ -1510,6 +1580,41 @@ SOFTWARE.
|
|
|
1510
1580
|
|
|
1511
1581
|
---
|
|
1512
1582
|
|
|
1583
|
+
Name: i18next
|
|
1584
|
+
Version: 25.5.2
|
|
1585
|
+
License: MIT
|
|
1586
|
+
Private: false
|
|
1587
|
+
Description: i18next internationalization framework
|
|
1588
|
+
Repository: https://github.com/i18next/i18next.git
|
|
1589
|
+
Homepage: https://www.i18next.com
|
|
1590
|
+
Author: Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)
|
|
1591
|
+
License Copyright:
|
|
1592
|
+
===
|
|
1593
|
+
|
|
1594
|
+
The MIT License (MIT)
|
|
1595
|
+
|
|
1596
|
+
Copyright (c) 2025 i18next
|
|
1597
|
+
|
|
1598
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1599
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1600
|
+
in the Software without restriction, including without limitation the rights
|
|
1601
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1602
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1603
|
+
furnished to do so, subject to the following conditions:
|
|
1604
|
+
|
|
1605
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1606
|
+
copies or substantial portions of the Software.
|
|
1607
|
+
|
|
1608
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1609
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1610
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1611
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1612
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1613
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1614
|
+
SOFTWARE.
|
|
1615
|
+
|
|
1616
|
+
---
|
|
1617
|
+
|
|
1513
1618
|
Name: void-elements
|
|
1514
1619
|
Version: 3.1.0
|
|
1515
1620
|
License: MIT
|
|
@@ -1558,7 +1663,7 @@ Author: Henrik Joreteg <henrik@joreteg.com>
|
|
|
1558
1663
|
---
|
|
1559
1664
|
|
|
1560
1665
|
Name: react-i18next
|
|
1561
|
-
Version:
|
|
1666
|
+
Version: 16.2.1
|
|
1562
1667
|
License: MIT
|
|
1563
1668
|
Private: false
|
|
1564
1669
|
Description: Internationalization for react done right. Using the i18next i18n ecosystem.
|
|
@@ -1627,76 +1732,6 @@ SOFTWARE.
|
|
|
1627
1732
|
|
|
1628
1733
|
---
|
|
1629
1734
|
|
|
1630
|
-
Name: @mui/material
|
|
1631
|
-
Version: 7.3.2
|
|
1632
|
-
License: MIT
|
|
1633
|
-
Private: false
|
|
1634
|
-
Description: Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
|
|
1635
|
-
Repository: git+https://github.com/mui/material-ui.git
|
|
1636
|
-
Homepage: https://mui.com/material-ui/
|
|
1637
|
-
Author: MUI Team
|
|
1638
|
-
License Copyright:
|
|
1639
|
-
===
|
|
1640
|
-
|
|
1641
|
-
The MIT License (MIT)
|
|
1642
|
-
|
|
1643
|
-
Copyright (c) 2014 Call-Em-All
|
|
1644
|
-
|
|
1645
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1646
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1647
|
-
in the Software without restriction, including without limitation the rights
|
|
1648
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1649
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1650
|
-
furnished to do so, subject to the following conditions:
|
|
1651
|
-
|
|
1652
|
-
The above copyright notice and this permission notice shall be included in all
|
|
1653
|
-
copies or substantial portions of the Software.
|
|
1654
|
-
|
|
1655
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1656
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1657
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1658
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1659
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1660
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1661
|
-
SOFTWARE.
|
|
1662
|
-
|
|
1663
|
-
---
|
|
1664
|
-
|
|
1665
|
-
Name: @mui/icons-material
|
|
1666
|
-
Version: 7.3.2
|
|
1667
|
-
License: MIT
|
|
1668
|
-
Private: false
|
|
1669
|
-
Description: Material Design icons distributed as SVG React components.
|
|
1670
|
-
Repository: git+https://github.com/mui/material-ui.git
|
|
1671
|
-
Homepage: https://mui.com/material-ui/material-icons/
|
|
1672
|
-
Author: MUI Team
|
|
1673
|
-
License Copyright:
|
|
1674
|
-
===
|
|
1675
|
-
|
|
1676
|
-
The MIT License (MIT)
|
|
1677
|
-
|
|
1678
|
-
Copyright (c) 2014 Call-Em-All
|
|
1679
|
-
|
|
1680
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1681
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1682
|
-
in the Software without restriction, including without limitation the rights
|
|
1683
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1684
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1685
|
-
furnished to do so, subject to the following conditions:
|
|
1686
|
-
|
|
1687
|
-
The above copyright notice and this permission notice shall be included in all
|
|
1688
|
-
copies or substantial portions of the Software.
|
|
1689
|
-
|
|
1690
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1691
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1692
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1693
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1694
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1695
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1696
|
-
SOFTWARE.
|
|
1697
|
-
|
|
1698
|
-
---
|
|
1699
|
-
|
|
1700
1735
|
Name: react-resizable-panels
|
|
1701
1736
|
Version: 3.0.6
|
|
1702
1737
|
License: MIT
|
|
@@ -2108,7 +2143,7 @@ THE SOFTWARE.
|
|
|
2108
2143
|
---
|
|
2109
2144
|
|
|
2110
2145
|
Name: semver
|
|
2111
|
-
Version: 7.7.
|
|
2146
|
+
Version: 7.7.3
|
|
2112
2147
|
License: ISC
|
|
2113
2148
|
Private: false
|
|
2114
2149
|
Description: The semantic version parser used by npm.
|
|
@@ -2136,11 +2171,11 @@ IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
2136
2171
|
---
|
|
2137
2172
|
|
|
2138
2173
|
Name: vega-util
|
|
2139
|
-
Version: 2.
|
|
2174
|
+
Version: 2.1.0
|
|
2140
2175
|
License: BSD-3-Clause
|
|
2141
2176
|
Private: false
|
|
2142
2177
|
Description: JavaScript utilities for Vega.
|
|
2143
|
-
Repository:
|
|
2178
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2144
2179
|
Author: Vega (https://vega.github.io)
|
|
2145
2180
|
License Copyright:
|
|
2146
2181
|
===
|
|
@@ -2338,11 +2373,11 @@ THIS SOFTWARE.
|
|
|
2338
2373
|
---
|
|
2339
2374
|
|
|
2340
2375
|
Name: vega-time
|
|
2341
|
-
Version: 3.
|
|
2376
|
+
Version: 3.1.0
|
|
2342
2377
|
License: BSD-3-Clause
|
|
2343
2378
|
Private: false
|
|
2344
2379
|
Description: JavaScript date/time utilities for Vega.
|
|
2345
|
-
Repository:
|
|
2380
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2346
2381
|
Author: Vega (https://vega.github.io)
|
|
2347
2382
|
License Copyright:
|
|
2348
2383
|
===
|
|
@@ -2405,11 +2440,11 @@ THIS SOFTWARE.
|
|
|
2405
2440
|
---
|
|
2406
2441
|
|
|
2407
2442
|
Name: vega-format
|
|
2408
|
-
Version: 2.
|
|
2443
|
+
Version: 2.1.0
|
|
2409
2444
|
License: BSD-3-Clause
|
|
2410
2445
|
Private: false
|
|
2411
2446
|
Description: JavaScript string formatting utilities for Vega.
|
|
2412
|
-
Repository:
|
|
2447
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2413
2448
|
Author: Vega (https://vega.github.io)
|
|
2414
2449
|
License Copyright:
|
|
2415
2450
|
===
|
|
@@ -2445,11 +2480,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2445
2480
|
---
|
|
2446
2481
|
|
|
2447
2482
|
Name: vega-loader
|
|
2448
|
-
Version: 5.
|
|
2483
|
+
Version: 5.1.0
|
|
2449
2484
|
License: BSD-3-Clause
|
|
2450
2485
|
Private: false
|
|
2451
2486
|
Description: Network request and file loading utilities.
|
|
2452
|
-
Repository:
|
|
2487
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2453
2488
|
Author: Vega (https://vega.github.io)
|
|
2454
2489
|
License Copyright:
|
|
2455
2490
|
===
|
|
@@ -2485,11 +2520,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2485
2520
|
---
|
|
2486
2521
|
|
|
2487
2522
|
Name: vega-dataflow
|
|
2488
|
-
Version: 6.
|
|
2523
|
+
Version: 6.1.0
|
|
2489
2524
|
License: BSD-3-Clause
|
|
2490
2525
|
Private: false
|
|
2491
2526
|
Description: Reactive dataflow processing.
|
|
2492
|
-
Repository:
|
|
2527
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2493
2528
|
Author: Vega (https://vega.github.io)
|
|
2494
2529
|
License Copyright:
|
|
2495
2530
|
===
|
|
@@ -2565,11 +2600,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2565
2600
|
---
|
|
2566
2601
|
|
|
2567
2602
|
Name: vega-transforms
|
|
2568
|
-
Version: 5.
|
|
2603
|
+
Version: 5.1.0
|
|
2569
2604
|
License: BSD-3-Clause
|
|
2570
2605
|
Private: false
|
|
2571
2606
|
Description: Data processing transforms for Vega dataflows.
|
|
2572
|
-
Repository:
|
|
2607
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2573
2608
|
Author: Vega (https://vega.github.io)
|
|
2574
2609
|
License Copyright:
|
|
2575
2610
|
===
|
|
@@ -2822,11 +2857,11 @@ specific language governing permissions and limitations under the License.
|
|
|
2822
2857
|
---
|
|
2823
2858
|
|
|
2824
2859
|
Name: vega-scale
|
|
2825
|
-
Version: 8.
|
|
2860
|
+
Version: 8.1.0
|
|
2826
2861
|
License: BSD-3-Clause
|
|
2827
2862
|
Private: false
|
|
2828
2863
|
Description: Scales and color schemes for visual encoding.
|
|
2829
|
-
Repository:
|
|
2864
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2830
2865
|
Author: Vega (https://vega.github.io)
|
|
2831
2866
|
License Copyright:
|
|
2832
2867
|
===
|
|
@@ -2862,11 +2897,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2862
2897
|
---
|
|
2863
2898
|
|
|
2864
2899
|
Name: vega-scenegraph
|
|
2865
|
-
Version: 5.
|
|
2900
|
+
Version: 5.1.0
|
|
2866
2901
|
License: BSD-3-Clause
|
|
2867
2902
|
Private: false
|
|
2868
2903
|
Description: Vega scenegraph and renderers.
|
|
2869
|
-
Repository:
|
|
2904
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2870
2905
|
Author: Vega (https://vega.github.io)
|
|
2871
2906
|
License Copyright:
|
|
2872
2907
|
===
|
|
@@ -2902,11 +2937,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2902
2937
|
---
|
|
2903
2938
|
|
|
2904
2939
|
Name: vega-view-transforms
|
|
2905
|
-
Version: 5.
|
|
2940
|
+
Version: 5.1.0
|
|
2906
2941
|
License: BSD-3-Clause
|
|
2907
2942
|
Private: false
|
|
2908
2943
|
Description: View-specific transforms for Vega dataflows.
|
|
2909
|
-
Repository:
|
|
2944
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2910
2945
|
Author: Vega (https://vega.github.io)
|
|
2911
2946
|
License Copyright:
|
|
2912
2947
|
===
|
|
@@ -2942,11 +2977,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2942
2977
|
---
|
|
2943
2978
|
|
|
2944
2979
|
Name: vega-encode
|
|
2945
|
-
Version: 5.
|
|
2980
|
+
Version: 5.1.0
|
|
2946
2981
|
License: BSD-3-Clause
|
|
2947
2982
|
Private: false
|
|
2948
2983
|
Description: Visual encoding transforms for Vega dataflows.
|
|
2949
|
-
Repository:
|
|
2984
|
+
Repository: git+https://github.com/vega/vega.git
|
|
2950
2985
|
Author: Vega (https://vega.github.io)
|
|
2951
2986
|
License Copyright:
|
|
2952
2987
|
===
|
|
@@ -3084,11 +3119,11 @@ THE SOFTWARE.
|
|
|
3084
3119
|
---
|
|
3085
3120
|
|
|
3086
3121
|
Name: vega-projection
|
|
3087
|
-
Version: 2.
|
|
3122
|
+
Version: 2.1.0
|
|
3088
3123
|
License: BSD-3-Clause
|
|
3089
3124
|
Private: false
|
|
3090
3125
|
Description: Projections for cartographic mapping.
|
|
3091
|
-
Repository:
|
|
3126
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3092
3127
|
Author: Vega (https://vega.github.io)
|
|
3093
3128
|
License Copyright:
|
|
3094
3129
|
===
|
|
@@ -3124,11 +3159,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3124
3159
|
---
|
|
3125
3160
|
|
|
3126
3161
|
Name: vega-geo
|
|
3127
|
-
Version: 5.
|
|
3162
|
+
Version: 5.1.0
|
|
3128
3163
|
License: BSD-3-Clause
|
|
3129
3164
|
Private: false
|
|
3130
3165
|
Description: Geographic data transforms for Vega dataflows.
|
|
3131
|
-
Repository:
|
|
3166
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3132
3167
|
Author: Vega (https://vega.github.io)
|
|
3133
3168
|
License Copyright:
|
|
3134
3169
|
===
|
|
@@ -3272,11 +3307,11 @@ THIS SOFTWARE.
|
|
|
3272
3307
|
---
|
|
3273
3308
|
|
|
3274
3309
|
Name: vega-force
|
|
3275
|
-
Version: 5.
|
|
3310
|
+
Version: 5.1.0
|
|
3276
3311
|
License: BSD-3-Clause
|
|
3277
3312
|
Private: false
|
|
3278
3313
|
Description: Force simulation transform for Vega dataflows.
|
|
3279
|
-
Repository:
|
|
3314
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3280
3315
|
Author: Vega (https://vega.github.io)
|
|
3281
3316
|
License Copyright:
|
|
3282
3317
|
===
|
|
@@ -3339,11 +3374,11 @@ THIS SOFTWARE.
|
|
|
3339
3374
|
---
|
|
3340
3375
|
|
|
3341
3376
|
Name: vega-hierarchy
|
|
3342
|
-
Version: 5.
|
|
3377
|
+
Version: 5.1.0
|
|
3343
3378
|
License: BSD-3-Clause
|
|
3344
3379
|
Private: false
|
|
3345
3380
|
Description: Hierarchical layout transforms for Vega dataflows.
|
|
3346
|
-
Repository:
|
|
3381
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3347
3382
|
Author: Vega (https://vega.github.io)
|
|
3348
3383
|
License Copyright:
|
|
3349
3384
|
===
|
|
@@ -3379,11 +3414,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3379
3414
|
---
|
|
3380
3415
|
|
|
3381
3416
|
Name: vega-label
|
|
3382
|
-
Version: 2.
|
|
3417
|
+
Version: 2.1.0
|
|
3383
3418
|
License: BSD-3-Clause
|
|
3384
3419
|
Private: false
|
|
3385
3420
|
Description: Label layout transform for Vega dataflows.
|
|
3386
|
-
Repository:
|
|
3421
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3387
3422
|
Author: UW Interactive Data Lab (http://idl.cs.washington.edu)
|
|
3388
3423
|
License Copyright:
|
|
3389
3424
|
===
|
|
@@ -3419,11 +3454,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3419
3454
|
---
|
|
3420
3455
|
|
|
3421
3456
|
Name: vega-regression
|
|
3422
|
-
Version: 2.
|
|
3457
|
+
Version: 2.1.0
|
|
3423
3458
|
License: BSD-3-Clause
|
|
3424
3459
|
Private: false
|
|
3425
3460
|
Description: Regression transform for Vega dataflows.
|
|
3426
|
-
Repository:
|
|
3461
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3427
3462
|
Author: Vega (https://vega.github.io)
|
|
3428
3463
|
License Copyright:
|
|
3429
3464
|
===
|
|
@@ -3555,11 +3590,11 @@ THIS SOFTWARE.
|
|
|
3555
3590
|
---
|
|
3556
3591
|
|
|
3557
3592
|
Name: vega-voronoi
|
|
3558
|
-
Version: 5.
|
|
3593
|
+
Version: 5.1.0
|
|
3559
3594
|
License: BSD-3-Clause
|
|
3560
3595
|
Private: false
|
|
3561
3596
|
Description: Voronoi diagram transform for Vega dataflows.
|
|
3562
|
-
Repository:
|
|
3597
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3563
3598
|
Author: Vega (https://vega.github.io)
|
|
3564
3599
|
License Copyright:
|
|
3565
3600
|
===
|
|
@@ -3595,11 +3630,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3595
3630
|
---
|
|
3596
3631
|
|
|
3597
3632
|
Name: vega-wordcloud
|
|
3598
|
-
Version: 5.
|
|
3633
|
+
Version: 5.1.0
|
|
3599
3634
|
License: BSD-3-Clause
|
|
3600
3635
|
Private: false
|
|
3601
3636
|
Description: Wordcloud layout transform for Vega dataflows.
|
|
3602
|
-
Repository:
|
|
3637
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3603
3638
|
Author: Vega (https://vega.github.io)
|
|
3604
3639
|
License Copyright:
|
|
3605
3640
|
===
|
|
@@ -3635,11 +3670,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3635
3670
|
---
|
|
3636
3671
|
|
|
3637
3672
|
Name: vega-crossfilter
|
|
3638
|
-
Version: 5.
|
|
3673
|
+
Version: 5.1.0
|
|
3639
3674
|
License: BSD-3-Clause
|
|
3640
3675
|
Private: false
|
|
3641
3676
|
Description: Indexed cross-filtering for Vega dataflows.
|
|
3642
|
-
Repository:
|
|
3677
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3643
3678
|
Author: Vega (https://vega.github.io)
|
|
3644
3679
|
License Copyright:
|
|
3645
3680
|
===
|
|
@@ -3675,11 +3710,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3675
3710
|
---
|
|
3676
3711
|
|
|
3677
3712
|
Name: vega-expression
|
|
3678
|
-
Version: 6.
|
|
3713
|
+
Version: 6.1.0
|
|
3679
3714
|
License: BSD-3-Clause
|
|
3680
3715
|
Private: false
|
|
3681
3716
|
Description: Vega expression parser and code generator.
|
|
3682
|
-
Repository:
|
|
3717
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3683
3718
|
Author: Vega (https://vega.github.io)
|
|
3684
3719
|
License Copyright:
|
|
3685
3720
|
===
|
|
@@ -3715,11 +3750,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3715
3750
|
---
|
|
3716
3751
|
|
|
3717
3752
|
Name: vega-selections
|
|
3718
|
-
Version: 6.
|
|
3753
|
+
Version: 6.1.0
|
|
3719
3754
|
License: BSD-3-Clause
|
|
3720
3755
|
Private: false
|
|
3721
3756
|
Description: Vega expression functions for Vega-Lite selections.
|
|
3722
|
-
Repository:
|
|
3757
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3723
3758
|
Author: Arvind Satyanarayan (http://arvindsatya.com)
|
|
3724
3759
|
License Copyright:
|
|
3725
3760
|
===
|
|
@@ -3755,11 +3790,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3755
3790
|
---
|
|
3756
3791
|
|
|
3757
3792
|
Name: vega-functions
|
|
3758
|
-
Version: 6.
|
|
3793
|
+
Version: 6.1.0
|
|
3759
3794
|
License: BSD-3-Clause
|
|
3760
3795
|
Private: false
|
|
3761
3796
|
Description: Custom functions for the Vega expression language.
|
|
3762
|
-
Repository:
|
|
3797
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3763
3798
|
Author: Vega (https://vega.github.io)
|
|
3764
3799
|
License Copyright:
|
|
3765
3800
|
===
|
|
@@ -3795,11 +3830,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3795
3830
|
---
|
|
3796
3831
|
|
|
3797
3832
|
Name: vega-runtime
|
|
3798
|
-
Version: 7.
|
|
3833
|
+
Version: 7.1.0
|
|
3799
3834
|
License: BSD-3-Clause
|
|
3800
3835
|
Private: false
|
|
3801
3836
|
Description: Runtime support for Vega dataflows.
|
|
3802
|
-
Repository:
|
|
3837
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3803
3838
|
Author: Vega (https://vega.github.io)
|
|
3804
3839
|
License Copyright:
|
|
3805
3840
|
===
|
|
@@ -3835,11 +3870,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3835
3870
|
---
|
|
3836
3871
|
|
|
3837
3872
|
Name: vega-view
|
|
3838
|
-
Version: 6.
|
|
3873
|
+
Version: 6.1.0
|
|
3839
3874
|
License: BSD-3-Clause
|
|
3840
3875
|
Private: false
|
|
3841
3876
|
Description: View component and transforms for Vega visualizations.
|
|
3842
|
-
Repository:
|
|
3877
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3843
3878
|
Author: Vega (https://vega.github.io)
|
|
3844
3879
|
License Copyright:
|
|
3845
3880
|
===
|
|
@@ -3915,11 +3950,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3915
3950
|
---
|
|
3916
3951
|
|
|
3917
3952
|
Name: vega-parser
|
|
3918
|
-
Version: 7.
|
|
3953
|
+
Version: 7.1.0
|
|
3919
3954
|
License: BSD-3-Clause
|
|
3920
3955
|
Private: false
|
|
3921
3956
|
Description: Parse Vega specifications to runtime dataflows.
|
|
3922
|
-
Repository:
|
|
3957
|
+
Repository: git+https://github.com/vega/vega.git
|
|
3923
3958
|
Author: Vega (https://vega.github.io)
|
|
3924
3959
|
License Copyright:
|
|
3925
3960
|
===
|
|
@@ -3955,7 +3990,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3955
3990
|
---
|
|
3956
3991
|
|
|
3957
3992
|
Name: vega
|
|
3958
|
-
Version: 6.
|
|
3993
|
+
Version: 6.2.0
|
|
3959
3994
|
License: BSD-3-Clause
|
|
3960
3995
|
Private: false
|
|
3961
3996
|
Description: The Vega visualization grammar.
|
|
@@ -3995,7 +4030,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
3995
4030
|
---
|
|
3996
4031
|
|
|
3997
4032
|
Name: vega-lite
|
|
3998
|
-
Version: 6.
|
|
4033
|
+
Version: 6.4.1
|
|
3999
4034
|
License: BSD-3-Clause
|
|
4000
4035
|
Private: false
|
|
4001
4036
|
Description: Vega-Lite is a concise high-level language for interactive visualization.
|
|
@@ -4702,7 +4737,7 @@ THE SOFTWARE.
|
|
|
4702
4737
|
---
|
|
4703
4738
|
|
|
4704
4739
|
Name: @codemirror/commands
|
|
4705
|
-
Version: 6.
|
|
4740
|
+
Version: 6.9.0
|
|
4706
4741
|
License: MIT
|
|
4707
4742
|
Private: false
|
|
4708
4743
|
Description: Collection of editing commands for the CodeMirror code editor
|
|
@@ -4995,41 +5030,6 @@ furnished to do so, subject to the following conditions:
|
|
|
4995
5030
|
The above copyright notice and this permission notice shall be included in all
|
|
4996
5031
|
copies or substantial portions of the Software.
|
|
4997
5032
|
|
|
4998
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
4999
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5000
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
5001
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
5002
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
5003
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
5004
|
-
SOFTWARE.
|
|
5005
|
-
|
|
5006
|
-
---
|
|
5007
|
-
|
|
5008
|
-
Name: i18next
|
|
5009
|
-
Version: 25.5.2
|
|
5010
|
-
License: MIT
|
|
5011
|
-
Private: false
|
|
5012
|
-
Description: i18next internationalization framework
|
|
5013
|
-
Repository: https://github.com/i18next/i18next.git
|
|
5014
|
-
Homepage: https://www.i18next.com
|
|
5015
|
-
Author: Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)
|
|
5016
|
-
License Copyright:
|
|
5017
|
-
===
|
|
5018
|
-
|
|
5019
|
-
The MIT License (MIT)
|
|
5020
|
-
|
|
5021
|
-
Copyright (c) 2025 i18next
|
|
5022
|
-
|
|
5023
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5024
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
5025
|
-
in the Software without restriction, including without limitation the rights
|
|
5026
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
5027
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
5028
|
-
furnished to do so, subject to the following conditions:
|
|
5029
|
-
|
|
5030
|
-
The above copyright notice and this permission notice shall be included in all
|
|
5031
|
-
copies or substantial portions of the Software.
|
|
5032
|
-
|
|
5033
5033
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
5034
5034
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
5035
5035
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|