@cratis/components 3.6.0 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -1
- package/package.json +20 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Cratis Components
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
React components for CQRS and event-sourced applications built with [Cratis Arc](https://github.com/Cratis/Arc) — command dialogs, typed forms, and query-backed data tables. The components consume Arc's generated TypeScript proxies, so commands, queries, and read models flow fully typed from your ASP.NET Core backend into the UI, including event-sourced applications backed by [Cratis Chronicle](https://github.com/Cratis/Chronicle).
|
|
4
4
|
|
|
5
5
|
## Requirements
|
|
6
6
|
|
|
@@ -809,3 +809,13 @@ If using TypeScript 4.7+, try updating your `tsconfig.json`:
|
|
|
809
809
|
### Import Errors
|
|
810
810
|
|
|
811
811
|
Ensure you're using the correct import paths. The package uses case-sensitive paths that match the actual component names.
|
|
812
|
+
|
|
813
|
+
## Part of the Cratis ecosystem
|
|
814
|
+
|
|
815
|
+
Cratis Components is part of [Cratis](https://www.cratis.io) — tools for building event-sourced and CQRS applications:
|
|
816
|
+
|
|
817
|
+
- [Arc](https://github.com/Cratis/Arc) — the CQRS application framework for ASP.NET Core whose generated proxies these components consume
|
|
818
|
+
- [Chronicle](https://github.com/Cratis/Chronicle) — the event-sourcing database and runtime at the center of the stack
|
|
819
|
+
- [Fundamentals](https://github.com/Cratis/Fundamentals) — the shared .NET and TypeScript building blocks beneath the stack
|
|
820
|
+
|
|
821
|
+
Read the docs at [cratis.io](https://www.cratis.io/components/) or join the community on [Discord](https://discord.gg/kt4AMpV8WV).
|
package/package.json
CHANGED
|
@@ -1,8 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cratis/components",
|
|
3
|
-
"version": "3.6.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "3.6.1",
|
|
4
|
+
"description": "React components for CQRS and event-sourced apps — command dialogs, typed forms, and query-backed data tables for Cratis Arc",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"react-components",
|
|
8
|
+
"component-library",
|
|
9
|
+
"cqrs",
|
|
10
|
+
"event-sourcing",
|
|
11
|
+
"cratis",
|
|
12
|
+
"arc",
|
|
13
|
+
"chronicle",
|
|
14
|
+
"commands",
|
|
15
|
+
"queries",
|
|
16
|
+
"data-table",
|
|
17
|
+
"forms",
|
|
18
|
+
"typescript"
|
|
19
|
+
],
|
|
5
20
|
"author": "Cratis",
|
|
21
|
+
"homepage": "https://www.cratis.io/components/",
|
|
6
22
|
"license": "MIT",
|
|
7
23
|
"repository": {
|
|
8
24
|
"type": "git",
|
|
@@ -149,12 +165,12 @@
|
|
|
149
165
|
"dependencies": {
|
|
150
166
|
"allotment": "1.20.5",
|
|
151
167
|
"framer-motion": "13.1.1",
|
|
152
|
-
"pixi.js": "^8.20.
|
|
168
|
+
"pixi.js": "^8.20.1",
|
|
153
169
|
"react-icons": "5.7.0",
|
|
154
170
|
"ts-deepmerge": "8.0.0"
|
|
155
171
|
},
|
|
156
172
|
"devDependencies": {
|
|
157
|
-
"@cratis/arc.vite": "22.
|
|
173
|
+
"@cratis/arc.vite": "22.4.0",
|
|
158
174
|
"@primereact/core": "11.1.0",
|
|
159
175
|
"@primereact/headless": "11.1.0",
|
|
160
176
|
"@primereact/hooks": "11.1.0",
|