@almadar/patterns 1.0.14 → 1.0.15
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 +27 -2
- package/dist/event-contracts.json +22 -8
- package/dist/index.d.ts +7534 -5594
- package/dist/index.js +873 -104
- package/dist/index.js.map +1 -1
- package/dist/patterns-registry.json +750 -23
- package/dist/registry.json +750 -23
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-02-
|
|
3
|
+
"exportedAt": "2026-02-10T15:35:56.769Z",
|
|
4
4
|
"mappings": {
|
|
5
5
|
"page-header": {
|
|
6
6
|
"component": "PageHeader",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"category": "form"
|
|
39
39
|
},
|
|
40
40
|
"form-section": {
|
|
41
|
-
"component": "
|
|
41
|
+
"component": "Form",
|
|
42
42
|
"importPath": "@/components/organisms/Form",
|
|
43
43
|
"category": "form"
|
|
44
44
|
},
|
|
@@ -639,6 +639,31 @@
|
|
|
639
639
|
"component": "IsometricCanvas",
|
|
640
640
|
"importPath": "@/components/organisms/IsometricCanvas",
|
|
641
641
|
"category": "game"
|
|
642
|
+
},
|
|
643
|
+
"battle-template": {
|
|
644
|
+
"component": "BattleTemplate",
|
|
645
|
+
"importPath": "@/components/templates/BattleTemplate",
|
|
646
|
+
"category": "template"
|
|
647
|
+
},
|
|
648
|
+
"castle-template": {
|
|
649
|
+
"component": "CastleTemplate",
|
|
650
|
+
"importPath": "@/components/templates/CastleTemplate",
|
|
651
|
+
"category": "template"
|
|
652
|
+
},
|
|
653
|
+
"world-map-template": {
|
|
654
|
+
"component": "WorldMapTemplate",
|
|
655
|
+
"importPath": "@/components/templates/WorldMapTemplate",
|
|
656
|
+
"category": "template"
|
|
657
|
+
},
|
|
658
|
+
"heading": {
|
|
659
|
+
"component": "Typography",
|
|
660
|
+
"importPath": "@/components/atoms/Typography",
|
|
661
|
+
"category": "component"
|
|
662
|
+
},
|
|
663
|
+
"text": {
|
|
664
|
+
"component": "Typography",
|
|
665
|
+
"importPath": "@/components/atoms/Typography",
|
|
666
|
+
"category": "component"
|
|
642
667
|
}
|
|
643
668
|
}
|
|
644
669
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-02-
|
|
3
|
+
"exportedAt": "2026-02-10T15:35:56.769Z",
|
|
4
4
|
"contracts": {
|
|
5
5
|
"form": {
|
|
6
6
|
"emits": [
|
|
@@ -42,17 +42,31 @@
|
|
|
42
42
|
"form-section": {
|
|
43
43
|
"emits": [
|
|
44
44
|
{
|
|
45
|
-
"event": "
|
|
46
|
-
"trigger": "
|
|
45
|
+
"event": "GLOBAL_VARIABLE_SET",
|
|
46
|
+
"trigger": "action",
|
|
47
47
|
"payload": {
|
|
48
|
-
"type": "
|
|
48
|
+
"type": "object"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
|
-
"event": "
|
|
53
|
-
"trigger": "
|
|
52
|
+
"event": "VIOLATION_DETECTED",
|
|
53
|
+
"trigger": "action",
|
|
54
54
|
"payload": {
|
|
55
|
-
"type": "
|
|
55
|
+
"type": "object"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"event": "FIELD_CHANGED",
|
|
60
|
+
"trigger": "action",
|
|
61
|
+
"payload": {
|
|
62
|
+
"type": "object"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"event": "CLOSE",
|
|
67
|
+
"trigger": "action",
|
|
68
|
+
"payload": {
|
|
69
|
+
"type": "object"
|
|
56
70
|
}
|
|
57
71
|
}
|
|
58
72
|
],
|
|
@@ -60,7 +74,7 @@
|
|
|
60
74
|
"SAVE",
|
|
61
75
|
"CANCEL"
|
|
62
76
|
],
|
|
63
|
-
"entityAware":
|
|
77
|
+
"entityAware": true
|
|
64
78
|
},
|
|
65
79
|
"form-actions": {
|
|
66
80
|
"emits": [
|