@almadar/patterns 2.9.0 → 2.10.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/dist/component-mapping.json +7 -2
- package/dist/event-contracts.json +76 -1
- package/dist/index.d.ts +245 -10
- package/dist/index.js +255 -21
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +172 -18
- package/dist/registry.json +172 -18
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-03-
|
|
3
|
+
"exportedAt": "2026-03-31T07:12:35.907Z",
|
|
4
4
|
"mappings": {
|
|
5
5
|
"page-header": {
|
|
6
6
|
"component": "PageHeader",
|
|
@@ -1722,7 +1722,7 @@
|
|
|
1722
1722
|
},
|
|
1723
1723
|
"game-canvas-3d": {
|
|
1724
1724
|
"component": "GameCanvas3D",
|
|
1725
|
-
"importPath": "
|
|
1725
|
+
"importPath": "@almadar/ui/components/organisms/game/three",
|
|
1726
1726
|
"category": "game"
|
|
1727
1727
|
},
|
|
1728
1728
|
"camera-3d": {
|
|
@@ -1775,6 +1775,11 @@
|
|
|
1775
1775
|
"importPath": "@/components/templates/GameCanvas3DWorldMapTemplate",
|
|
1776
1776
|
"category": "template"
|
|
1777
1777
|
},
|
|
1778
|
+
"orb-inspector": {
|
|
1779
|
+
"component": "OrbInspector",
|
|
1780
|
+
"importPath": "@/components/organisms/OrbInspector",
|
|
1781
|
+
"category": "debug"
|
|
1782
|
+
},
|
|
1778
1783
|
"heading": {
|
|
1779
1784
|
"component": "Typography",
|
|
1780
1785
|
"importPath": "@/components/atoms/Typography",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-03-
|
|
3
|
+
"exportedAt": "2026-03-31T07:12:35.907Z",
|
|
4
4
|
"contracts": {
|
|
5
5
|
"form": {
|
|
6
6
|
"emits": [
|
|
@@ -1227,6 +1227,81 @@
|
|
|
1227
1227
|
],
|
|
1228
1228
|
"requires": [],
|
|
1229
1229
|
"entityAware": true
|
|
1230
|
+
},
|
|
1231
|
+
"flow-canvas": {
|
|
1232
|
+
"emits": [
|
|
1233
|
+
{
|
|
1234
|
+
"event": "WIRE_VALIDATION_WARNING",
|
|
1235
|
+
"trigger": "action",
|
|
1236
|
+
"payload": {
|
|
1237
|
+
"type": "object"
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
],
|
|
1241
|
+
"requires": [],
|
|
1242
|
+
"entityAware": false
|
|
1243
|
+
},
|
|
1244
|
+
"orb-inspector": {
|
|
1245
|
+
"emits": [
|
|
1246
|
+
{
|
|
1247
|
+
"event": "PROP_CHANGE",
|
|
1248
|
+
"trigger": "action",
|
|
1249
|
+
"payload": {
|
|
1250
|
+
"type": "object"
|
|
1251
|
+
}
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
"event": "ADD_FIELD",
|
|
1255
|
+
"trigger": "action",
|
|
1256
|
+
"payload": {
|
|
1257
|
+
"type": "object"
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"event": "UPDATE_FIELD",
|
|
1262
|
+
"trigger": "action",
|
|
1263
|
+
"payload": {
|
|
1264
|
+
"type": "object"
|
|
1265
|
+
}
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"event": "REMOVE_FIELD",
|
|
1269
|
+
"trigger": "action",
|
|
1270
|
+
"payload": {
|
|
1271
|
+
"type": "object"
|
|
1272
|
+
}
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
"event": "GUARD_CHANGE",
|
|
1276
|
+
"trigger": "action",
|
|
1277
|
+
"payload": {
|
|
1278
|
+
"type": "object"
|
|
1279
|
+
}
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"event": "ADD_EFFECT",
|
|
1283
|
+
"trigger": "action",
|
|
1284
|
+
"payload": {
|
|
1285
|
+
"type": "object"
|
|
1286
|
+
}
|
|
1287
|
+
},
|
|
1288
|
+
{
|
|
1289
|
+
"event": "REMOVE_EFFECT",
|
|
1290
|
+
"trigger": "action",
|
|
1291
|
+
"payload": {
|
|
1292
|
+
"type": "object"
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"event": "SERVICE_MODE_TOGGLE",
|
|
1297
|
+
"trigger": "action",
|
|
1298
|
+
"payload": {
|
|
1299
|
+
"type": "object"
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
],
|
|
1303
|
+
"requires": [],
|
|
1304
|
+
"entityAware": false
|
|
1230
1305
|
}
|
|
1231
1306
|
}
|
|
1232
1307
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1869,6 +1869,14 @@ export declare const registry: {
|
|
|
1869
1869
|
types: string[];
|
|
1870
1870
|
description: string;
|
|
1871
1871
|
};
|
|
1872
|
+
maxWidth: {
|
|
1873
|
+
types: string[];
|
|
1874
|
+
description: string;
|
|
1875
|
+
};
|
|
1876
|
+
children: {
|
|
1877
|
+
types: string[];
|
|
1878
|
+
description: string;
|
|
1879
|
+
};
|
|
1872
1880
|
};
|
|
1873
1881
|
};
|
|
1874
1882
|
grid: {
|
|
@@ -7149,6 +7157,10 @@ export declare const registry: {
|
|
|
7149
7157
|
types: string[];
|
|
7150
7158
|
description: string;
|
|
7151
7159
|
};
|
|
7160
|
+
foldable: {
|
|
7161
|
+
types: string[];
|
|
7162
|
+
description: string;
|
|
7163
|
+
};
|
|
7152
7164
|
className: {
|
|
7153
7165
|
types: string[];
|
|
7154
7166
|
description: string;
|
|
@@ -13842,23 +13854,79 @@ export declare const registry: {
|
|
|
13842
13854
|
description: string;
|
|
13843
13855
|
required: boolean;
|
|
13844
13856
|
};
|
|
13857
|
+
mockData: {
|
|
13858
|
+
types: string[];
|
|
13859
|
+
description: string;
|
|
13860
|
+
};
|
|
13845
13861
|
className: {
|
|
13846
13862
|
types: string[];
|
|
13847
13863
|
description: string;
|
|
13848
13864
|
};
|
|
13849
|
-
|
|
13865
|
+
width: {
|
|
13850
13866
|
types: string[];
|
|
13851
13867
|
description: string;
|
|
13852
13868
|
};
|
|
13853
|
-
|
|
13869
|
+
height: {
|
|
13854
13870
|
types: string[];
|
|
13855
13871
|
description: string;
|
|
13856
13872
|
};
|
|
13857
|
-
|
|
13873
|
+
onNodeClick: {
|
|
13858
13874
|
types: string[];
|
|
13859
13875
|
description: string;
|
|
13860
13876
|
};
|
|
13861
|
-
|
|
13877
|
+
onLevelChange: {
|
|
13878
|
+
types: string[];
|
|
13879
|
+
description: string;
|
|
13880
|
+
};
|
|
13881
|
+
initialOrbital: {
|
|
13882
|
+
types: string[];
|
|
13883
|
+
description: string;
|
|
13884
|
+
};
|
|
13885
|
+
initialLevel: {
|
|
13886
|
+
types: string[];
|
|
13887
|
+
description: string;
|
|
13888
|
+
};
|
|
13889
|
+
initialSelectedNode: {
|
|
13890
|
+
types: string[];
|
|
13891
|
+
description: string;
|
|
13892
|
+
};
|
|
13893
|
+
editable: {
|
|
13894
|
+
types: string[];
|
|
13895
|
+
description: string;
|
|
13896
|
+
};
|
|
13897
|
+
onSchemaChange: {
|
|
13898
|
+
types: string[];
|
|
13899
|
+
description: string;
|
|
13900
|
+
};
|
|
13901
|
+
onPatternDelete: {
|
|
13902
|
+
types: string[];
|
|
13903
|
+
description: string;
|
|
13904
|
+
};
|
|
13905
|
+
onEventWire: {
|
|
13906
|
+
types: string[];
|
|
13907
|
+
description: string;
|
|
13908
|
+
};
|
|
13909
|
+
behaviorMeta: {
|
|
13910
|
+
types: string[];
|
|
13911
|
+
description: string;
|
|
13912
|
+
};
|
|
13913
|
+
layoutHint: {
|
|
13914
|
+
types: string[];
|
|
13915
|
+
description: string;
|
|
13916
|
+
};
|
|
13917
|
+
onNodeSelect: {
|
|
13918
|
+
types: string[];
|
|
13919
|
+
description: string;
|
|
13920
|
+
};
|
|
13921
|
+
composeLevel: {
|
|
13922
|
+
types: string[];
|
|
13923
|
+
description: string;
|
|
13924
|
+
};
|
|
13925
|
+
behaviorEntries: {
|
|
13926
|
+
types: string[];
|
|
13927
|
+
description: string;
|
|
13928
|
+
};
|
|
13929
|
+
behaviorWires: {
|
|
13862
13930
|
types: string[];
|
|
13863
13931
|
description: string;
|
|
13864
13932
|
};
|
|
@@ -13870,7 +13938,11 @@ export declare const registry: {
|
|
|
13870
13938
|
types: string[];
|
|
13871
13939
|
description: string;
|
|
13872
13940
|
};
|
|
13873
|
-
|
|
13941
|
+
color: {
|
|
13942
|
+
types: string[];
|
|
13943
|
+
description: string;
|
|
13944
|
+
};
|
|
13945
|
+
animated: {
|
|
13874
13946
|
types: string[];
|
|
13875
13947
|
description: string;
|
|
13876
13948
|
};
|
|
@@ -15264,6 +15336,38 @@ export declare const registry: {
|
|
|
15264
15336
|
};
|
|
15265
15337
|
};
|
|
15266
15338
|
};
|
|
15339
|
+
"orb-inspector": {
|
|
15340
|
+
type: string;
|
|
15341
|
+
category: string;
|
|
15342
|
+
description: string;
|
|
15343
|
+
suggestedFor: string[];
|
|
15344
|
+
typicalSize: string;
|
|
15345
|
+
propsSchema: {
|
|
15346
|
+
node: {
|
|
15347
|
+
types: string[];
|
|
15348
|
+
description: string;
|
|
15349
|
+
required: boolean;
|
|
15350
|
+
};
|
|
15351
|
+
schema: {
|
|
15352
|
+
types: string[];
|
|
15353
|
+
description: string;
|
|
15354
|
+
required: boolean;
|
|
15355
|
+
};
|
|
15356
|
+
editable: {
|
|
15357
|
+
types: string[];
|
|
15358
|
+
description: string;
|
|
15359
|
+
};
|
|
15360
|
+
onSchemaChange: {
|
|
15361
|
+
types: string[];
|
|
15362
|
+
description: string;
|
|
15363
|
+
};
|
|
15364
|
+
onClose: {
|
|
15365
|
+
types: string[];
|
|
15366
|
+
description: string;
|
|
15367
|
+
required: boolean;
|
|
15368
|
+
};
|
|
15369
|
+
};
|
|
15370
|
+
};
|
|
15267
15371
|
heading: {
|
|
15268
15372
|
type: string;
|
|
15269
15373
|
category: string;
|
|
@@ -17262,6 +17366,14 @@ export declare const PATTERN_REGISTRY: {
|
|
|
17262
17366
|
types: string[];
|
|
17263
17367
|
description: string;
|
|
17264
17368
|
};
|
|
17369
|
+
maxWidth: {
|
|
17370
|
+
types: string[];
|
|
17371
|
+
description: string;
|
|
17372
|
+
};
|
|
17373
|
+
children: {
|
|
17374
|
+
types: string[];
|
|
17375
|
+
description: string;
|
|
17376
|
+
};
|
|
17265
17377
|
};
|
|
17266
17378
|
};
|
|
17267
17379
|
grid: {
|
|
@@ -22542,6 +22654,10 @@ export declare const PATTERN_REGISTRY: {
|
|
|
22542
22654
|
types: string[];
|
|
22543
22655
|
description: string;
|
|
22544
22656
|
};
|
|
22657
|
+
foldable: {
|
|
22658
|
+
types: string[];
|
|
22659
|
+
description: string;
|
|
22660
|
+
};
|
|
22545
22661
|
className: {
|
|
22546
22662
|
types: string[];
|
|
22547
22663
|
description: string;
|
|
@@ -29235,23 +29351,79 @@ export declare const PATTERN_REGISTRY: {
|
|
|
29235
29351
|
description: string;
|
|
29236
29352
|
required: boolean;
|
|
29237
29353
|
};
|
|
29354
|
+
mockData: {
|
|
29355
|
+
types: string[];
|
|
29356
|
+
description: string;
|
|
29357
|
+
};
|
|
29238
29358
|
className: {
|
|
29239
29359
|
types: string[];
|
|
29240
29360
|
description: string;
|
|
29241
29361
|
};
|
|
29242
|
-
|
|
29362
|
+
width: {
|
|
29243
29363
|
types: string[];
|
|
29244
29364
|
description: string;
|
|
29245
29365
|
};
|
|
29246
|
-
|
|
29366
|
+
height: {
|
|
29247
29367
|
types: string[];
|
|
29248
29368
|
description: string;
|
|
29249
29369
|
};
|
|
29250
|
-
|
|
29370
|
+
onNodeClick: {
|
|
29251
29371
|
types: string[];
|
|
29252
29372
|
description: string;
|
|
29253
29373
|
};
|
|
29254
|
-
|
|
29374
|
+
onLevelChange: {
|
|
29375
|
+
types: string[];
|
|
29376
|
+
description: string;
|
|
29377
|
+
};
|
|
29378
|
+
initialOrbital: {
|
|
29379
|
+
types: string[];
|
|
29380
|
+
description: string;
|
|
29381
|
+
};
|
|
29382
|
+
initialLevel: {
|
|
29383
|
+
types: string[];
|
|
29384
|
+
description: string;
|
|
29385
|
+
};
|
|
29386
|
+
initialSelectedNode: {
|
|
29387
|
+
types: string[];
|
|
29388
|
+
description: string;
|
|
29389
|
+
};
|
|
29390
|
+
editable: {
|
|
29391
|
+
types: string[];
|
|
29392
|
+
description: string;
|
|
29393
|
+
};
|
|
29394
|
+
onSchemaChange: {
|
|
29395
|
+
types: string[];
|
|
29396
|
+
description: string;
|
|
29397
|
+
};
|
|
29398
|
+
onPatternDelete: {
|
|
29399
|
+
types: string[];
|
|
29400
|
+
description: string;
|
|
29401
|
+
};
|
|
29402
|
+
onEventWire: {
|
|
29403
|
+
types: string[];
|
|
29404
|
+
description: string;
|
|
29405
|
+
};
|
|
29406
|
+
behaviorMeta: {
|
|
29407
|
+
types: string[];
|
|
29408
|
+
description: string;
|
|
29409
|
+
};
|
|
29410
|
+
layoutHint: {
|
|
29411
|
+
types: string[];
|
|
29412
|
+
description: string;
|
|
29413
|
+
};
|
|
29414
|
+
onNodeSelect: {
|
|
29415
|
+
types: string[];
|
|
29416
|
+
description: string;
|
|
29417
|
+
};
|
|
29418
|
+
composeLevel: {
|
|
29419
|
+
types: string[];
|
|
29420
|
+
description: string;
|
|
29421
|
+
};
|
|
29422
|
+
behaviorEntries: {
|
|
29423
|
+
types: string[];
|
|
29424
|
+
description: string;
|
|
29425
|
+
};
|
|
29426
|
+
behaviorWires: {
|
|
29255
29427
|
types: string[];
|
|
29256
29428
|
description: string;
|
|
29257
29429
|
};
|
|
@@ -29263,7 +29435,11 @@ export declare const PATTERN_REGISTRY: {
|
|
|
29263
29435
|
types: string[];
|
|
29264
29436
|
description: string;
|
|
29265
29437
|
};
|
|
29266
|
-
|
|
29438
|
+
color: {
|
|
29439
|
+
types: string[];
|
|
29440
|
+
description: string;
|
|
29441
|
+
};
|
|
29442
|
+
animated: {
|
|
29267
29443
|
types: string[];
|
|
29268
29444
|
description: string;
|
|
29269
29445
|
};
|
|
@@ -30657,6 +30833,38 @@ export declare const PATTERN_REGISTRY: {
|
|
|
30657
30833
|
};
|
|
30658
30834
|
};
|
|
30659
30835
|
};
|
|
30836
|
+
"orb-inspector": {
|
|
30837
|
+
type: string;
|
|
30838
|
+
category: string;
|
|
30839
|
+
description: string;
|
|
30840
|
+
suggestedFor: string[];
|
|
30841
|
+
typicalSize: string;
|
|
30842
|
+
propsSchema: {
|
|
30843
|
+
node: {
|
|
30844
|
+
types: string[];
|
|
30845
|
+
description: string;
|
|
30846
|
+
required: boolean;
|
|
30847
|
+
};
|
|
30848
|
+
schema: {
|
|
30849
|
+
types: string[];
|
|
30850
|
+
description: string;
|
|
30851
|
+
required: boolean;
|
|
30852
|
+
};
|
|
30853
|
+
editable: {
|
|
30854
|
+
types: string[];
|
|
30855
|
+
description: string;
|
|
30856
|
+
};
|
|
30857
|
+
onSchemaChange: {
|
|
30858
|
+
types: string[];
|
|
30859
|
+
description: string;
|
|
30860
|
+
};
|
|
30861
|
+
onClose: {
|
|
30862
|
+
types: string[];
|
|
30863
|
+
description: string;
|
|
30864
|
+
required: boolean;
|
|
30865
|
+
};
|
|
30866
|
+
};
|
|
30867
|
+
};
|
|
30660
30868
|
heading: {
|
|
30661
30869
|
type: string;
|
|
30662
30870
|
category: string;
|
|
@@ -33135,6 +33343,11 @@ export declare const COMPONENT_MAPPING: {
|
|
|
33135
33343
|
importPath: string;
|
|
33136
33344
|
category: string;
|
|
33137
33345
|
};
|
|
33346
|
+
"orb-inspector": {
|
|
33347
|
+
component: string;
|
|
33348
|
+
importPath: string;
|
|
33349
|
+
category: string;
|
|
33350
|
+
};
|
|
33138
33351
|
heading: {
|
|
33139
33352
|
component: string;
|
|
33140
33353
|
importPath: string;
|
|
@@ -33855,6 +34068,28 @@ export declare const EVENT_CONTRACTS: {
|
|
|
33855
34068
|
requires: never[];
|
|
33856
34069
|
entityAware: boolean;
|
|
33857
34070
|
};
|
|
34071
|
+
"flow-canvas": {
|
|
34072
|
+
emits: {
|
|
34073
|
+
event: string;
|
|
34074
|
+
trigger: string;
|
|
34075
|
+
payload: {
|
|
34076
|
+
type: string;
|
|
34077
|
+
};
|
|
34078
|
+
}[];
|
|
34079
|
+
requires: never[];
|
|
34080
|
+
entityAware: boolean;
|
|
34081
|
+
};
|
|
34082
|
+
"orb-inspector": {
|
|
34083
|
+
emits: {
|
|
34084
|
+
event: string;
|
|
34085
|
+
trigger: string;
|
|
34086
|
+
payload: {
|
|
34087
|
+
type: string;
|
|
34088
|
+
};
|
|
34089
|
+
}[];
|
|
34090
|
+
requires: never[];
|
|
34091
|
+
entityAware: boolean;
|
|
34092
|
+
};
|
|
33858
34093
|
};
|
|
33859
34094
|
};
|
|
33860
34095
|
type PatternEntry = {
|