@timeax/digital-service-engine 0.3.4 → 0.3.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.
- package/dist/core/index.cjs +680 -159
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +48 -6
- package/dist/core/index.d.ts +48 -6
- package/dist/core/index.js +671 -158
- package/dist/core/index.js.map +1 -1
- package/dist/react/index.cjs +2123 -999
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +115 -58
- package/dist/react/index.d.ts +115 -58
- package/dist/react/index.js +2123 -999
- package/dist/react/index.js.map +1 -1
- package/dist/schema/index.d.cts +19 -2
- package/dist/schema/index.d.ts +19 -2
- package/dist/workspace/index.cjs +1291 -372
- package/dist/workspace/index.cjs.map +1 -1
- package/dist/workspace/index.d.cts +176 -5
- package/dist/workspace/index.d.ts +176 -5
- package/dist/workspace/index.js +1291 -372
- package/dist/workspace/index.js.map +1 -1
- package/package.json +1 -1
- package/schema/editor-snapshot.schema.json +38 -0
- package/schema/service-props.schema.json +38 -0
package/package.json
CHANGED
|
@@ -77,6 +77,15 @@
|
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
|
+
"option_effects_for_buttons": {
|
|
81
|
+
"type": "object",
|
|
82
|
+
"additionalProperties": {
|
|
83
|
+
"type": "object",
|
|
84
|
+
"additionalProperties": {
|
|
85
|
+
"$ref": "#/definitions/OptionEffectForButton"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
80
89
|
"schema_version": {
|
|
81
90
|
"type": "string"
|
|
82
91
|
},
|
|
@@ -571,6 +580,12 @@
|
|
|
571
580
|
]
|
|
572
581
|
}
|
|
573
582
|
}
|
|
583
|
+
},
|
|
584
|
+
"children": {
|
|
585
|
+
"type": "array",
|
|
586
|
+
"items": {
|
|
587
|
+
"$ref": "#/definitions/FieldOption"
|
|
588
|
+
}
|
|
574
589
|
}
|
|
575
590
|
},
|
|
576
591
|
"required": [
|
|
@@ -647,6 +662,29 @@
|
|
|
647
662
|
"match"
|
|
648
663
|
]
|
|
649
664
|
},
|
|
665
|
+
"OptionEffectForButton": {
|
|
666
|
+
"type": "object",
|
|
667
|
+
"properties": {
|
|
668
|
+
"forceVisible": {
|
|
669
|
+
"type": "boolean",
|
|
670
|
+
"description": "If true, selecting this button/option may force the target field visible. If false/missing, the option filter only applies when the target field is already visible."
|
|
671
|
+
},
|
|
672
|
+
"include": {
|
|
673
|
+
"type": "array",
|
|
674
|
+
"items": {
|
|
675
|
+
"type": "string"
|
|
676
|
+
},
|
|
677
|
+
"description": "If present, only these option ids remain visible."
|
|
678
|
+
},
|
|
679
|
+
"exclude": {
|
|
680
|
+
"type": "array",
|
|
681
|
+
"items": {
|
|
682
|
+
"type": "string"
|
|
683
|
+
},
|
|
684
|
+
"description": "Removed after include is applied."
|
|
685
|
+
}
|
|
686
|
+
}
|
|
687
|
+
},
|
|
650
688
|
"ServiceFallback": {
|
|
651
689
|
"type": "object",
|
|
652
690
|
"properties": {
|
|
@@ -50,6 +50,15 @@
|
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
+
"option_effects_for_buttons": {
|
|
54
|
+
"type": "object",
|
|
55
|
+
"additionalProperties": {
|
|
56
|
+
"type": "object",
|
|
57
|
+
"additionalProperties": {
|
|
58
|
+
"$ref": "#/definitions/OptionEffectForButton"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
53
62
|
"schema_version": {
|
|
54
63
|
"type": "string"
|
|
55
64
|
},
|
|
@@ -544,6 +553,12 @@
|
|
|
544
553
|
]
|
|
545
554
|
}
|
|
546
555
|
}
|
|
556
|
+
},
|
|
557
|
+
"children": {
|
|
558
|
+
"type": "array",
|
|
559
|
+
"items": {
|
|
560
|
+
"$ref": "#/definitions/FieldOption"
|
|
561
|
+
}
|
|
547
562
|
}
|
|
548
563
|
},
|
|
549
564
|
"required": [
|
|
@@ -620,6 +635,29 @@
|
|
|
620
635
|
"match"
|
|
621
636
|
]
|
|
622
637
|
},
|
|
638
|
+
"OptionEffectForButton": {
|
|
639
|
+
"type": "object",
|
|
640
|
+
"properties": {
|
|
641
|
+
"forceVisible": {
|
|
642
|
+
"type": "boolean",
|
|
643
|
+
"description": "If true, selecting this button/option may force the target field visible. If false/missing, the option filter only applies when the target field is already visible."
|
|
644
|
+
},
|
|
645
|
+
"include": {
|
|
646
|
+
"type": "array",
|
|
647
|
+
"items": {
|
|
648
|
+
"type": "string"
|
|
649
|
+
},
|
|
650
|
+
"description": "If present, only these option ids remain visible."
|
|
651
|
+
},
|
|
652
|
+
"exclude": {
|
|
653
|
+
"type": "array",
|
|
654
|
+
"items": {
|
|
655
|
+
"type": "string"
|
|
656
|
+
},
|
|
657
|
+
"description": "Removed after include is applied."
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
},
|
|
623
661
|
"ServiceFallback": {
|
|
624
662
|
"type": "object",
|
|
625
663
|
"properties": {
|