@elaraai/e3-ui 1.0.4 → 1.0.6

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 (100) hide show
  1. package/README.md +3 -2
  2. package/dist/src/data.d.ts +22 -1
  3. package/dist/src/data.d.ts.map +1 -1
  4. package/dist/src/data.js.map +1 -1
  5. package/dist/src/decision/bind.d.ts +4594 -0
  6. package/dist/src/decision/bind.d.ts.map +1 -0
  7. package/dist/src/decision/bind.js +156 -0
  8. package/dist/src/decision/bind.js.map +1 -0
  9. package/dist/src/decision/index.d.ts +1787 -0
  10. package/dist/src/decision/index.d.ts.map +1 -0
  11. package/dist/src/decision/index.js +36 -0
  12. package/dist/src/decision/index.js.map +1 -0
  13. package/dist/src/decision/journal.d.ts +405 -0
  14. package/dist/src/decision/journal.d.ts.map +1 -0
  15. package/dist/src/decision/journal.js +74 -0
  16. package/dist/src/decision/journal.js.map +1 -0
  17. package/dist/src/decision/queue.d.ts +2876 -0
  18. package/dist/src/decision/queue.d.ts.map +1 -0
  19. package/dist/src/decision/queue.js +166 -0
  20. package/dist/src/decision/queue.js.map +1 -0
  21. package/dist/src/decision/types.d.ts +1338 -0
  22. package/dist/src/decision/types.d.ts.map +1 -0
  23. package/dist/src/decision/types.js +389 -0
  24. package/dist/src/decision/types.js.map +1 -0
  25. package/dist/src/diff.d.ts +72 -0
  26. package/dist/src/diff.d.ts.map +1 -1
  27. package/dist/src/diff.js +6 -0
  28. package/dist/src/diff.js.map +1 -1
  29. package/dist/src/index.d.ts +27 -11
  30. package/dist/src/index.d.ts.map +1 -1
  31. package/dist/src/index.js +30 -10
  32. package/dist/src/index.js.map +1 -1
  33. package/dist/src/internal.d.ts +28 -0
  34. package/dist/src/internal.d.ts.map +1 -0
  35. package/dist/src/internal.js +28 -0
  36. package/dist/src/internal.js.map +1 -0
  37. package/dist/src/ontology.d.ts +205 -10
  38. package/dist/src/ontology.d.ts.map +1 -1
  39. package/dist/src/ontology.js +23 -4
  40. package/dist/src/ontology.js.map +1 -1
  41. package/dist/src/runtime/decision/journal.d.ts +29 -0
  42. package/dist/src/runtime/decision/journal.d.ts.map +1 -0
  43. package/dist/src/runtime/decision/journal.js +27 -0
  44. package/dist/src/runtime/decision/journal.js.map +1 -0
  45. package/dist/src/runtime/decision/queue.d.ts +47 -0
  46. package/dist/src/runtime/decision/queue.d.ts.map +1 -0
  47. package/dist/src/runtime/decision/queue.js +45 -0
  48. package/dist/src/runtime/decision/queue.js.map +1 -0
  49. package/dist/src/runtime/diff.d.ts +36 -0
  50. package/dist/src/runtime/diff.d.ts.map +1 -0
  51. package/dist/src/runtime/diff.js +34 -0
  52. package/dist/src/runtime/diff.js.map +1 -0
  53. package/dist/src/runtime/index.d.ts +15 -0
  54. package/dist/src/runtime/index.d.ts.map +1 -0
  55. package/dist/src/runtime/index.js +15 -0
  56. package/dist/src/runtime/index.js.map +1 -0
  57. package/dist/src/runtime/ontology.d.ts +36 -0
  58. package/dist/src/runtime/ontology.d.ts.map +1 -0
  59. package/dist/src/runtime/ontology.js +34 -0
  60. package/dist/src/runtime/ontology.js.map +1 -0
  61. package/dist/src/runtime/runtime.d.ts +7 -0
  62. package/dist/src/runtime/runtime.d.ts.map +1 -0
  63. package/dist/src/runtime/runtime.js +7 -0
  64. package/dist/src/runtime/runtime.js.map +1 -0
  65. package/dist/src/ui.d.ts +6 -6
  66. package/dist/src/ui.d.ts.map +1 -1
  67. package/dist/src/ui.js +9 -1
  68. package/dist/src/ui.js.map +1 -1
  69. package/dist/test/{data.examples.d.ts → data/data.examples.d.ts} +1 -0
  70. package/dist/test/data/data.examples.d.ts.map +1 -0
  71. package/dist/test/{data.examples.js → data/data.examples.js} +30 -68
  72. package/dist/test/data/data.examples.js.map +1 -0
  73. package/dist/test/decision/journal.examples.d.ts +266 -0
  74. package/dist/test/decision/journal.examples.d.ts.map +1 -0
  75. package/dist/test/decision/journal.examples.js +107 -0
  76. package/dist/test/decision/journal.examples.js.map +1 -0
  77. package/dist/test/decision/loop.examples.d.ts +455 -0
  78. package/dist/test/decision/loop.examples.d.ts.map +1 -0
  79. package/dist/test/decision/loop.examples.js +120 -0
  80. package/dist/test/decision/loop.examples.js.map +1 -0
  81. package/dist/test/decision/queue.examples.d.ts +269 -0
  82. package/dist/test/decision/queue.examples.d.ts.map +1 -0
  83. package/dist/test/decision/queue.examples.js +273 -0
  84. package/dist/test/decision/queue.examples.js.map +1 -0
  85. package/dist/test/{diff.examples.d.ts → diff/diff.examples.d.ts} +5 -4
  86. package/dist/test/diff/diff.examples.d.ts.map +1 -0
  87. package/dist/test/diff/diff.examples.js +582 -0
  88. package/dist/test/diff/diff.examples.js.map +1 -0
  89. package/dist/test/{ontology.examples.d.ts → ontology/ontology.examples.d.ts} +6 -4
  90. package/dist/test/ontology/ontology.examples.d.ts.map +1 -0
  91. package/dist/test/{ontology.examples.js → ontology/ontology.examples.js} +37 -57
  92. package/dist/test/ontology/ontology.examples.js.map +1 -0
  93. package/package.json +19 -19
  94. package/dist/test/data.examples.d.ts.map +0 -1
  95. package/dist/test/data.examples.js.map +0 -1
  96. package/dist/test/diff.examples.d.ts.map +0 -1
  97. package/dist/test/diff.examples.js +0 -964
  98. package/dist/test/diff.examples.js.map +0 -1
  99. package/dist/test/ontology.examples.d.ts.map +0 -1
  100. package/dist/test/ontology.examples.js.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/decision/types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,389 @@
