@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.
Files changed (42) hide show
  1. package/README.md +68 -0
  2. package/dist/UIEngine.d.ts +6 -0
  3. package/dist/UIEngine.js +3235 -0
  4. package/dist/bindings.d.ts +8 -0
  5. package/dist/bindings.js +146 -0
  6. package/dist/components/index.d.ts +17 -0
  7. package/dist/components/index.js +143 -0
  8. package/dist/core/index.d.ts +4 -0
  9. package/dist/core/index.js +9 -0
  10. package/dist/form/engineFormValidation.d.ts +2 -0
  11. package/dist/form/engineFormValidation.js +241 -0
  12. package/dist/form.d.ts +67 -0
  13. package/dist/form.js +241 -0
  14. package/dist/index.d.ts +15 -0
  15. package/dist/index.js +3336 -0
  16. package/dist/layout.d.ts +6 -0
  17. package/dist/layout.js +82 -0
  18. package/dist/preview/index.d.ts +63 -0
  19. package/dist/preview/index.js +1514 -0
  20. package/dist/react-web/index.d.ts +8 -0
  21. package/dist/react-web/index.js +3246 -0
  22. package/dist/registry.d.ts +2 -0
  23. package/dist/registry.js +0 -0
  24. package/dist/render-layer/index.d.ts +1 -0
  25. package/dist/render-layer/index.js +13 -0
  26. package/dist/renderStudioForm-CPQEzvT7.d.ts +75 -0
  27. package/dist/renderers/index.d.ts +8 -0
  28. package/dist/renderers/index.js +1570 -0
  29. package/dist/runtime/index.d.ts +1 -0
  30. package/dist/runtime/index.js +0 -0
  31. package/dist/schema/index.d.ts +1 -0
  32. package/dist/schema/index.js +0 -0
  33. package/dist/studio-bridge/index.d.ts +501 -0
  34. package/dist/studio-bridge/index.js +2840 -0
  35. package/dist/studioProps.d.ts +8 -0
  36. package/dist/studioProps.js +97 -0
  37. package/dist/types-9TZ2lQDP.d.ts +60 -0
  38. package/dist/types-CyAE6ZLH.d.ts +19 -0
  39. package/dist/types.d.ts +16 -0
  40. package/dist/types.js +0 -0
  41. package/dist/wizardEditingHandlers-D50tR-6n.d.ts +163 -0
  42. 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
@@ -0,0 +1,6 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { UIEngineProps } from '@arkcit/engine-core';
3
+
4
+ declare const UIEngine: (props: UIEngineProps) => react_jsx_runtime.JSX.Element;
5
+
6
+ export { UIEngine as default };