@arkcit/engine 0.3.0
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 +68 -0
- package/dist/UIEngine.d.ts +6 -0
- package/dist/UIEngine.js +3235 -0
- package/dist/bindings.d.ts +8 -0
- package/dist/bindings.js +146 -0
- package/dist/components/index.d.ts +17 -0
- package/dist/components/index.js +143 -0
- package/dist/core/index.d.ts +4 -0
- package/dist/core/index.js +9 -0
- package/dist/form/engineFormValidation.d.ts +2 -0
- package/dist/form/engineFormValidation.js +241 -0
- package/dist/form.d.ts +67 -0
- package/dist/form.js +241 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +3336 -0
- package/dist/layout.d.ts +6 -0
- package/dist/layout.js +82 -0
- package/dist/preview/index.d.ts +63 -0
- package/dist/preview/index.js +1514 -0
- package/dist/react-web/index.d.ts +8 -0
- package/dist/react-web/index.js +3246 -0
- package/dist/registry.d.ts +2 -0
- package/dist/registry.js +0 -0
- package/dist/render-layer/index.d.ts +1 -0
- package/dist/render-layer/index.js +13 -0
- package/dist/renderStudioForm-CPQEzvT7.d.ts +75 -0
- package/dist/renderers/index.d.ts +8 -0
- package/dist/renderers/index.js +1570 -0
- package/dist/runtime/index.d.ts +1 -0
- package/dist/runtime/index.js +0 -0
- package/dist/schema/index.d.ts +1 -0
- package/dist/schema/index.js +0 -0
- package/dist/studio-bridge/index.d.ts +501 -0
- package/dist/studio-bridge/index.js +2840 -0
- package/dist/studioProps.d.ts +8 -0
- package/dist/studioProps.js +97 -0
- package/dist/types-9TZ2lQDP.d.ts +60 -0
- package/dist/types-CyAE6ZLH.d.ts +19 -0
- package/dist/types.d.ts +16 -0
- package/dist/types.js +0 -0
- package/dist/wizardEditingHandlers-D50tR-6n.d.ts +163 -0
- package/package.json +160 -0
package/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# @arkcit/engine
|
|
2
|
+
|
|
3
|
+
Shared adapter-layer package for the Arkcit platform.
|
|
4
|
+
|
|
5
|
+
## Position In The Flow
|
|
6
|
+
|
|
7
|
+
```text
|
|
8
|
+
contracts
|
|
9
|
+
├─ @arkcit/engine-schema
|
|
10
|
+
├─ @arkcit/engine-runtime
|
|
11
|
+
├─ @arkcit/engine-core
|
|
12
|
+
└─ @arkcit/engine-render-layer
|
|
13
|
+
↓
|
|
14
|
+
adapter layer
|
|
15
|
+
└─ @arkcit/engine
|
|
16
|
+
↓
|
|
17
|
+
concrete target adapters
|
|
18
|
+
├─ @arkcit/engine-react
|
|
19
|
+
├─ @arkcit/engine-angular
|
|
20
|
+
└─ @arkcit/engine-react-native
|
|
21
|
+
↓
|
|
22
|
+
UI libraries and host apps
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## What Goes In
|
|
26
|
+
|
|
27
|
+
- canonical schema contracts
|
|
28
|
+
- runtime contracts
|
|
29
|
+
- neutral resolved output
|
|
30
|
+
- framework-specific renderer seams from extracted adapters
|
|
31
|
+
|
|
32
|
+
## What Comes Out
|
|
33
|
+
|
|
34
|
+
- stable public entrypoints used by apps and bridges
|
|
35
|
+
- compatibility surfaces during migration
|
|
36
|
+
- shared adapter glue between neutral layers and concrete renderers
|
|
37
|
+
|
|
38
|
+
## Responsibilities
|
|
39
|
+
|
|
40
|
+
- be the stable adapter anchor
|
|
41
|
+
- expose public seams like `UIEngine`, `bindings`, `components`, `form`, `renderers`, and `studio-bridge`
|
|
42
|
+
- keep root and subpath compatibility while concrete renderers continue to split
|
|
43
|
+
|
|
44
|
+
## Do Not Put Here
|
|
45
|
+
|
|
46
|
+
- long-term ownership of canonical schema
|
|
47
|
+
- long-term ownership of runtime contracts
|
|
48
|
+
- re-monolithized React-only behavior
|
|
49
|
+
- studio app logic
|
|
50
|
+
|
|
51
|
+
## Preferred Entry Points
|
|
52
|
+
|
|
53
|
+
- `@arkcit/engine`
|
|
54
|
+
- `@arkcit/engine/UIEngine`
|
|
55
|
+
- `@arkcit/engine/bindings`
|
|
56
|
+
- `@arkcit/engine/components`
|
|
57
|
+
- `@arkcit/engine/form`
|
|
58
|
+
- `@arkcit/engine/renderers`
|
|
59
|
+
- `@arkcit/engine/studio-bridge`
|
|
60
|
+
- `@arkcit/engine/react-web`
|
|
61
|
+
- `@arkcit/engine/preview`
|
|
62
|
+
|
|
63
|
+
## Main Consumers
|
|
64
|
+
|
|
65
|
+
- `@arkcit/react-ui`
|
|
66
|
+
- `@arkcit/studio`
|
|
67
|
+
- `@arkcit/docs-shell`
|
|
68
|
+
- future host applications
|