1
+ /**
2
+ * The Decision platform types — the lean envelope a reasoning/optimization task
3
+ * emits and the Decide components render. Designed to be filled in one shot by
4
+ * an agent: 5 required fields, the rest optional; primitives over structs;
5
+ * display reuses east-ui's `Format` (no bespoke unit strings).
6
+ *
7
+ * Three data sources with different lifecycles (NOT one fat struct):
8
+ * - DecisionType : the optimizer's argument for ONE decision (read-mostly)
9
+ * - ReferenceType : similar past decisions (separate history dataset, joined by caseId)
10
+ * - JudgementInputType : the operator's notes + injected constraints + verdict (staged input — written back)
11
+ *
12
+ * run / model / audit / freshness / commit-state come from the e3 platform
13
+ * (DataflowRun, DatasetRef, binding.status()), not from these values.
14
+ *
15
+ * Lives alongside OntologyType — the platform's canonical decision envelope that
16
+ * the Decide component family (DecisionQueue, …) binds to and renders.
17
+ */
18
+ import { East, StructType, VariantType, ArrayType, DictType, OptionType, StringType, FloatType, IntegerType, BooleanType, DateTimeType, NullType, SetType, FunctionType, some, none, variant, } from "@elaraai/east";
19
+ import { Format } from "@elaraai/east-ui";
20
+ /** east-ui value-format descriptor (currency / percent / compact / unit / …). */
21
+ const TickFormat = Format.Types.Tick;
22
+ // ============================================================================
23
+ // Urgency — queue sort + routine collapse + "past SLA" count.
24
+ // ============================================================================
25
+ export const UrgencyType = VariantType({
26
+ overdue: NullType,
27
+ due: NullType,
28
+ routine: NullType,
29
+ });
30
+ // ============================================================================
31
+ // Stakes — drives the briefing chip now; typed-confirm / approval gating
32
+ // later. A bare classification: reversibility is a platform property (every
33
+ // committed change is a diffable, invertible patch), and blast-radius prose
34
+ // belongs in `summary` / `evidence`.
35
+ // ============================================================================
36
+ /**
37
+ * Stakes level classification for a decision.
38
+ *
39
+ * @property low - Routine consequence if wrong
40
+ * @property medium - Noticeable consequence; standard review
41
+ * @property high - Significant consequence; expect scrutiny
42
+ * @property critical - Irreversible-scale consequence; gates extra ceremony
43
+ */
44
+ export const StakesLevelType = VariantType({
45
+ low: NullType,
46
+ medium: NullType,
47
+ high: NullType,
48
+ critical: NullType,
49
+ });
50
+ // ============================================================================
51
+ // Evidence — the typed chips behind "why this is recommended".
52
+ // ============================================================================
53
+ /**
54
+ * One piece of the model's argument, rendered as a typed evidence chip.
55
+ *
56
+ * @property label - The evidence category ("forecast", "capacity", "track")
57
+ * @property text - The headline fact ("SE region +14%")
58
+ * @property note - Supporting context ("next 2 wks · holiday-demand driver")
59
+ */
60
+ export const EvidenceType = StructType({
61
+ label: StringType,
62
+ text: StringType,
63
+ note: OptionType(StringType),
64
+ });
65
+ // ============================================================================
66
+ // Prompts + levers — the judgement SPEC, task-authored in the envelope. The
67
+ // operator's RESPONSES (answers / constraints) live in the judgement record;
68
+ // the handle joins the two by case id.
69
+ // ============================================================================
70
+ /**
71
+ * One judgement question gating commit.
72
+ *
73
+ * @property id - Stable answer key — rewording `text` never orphans answers
74
+ * @property text - What the operator reads
75
+ */
76
+ export const PromptType = StructType({
77
+ id: StringType,
78
+ text: StringType,
79
+ });
80
+ /**
81
+ * One constrainable knob this case accepts — a case of the solution's
82
+ * constraint contract variant (see `JudgementInputType`'s type parameter).
83
+ *
84
+ * @property case - The contract variant's case name
85
+ * @property label - What the operator reads in the constraint builder
86
+ */
87
+ export const LeverType = StructType({
88
+ case: StringType,
89
+ label: StringType,
90
+ });
91
+ // ============================================================================
92
+ // Judgement answers + verdict — the operator's captured responses.
93
+ // ============================================================================
94
+ /**
95
+ * The captured response to one judgement prompt.
96
+ *
97
+ * @property yes - The operator stands behind the input
98
+ * @property no - The operator contradicts it — blocks commit
99
+ * @property unknown - The operator can't say — routes the case to handoff
100
+ */
101
+ export const AnswerType = VariantType({
102
+ yes: NullType,
103
+ no: NullType,
104
+ unknown: NullType,
105
+ });
106
+ /**
107
+ * The operator's final word on a case — how it left the queue.
108
+ *
109
+ * @property accepted - The chosen option's label (empty string accepts the
110
+ * recommendation itself)
111
+ * @property rejected - The recommendation was rejected; the operator takes
112
+ * the decision manually
113
+ * @property deferred - Put off, with an optional note ("revisit after wk 12")
114
+ * @property handoff - Routed to someone else — the recipient / routing note
115
+ * (the "don't know" exit)
116
+ */
117
+ export const VerdictType = VariantType({
118
+ accepted: StringType,
119
+ rejected: NullType,
120
+ deferred: OptionType(StringType),
121
+ handoff: StringType,
122
+ });
123
+ // ============================================================================
124
+ // One of the OTHER options the optimizer evaluated (the recommendation is the
125
+ // decision itself). The ONLY sub-type. `label` is its identity — what a
126
+ // JudgementInput `verdict` references when the operator picks it.
127
+ // ============================================================================
128
+ export const DecisionOptionType = StructType({
129
+ id: OptionType(StringType), // stable identity; verdicts reference id ?? label
130
+ label: StringType, // display label
131
+ value: FloatType, // its uplift (same unit/format as the decision) → right bar
132
+ downside: OptionType(FloatType), // its if-wrong magnitude → left bar
133
+ confidence: OptionType(FloatType), // 0..1 — per-option confidence in the ranked view
134
+ note: OptionType(StringType), // "2 wk lead time · cost lock-in"
135
+ });
136
+ // ============================================================================
137
+ // The lean decision value — the optimizer's argument for ONE case.
138
+ // Domain-agnostic: title/urgency/value describe ANY decision, so capacity,
139
+ // availability, and utilisation decisions share one queue; `kind` groups them.
140
+ // ============================================================================
141
+ export const DecisionType = StructType({
142
+ // ── required core (the queue row) ──
143
+ id: StringType,
144
+ kind: StringType, // "capacity" | "availability" | "utilisation" — grouping/icon
145
+ title: StringType, // "Move 3 SE shifts Patel → Cho"
146
+ urgency: UrgencyType,
147
+ value: FloatType, // headline magnitude (sign ⇒ +/−); drives bar + queue sort
148
+ // ── optional ──
149
+ deadline: OptionType(DateTimeType), // when action is needed → "overdue 2h" label + intra-bucket sort
150
+ format: OptionType(TickFormat), // how to render value/downside/option values (Format.Currency, …)
151
+ summary: OptionType(StringType), // "SE region · wk 09-16"
152
+ downside: OptionType(FloatType), // if-wrong magnitude (hero "−$8k")
153
+ confidence: OptionType(FloatType), // 0..1
154
+ detail: OptionType(StringType), // briefing body (prose / markdown)
155
+ stakes: OptionType(StakesLevelType), // classification → hero chip + commit ceremony
156
+ prompts: ArrayType(PromptType), // judgement checklist — questions the model can't answer; gates commit
157
+ levers: ArrayType(LeverType), // which constraint-contract cases this case accepts
158
+ evidence: ArrayType(EvidenceType), // typed chips: { label, text, note }
159
+ alternatives: ArrayType(DecisionOptionType),
160
+ });
161
+ // ============================================================================
162
+ // SEPARATE DATASET — similar past decisions (queried by caseId / kind).
163
+ // ============================================================================
164
+ export const ReferenceType = StructType({
165
+ caseId: StringType, // links to the live decision (or its kind)
166
+ meta: OptionType(StringType), // "Mar 2024 · NE"
167
+ outcome: OptionType(StringType), // "−$6k OT, 0 SLA"
168
+ similarity: OptionType(FloatType), // 0.95 — drives the rail bar + novelty flag
169
+ });
170
+ // ============================================================================
171
+ // STAGED INPUT — the operator's contribution (the thing WRITTEN back).
172
+ // Modify = inject a constraint here; the reasoning tasks depend on it, so
173
+ // committing re-runs the optimizer (the modify → recalculate loop).
174
+ // ============================================================================
175
+ /**
176
+ * Judgement.Inject — a typed requirement the next optimiser run must satisfy.
177
+ *
178
+ * Type-first variant (the `SlicePredicateType` shape): the outer case is the
179
+ * constrained field's primitive kind, the inner case the requirement
180
+ * operator with its typed payload. LOB-shaped on purpose — bounds, pins,
181
+ * set membership, date windows — and mechanically translatable to solver
182
+ * constraints (linear ≤/≥/=, membership encodings) by the reasoning task.
183
+ * Aggregate constraints (counts/sums over groups) are a later variant case.
184
+ *
185
+ * @property string - `eq` / `neq` pin or forbid a value; `in` / `notIn` set
186
+ * membership
187
+ * @property integer - `eq` pin; `atMost` / `atLeast` bounds; `between` range
188
+ * @property float - `eq` pin; `atMost` / `atLeast` bounds; `between` range
189
+ * @property datetime - `before` / `after` bounds; `between` window
190
+ * @property boolean - `is` requirement
191
+ */
192
+ export const DecisionConstraintType = VariantType({
193
+ string: VariantType({
194
+ eq: StringType,
195
+ neq: StringType,
196
+ in: SetType(StringType),
197
+ notIn: SetType(StringType),
198
+ }),
199
+ integer: VariantType({
200
+ eq: IntegerType,
201
+ atMost: IntegerType,
202
+ atLeast: IntegerType,
203
+ between: StructType({ min: IntegerType, max: IntegerType }),
204
+ }),
205
+ float: VariantType({
206
+ eq: FloatType,
207
+ atMost: FloatType,
208
+ atLeast: FloatType,
209
+ between: StructType({ min: FloatType, max: FloatType }),
210
+ }),
211
+ datetime: VariantType({
212
+ before: DateTimeType,
213
+ after: DateTimeType,
214
+ between: StructType({ min: DateTimeType, max: DateTimeType }),
215
+ }),
216
+ boolean: VariantType({
217
+ is: BooleanType,
218
+ }),
219
+ });
220
+ /**
221
+ * One constrainable field in a surface's constraint vocabulary — what the
222
+ * judgement panel's typed builder offers. Mirrors `Slice.config` fields,
223
+ * minus accessors: constraints are interpreted by the reasoning task, never
224
+ * evaluated client-side.
225
+ *
226
+ * @property label - Display label ("Cho weekly hours cap")
227
+ * @property kind - The field's primitive kind — drives the typed op editor
228
+ */
229
+ /** A constraint field's primitive kind — drives the typed op editor. */
230
+ export const ConstraintKindType = VariantType({
231
+ string: NullType,
232
+ integer: NullType,
233
+ float: NullType,
234
+ datetime: NullType,
235
+ boolean: NullType,
236
+ });
237
+ export const ConstraintFieldType = StructType({
238
+ label: StringType,
239
+ kind: ConstraintKindType,
240
+ });
241
+ /**
242
+ * The surface's constraint vocabulary, keyed by field id (the model-namespace
243
+ * path the reasoning task resolves, e.g. `"cho.hardCapHrs"`).
244
+ */
245
+ export const ConstraintVocabularyType = DictType(StringType, ConstraintFieldType);
246
+ /** `update(editedDecision)` — the writer a probe (`modify`) editor receives.
247
+ * Calling it writes the edited decision back through its owning binding. */
248
+ export const DecisionUpdateType = FunctionType([DecisionType], NullType);
249
+ /**
250
+ * Build the judgement-record type for a solution's constraint contract — the
251
+ * `sliceConfigFor(rowType)` pattern. The contract is a by-name `VariantType`
252
+ * declared once in the solution package and imported by both the reasoning
253
+ * task (which `$.matchTag`s constraints, fully typed) and the surface (whose
254
+ * builder renders a typed editor per case payload). Defaults to
255
+ * {@link DecisionConstraintType}, the primitive op-variant.
256
+ */
257
+ export function judgementInputType(constraint) {
258
+ return StructType({
259
+ caseId: StringType,
260
+ answers: DictType(StringType, AnswerType), // per-prompt responses, keyed by prompt id
261
+ knowledge: OptionType(StringType), // free-text "what the model can't see"
262
+ constraints: ArrayType((constraint ?? DecisionConstraintType)), // injected requirements (upsert by case name) → re-run
263
+ verdict: OptionType(VerdictType), // how the case left the queue (accepted / rejected / deferred / handoff)
264
+ resolvedAt: OptionType(DateTimeType), // when the verdict was committed — the journal's timeline
265
+ });
266
+ }
267
+ /** The default judgement-record type (primitive op-variant constraints). */
268
+ export const JudgementInputType = judgementInputType();
269
+ function createDecisionOption(input) {
270
+ return East.value({
271
+ id: input.id !== undefined ? some(input.id) : none,
272
+ label: input.label,
273
+ value: input.value,
274
+ downside: input.downside !== undefined ? some(input.downside) : none,
275
+ confidence: input.confidence !== undefined ? some(input.confidence) : none,
276
+ note: input.note !== undefined ? some(input.note) : none,
277
+ }, DecisionOptionType);
278
+ }
279
+ function createDecision(input) {
280
+ const stakesValue = input.stakes !== undefined
281
+ ? some(typeof input.stakes === "string"
282
+ ? East.value(variant(input.stakes, null), StakesLevelType)
283
+ : input.stakes)
284
+ : none;
285
+ const promptsValue = input.prompts === undefined
286
+ ? []
287
+ : Array.isArray(input.prompts)
288
+ ? input.prompts.map(prompt => East.value(typeof prompt === "string"
289
+ ? { id: prompt, text: prompt }
290
+ : { id: prompt.id ?? prompt.text, text: prompt.text }, PromptType))
291
+ : input.prompts;
292
+ const leversValue = input.levers === undefined
293
+ ? []
294
+ : Array.isArray(input.levers)
295
+ ? input.levers.map(lever => East.value({ case: lever.case, label: lever.label }, LeverType))
296
+ : input.levers;
297
+ const evidenceValue = input.evidence === undefined
298
+ ? []
299
+ : Array.isArray(input.evidence)
300
+ ? input.evidence.map(e => East.value({
301
+ label: e.label,
302
+ text: e.text,
303
+ note: e.note !== undefined ? some(e.note) : none,
304
+ }, EvidenceType))
305
+ : input.evidence;
306
+ return East.value({
307
+ id: input.id,
308
+ kind: input.kind,
309
+ title: input.title,
310
+ urgency: typeof input.urgency === "string"
311
+ ? East.value(variant(input.urgency, null), UrgencyType)
312
+ : input.urgency,
313
+ value: input.value,
314
+ deadline: input.deadline !== undefined ? some(input.deadline) : none,
315
+ format: input.format !== undefined ? some(input.format) : none,
316
+ summary: input.summary !== undefined ? some(input.summary) : none,
317
+ downside: input.downside !== undefined ? some(input.downside) : none,
318
+ confidence: input.confidence !== undefined ? some(input.confidence) : none,
319
+ detail: input.detail !== undefined ? some(input.detail) : none,
320
+ stakes: stakesValue,
321
+ prompts: promptsValue,
322
+ levers: leversValue,
323
+ evidence: evidenceValue,
324
+ alternatives: input.alternatives ?? [],
325
+ }, DecisionType);
326
+ }
327
+ function createReference(input) {
328
+ return East.value({
329
+ caseId: input.caseId,
330
+ meta: input.meta !== undefined ? some(input.meta) : none,
331
+ outcome: input.outcome !== undefined ? some(input.outcome) : none,
332
+ similarity: input.similarity !== undefined ? some(input.similarity) : none,
333
+ }, ReferenceType);
334
+ }
335
+ function createJudgement(input) {
336
+ return East.value({
337
+ caseId: input.caseId,
338
+ answers: input.answers ?? new Map(),
339
+ knowledge: input.knowledge !== undefined ? some(input.knowledge) : none,
340
+ constraints: input.constraints ?? [],
341
+ verdict: input.verdict !== undefined ? some(input.verdict) : none,
342
+ resolvedAt: input.resolvedAt !== undefined ? some(input.resolvedAt) : none,
343
+ }, JudgementInputType);
344
+ }
345
+ /**
346
+ * The Decision platform namespace — ergonomic constructors + the East `Types`.
347
+ *
348
+ * @example
349
+ * ```ts
350
+ * Decision.make({
351
+ * id: "cap-SE-0916", kind: "capacity",
352
+ * title: "Raise SE senior-engineer cover to 6 FTE",
353
+ * urgency: "overdue", value: 80000,
354
+ * format: Format.Currency({ currency: "USD", compact: "short" }),
355
+ * downside: -8000, confidence: 0.82,
356
+ * evidence: ["forecast: SE +14%"],
357
+ * alternatives: [Decision.option({ label: "Hire 1 contractor", value: 48000, downside: -15000 })],
358
+ * });
359
+ * ```
360
+ */
361
+ export const Decision = {
362
+ /** Build one decision — required core + optional rest (optionals default to absent). */
363
+ make: createDecision,
364
+ /** Build one of a decision's other evaluated options. */
365
+ option: createDecisionOption,
366
+ /** Build one similar-past-decision reference (separate history dataset). */
367
+ reference: createReference,
368
+ /** Build one staged judgement contribution (knowledge + injected constraints + verdict). */
369
+ judgement: createJudgement,
370
+ Types: {
371
+ Decision: DecisionType,
372
+ Option: DecisionOptionType,
373
+ Urgency: UrgencyType,
374
+ Stakes: StakesLevelType,
375
+ StakesLevel: StakesLevelType,
376
+ Prompt: PromptType,
377
+ Lever: LeverType,
378
+ Evidence: EvidenceType,
379
+ Reference: ReferenceType,
380
+ JudgementInput: judgementInputType,
381
+ DefaultJudgementInput: JudgementInputType,
382
+ Constraint: DecisionConstraintType,
383
+ ConstraintField: ConstraintFieldType,
384
+ ConstraintVocabulary: ConstraintVocabularyType,
385
+ Answer: AnswerType,
386
+ Verdict: VerdictType,
387
+ },
388
+ };
389
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/decision/types.ts"],"names":[],"mappings":"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"}
@@ -331,5 +331,77 @@ export declare const Diff: {
331
331
  readonly lineNumberColor: OptionType<StringType>;
332
332
  }>>;
