@almadar/core 10.63.0 → 10.64.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/dist/builders.d.ts +3 -3
- package/dist/builders.js.map +1 -1
- package/dist/{effect-CgDrWfKW.d.ts → effect-DOqkIe2M.d.ts} +36 -5
- package/dist/{entityAccess-Dr7XPoi_.d.ts → entityAccess-BOIRacH7.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-D2rQS1PS.d.ts → index-BQkyHRT3.d.ts} +4 -4
- package/dist/index.d.ts +10 -10
- package/dist/index.js +32 -7
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +60 -9
- package/dist/patterns/index.js +26 -5
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +24 -3
- package/dist/patterns/registry.json +24 -3
- package/dist/{schema-KdqDOMXm.d.ts → schema-B648ulAY.d.ts} +16 -3
- package/dist/{trait-CesmHKZ2.d.ts → trait-C6Jqfflp.d.ts} +1 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +6 -2
- package/dist/types/index.js.map +1 -1
- package/dist/{types-mYXAkmBy.d.ts → types-j7OsANcy.d.ts} +2 -2
- package/package.json +1 -1
package/dist/mock/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { O as OrbitalSchema } from '../schema-
|
|
2
|
-
export { E as EntityAccessPolicies, e as entityAccessPolicies, a as entityAccessTable } from '../entityAccess-
|
|
3
|
-
import { a as EntityPersistence, E as EntityField, F as FieldValue, f as EntityRow } from '../effect-
|
|
4
|
-
import '../trait-
|
|
1
|
+
import { O as OrbitalSchema } from '../schema-B648ulAY.js';
|
|
2
|
+
export { E as EntityAccessPolicies, e as entityAccessPolicies, a as entityAccessTable } from '../entityAccess-BOIRacH7.js';
|
|
3
|
+
import { a as EntityPersistence, E as EntityField, F as FieldValue, f as EntityRow } from '../effect-DOqkIe2M.js';
|
|
4
|
+
import '../trait-C6Jqfflp.js';
|
|
5
5
|
import '../expression-Fk8bQWef.js';
|
|
6
6
|
import 'zod';
|
|
7
7
|
|
package/dist/patterns/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue,
|
|
2
|
-
export {
|
|
1
|
+
import { A as AnyPatternConfig, h as RenderBinding, F as FieldValue, b0 as PatternType } from '../effect-DOqkIe2M.js';
|
|
2
|
+
export { aV as PATTERN_TYPES, aZ as PatternConfig, a_ as PatternProps, a$ as PatternPropsMap, cT as isValidPatternType } from '../effect-DOqkIe2M.js';
|
|
3
3
|
import { d as EventPayloadValue, a as EventPayload, J as JsonValue } from '../expression-Fk8bQWef.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
var version$3 = "1.0.0";
|
|
7
|
-
var exportedAt$3 = "2026-08-
|
|
7
|
+
var exportedAt$3 = "2026-08-21T10:52:11.515Z";
|
|
8
8
|
var patterns = {
|
|
9
9
|
"entity-table": {
|
|
10
10
|
type: "entity-table",
|
|
@@ -1524,6 +1524,12 @@ var patterns = {
|
|
|
1524
1524
|
]
|
|
1525
1525
|
}
|
|
1526
1526
|
},
|
|
1527
|
+
maxInlineActions: {
|
|
1528
|
+
types: [
|
|
1529
|
+
"number"
|
|
1530
|
+
],
|
|
1531
|
+
description: "Max inline action buttons before the rest collapse into a \"⋯\" overflow menu (mirrors DataGrid's maxInlineActions). Omit = all inline."
|
|
1532
|
+
},
|
|
1527
1533
|
backAction: {
|
|
1528
1534
|
types: [
|
|
1529
1535
|
"object"
|
|
@@ -4432,8 +4438,9 @@ var patterns = {
|
|
|
4432
4438
|
types: [
|
|
4433
4439
|
"array"
|
|
4434
4440
|
],
|
|
4435
|
-
description: "Breadcrumb items",
|
|
4436
|
-
|
|
4441
|
+
description: "Breadcrumb items. Omit together with `fromNavStack` to render the orbital-scoped navigation stack instead of an authored trail.",
|
|
4442
|
+
kind: "event-list",
|
|
4443
|
+
eventField: "event",
|
|
4437
4444
|
items: {
|
|
4438
4445
|
types: [
|
|
4439
4446
|
"object"
|
|
@@ -4481,6 +4488,20 @@ var patterns = {
|
|
|
4481
4488
|
]
|
|
4482
4489
|
}
|
|
4483
4490
|
},
|
|
4491
|
+
fromNavStack: {
|
|
4492
|
+
types: [
|
|
4493
|
+
"boolean"
|
|
4494
|
+
],
|
|
4495
|
+
description: "Render the current orbital's navigation stack (NavStackProvider) as the trail: one crumb per visited/declared level, last entry current. The stack is client-session state both execution paths maintain; outside a provider this renders nothing.",
|
|
4496
|
+
"default": false
|
|
4497
|
+
},
|
|
4498
|
+
itemEvent: {
|
|
4499
|
+
types: [
|
|
4500
|
+
"string"
|
|
4501
|
+
],
|
|
4502
|
+
description: "Event emitted when a non-current crumb is clicked, with payload `{ label, href, index }` — the trait handles it with `(navigate ?href)`. Without it, stack crumbs navigate directly.",
|
|
4503
|
+
kind: "event"
|
|
4504
|
+
},
|
|
4484
4505
|
separator: {
|
|
4485
4506
|
types: [
|
|
4486
4507
|
"icon",
|
|
@@ -48696,7 +48717,7 @@ var integratorsRegistry = {
|
|
|
48696
48717
|
};
|
|
48697
48718
|
|
|
48698
48719
|
var version$1 = "1.0.0";
|
|
48699
|
-
var exportedAt$1 = "2026-08-
|
|
48720
|
+
var exportedAt$1 = "2026-08-21T10:52:11.515Z";
|
|
48700
48721
|
var mappings = {
|
|
48701
48722
|
"page-header": {
|
|
48702
48723
|
component: "PageHeader",
|
|
@@ -50108,7 +50129,7 @@ var componentMapping = {
|
|
|
50108
50129
|
};
|
|
50109
50130
|
|
|
50110
50131
|
var version = "1.0.0";
|
|
50111
|
-
var exportedAt = "2026-08-
|
|
50132
|
+
var exportedAt = "2026-08-21T10:52:11.515Z";
|
|
50112
50133
|
var contracts = {
|
|
50113
50134
|
form: {
|
|
50114
50135
|
emits: [
|
|
@@ -52774,6 +52795,10 @@ declare const registry: {
|
|
|
52774
52795
|
required: string[];
|
|
52775
52796
|
};
|
|
52776
52797
|
};
|
|
52798
|
+
maxInlineActions: {
|
|
52799
|
+
types: string[];
|
|
52800
|
+
description: string;
|
|
52801
|
+
};
|
|
52777
52802
|
backAction: {
|
|
52778
52803
|
types: string[];
|
|
52779
52804
|
description: string;
|
|
@@ -54518,7 +54543,8 @@ declare const registry: {
|
|
|
54518
54543
|
items: {
|
|
54519
54544
|
types: string[];
|
|
54520
54545
|
description: string;
|
|
54521
|
-
|
|
54546
|
+
kind: string;
|
|
54547
|
+
eventField: string;
|
|
54522
54548
|
items: {
|
|
54523
54549
|
types: string[];
|
|
54524
54550
|
properties: {
|
|
@@ -54547,6 +54573,16 @@ declare const registry: {
|
|
|
54547
54573
|
required: string[];
|
|
54548
54574
|
};
|
|
54549
54575
|
};
|
|
54576
|
+
fromNavStack: {
|
|
54577
|
+
types: string[];
|
|
54578
|
+
description: string;
|
|
54579
|
+
default: boolean;
|
|
54580
|
+
};
|
|
54581
|
+
itemEvent: {
|
|
54582
|
+
types: string[];
|
|
54583
|
+
description: string;
|
|
54584
|
+
kind: string;
|
|
54585
|
+
};
|
|
54550
54586
|
separator: {
|
|
54551
54587
|
types: string[];
|
|
54552
54588
|
description: string;
|
|
@@ -81689,6 +81725,10 @@ declare const PATTERN_REGISTRY: {
|
|
|
81689
81725
|
required: string[];
|
|
81690
81726
|
};
|
|
81691
81727
|
};
|
|
81728
|
+
maxInlineActions: {
|
|
81729
|
+
types: string[];
|
|
81730
|
+
description: string;
|
|
81731
|
+
};
|
|
81692
81732
|
backAction: {
|
|
81693
81733
|
types: string[];
|
|
81694
81734
|
description: string;
|
|
@@ -83433,7 +83473,8 @@ declare const PATTERN_REGISTRY: {
|
|
|
83433
83473
|
items: {
|
|
83434
83474
|
types: string[];
|
|
83435
83475
|
description: string;
|
|
83436
|
-
|
|
83476
|
+
kind: string;
|
|
83477
|
+
eventField: string;
|
|
83437
83478
|
items: {
|
|
83438
83479
|
types: string[];
|
|
83439
83480
|
properties: {
|
|
@@ -83462,6 +83503,16 @@ declare const PATTERN_REGISTRY: {
|
|
|
83462
83503
|
required: string[];
|
|
83463
83504
|
};
|
|
83464
83505
|
};
|
|
83506
|
+
fromNavStack: {
|
|
83507
|
+
types: string[];
|
|
83508
|
+
description: string;
|
|
83509
|
+
default: boolean;
|
|
83510
|
+
};
|
|
83511
|
+
itemEvent: {
|
|
83512
|
+
types: string[];
|
|
83513
|
+
description: string;
|
|
83514
|
+
kind: string;
|
|
83515
|
+
};
|
|
83465
83516
|
separator: {
|
|
83466
83517
|
types: string[];
|
|
83467
83518
|
description: string;
|
package/dist/patterns/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { z } from 'zod';
|
|
|
3
3
|
// src/patterns/patterns-registry.json
|
|
4
4
|
var patterns_registry_default = {
|
|
5
5
|
version: "1.0.0",
|
|
6
|
-
exportedAt: "2026-08-
|
|
6
|
+
exportedAt: "2026-08-21T10:52:11.515Z",
|
|
7
7
|
patterns: {
|
|
8
8
|
"entity-table": {
|
|
9
9
|
type: "entity-table",
|
|
@@ -1521,6 +1521,12 @@ var patterns_registry_default = {
|
|
|
1521
1521
|
]
|
|
1522
1522
|
}
|
|
1523
1523
|
},
|
|
1524
|
+
maxInlineActions: {
|
|
1525
|
+
types: [
|
|
1526
|
+
"number"
|
|
1527
|
+
],
|
|
1528
|
+
description: `Max inline action buttons before the rest collapse into a "\u22EF" overflow menu (mirrors DataGrid's maxInlineActions). Omit = all inline.`
|
|
1529
|
+
},
|
|
1524
1530
|
backAction: {
|
|
1525
1531
|
types: [
|
|
1526
1532
|
"object"
|
|
@@ -4421,8 +4427,9 @@ var patterns_registry_default = {
|
|
|
4421
4427
|
types: [
|
|
4422
4428
|
"array"
|
|
4423
4429
|
],
|
|
4424
|
-
description: "Breadcrumb items",
|
|
4425
|
-
|
|
4430
|
+
description: "Breadcrumb items. Omit together with `fromNavStack` to render the orbital-scoped navigation stack instead of an authored trail.",
|
|
4431
|
+
kind: "event-list",
|
|
4432
|
+
eventField: "event",
|
|
4426
4433
|
items: {
|
|
4427
4434
|
types: [
|
|
4428
4435
|
"object"
|
|
@@ -4470,6 +4477,20 @@ var patterns_registry_default = {
|
|
|
4470
4477
|
]
|
|
4471
4478
|
}
|
|
4472
4479
|
},
|
|
4480
|
+
fromNavStack: {
|
|
4481
|
+
types: [
|
|
4482
|
+
"boolean"
|
|
4483
|
+
],
|
|
4484
|
+
description: "Render the current orbital's navigation stack (NavStackProvider) as the trail: one crumb per visited/declared level, last entry current. The stack is client-session state both execution paths maintain; outside a provider this renders nothing.",
|
|
4485
|
+
default: false
|
|
4486
|
+
},
|
|
4487
|
+
itemEvent: {
|
|
4488
|
+
types: [
|
|
4489
|
+
"string"
|
|
4490
|
+
],
|
|
4491
|
+
description: "Event emitted when a non-current crumb is clicked, with payload `{ label, href, index }` \u2014 the trait handles it with `(navigate ?href)`. Without it, stack crumbs navigate directly.",
|
|
4492
|
+
kind: "event"
|
|
4493
|
+
},
|
|
4473
4494
|
separator: {
|
|
4474
4495
|
types: [
|
|
4475
4496
|
"icon",
|
|
@@ -48558,7 +48579,7 @@ var integrators_registry_default = {
|
|
|
48558
48579
|
// src/patterns/component-mapping.json
|
|
48559
48580
|
var component_mapping_default = {
|
|
48560
48581
|
version: "1.0.0",
|
|
48561
|
-
exportedAt: "2026-08-
|
|
48582
|
+
exportedAt: "2026-08-21T10:52:11.515Z",
|
|
48562
48583
|
mappings: {
|
|
48563
48584
|
"page-header": {
|
|
48564
48585
|
component: "PageHeader",
|
|
@@ -49968,7 +49989,7 @@ var component_mapping_default = {
|
|
|
49968
49989
|
// src/patterns/event-contracts.json
|
|
49969
49990
|
var event_contracts_default = {
|
|
49970
49991
|
version: "1.0.0",
|
|
49971
|
-
exportedAt: "2026-08-
|
|
49992
|
+
exportedAt: "2026-08-21T10:52:11.515Z",
|
|
49972
49993
|
contracts: {
|
|
49973
49994
|
form: {
|
|
49974
49995
|
emits: [
|