@@ -24,6 +24,8 @@ import {
2424 NumberWithScaleView ,
2525 ObjectBase ,
2626 ObjectBaseView ,
27+ ObjectValueInput ,
28+ ObjectValueInputView ,
2729 OneOf ,
2830 OneOfCard ,
2931 OneOfCardView ,
@@ -130,6 +132,7 @@ export const dynamicConfig: DynamicFormConfig = {
130132 secret : { Component : Secret , independent : true } ,
131133 base : { Component : ObjectBase , independent : true } ,
132134 text_link : { Component : TextLink , independent : true } ,
135+ object_value : { Component : ObjectValueInput , independent : true } ,
133136 } ,
134137 layouts : {
135138 row : Row ,
@@ -228,6 +231,7 @@ export const dynamicCardConfig: DynamicFormConfig = {
228231 secret : { Component : Secret , independent : true } ,
229232 base : { Component : ObjectBase , independent : true } ,
230233 text_link : { Component : TextLink , independent : true } ,
234+ object_value : { Component : ObjectValueInput , independent : true } ,
231235 } ,
232236 layouts : {
233237 row : Row2 ,
@@ -315,6 +319,7 @@ export const dynamicViewConfig: DynamicViewConfig = {
315319 secret : undefined ,
316320 base : { Component : ObjectBaseView , independent : true } ,
317321 text_link : { Component : TextLinkView , independent : true } ,
322+ object_value : { Component : ObjectValueInputView , independent : true } ,
318323 } ,
319324 layouts : {
320325 row : ViewRow ,
@@ -395,6 +400,7 @@ export const dynamicViewCardConfig: DynamicViewConfig = {
395400 secret : undefined ,
396401 base : { Component : ObjectBaseView , independent : true } ,
397402 text_link : { Component : TextLinkView , independent : true } ,
403+ object_value : { Component : ObjectValueInputView , independent : true } ,
398404 } ,
399405 layouts : {
400406 row : ViewRow2 ,
0 commit comments