333
333
  }>>;
334
+ readonly Types: {
335
+ /** Rendered Diff payload struct (bindings + style). */
336
+ readonly Payload: StructType<{
337
+ readonly bindings: ArrayType<StructType<{
338
+ readonly source: ArrayType<import("@elaraai/east").VariantType<{
339
+ readonly field: StringType;
340
+ }>>;
341
+ readonly patch: OptionType<ArrayType<import("@elaraai/east").VariantType<{
342
+ readonly field: StringType;
343
+ }>>>;
344
+ readonly mode: import("@elaraai/east").VariantType<{
345
+ readonly staged: NullType;
346
+ readonly direct: NullType;
347
+ }>;
348
+ }>>;
349
+ readonly readonly: OptionType<BooleanType>;
350
+ readonly hideUnchanged: OptionType<BooleanType>;
351
+ readonly maxDepth: OptionType<IntegerType>;
352
+ readonly density: OptionType<import("@elaraai/east").VariantType<{
353
+ readonly comfortable: NullType;
354
+ readonly compact: NullType;
355
+ readonly condensed: NullType;
356
+ }>>;
357
+ readonly onCommitted: OptionType<FunctionType<[], NullType>>;
358
+ readonly onDiscarded: OptionType<FunctionType<[], NullType>>;
359
+ readonly style: OptionType<StructType<{
360
+ readonly addedBackground: OptionType<StringType>;
361
+ readonly addedColor: OptionType<StringType>;
362
+ readonly addedBorderColor: OptionType<StringType>;
363
+ readonly removedBackground: OptionType<StringType>;
364
+ readonly removedColor: OptionType<StringType>;
365
+ readonly removedBorderColor: OptionType<StringType>;
366
+ readonly changedBackground: OptionType<StringType>;
367
+ readonly changedColor: OptionType<StringType>;
368
+ readonly changedBorderColor: OptionType<StringType>;
369
+ readonly unchangedColor: OptionType<StringType>;
370
+ readonly acceptedBackground: OptionType<StringType>;
371
+ readonly acceptedBorderColor: OptionType<StringType>;
372
+ readonly rejectedBackground: OptionType<StringType>;
373
+ readonly rejectedBorderColor: OptionType<StringType>;
374
+ readonly headerBackground: OptionType<StringType>;
375
+ readonly summaryBackground: OptionType<StringType>;
376
+ readonly background: OptionType<StringType>;
377
+ readonly borderColor: OptionType<StringType>;
378
+ readonly indentGuideColor: OptionType<StringType>;
379
+ readonly lineNumberColor: OptionType<StringType>;
380
+ }>>;
381
+ }>;
382
+ /** Visual-presentation sub-struct (density, layout). */
383
+ readonly Style: StructType<{
384
+ readonly addedBackground: OptionType<StringType>;
385
+ readonly addedColor: OptionType<StringType>;
386
+ readonly addedBorderColor: OptionType<StringType>;
387
+ readonly removedBackground: OptionType<StringType>;
388
+ readonly removedColor: OptionType<StringType>;
389
+ readonly removedBorderColor: OptionType<StringType>;
390
+ readonly changedBackground: OptionType<StringType>;
391
+ readonly changedColor: OptionType<StringType>;
392
+ readonly changedBorderColor: OptionType<StringType>;
393
+ readonly unchangedColor: OptionType<StringType>;
394
+ readonly acceptedBackground: OptionType<StringType>;
395
+ readonly acceptedBorderColor: OptionType<StringType>;
396
+ readonly rejectedBackground: OptionType<StringType>;
397
+ readonly rejectedBorderColor: OptionType<StringType>;
398
+ readonly headerBackground: OptionType<StringType>;
399
+ readonly summaryBackground: OptionType<StringType>;
400
+ readonly background: OptionType<StringType>;
401
+ readonly borderColor: OptionType<StringType>;
402
+ readonly indentGuideColor: OptionType<StringType>;
403
+ readonly lineNumberColor: OptionType<StringType>;
404
+ }>;
405
+ };
334
406
  };
