How to use the @jsonforms/react.withJsonFormsArrayControlProps function in @jsonforms/react

To help you get started, we’ve selected a few @jsonforms/react examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github eclipsesource / jsonforms / packages / vanilla / src / complex / TableArrayControl.tsx View on Github external
>
                          Delete
                        
                      
                    
                  );
                })
              )}
          
        
      
    );
  }
}

export default withVanillaControlProps(withJsonFormsArrayControlProps(TableArrayControl));
github eclipsesource / jsonforms / packages / vanilla / src / complex / array / ArrayControlRenderer.tsx View on Github external
data={data}
                label={label}
                path={path}
                addItem={addItem}
                uischemas={uischemas}
                uischema={uischema}
                schema={schema}
                rootSchema={rootSchema}
                id={id}
                visible={visible}
                enabled={enabled}
            />
        );
    };

export default withVanillaControlProps(withJsonFormsArrayControlProps(ArrayControlRenderer));