@cyberismo/backend 0.0.10 → 0.0.12
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/domain/templates/index.js +40 -1
- package/dist/domain/templates/index.js.map +1 -1
- package/dist/domain/templates/schema.js +6 -0
- package/dist/domain/templates/schema.js.map +1 -1
- package/dist/domain/templates/service.js +12 -0
- package/dist/domain/templates/service.js.map +1 -1
- package/dist/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/dist/public/THIRD-PARTY.txt +64 -108
- package/dist/public/assets/{index-jhDO7xT5.js → index-D46PNX0J.js} +53084 -58719
- package/dist/public/index.html +1 -1
- package/package.json +6 -8
- package/src/domain/templates/index.ts +48 -1
- package/src/domain/templates/schema.ts +7 -0
- package/src/domain/templates/service.ts +24 -0
- package/src/main.ts +2 -2
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import { Hono } from 'hono';
|
|
14
14
|
import { isSSGContext } from '../../export.js';
|
|
15
15
|
import * as templateService from './service.js';
|
|
16
|
-
import { createTemplateSchema } from './schema.js';
|
|
16
|
+
import { createTemplateSchema, addTemplateCardSchema } from './schema.js';
|
|
17
17
|
import { zValidator } from '../../middleware/zvalidator.js';
|
|
18
18
|
const router = new Hono();
|
|
19
19
|
/**
|
|
@@ -77,5 +77,44 @@ router.post('/', zValidator('json', createTemplateSchema), async (c) => {
|
|
|
77
77
|
await templateService.createTemplate(commands, identifier);
|
|
78
78
|
return c.json({ message: 'Template created successfully' });
|
|
79
79
|
});
|
|
80
|
+
/**
|
|
81
|
+
* @swagger
|
|
82
|
+
* /api/templates/card:
|
|
83
|
+
* post:
|
|
84
|
+
* summary: Create a new template card
|
|
85
|
+
* description: Adds a new card to a template. New card will be created as a child of the parentKey, if parentKey value is defined.
|
|
86
|
+
* requestBody:
|
|
87
|
+
* required: true
|
|
88
|
+
* content:
|
|
89
|
+
* application/json:
|
|
90
|
+
* schema:
|
|
91
|
+
* type: object
|
|
92
|
+
* properties:
|
|
93
|
+
* template:
|
|
94
|
+
* type: string
|
|
95
|
+
* cardType:
|
|
96
|
+
* type: string
|
|
97
|
+
* parentKey:
|
|
98
|
+
* type: string
|
|
99
|
+
* count:
|
|
100
|
+
* type: number
|
|
101
|
+
* description: Number of cards to create
|
|
102
|
+
* required:
|
|
103
|
+
* - template
|
|
104
|
+
* - cardType
|
|
105
|
+
* responses:
|
|
106
|
+
* 200:
|
|
107
|
+
* description: Template card(s) created successfully
|
|
108
|
+
* 400:
|
|
109
|
+
* description: Invalid request body
|
|
110
|
+
* 500:
|
|
111
|
+
* description: Server error
|
|
112
|
+
*/
|
|
113
|
+
router.post('/card', zValidator('json', addTemplateCardSchema), async (c) => {
|
|
114
|
+
const commands = c.get('commands');
|
|
115
|
+
const { template, cardType, parentKey, count } = c.req.valid('json');
|
|
116
|
+
const added = await templateService.addTemplateCard(commands, template, cardType, parentKey, count);
|
|
117
|
+
return c.json({ cards: added });
|
|
118
|
+
});
|
|
80
119
|
export default router;
|
|
81
120
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/domain/templates/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;EAWE;AAEF,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAC5B,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,KAAK,eAAe,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/domain/templates/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;EAWE;AAEF,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAC5B,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,KAAK,eAAe,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AAC1E,OAAO,EAAE,UAAU,EAAE,MAAM,gCAAgC,CAAC;AAE5D,MAAM,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC;AAE1B;;;;;;;;;;;;;GAaG;AACH,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE;IAC1B,0CAA0C;IAC1C,IAAI,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC;QACpB,OAAO,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACpB,CAAC;IACD,MAAM,QAAQ,GAAG,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IAEnC,IAAI,CAAC;QACH,MAAM,QAAQ,GAAG,MAAM,eAAe,CAAC,uBAAuB,CAAC,QAAQ,CAAC,CAAC;QACzE,OAAO,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IAC1B,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,CAAC,IAAI,CACX;YACE,KAAK,EAAE,GAAG,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,eAAe,cAAc,CAAC,CAAC,GAAG,CAAC,aAAa,CAAC,EAAE;SACvG,EACD,GAAG,CACJ,CAAC;IACJ,CAAC;AACH,CAAC,CAAC,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,UAAU,CAAC,MAAM,EAAE,oBAAoB,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE;IACrE,MAAM,QAAQ,GAAG,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACnC,MAAM,EAAE,UAAU,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAE3C,MAAM,eAAe,CAAC,cAAc,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;IAC3D,OAAO,CAAC,CAAC,IAAI,CAAC,EAAE,OAAO,EAAE,+BAA+B,EAAE,CAAC,CAAC;AAC9D,CAAC,CAAC,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,UAAU,CAAC,MAAM,EAAE,qBAAqB,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE;IAC1E,MAAM,QAAQ,GAAG,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACnC,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAErE,MAAM,KAAK,GAAG,MAAM,eAAe,CAAC,eAAe,CACjD,QAAQ,EACR,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,KAAK,CACN,CAAC;IACF,OAAO,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,CAAC;AAClC,CAAC,CAAC,CAAC;AAEH,eAAe,MAAM,CAAC"}
|
|
@@ -15,4 +15,10 @@ import { identifierSchema } from '../../common/validationSchemas.js';
|
|
|
15
15
|
export const createTemplateSchema = z.object({
|
|
16
16
|
identifier: identifierSchema,
|
|
17
17
|
});
|
|
18
|
+
export const addTemplateCardSchema = z.object({
|
|
19
|
+
template: z.string(),
|
|
20
|
+
cardType: z.string().min(1, 'cardType is required'),
|
|
21
|
+
parentKey: z.string().optional(),
|
|
22
|
+
count: z.number().int().positive().optional(),
|
|
23
|
+
});
|
|
18
24
|
//# sourceMappingURL=schema.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../src/domain/templates/schema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;EAWE;AAEF,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AAErE,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,UAAU,EAAE,gBAAgB;CAC7B,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../src/domain/templates/schema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;EAWE;AAEF,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AAErE,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,UAAU,EAAE,gBAAgB;CAC7B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,sBAAsB,CAAC;IACnD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC9C,CAAC,CAAC"}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
details. You should have received a copy of the GNU Affero General Public
|
|
11
11
|
License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
12
12
|
*/
|
|
13
|
+
import { resourceName } from '@cyberismo/data-handler';
|
|
13
14
|
export async function getTemplatesWithDetails(commands) {
|
|
14
15
|
const response = await commands.showCmd.showTemplatesWithDetails();
|
|
15
16
|
if (!response) {
|
|
@@ -20,4 +21,15 @@ export async function getTemplatesWithDetails(commands) {
|
|
|
20
21
|
export async function createTemplate(commands, templateName) {
|
|
21
22
|
await commands.createCmd.createTemplate(templateName, '');
|
|
22
23
|
}
|
|
24
|
+
export async function addTemplateCard(commands, template, cardType, parentKey, count) {
|
|
25
|
+
const { identifier, type } = resourceName(template);
|
|
26
|
+
if (type !== 'templates') {
|
|
27
|
+
throw new Error('Invalid template resource');
|
|
28
|
+
}
|
|
29
|
+
const added = await commands.createCmd.addCards(cardType, identifier, parentKey, count);
|
|
30
|
+
if (!added || added.length === 0) {
|
|
31
|
+
throw new Error('No cards created');
|
|
32
|
+
}
|
|
33
|
+
return added;
|
|
34
|
+
}
|
|
23
35
|
//# sourceMappingURL=service.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../src/domain/templates/service.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;EAWE;
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../src/domain/templates/service.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;EAWE;AAGF,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAEvD,MAAM,CAAC,KAAK,UAAU,uBAAuB,CAAC,QAAwB;IACpE,MAAM,QAAQ,GAAG,MAAM,QAAQ,CAAC,OAAO,CAAC,wBAAwB,EAAE,CAAC;IACnE,IAAI,CAAC,QAAQ,EAAE,CAAC;QACd,MAAM,IAAI,KAAK,CAAC,oBAAoB,CAAC,CAAC;IACxC,CAAC;IACD,OAAO,QAAQ,CAAC;AAClB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,cAAc,CAClC,QAAwB,EACxB,YAAoB;IAEpB,MAAM,QAAQ,CAAC,SAAS,CAAC,cAAc,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC;AAC5D,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,eAAe,CACnC,QAAwB,EACxB,QAAgB,EAChB,QAAgB,EAChB,SAAkB,EAClB,KAAc;IAEd,MAAM,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,YAAY,CAAC,QAAQ,CAAC,CAAC;IACpD,IAAI,IAAI,KAAK,WAAW,EAAE,CAAC;QACzB,MAAM,IAAI,KAAK,CAAC,2BAA2B,CAAC,CAAC;IAC/C,CAAC;IACD,MAAM,KAAK,GAAG,MAAM,QAAQ,CAAC,SAAS,CAAC,QAAQ,CAC7C,QAAQ,EACR,UAAU,EACV,SAAS,EACT,KAAK,CACN,CAAC;IACF,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QACjC,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC,CAAC;IACtC,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC"}
|
package/dist/main.js
CHANGED
|
@@ -16,9 +16,9 @@ import dotenv from 'dotenv';
|
|
|
16
16
|
// Load environment variables from .env file
|
|
17
17
|
dotenv.config();
|
|
18
18
|
if (process.argv.includes('--export')) {
|
|
19
|
-
exportSite(process.env.npm_config_project_path || '');
|
|
19
|
+
await exportSite(process.env.npm_config_project_path || '');
|
|
20
20
|
}
|
|
21
21
|
else {
|
|
22
|
-
startServer(process.env.npm_config_project_path || '');
|
|
22
|
+
await startServer(process.env.npm_config_project_path || '');
|
|
23
23
|
}
|
|
24
24
|
//# sourceMappingURL=main.js.map
|
package/dist/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;EAWE;AACF,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,MAAM,MAAM,QAAQ,CAAC;AAE5B,4CAA4C;AAC5C,MAAM,CAAC,MAAM,EAAE,CAAC;AAEhB,IAAI,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE,CAAC;IACtC,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,uBAAuB,IAAI,EAAE,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;EAWE;AACF,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,MAAM,MAAM,QAAQ,CAAC;AAE5B,4CAA4C;AAC5C,MAAM,CAAC,MAAM,EAAE,CAAC;AAEhB,IAAI,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE,CAAC;IACtC,MAAM,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,uBAAuB,IAAI,EAAE,CAAC,CAAC;AAC9D,CAAC;KAAM,CAAC;IACN,MAAM,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,uBAAuB,IAAI,EAAE,CAAC,CAAC;AAC/D,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Name: react
|
|
2
|
-
Version: 19.1.
|
|
2
|
+
Version: 19.1.1
|
|
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.1.
|
|
36
|
+
Version: 19.1.1
|
|
37
37
|
License: MIT
|
|
38
38
|
Private: false
|
|
39
39
|
Description: React package for working with the DOM.
|
|
@@ -101,7 +101,7 @@ SOFTWARE.
|
|
|
101
101
|
---
|
|
102
102
|
|
|
103
103
|
Name: react-router
|
|
104
|
-
Version: 7.
|
|
104
|
+
Version: 7.8.2
|
|
105
105
|
License: MIT
|
|
106
106
|
Private: false
|
|
107
107
|
Description: Declarative routing for React
|
|
@@ -207,7 +207,7 @@ SOFTWARE.
|
|
|
207
207
|
---
|
|
208
208
|
|
|
209
209
|
Name: @babel/runtime
|
|
210
|
-
Version: 7.28.
|
|
210
|
+
Version: 7.28.4
|
|
211
211
|
License: MIT
|
|
212
212
|
Private: false
|
|
213
213
|
Description: babel's modular runtime helpers
|
|
@@ -276,7 +276,7 @@ SOFTWARE.
|
|
|
276
276
|
---
|
|
277
277
|
|
|
278
278
|
Name: @emotion/is-prop-valid
|
|
279
|
-
Version: 1.
|
|
279
|
+
Version: 1.4.0
|
|
280
280
|
License: MIT
|
|
281
281
|
Private: false
|
|
282
282
|
Description: A function to check whether a prop is valid for HTML and SVG elements
|
|
@@ -716,40 +716,6 @@ SOFTWARE.
|
|
|
716
716
|
|
|
717
717
|
---
|
|
718
718
|
|
|
719
|
-
Name: prop-types
|
|
720
|
-
Version: 15.8.1
|
|
721
|
-
License: MIT
|
|
722
|
-
Private: false
|
|
723
|
-
Description: Runtime type checking for React props and similar objects.
|
|
724
|
-
Repository: undefined
|
|
725
|
-
Homepage: https://facebook.github.io/react/
|
|
726
|
-
License Copyright:
|
|
727
|
-
===
|
|
728
|
-
|
|
729
|
-
MIT License
|
|
730
|
-
|
|
731
|
-
Copyright (c) 2013-present, Facebook, Inc.
|
|
732
|
-
|
|
733
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
734
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
735
|
-
in the Software without restriction, including without limitation the rights
|
|
736
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
737
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
738
|
-
furnished to do so, subject to the following conditions:
|
|
739
|
-
|
|
740
|
-
The above copyright notice and this permission notice shall be included in all
|
|
741
|
-
copies or substantial portions of the Software.
|
|
742
|
-
|
|
743
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
744
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
745
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
746
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
747
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
748
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
749
|
-
SOFTWARE.
|
|
750
|
-
|
|
751
|
-
---
|
|
752
|
-
|
|
753
719
|
Name: @mui/styled-engine
|
|
754
720
|
Version: 5.16.14
|
|
755
721
|
License: MIT
|
|
@@ -1326,7 +1292,7 @@ SOFTWARE.
|
|
|
1326
1292
|
---
|
|
1327
1293
|
|
|
1328
1294
|
Name: swr
|
|
1329
|
-
Version: 2.3.
|
|
1295
|
+
Version: 2.3.6
|
|
1330
1296
|
License: MIT
|
|
1331
1297
|
Private: false
|
|
1332
1298
|
Description: React Hooks library for remote data fetching
|
|
@@ -1394,7 +1360,7 @@ THE SOFTWARE.
|
|
|
1394
1360
|
---
|
|
1395
1361
|
|
|
1396
1362
|
Name: react-hook-form
|
|
1397
|
-
Version: 7.
|
|
1363
|
+
Version: 7.62.0
|
|
1398
1364
|
License: MIT
|
|
1399
1365
|
Private: false
|
|
1400
1366
|
Description: Performant, flexible and extensible forms library for React Hooks
|
|
@@ -1429,7 +1395,7 @@ SOFTWARE.
|
|
|
1429
1395
|
---
|
|
1430
1396
|
|
|
1431
1397
|
Name: @cyberismo/data-handler
|
|
1432
|
-
Version: 0.0.
|
|
1398
|
+
Version: 0.0.12
|
|
1433
1399
|
License: AGPL-3.0
|
|
1434
1400
|
Private: false
|
|
1435
1401
|
Description: Command handler for cards and web service
|
|
@@ -1510,7 +1476,7 @@ SOFTWARE.
|
|
|
1510
1476
|
---
|
|
1511
1477
|
|
|
1512
1478
|
Name: @reduxjs/toolkit
|
|
1513
|
-
Version: 2.
|
|
1479
|
+
Version: 2.9.0
|
|
1514
1480
|
License: MIT
|
|
1515
1481
|
Private: false
|
|
1516
1482
|
Description: The official, opinionated, batteries-included toolset for efficient Redux development
|
|
@@ -1592,7 +1558,7 @@ Author: Henrik Joreteg <henrik@joreteg.com>
|
|
|
1592
1558
|
---
|
|
1593
1559
|
|
|
1594
1560
|
Name: react-i18next
|
|
1595
|
-
Version: 15.
|
|
1561
|
+
Version: 15.7.3
|
|
1596
1562
|
License: MIT
|
|
1597
1563
|
Private: false
|
|
1598
1564
|
Description: Internationalization for react done right. Using the i18next i18n ecosystem.
|
|
@@ -1662,7 +1628,7 @@ SOFTWARE.
|
|
|
1662
1628
|
---
|
|
1663
1629
|
|
|
1664
1630
|
Name: @mui/material
|
|
1665
|
-
Version: 7.3.
|
|
1631
|
+
Version: 7.3.2
|
|
1666
1632
|
License: MIT
|
|
1667
1633
|
Private: false
|
|
1668
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.
|
|
@@ -1697,7 +1663,7 @@ SOFTWARE.
|
|
|
1697
1663
|
---
|
|
1698
1664
|
|
|
1699
1665
|
Name: @mui/icons-material
|
|
1700
|
-
Version: 7.
|
|
1666
|
+
Version: 7.3.2
|
|
1701
1667
|
License: MIT
|
|
1702
1668
|
Private: false
|
|
1703
1669
|
Description: Material Design icons distributed as SVG React components.
|
|
@@ -1732,36 +1698,12 @@ SOFTWARE.
|
|
|
1732
1698
|
---
|
|
1733
1699
|
|
|
1734
1700
|
Name: react-resizable-panels
|
|
1735
|
-
Version: 3.0.
|
|
1701
|
+
Version: 3.0.5
|
|
1736
1702
|
License: MIT
|
|
1737
1703
|
Private: false
|
|
1738
1704
|
Description: React components for resizable panel groups/layouts
|
|
1739
1705
|
Repository: git+https://github.com/bvaughn/react-resizable-panels.git
|
|
1740
1706
|
Author: Brian Vaughn <brian.david.vaughn@gmail.com>
|
|
1741
|
-
License Copyright:
|
|
1742
|
-
===
|
|
1743
|
-
|
|
1744
|
-
MIT License
|
|
1745
|
-
|
|
1746
|
-
Copyright (c) 2023 Brian Vaughn
|
|
1747
|
-
|
|
1748
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1749
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1750
|
-
in the Software without restriction, including without limitation the rights
|
|
1751
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1752
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1753
|
-
furnished to do so, subject to the following conditions:
|
|
1754
|
-
|
|
1755
|
-
The above copyright notice and this permission notice shall be included in all
|
|
1756
|
-
copies or substantial portions of the Software.
|
|
1757
|
-
|
|
1758
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1759
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1760
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1761
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1762
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1763
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1764
|
-
SOFTWARE.
|
|
1765
1707
|
|
|
1766
1708
|
---
|
|
1767
1709
|
|
|
@@ -2069,32 +2011,6 @@ OTHER DEALINGS IN THE SOFTWARE.
|
|
|
2069
2011
|
|
|
2070
2012
|
---
|
|
2071
2013
|
|
|
2072
|
-
Name: react-vega
|
|
2073
|
-
Version: 7.7.1
|
|
2074
|
-
License: Apache-2.0
|
|
2075
|
-
Private: false
|
|
2076
|
-
Description: Convert Vega spec into React class conveniently
|
|
2077
|
-
Repository: undefined
|
|
2078
|
-
Author: Krist Wongsuphasawat <krist.wongz@gmail.com> (http://kristw.yellowpigz.com)
|
|
2079
|
-
License Copyright:
|
|
2080
|
-
===
|
|
2081
|
-
|
|
2082
|
-
Copyright 2016 Krist Wongsuphasawat <krist.wongz@gmail.com> (http://kristw.yellowpigz.com)
|
|
2083
|
-
|
|
2084
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2085
|
-
you may not use this file except in compliance with the License.
|
|
2086
|
-
You may obtain a copy of the License at
|
|
2087
|
-
|
|
2088
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
2089
|
-
|
|
2090
|
-
Unless required by applicable law or agreed to in writing, software
|
|
2091
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
2092
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2093
|
-
See the License for the specific language governing permissions and
|
|
2094
|
-
limitations under the License.
|
|
2095
|
-
|
|
2096
|
-
---
|
|
2097
|
-
|
|
2098
2014
|
Name: tslib
|
|
2099
2015
|
Version: 2.8.1
|
|
2100
2016
|
License: 0BSD
|
|
@@ -4079,7 +3995,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
4079
3995
|
---
|
|
4080
3996
|
|
|
4081
3997
|
Name: vega-lite
|
|
4082
|
-
Version: 6.
|
|
3998
|
+
Version: 6.3.0
|
|
4083
3999
|
License: BSD-3-Clause
|
|
4084
4000
|
Private: false
|
|
4085
4001
|
Description: Vega-Lite is a concise high-level language for interactive visualization.
|
|
@@ -4229,8 +4145,48 @@ Contributors:
|
|
|
4229
4145
|
|
|
4230
4146
|
---
|
|
4231
4147
|
|
|
4148
|
+
Name: react-vega
|
|
4149
|
+
Version: 8.0.0
|
|
4150
|
+
License: null
|
|
4151
|
+
Private: false
|
|
4152
|
+
Description: A React wrapper for vega-embed
|
|
4153
|
+
Repository: undefined
|
|
4154
|
+
Author: Vega (https://vega.github.io)
|
|
4155
|
+
License Copyright:
|
|
4156
|
+
===
|
|
4157
|
+
|
|
4158
|
+
Copyright (c) 2025, Vega
|
|
4159
|
+
All rights reserved.
|
|
4160
|
+
|
|
4161
|
+
Redistribution and use in source and binary forms, with or without
|
|
4162
|
+
modification, are permitted provided that the following conditions are met:
|
|
4163
|
+
|
|
4164
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
4165
|
+
list of conditions and the following disclaimer.
|
|
4166
|
+
|
|
4167
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
4168
|
+
this list of conditions and the following disclaimer in the documentation
|
|
4169
|
+
and/or other materials provided with the distribution.
|
|
4170
|
+
|
|
4171
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
4172
|
+
may be used to endorse or promote products derived from this software
|
|
4173
|
+
without specific prior written permission.
|
|
4174
|
+
|
|
4175
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
4176
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
4177
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
4178
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
4179
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
4180
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
4181
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
4182
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
4183
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
4184
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
4185
|
+
|
|
4186
|
+
---
|
|
4187
|
+
|
|
4232
4188
|
Name: html-react-parser
|
|
4233
|
-
Version: 5.2.
|
|
4189
|
+
Version: 5.2.6
|
|
4234
4190
|
License: MIT
|
|
4235
4191
|
Private: false
|
|
4236
4192
|
Description: HTML to React parser.
|
|
@@ -4309,11 +4265,11 @@ Repository: https://github.com/remarkablemark/react-dom-core
|
|
|
4309
4265
|
---
|
|
4310
4266
|
|
|
4311
4267
|
Name: style-to-object
|
|
4312
|
-
Version: 1.0.
|
|
4268
|
+
Version: 1.0.9
|
|
4313
4269
|
License: MIT
|
|
4314
4270
|
Private: false
|
|
4315
4271
|
Description: Parse CSS inline style to JavaScript object.
|
|
4316
|
-
Repository: https://github.com/remarkablemark/style-to-object
|
|
4272
|
+
Repository: git+https://github.com/remarkablemark/style-to-object.git
|
|
4317
4273
|
Author: Mark <mark@remarkablemark.org>
|
|
4318
4274
|
License Copyright:
|
|
4319
4275
|
===
|
|
@@ -4365,11 +4321,11 @@ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
4365
4321
|
---
|
|
4366
4322
|
|
|
4367
4323
|
Name: style-to-js
|
|
4368
|
-
Version: 1.1.
|
|
4324
|
+
Version: 1.1.17
|
|
4369
4325
|
License: MIT
|
|
4370
4326
|
Private: false
|
|
4371
4327
|
Description: Parses CSS inline style to JavaScript object (camelCased).
|
|
4372
|
-
Repository: https://github.com/remarkablemark/style-to-js
|
|
4328
|
+
Repository: git+https://github.com/remarkablemark/style-to-js.git
|
|
4373
4329
|
Author: Mark <mark@remarkablemark.org>
|
|
4374
4330
|
License Copyright:
|
|
4375
4331
|
===
|
|
@@ -4610,7 +4566,7 @@ THE SOFTWARE.
|
|
|
4610
4566
|
---
|
|
4611
4567
|
|
|
4612
4568
|
Name: @codemirror/view
|
|
4613
|
-
Version: 6.
|
|
4569
|
+
Version: 6.38.2
|
|
4614
4570
|
License: MIT
|
|
4615
4571
|
Private: false
|
|
4616
4572
|
Description: DOM view component for the CodeMirror code editor
|
|
@@ -4712,7 +4668,7 @@ THE SOFTWARE.
|
|
|
4712
4668
|
---
|
|
4713
4669
|
|
|
4714
4670
|
Name: @codemirror/language
|
|
4715
|
-
Version: 6.11.
|
|
4671
|
+
Version: 6.11.3
|
|
4716
4672
|
License: MIT
|
|
4717
4673
|
Private: false
|
|
4718
4674
|
Description: Language support infrastructure for the CodeMirror code editor
|
|
@@ -4882,7 +4838,7 @@ THE SOFTWARE.
|
|
|
4882
4838
|
---
|
|
4883
4839
|
|
|
4884
4840
|
Name: @uiw/codemirror-extensions-basic-setup
|
|
4885
|
-
Version: 4.
|
|
4841
|
+
Version: 4.25.1
|
|
4886
4842
|
License: MIT
|
|
4887
4843
|
Private: false
|
|
4888
4844
|
Description: Basic configuration for the CodeMirror6 code editor.
|
|
@@ -4927,7 +4883,7 @@ THE SOFTWARE.
|
|
|
4927
4883
|
---
|
|
4928
4884
|
|
|
4929
4885
|
Name: @uiw/react-codemirror
|
|
4930
|
-
Version: 4.
|
|
4886
|
+
Version: 4.25.1
|
|
4931
4887
|
License: MIT
|
|
4932
4888
|
Private: false
|
|
4933
4889
|
Description: CodeMirror component for React.
|
|
@@ -5050,7 +5006,7 @@ SOFTWARE.
|
|
|
5050
5006
|
---
|
|
5051
5007
|
|
|
5052
5008
|
Name: i18next
|
|
5053
|
-
Version: 25.2
|
|
5009
|
+
Version: 25.5.2
|
|
5054
5010
|
License: MIT
|
|
5055
5011
|
Private: false
|
|
5056
5012
|
Description: i18next internationalization framework
|