335
407
  //# sourceMappingURL=diff.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"diff.d.ts","sourceRoot":"","sources":["../../src/diff.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;;;;;;;;;;;GAkBG;AAEH,OAAO,EAEH,UAAU,EACV,WAAW,EACX,QAAQ,EACR,WAAW,EACX,UAAU,EACV,UAAU,EACV,SAAS,EACT,YAAY,EAIZ,KAAK,QAAQ,EACb,KAAK,kBAAkB,EAC1B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAU,WAAW,EAAE,KAAK,cAAc,EAAE,KAAK,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAElG,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAM5C;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;EAqBxB,CAAC;AACH,4CAA4C;AAC5C,MAAM,MAAM,aAAa,GAAG,OAAO,aAAa,CAAC;AAOjD,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAM5C;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS1B,CAAC;AACH,8CAA8C;AAC9C,MAAM,MAAM,eAAe,GAAG,OAAO,eAAe,CAAC;AAErD;;;;;GAKG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAgE,CAAC;AAM3F;;;;;;;;;;;;;;;GAeG;AACH,MAAM,WAAW,WAAW;IACxB,4DAA4D;IAC5D,QAAQ,EAAE,kBAAkB,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,CAAC;IACzD,4FAA4F;IAC5F,QAAQ,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC;IACvD,+CAA+C;IAC/C,aAAa,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC;IAC5D,0EAA0E;IAC1E,QAAQ,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC;IACvD,kCAAkC;IAClC,OAAO,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,GAAG,cAAc,CAAC;IACvE,oDAAoD;IACpD,WAAW,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;IACzE,wCAAwC;IACxC,WAAW,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;IACzE,+DAA+D;IAC/D,KAAK,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC;CACzD;AAED;;;;;;;;;;GAUG;AACH,eAAO,MAAM,IAAI;IACb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAqCG;6BACW,WAAW,KAAG,QAAQ,CAAC,eAAe,CAAC;IAiBrD;;;;;;OAMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEG,CAAC"}
