@almadar/std 16.160.0 → 16.162.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/behaviors/lolo/ui/core/atoms/std-form-advanced.lolo +32 -2
- package/behaviors/registry/ui/core/atoms/std-form-advanced.orb +75 -2
- package/dist/behaviors/behaviors-registry.json +28 -7
- package/dist/behaviors/functions/index.d.ts +1 -1
- package/dist/behaviors/registry/ui/core/atoms/std-form-advanced.orb +75 -2
- package/dist/behaviors-registry.json +28 -7
- package/package.json +2 -2
|
@@ -48,7 +48,33 @@ orbital FormEntryOrbital {
|
|
|
48
48
|
gap: sm
|
|
49
49
|
type: stack
|
|
50
50
|
}, { type: divider }, {
|
|
51
|
-
cancelEvent:
|
|
51
|
+
cancelEvent: CANCEL
|
|
52
|
+
fields: @config.fields
|
|
53
|
+
mode: create
|
|
54
|
+
submitEvent: SUBMIT
|
|
55
|
+
type: form-section
|
|
56
|
+
}]
|
|
57
|
+
direction: vertical
|
|
58
|
+
gap: lg
|
|
59
|
+
type: stack
|
|
60
|
+
})
|
|
61
|
+
CANCEL -> editing
|
|
62
|
+
(fetch FormEntry {
|
|
63
|
+
emit: { failure: FormEntryLoadFailed, success: FormEntryLoaded }
|
|
64
|
+
})
|
|
65
|
+
(render-ui main {
|
|
66
|
+
children: [{
|
|
67
|
+
align: center
|
|
68
|
+
children: [{ name: @config.icon, type: icon }, {
|
|
69
|
+
content: @config.title
|
|
70
|
+
type: typography
|
|
71
|
+
variant: h2
|
|
72
|
+
}]
|
|
73
|
+
direction: horizontal
|
|
74
|
+
gap: sm
|
|
75
|
+
type: stack
|
|
76
|
+
}, { type: divider }, {
|
|
77
|
+
cancelEvent: CANCEL
|
|
52
78
|
fields: @config.fields
|
|
53
79
|
mode: create
|
|
54
80
|
submitEvent: SUBMIT
|
|
@@ -105,7 +131,7 @@ orbital FormEntryOrbital {
|
|
|
105
131
|
gap: sm
|
|
106
132
|
type: stack
|
|
107
133
|
}, { type: divider }, {
|
|
108
|
-
cancelEvent:
|
|
134
|
+
cancelEvent: CANCEL
|
|
109
135
|
fields: @config.fields
|
|
110
136
|
mode: create
|
|
111
137
|
submitEvent: SUBMIT
|
|
@@ -143,6 +169,10 @@ orbital FormEntryOrbital {
|
|
|
143
169
|
@description "Indicates the form has been submitted for processing."
|
|
144
170
|
@synonyms "submit, send, post"
|
|
145
171
|
@tier "domain"
|
|
172
|
+
CANCEL
|
|
173
|
+
@description "Indicates the form's entries have been discarded and it should be reset."
|
|
174
|
+
@synonyms "cancel, discard, clear, start over"
|
|
175
|
+
@tier "domain"
|
|
146
176
|
FormEntryLoadFailed {
|
|
147
177
|
message : string
|
|
148
178
|
}
|
|
@@ -73,6 +73,15 @@
|
|
|
73
73
|
"parent": "trt_01KXG04GFTSZFEJ10QC507W0JB",
|
|
74
74
|
"renames": []
|
|
75
75
|
},
|
|
76
|
+
"evt_01KYYZJQR3XQR76QV9GXC1B3PM": {
|
|
77
|
+
"bakedName": "CANCEL",
|
|
78
|
+
"curName": "CANCEL",
|
|
79
|
+
"id": "evt_01KYYZJQR3XQR76QV9GXC1B3PM",
|
|
80
|
+
"kind": "event",
|
|
81
|
+
"owner": "workspace",
|
|
82
|
+
"parent": "trt_01KXG04GFTSZFEJ10QC507W0JB",
|
|
83
|
+
"renames": []
|
|
84
|
+
},
|
|
76
85
|
"orb_01KXG04GFTA56CPWMDNKA75G2N": {
|
|
77
86
|
"bakedName": "FormEntryOrbital",
|
|
78
87
|
"curName": "FormEntryOrbital",
|
|
@@ -479,6 +488,14 @@
|
|
|
479
488
|
"key": "INIT",
|
|
480
489
|
"name": "Initialize"
|
|
481
490
|
},
|
|
491
|
+
{
|
|
492
|
+
"description": "Indicates the form's entries have been discarded and it should be reset.",
|
|
493
|
+
"id": "evt_01KYYZJQR3XQR76QV9GXC1B3PM",
|
|
494
|
+
"key": "CANCEL",
|
|
495
|
+
"name": "Cancel",
|
|
496
|
+
"synonyms": "cancel, discard, clear, start over",
|
|
497
|
+
"tier": "domain"
|
|
498
|
+
},
|
|
482
499
|
{
|
|
483
500
|
"description": "Indicates the form has been submitted for processing.",
|
|
484
501
|
"id": "evt_01KXG04GFWG7G1J9Q147XVHWS7",
|
|
@@ -658,7 +675,7 @@
|
|
|
658
675
|
"type": "divider"
|
|
659
676
|
},
|
|
660
677
|
{
|
|
661
|
-
"cancelEvent": "
|
|
678
|
+
"cancelEvent": "CANCEL",
|
|
662
679
|
"fields": "@config.fields",
|
|
663
680
|
"mode": "create",
|
|
664
681
|
"submitEvent": "SUBMIT",
|
|
@@ -676,6 +693,62 @@
|
|
|
676
693
|
"from": "editing",
|
|
677
694
|
"to": "editing"
|
|
678
695
|
},
|
|
696
|
+
{
|
|
697
|
+
"effects": [
|
|
698
|
+
[
|
|
699
|
+
"fetch",
|
|
700
|
+
"FormEntry",
|
|
701
|
+
{
|
|
702
|
+
"emit": {
|
|
703
|
+
"failure": "FormEntryLoadFailed",
|
|
704
|
+
"success": "FormEntryLoaded"
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
],
|
|
708
|
+
[
|
|
709
|
+
"render-ui",
|
|
710
|
+
"main",
|
|
711
|
+
{
|
|
712
|
+
"children": [
|
|
713
|
+
{
|
|
714
|
+
"align": "center",
|
|
715
|
+
"children": [
|
|
716
|
+
{
|
|
717
|
+
"name": "@config.icon",
|
|
718
|
+
"type": "icon"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"content": "@config.title",
|
|
722
|
+
"type": "typography",
|
|
723
|
+
"variant": "h2"
|
|
724
|
+
}
|
|
725
|
+
],
|
|
726
|
+
"direction": "horizontal",
|
|
727
|
+
"gap": "sm",
|
|
728
|
+
"type": "stack"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"type": "divider"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"cancelEvent": "CANCEL",
|
|
735
|
+
"fields": "@config.fields",
|
|
736
|
+
"mode": "create",
|
|
737
|
+
"submitEvent": "SUBMIT",
|
|
738
|
+
"type": "form-section"
|
|
739
|
+
}
|
|
740
|
+
],
|
|
741
|
+
"direction": "vertical",
|
|
742
|
+
"gap": "lg",
|
|
743
|
+
"type": "stack"
|
|
744
|
+
}
|
|
745
|
+
]
|
|
746
|
+
],
|
|
747
|
+
"event": "CANCEL",
|
|
748
|
+
"eventId": "evt_01KYYZJQR3XQR76QV9GXC1B3PM",
|
|
749
|
+
"from": "editing",
|
|
750
|
+
"to": "editing"
|
|
751
|
+
},
|
|
679
752
|
{
|
|
680
753
|
"effects": [
|
|
681
754
|
[
|
|
@@ -777,7 +850,7 @@
|
|
|
777
850
|
"type": "divider"
|
|
778
851
|
},
|
|
779
852
|
{
|
|
780
|
-
"cancelEvent": "
|
|
853
|
+
"cancelEvent": "CANCEL",
|
|
781
854
|
"fields": "@config.fields",
|
|
782
855
|
"mode": "create",
|
|
783
856
|
"submitEvent": "SUBMIT",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$generated": "2026-08-
|
|
2
|
+
"$generated": "2026-08-01T18:46:37.239Z",
|
|
3
3
|
"$source": "tools/almadar-pattern-sync/behaviors",
|
|
4
4
|
"$package": "@almadar/std",
|
|
5
5
|
"totalBehaviors": 506,
|
|
@@ -7525,14 +7525,12 @@
|
|
|
7525
7525
|
"std-image-upload-multi",
|
|
7526
7526
|
"std-import",
|
|
7527
7527
|
"std-inspection-system",
|
|
7528
|
-
"std-inventory",
|
|
7529
7528
|
"std-ledger-entry-form",
|
|
7530
7529
|
"std-legal-case",
|
|
7531
7530
|
"std-list",
|
|
7532
7531
|
"std-listings",
|
|
7533
7532
|
"std-lms",
|
|
7534
7533
|
"std-marketing-campaign",
|
|
7535
|
-
"std-marketplace",
|
|
7536
7534
|
"std-menu",
|
|
7537
7535
|
"std-modal",
|
|
7538
7536
|
"std-modifier-group",
|
|
@@ -9487,8 +9485,8 @@
|
|
|
9487
9485
|
"statePattern": "editing, submitted",
|
|
9488
9486
|
"complexity": {
|
|
9489
9487
|
"states": 2,
|
|
9490
|
-
"events":
|
|
9491
|
-
"transitions":
|
|
9488
|
+
"events": 8,
|
|
9489
|
+
"transitions": 4
|
|
9492
9490
|
},
|
|
9493
9491
|
"defaultEntity": {
|
|
9494
9492
|
"name": "FormEntry",
|
|
@@ -9570,17 +9568,21 @@
|
|
|
9570
9568
|
"std-app-layout",
|
|
9571
9569
|
"std-app-search",
|
|
9572
9570
|
"std-application",
|
|
9571
|
+
"std-arcade-board-3d",
|
|
9573
9572
|
"std-billable-hour",
|
|
9574
9573
|
"std-board",
|
|
9575
9574
|
"std-browse",
|
|
9576
9575
|
"std-calendar",
|
|
9576
|
+
"std-cart",
|
|
9577
9577
|
"std-circuit-breaker",
|
|
9578
9578
|
"std-confirmation",
|
|
9579
|
+
"std-crew-board-2d",
|
|
9579
9580
|
"std-dashboard-grid-embedded",
|
|
9580
9581
|
"std-date-range",
|
|
9581
9582
|
"std-escalating-decision",
|
|
9582
9583
|
"std-esign-flow",
|
|
9583
9584
|
"std-esign-request",
|
|
9585
|
+
"std-event",
|
|
9584
9586
|
"std-event-log",
|
|
9585
9587
|
"std-export",
|
|
9586
9588
|
"std-file-store",
|
|
@@ -9593,6 +9595,7 @@
|
|
|
9593
9595
|
"std-import",
|
|
9594
9596
|
"std-insurance-claim",
|
|
9595
9597
|
"std-list",
|
|
9598
|
+
"std-market-board-3d",
|
|
9596
9599
|
"std-migration-job",
|
|
9597
9600
|
"std-ml-classify",
|
|
9598
9601
|
"std-ml-exact-check",
|
|
@@ -9601,6 +9604,7 @@
|
|
|
9601
9604
|
"std-ml-similarity",
|
|
9602
9605
|
"std-modal",
|
|
9603
9606
|
"std-multi-party-flow",
|
|
9607
|
+
"std-objective-board-3d",
|
|
9604
9608
|
"std-pagination",
|
|
9605
9609
|
"std-rate-limiter",
|
|
9606
9610
|
"std-rating-review",
|
|
@@ -9631,16 +9635,23 @@
|
|
|
9631
9635
|
"std-stat-rows",
|
|
9632
9636
|
"std-stats",
|
|
9633
9637
|
"std-step-flow",
|
|
9638
|
+
"std-survival-board-3d",
|
|
9634
9639
|
"std-tabs",
|
|
9640
|
+
"std-tactics-board-2d",
|
|
9641
|
+
"std-tactics-board-3d",
|
|
9635
9642
|
"std-tag-taxonomy",
|
|
9636
9643
|
"std-thread",
|
|
9637
9644
|
"std-timesheet",
|
|
9638
9645
|
"std-tokenizer",
|
|
9646
|
+
"std-trade-order",
|
|
9639
9647
|
"std-vendor-onboarding",
|
|
9640
9648
|
"std-version-history",
|
|
9641
9649
|
"std-vote",
|
|
9650
|
+
"std-waitlist",
|
|
9642
9651
|
"std-weight-validator",
|
|
9643
9652
|
"std-wizard",
|
|
9653
|
+
"std-wizard-branching",
|
|
9654
|
+
"std-work-order",
|
|
9644
9655
|
"ui-accordion",
|
|
9645
9656
|
"ui-activation-block",
|
|
9646
9657
|
"ui-alert",
|
|
@@ -9741,6 +9752,7 @@
|
|
|
9741
9752
|
"ui-media-gallery",
|
|
9742
9753
|
"ui-menu",
|
|
9743
9754
|
"ui-meter",
|
|
9755
|
+
"ui-minigolf-board-3d",
|
|
9744
9756
|
"ui-modal",
|
|
9745
9757
|
"ui-modal-slot",
|
|
9746
9758
|
"ui-navigation",
|
|
@@ -9752,6 +9764,7 @@
|
|
|
9752
9764
|
"ui-page-header",
|
|
9753
9765
|
"ui-page-transition",
|
|
9754
9766
|
"ui-pagination",
|
|
9767
|
+
"ui-pirate-board",
|
|
9755
9768
|
"ui-popover",
|
|
9756
9769
|
"ui-positioned-canvas",
|
|
9757
9770
|
"ui-presence",
|
|
@@ -9834,6 +9847,7 @@
|
|
|
9834
9847
|
"ui-wizard-progress"
|
|
9835
9848
|
],
|
|
9836
9849
|
"connectableEvents": [
|
|
9850
|
+
"CANCEL",
|
|
9837
9851
|
"SUBMIT",
|
|
9838
9852
|
"RESET",
|
|
9839
9853
|
"FormEntryLoaded",
|
|
@@ -11528,13 +11542,11 @@
|
|
|
11528
11542
|
"std-image-upload-multi",
|
|
11529
11543
|
"std-import",
|
|
11530
11544
|
"std-inspection-system",
|
|
11531
|
-
"std-inventory",
|
|
11532
11545
|
"std-ledger-entry-form",
|
|
11533
11546
|
"std-legal-case",
|
|
11534
11547
|
"std-listings",
|
|
11535
11548
|
"std-lms",
|
|
11536
11549
|
"std-marketing-campaign",
|
|
11537
|
-
"std-marketplace",
|
|
11538
11550
|
"std-menu",
|
|
11539
11551
|
"std-modal",
|
|
11540
11552
|
"std-modifier-group",
|
|
@@ -79984,6 +79996,7 @@
|
|
|
79984
79996
|
"std-evade-chase",
|
|
79985
79997
|
"std-event",
|
|
79986
79998
|
"std-flappy",
|
|
79999
|
+
"std-form-advanced",
|
|
79987
80000
|
"std-frogger",
|
|
79988
80001
|
"std-fx-particles",
|
|
79989
80002
|
"std-gather",
|
|
@@ -80383,6 +80396,7 @@
|
|
|
80383
80396
|
"std-dungeon-board-2d",
|
|
80384
80397
|
"std-dungeon-combat",
|
|
80385
80398
|
"std-event",
|
|
80399
|
+
"std-form-advanced",
|
|
80386
80400
|
"std-frogger",
|
|
80387
80401
|
"std-fx-particles",
|
|
80388
80402
|
"std-gather",
|
|
@@ -81771,6 +81785,7 @@
|
|
|
81771
81785
|
"std-evade-chase",
|
|
81772
81786
|
"std-event",
|
|
81773
81787
|
"std-flappy",
|
|
81788
|
+
"std-form-advanced",
|
|
81774
81789
|
"std-frogger",
|
|
81775
81790
|
"std-fx-particles",
|
|
81776
81791
|
"std-gather",
|
|
@@ -82454,6 +82469,7 @@
|
|
|
82454
82469
|
"std-evade-chase",
|
|
82455
82470
|
"std-event",
|
|
82456
82471
|
"std-flappy",
|
|
82472
|
+
"std-form-advanced",
|
|
82457
82473
|
"std-frogger",
|
|
82458
82474
|
"std-fx-particles",
|
|
82459
82475
|
"std-gather",
|
|
@@ -82850,6 +82866,7 @@
|
|
|
82850
82866
|
"std-evade-chase",
|
|
82851
82867
|
"std-event",
|
|
82852
82868
|
"std-flappy",
|
|
82869
|
+
"std-form-advanced",
|
|
82853
82870
|
"std-frogger",
|
|
82854
82871
|
"std-fx-particles",
|
|
82855
82872
|
"std-gather",
|
|
@@ -83312,6 +83329,7 @@
|
|
|
83312
83329
|
"std-dungeon-board-2d",
|
|
83313
83330
|
"std-dungeon-combat",
|
|
83314
83331
|
"std-event",
|
|
83332
|
+
"std-form-advanced",
|
|
83315
83333
|
"std-frogger",
|
|
83316
83334
|
"std-fx-particles",
|
|
83317
83335
|
"std-gather",
|
|
@@ -83704,6 +83722,7 @@
|
|
|
83704
83722
|
"std-dungeon-board-2d",
|
|
83705
83723
|
"std-dungeon-combat",
|
|
83706
83724
|
"std-event",
|
|
83725
|
+
"std-form-advanced",
|
|
83707
83726
|
"std-frogger",
|
|
83708
83727
|
"std-fx-particles",
|
|
83709
83728
|
"std-gather",
|
|
@@ -95854,6 +95873,7 @@
|
|
|
95854
95873
|
"std-evade",
|
|
95855
95874
|
"std-event",
|
|
95856
95875
|
"std-flappy",
|
|
95876
|
+
"std-form-advanced",
|
|
95857
95877
|
"std-frogger",
|
|
95858
95878
|
"std-fx-particles",
|
|
95859
95879
|
"std-gather",
|
|
@@ -97312,6 +97332,7 @@
|
|
|
97312
97332
|
"std-evade-chase",
|
|
97313
97333
|
"std-event",
|
|
97314
97334
|
"std-flappy",
|
|
97335
|
+
"std-form-advanced",
|
|
97315
97336
|
"std-frogger",
|
|
97316
97337
|
"std-fx-particles",
|
|
97317
97338
|
"std-gather",
|
|
@@ -5518,7 +5518,7 @@ declare function stdFilter(params: StdFilterParams): OrbitalDefinition;
|
|
|
5518
5518
|
* (transition triggers + emit names). Use as the key type
|
|
5519
5519
|
* when passing an `events:` rename map at the call site.
|
|
5520
5520
|
*/
|
|
5521
|
-
type StdFormAdvancedEventKey = 'FormEntryLoadFailed' | 'FormEntryLoaded' | 'FormEntrySaveFailed' | 'FormEntrySaved' | 'INIT' | 'RESET' | 'SUBMIT';
|
|
5521
|
+
type StdFormAdvancedEventKey = 'CANCEL' | 'FormEntryLoadFailed' | 'FormEntryLoaded' | 'FormEntrySaveFailed' | 'FormEntrySaved' | 'INIT' | 'RESET' | 'SUBMIT';
|
|
5522
5522
|
/**
|
|
5523
5523
|
* Payload shape for the `FormEntryLoaded` event.
|
|
5524
5524
|
*/
|
|
@@ -73,6 +73,15 @@
|
|
|
73
73
|
"parent": "trt_01KXG04GFTSZFEJ10QC507W0JB",
|
|
74
74
|
"renames": []
|
|
75
75
|
},
|
|
76
|
+
"evt_01KYYZJQR3XQR76QV9GXC1B3PM": {
|
|
77
|
+
"bakedName": "CANCEL",
|
|
78
|
+
"curName": "CANCEL",
|
|
79
|
+
"id": "evt_01KYYZJQR3XQR76QV9GXC1B3PM",
|
|
80
|
+
"kind": "event",
|
|
81
|
+
"owner": "workspace",
|
|
82
|
+
"parent": "trt_01KXG04GFTSZFEJ10QC507W0JB",
|
|
83
|
+
"renames": []
|
|
84
|
+
},
|
|
76
85
|
"orb_01KXG04GFTA56CPWMDNKA75G2N": {
|
|
77
86
|
"bakedName": "FormEntryOrbital",
|
|
78
87
|
"curName": "FormEntryOrbital",
|
|
@@ -479,6 +488,14 @@
|
|
|
479
488
|
"key": "INIT",
|
|
480
489
|
"name": "Initialize"
|
|
481
490
|
},
|
|
491
|
+
{
|
|
492
|
+
"description": "Indicates the form's entries have been discarded and it should be reset.",
|
|
493
|
+
"id": "evt_01KYYZJQR3XQR76QV9GXC1B3PM",
|
|
494
|
+
"key": "CANCEL",
|
|
495
|
+
"name": "Cancel",
|
|
496
|
+
"synonyms": "cancel, discard, clear, start over",
|
|
497
|
+
"tier": "domain"
|
|
498
|
+
},
|
|
482
499
|
{
|
|
483
500
|
"description": "Indicates the form has been submitted for processing.",
|
|
484
501
|
"id": "evt_01KXG04GFWG7G1J9Q147XVHWS7",
|
|
@@ -658,7 +675,7 @@
|
|
|
658
675
|
"type": "divider"
|
|
659
676
|
},
|
|
660
677
|
{
|
|
661
|
-
"cancelEvent": "
|
|
678
|
+
"cancelEvent": "CANCEL",
|
|
662
679
|
"fields": "@config.fields",
|
|
663
680
|
"mode": "create",
|
|
664
681
|
"submitEvent": "SUBMIT",
|
|
@@ -676,6 +693,62 @@
|
|
|
676
693
|
"from": "editing",
|
|
677
694
|
"to": "editing"
|
|
678
695
|
},
|
|
696
|
+
{
|
|
697
|
+
"effects": [
|
|
698
|
+
[
|
|
699
|
+
"fetch",
|
|
700
|
+
"FormEntry",
|
|
701
|
+
{
|
|
702
|
+
"emit": {
|
|
703
|
+
"failure": "FormEntryLoadFailed",
|
|
704
|
+
"success": "FormEntryLoaded"
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
],
|
|
708
|
+
[
|
|
709
|
+
"render-ui",
|
|
710
|
+
"main",
|
|
711
|
+
{
|
|
712
|
+
"children": [
|
|
713
|
+
{
|
|
714
|
+
"align": "center",
|
|
715
|
+
"children": [
|
|
716
|
+
{
|
|
717
|
+
"name": "@config.icon",
|
|
718
|
+
"type": "icon"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"content": "@config.title",
|
|
722
|
+
"type": "typography",
|
|
723
|
+
"variant": "h2"
|
|
724
|
+
}
|
|
725
|
+
],
|
|
726
|
+
"direction": "horizontal",
|
|
727
|
+
"gap": "sm",
|
|
728
|
+
"type": "stack"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"type": "divider"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"cancelEvent": "CANCEL",
|
|
735
|
+
"fields": "@config.fields",
|
|
736
|
+
"mode": "create",
|
|
737
|
+
"submitEvent": "SUBMIT",
|
|
738
|
+
"type": "form-section"
|
|
739
|
+
}
|
|
740
|
+
],
|
|
741
|
+
"direction": "vertical",
|
|
742
|
+
"gap": "lg",
|
|
743
|
+
"type": "stack"
|
|
744
|
+
}
|
|
745
|
+
]
|
|
746
|
+
],
|
|
747
|
+
"event": "CANCEL",
|
|
748
|
+
"eventId": "evt_01KYYZJQR3XQR76QV9GXC1B3PM",
|
|
749
|
+
"from": "editing",
|
|
750
|
+
"to": "editing"
|
|
751
|
+
},
|
|
679
752
|
{
|
|
680
753
|
"effects": [
|
|
681
754
|
[
|
|
@@ -777,7 +850,7 @@
|
|
|
777
850
|
"type": "divider"
|
|
778
851
|
},
|
|
779
852
|
{
|
|
780
|
-
"cancelEvent": "
|
|
853
|
+
"cancelEvent": "CANCEL",
|
|
781
854
|
"fields": "@config.fields",
|
|
782
855
|
"mode": "create",
|
|
783
856
|
"submitEvent": "SUBMIT",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$generated": "2026-08-
|
|
2
|
+
"$generated": "2026-08-01T18:46:37.239Z",
|
|
3
3
|
"$source": "tools/almadar-pattern-sync/behaviors",
|
|
4
4
|
"$package": "@almadar/std",
|
|
5
5
|
"totalBehaviors": 506,
|
|
@@ -7525,14 +7525,12 @@
|
|
|
7525
7525
|
"std-image-upload-multi",
|
|
7526
7526
|
"std-import",
|
|
7527
7527
|
"std-inspection-system",
|
|
7528
|
-
"std-inventory",
|
|
7529
7528
|
"std-ledger-entry-form",
|
|
7530
7529
|
"std-legal-case",
|
|
7531
7530
|
"std-list",
|
|
7532
7531
|
"std-listings",
|
|
7533
7532
|
"std-lms",
|
|
7534
7533
|
"std-marketing-campaign",
|
|
7535
|
-
"std-marketplace",
|
|
7536
7534
|
"std-menu",
|
|
7537
7535
|
"std-modal",
|
|
7538
7536
|
"std-modifier-group",
|
|
@@ -9487,8 +9485,8 @@
|
|
|
9487
9485
|
"statePattern": "editing, submitted",
|
|
9488
9486
|
"complexity": {
|
|
9489
9487
|
"states": 2,
|
|
9490
|
-
"events":
|
|
9491
|
-
"transitions":
|
|
9488
|
+
"events": 8,
|
|
9489
|
+
"transitions": 4
|
|
9492
9490
|
},
|
|
9493
9491
|
"defaultEntity": {
|
|
9494
9492
|
"name": "FormEntry",
|
|
@@ -9570,17 +9568,21 @@
|
|
|
9570
9568
|
"std-app-layout",
|
|
9571
9569
|
"std-app-search",
|
|
9572
9570
|
"std-application",
|
|
9571
|
+
"std-arcade-board-3d",
|
|
9573
9572
|
"std-billable-hour",
|
|
9574
9573
|
"std-board",
|
|
9575
9574
|
"std-browse",
|
|
9576
9575
|
"std-calendar",
|
|
9576
|
+
"std-cart",
|
|
9577
9577
|
"std-circuit-breaker",
|
|
9578
9578
|
"std-confirmation",
|
|
9579
|
+
"std-crew-board-2d",
|
|
9579
9580
|
"std-dashboard-grid-embedded",
|
|
9580
9581
|
"std-date-range",
|
|
9581
9582
|
"std-escalating-decision",
|
|
9582
9583
|
"std-esign-flow",
|
|
9583
9584
|
"std-esign-request",
|
|
9585
|
+
"std-event",
|
|
9584
9586
|
"std-event-log",
|
|
9585
9587
|
"std-export",
|
|
9586
9588
|
"std-file-store",
|
|
@@ -9593,6 +9595,7 @@
|
|
|
9593
9595
|
"std-import",
|
|
9594
9596
|
"std-insurance-claim",
|
|
9595
9597
|
"std-list",
|
|
9598
|
+
"std-market-board-3d",
|
|
9596
9599
|
"std-migration-job",
|
|
9597
9600
|
"std-ml-classify",
|
|
9598
9601
|
"std-ml-exact-check",
|
|
@@ -9601,6 +9604,7 @@
|
|
|
9601
9604
|
"std-ml-similarity",
|
|
9602
9605
|
"std-modal",
|
|
9603
9606
|
"std-multi-party-flow",
|
|
9607
|
+
"std-objective-board-3d",
|
|
9604
9608
|
"std-pagination",
|
|
9605
9609
|
"std-rate-limiter",
|
|
9606
9610
|
"std-rating-review",
|
|
@@ -9631,16 +9635,23 @@
|
|
|
9631
9635
|
"std-stat-rows",
|
|
9632
9636
|
"std-stats",
|
|
9633
9637
|
"std-step-flow",
|
|
9638
|
+
"std-survival-board-3d",
|
|
9634
9639
|
"std-tabs",
|
|
9640
|
+
"std-tactics-board-2d",
|
|
9641
|
+
"std-tactics-board-3d",
|
|
9635
9642
|
"std-tag-taxonomy",
|
|
9636
9643
|
"std-thread",
|
|
9637
9644
|
"std-timesheet",
|
|
9638
9645
|
"std-tokenizer",
|
|
9646
|
+
"std-trade-order",
|
|
9639
9647
|
"std-vendor-onboarding",
|
|
9640
9648
|
"std-version-history",
|
|
9641
9649
|
"std-vote",
|
|
9650
|
+
"std-waitlist",
|
|
9642
9651
|
"std-weight-validator",
|
|
9643
9652
|
"std-wizard",
|
|
9653
|
+
"std-wizard-branching",
|
|
9654
|
+
"std-work-order",
|
|
9644
9655
|
"ui-accordion",
|
|
9645
9656
|
"ui-activation-block",
|
|
9646
9657
|
"ui-alert",
|
|
@@ -9741,6 +9752,7 @@
|
|
|
9741
9752
|
"ui-media-gallery",
|
|
9742
9753
|
"ui-menu",
|
|
9743
9754
|
"ui-meter",
|
|
9755
|
+
"ui-minigolf-board-3d",
|
|
9744
9756
|
"ui-modal",
|
|
9745
9757
|
"ui-modal-slot",
|
|
9746
9758
|
"ui-navigation",
|
|
@@ -9752,6 +9764,7 @@
|
|
|
9752
9764
|
"ui-page-header",
|
|
9753
9765
|
"ui-page-transition",
|
|
9754
9766
|
"ui-pagination",
|
|
9767
|
+
"ui-pirate-board",
|
|
9755
9768
|
"ui-popover",
|
|
9756
9769
|
"ui-positioned-canvas",
|
|
9757
9770
|
"ui-presence",
|
|
@@ -9834,6 +9847,7 @@
|
|
|
9834
9847
|
"ui-wizard-progress"
|
|
9835
9848
|
],
|
|
9836
9849
|
"connectableEvents": [
|
|
9850
|
+
"CANCEL",
|
|
9837
9851
|
"SUBMIT",
|
|
9838
9852
|
"RESET",
|
|
9839
9853
|
"FormEntryLoaded",
|
|
@@ -11528,13 +11542,11 @@
|
|
|
11528
11542
|
"std-image-upload-multi",
|
|
11529
11543
|
"std-import",
|
|
11530
11544
|
"std-inspection-system",
|
|
11531
|
-
"std-inventory",
|
|
11532
11545
|
"std-ledger-entry-form",
|
|
11533
11546
|
"std-legal-case",
|
|
11534
11547
|
"std-listings",
|
|
11535
11548
|
"std-lms",
|
|
11536
11549
|
"std-marketing-campaign",
|
|
11537
|
-
"std-marketplace",
|
|
11538
11550
|
"std-menu",
|
|
11539
11551
|
"std-modal",
|
|
11540
11552
|
"std-modifier-group",
|
|
@@ -79984,6 +79996,7 @@
|
|
|
79984
79996
|
"std-evade-chase",
|
|
79985
79997
|
"std-event",
|
|
79986
79998
|
"std-flappy",
|
|
79999
|
+
"std-form-advanced",
|
|
79987
80000
|
"std-frogger",
|
|
79988
80001
|
"std-fx-particles",
|
|
79989
80002
|
"std-gather",
|
|
@@ -80383,6 +80396,7 @@
|
|
|
80383
80396
|
"std-dungeon-board-2d",
|
|
80384
80397
|
"std-dungeon-combat",
|
|
80385
80398
|
"std-event",
|
|
80399
|
+
"std-form-advanced",
|
|
80386
80400
|
"std-frogger",
|
|
80387
80401
|
"std-fx-particles",
|
|
80388
80402
|
"std-gather",
|
|
@@ -81771,6 +81785,7 @@
|
|
|
81771
81785
|
"std-evade-chase",
|
|
81772
81786
|
"std-event",
|
|
81773
81787
|
"std-flappy",
|
|
81788
|
+
"std-form-advanced",
|
|
81774
81789
|
"std-frogger",
|
|
81775
81790
|
"std-fx-particles",
|
|
81776
81791
|
"std-gather",
|
|
@@ -82454,6 +82469,7 @@
|
|
|
82454
82469
|
"std-evade-chase",
|
|
82455
82470
|
"std-event",
|
|
82456
82471
|
"std-flappy",
|
|
82472
|
+
"std-form-advanced",
|
|
82457
82473
|
"std-frogger",
|
|
82458
82474
|
"std-fx-particles",
|
|
82459
82475
|
"std-gather",
|
|
@@ -82850,6 +82866,7 @@
|
|
|
82850
82866
|
"std-evade-chase",
|
|
82851
82867
|
"std-event",
|
|
82852
82868
|
"std-flappy",
|
|
82869
|
+
"std-form-advanced",
|
|
82853
82870
|
"std-frogger",
|
|
82854
82871
|
"std-fx-particles",
|
|
82855
82872
|
"std-gather",
|
|
@@ -83312,6 +83329,7 @@
|
|
|
83312
83329
|
"std-dungeon-board-2d",
|
|
83313
83330
|
"std-dungeon-combat",
|
|
83314
83331
|
"std-event",
|
|
83332
|
+
"std-form-advanced",
|
|
83315
83333
|
"std-frogger",
|
|
83316
83334
|
"std-fx-particles",
|
|
83317
83335
|
"std-gather",
|
|
@@ -83704,6 +83722,7 @@
|
|
|
83704
83722
|
"std-dungeon-board-2d",
|
|
83705
83723
|
"std-dungeon-combat",
|
|
83706
83724
|
"std-event",
|
|
83725
|
+
"std-form-advanced",
|
|
83707
83726
|
"std-frogger",
|
|
83708
83727
|
"std-fx-particles",
|
|
83709
83728
|
"std-gather",
|
|
@@ -95854,6 +95873,7 @@
|
|
|
95854
95873
|
"std-evade",
|
|
95855
95874
|
"std-event",
|
|
95856
95875
|
"std-flappy",
|
|
95876
|
+
"std-form-advanced",
|
|
95857
95877
|
"std-frogger",
|
|
95858
95878
|
"std-fx-particles",
|
|
95859
95879
|
"std-gather",
|
|
@@ -97312,6 +97332,7 @@
|
|
|
97312
97332
|
"std-evade-chase",
|
|
97313
97333
|
"std-event",
|
|
97314
97334
|
"std-flappy",
|
|
97335
|
+
"std-form-advanced",
|
|
97315
97336
|
"std-frogger",
|
|
97316
97337
|
"std-fx-particles",
|
|
97317
97338
|
"std-gather",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/std",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.162.0",
|
|
4
4
|
"description": "Standard library operators for Almadar (math, string, array, etc.)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@almadar/core": "^10.
|
|
59
|
+
"@almadar/core": "^10.50.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@almadar/eslint-plugin": "^2.15.0",
|