1
+ {"version":3,"file":"diff.d.ts","sourceRoot":"","sources":["../../src/diff.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;;;;;;;;;;;GAkBG;AAEH,OAAO,EAEH,UAAU,EACV,WAAW,EACX,QAAQ,EACR,WAAW,EACX,UAAU,EACV,UAAU,EACV,SAAS,EACT,YAAY,EAIZ,KAAK,QAAQ,EACb,KAAK,kBAAkB,EAC1B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAU,WAAW,EAAE,KAAK,cAAc,EAAE,KAAK,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAElG,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAM5C;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;EAqBxB,CAAC;AACH,4CAA4C;AAC5C,MAAM,MAAM,aAAa,GAAG,OAAO,aAAa,CAAC;AAOjD,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAM5C;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS1B,CAAC;AACH,8CAA8C;AAC9C,MAAM,MAAM,eAAe,GAAG,OAAO,eAAe,CAAC;AAErD;;;;;GAKG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAgE,CAAC;AAM3F;;;;;;;;;;;;;;;GAeG;AACH,MAAM,WAAW,WAAW;IACxB,4DAA4D;IAC5D,QAAQ,EAAE,kBAAkB,CAAC,SAAS,CAAC,eAAe,CAAC,CAAC,CAAC;IACzD,4FAA4F;IAC5F,QAAQ,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC;IACvD,+CAA+C;IAC/C,aAAa,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC;IAC5D,0EAA0E;IAC1E,QAAQ,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,CAAC;IACvD,kCAAkC;IAClC,OAAO,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,WAAW,CAAC,CAAC,GAAG,cAAc,CAAC;IACvE,oDAAoD;IACpD,WAAW,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;IACzE,wCAAwC;IACxC,WAAW,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC;IACzE,+DAA+D;IAC/D,KAAK,CAAC,EAAE,kBAAkB,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,CAAC;CACzD;AAED;;;;;;;;;;GAUG;AACH,eAAO,MAAM,IAAI;IACb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAqCG;6BACW,WAAW,KAAG,QAAQ,CAAC,eAAe,CAAC;IAiBrD;;;;;;OAMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAGC,uDAAuD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAEvD,wDAAwD;;;;;;;;;;;;;;;;;;;;;;;;CAGtD,CAAC"}
package/dist/src/diff.js CHANGED
@@ -193,5 +193,11 @@ export const Diff = {
193
193
  * touch this directly.
194
194
  */
195
195
  Component: DiffComponent,
196
+ Types: {
197
+ /** Rendered Diff payload struct (bindings + style). */
198
+ Payload: DiffPayloadType,
199
+ /** Visual-presentation sub-struct (density, layout). */
200
+ Style: DiffStyleType,
201
+ },
196
202
  };
197
203
  //# sourceMappingURL=diff.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"diff.js","sourceRoot":"","sources":["../../src/diff.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"diff.js","sourceRoot":"","sources":["../../src/diff.ts"],"names":[],"mappings":"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"}
@@ -3,23 +3,39 @@
3
3
  * Dual-licensed under AGPL-3.0 and commercial license. See LICENSE for details.
4
4
  */
5
5
  /**
6
- * @elaraai/e3-ui — e3 + UI bridge (render-side, browser-safe).
6
+ * @elaraai/e3-ui — e3 + UI bridge.
7
7
  *
8
- * Provides:
8
+ * The public surface is the e3-specific JSX **tags** plus the platform
9
+ * helpers:
10
+ * - `<Diff>` — review pending changes for any combination of bindings.
11
+ * - `<Ontology>` — graph editor over an `OntologyType`-bound dataset.
9
12
  * - `Data.bind` — workspace-scoped reactive dataset binding.
10
- * - `Diff` — review pending changes for any combination of bindings.
11
- * - `Ontology` — graph editor over an `OntologyType`-bound dataset.
12
- * - `DataManifestType` — manifest type for reads/writes metadata.
13
+ * - `ui()` — declare a first-class UI task.
13
14
  *
14
- * The author-side `ui()` factory lives at `@elaraai/e3-ui/ui` because it
15
- * pulls in `@elaraai/e3` (which depends on Node-only modules like yazl).
16
- * Separating it keeps this entry tree-shakeable for browser bundles.
15
+ * east-ui tags (`<VStack>`, `<Text>`, …) are imported from `@elaraai/east-ui`
16
+ * this package does not re-export them. The underlying factories
17
+ * (`Diff.Root(…)`) live under `@elaraai/e3-ui/internal` for renderers and tests.
18
+ *
19
+ * @remarks
20
+ * `ui()` pulls in `@elaraai/e3` (Node-only). Browser bundles that only need
21
+ * `Data` / `<Diff>` / `<Ontology>` / types should import from
22
+ * `@elaraai/e3-ui/internal`, which is e3-free.
17
23
  *
18
24
  * @packageDocumentation
19
25
  */
20
- export { Data, DataBindModeType, type DataBindModeLiteral, DiffBindingType, DataBindHandleType, type DataBindOptions, bindPlatformFn, } from './data.js';
26
+ export { Data, DataBindModeType, type DataBindModeLiteral, DiffBindingType, type BoundValue, DataBindHandleType, type DataBindOptions, bindPlatformFn, } from './data.js';
21
27
  export { DataManifestType, type DataManifest, encodeManifest, decodeManifest } from './manifest.js';
22
28
  export { deriveManifest } from './derive.js';
23
- export { Diff, DiffComponent, DiffPayloadType, DiffStyleType, type DiffOptions, } from './diff.js';
24
- export { Ontology, OntologyComponent, OntologyPayloadType, OntologyStyleType, type OntologyOptions, NodeKindType, LinkKindType, NodeType, LinkType, OntologyMetadataType, OntologyType, } from './ontology.js';
29
+ export { ui } from './ui.js';
30
+ export { Diff } from './runtime/diff.js';
31
+ export { DiffPayloadType, DiffStyleType, type DiffOptions, } from './diff.js';
32
+ export { Ontology } from './runtime/ontology.js';
33
+ export { OntologyPayloadType, OntologyStyleType, type OntologyOptions, NodeKindType, LinkKindType, NodeType, LinkType, OntologyMetadataType, OntologyType, } from './ontology.js';
34
+ export { Decision } from './decision/index.js';
35
+ export { DecisionType, DecisionOptionType, UrgencyType, type UrgencyLiteral, StakesLevelType, type StakesLevelLiteral, EvidenceType, AnswerType, type AnswerLiteral, VerdictType, ReferenceType, JudgementInputType, DecisionConstraintType, PromptType, LeverType, judgementInputType, type PromptInput, type LeverInput, type DecisionInput, type DecisionOptionInput, type EvidenceInput, type DecisionReferenceInput, type DecisionJudgementInput, } from './decision/types.js';
36
+ export { decisionBind, decisionBindPlatformFn, DecisionHandleType, DecisionHandleRefType, CommitStateType, JudgementsType, type DecisionHandle, type DecisionBindOptions, } from './decision/bind.js';
37
+ export { DecisionQueue } from './runtime/decision/queue.js';
38
+ export { type DecisionQueueOptions } from './decision/queue.js';
39
+ export { DecisionJournal } from './runtime/decision/journal.js';
40
+ export { type DecisionJournalOptions } from './decision/journal.js';
25
41
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACH,IAAI,EACJ,gBAAgB,EAChB,KAAK,mBAAmB,EACxB,eAAe,EACf,kBAAkB,EAClB,KAAK,eAAe,EACpB,cAAc,GACjB,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,gBAAgB,EAAE,KAAK,YAAY,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACpG,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EACH,IAAI,EACJ,aAAa,EACb,eAAe,EACf,aAAa,EACb,KAAK,WAAW,GACnB,MAAM,WAAW,CAAC;AACnB,OAAO,EACH,QAAQ,EACR,iBAAiB,EACjB,mBAAmB,EACnB,iBAAiB,EACjB,KAAK,eAAe,EACpB,YAAY,EACZ,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,oBAAoB,EACpB,YAAY,GACf,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,OAAO,EACH,IAAI,EACJ,gBAAgB,EAChB,KAAK,mBAAmB,EACxB,eAAe,EACf,KAAK,UAAU,EACf,kBAAkB,EAClB,KAAK,eAAe,EACpB,cAAc,GACjB,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,gBAAgB,EAAE,KAAK,YAAY,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACpG,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EAAE,EAAE,EAAE,MAAM,SAAS,CAAC;AAG7B,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EACH,eAAe,EACf,aAAa,EACb,KAAK,WAAW,GACnB,MAAM,WAAW,CAAC;AAGnB,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EACH,mBAAmB,EACnB,iBAAiB,EACjB,KAAK,eAAe,EACpB,YAAY,EACZ,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,oBAAoB,EACpB,YAAY,GACf,MAAM,eAAe,CAAC;AAGvB,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,EACH,YAAY,EACZ,kBAAkB,EAClB,WAAW,EACX,KAAK,cAAc,EACnB,eAAe,EACf,KAAK,kBAAkB,EACvB,YAAY,EACZ,UAAU,EACV,KAAK,aAAa,EAClB,WAAW,EACX,aAAa,EACb,kBAAkB,EAClB,sBAAsB,EACtB,UAAU,EACV,SAAS,EACT,kBAAkB,EAClB,KAAK,WAAW,EAChB,KAAK,UAAU,EACf,KAAK,aAAa,EAClB,KAAK,mBAAmB,EACxB,KAAK,aAAa,EAClB,KAAK,sBAAsB,EAC3B,KAAK,sBAAsB,GAC9B,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACH,YAAY,EACZ,sBAAsB,EACtB,kBAAkB,EAClB,qBAAqB,EACrB,eAAe,EACf,cAAc,EACd,KAAK,cAAc,EACnB,KAAK,mBAAmB,GAC3B,MAAM,oBAAoB,CAAC;AAE5B,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,uBAAuB,CAAC"}