react-formule 1.6.0 → 1.7.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/README.md CHANGED
@@ -73,7 +73,7 @@ Formule includes a variety of predefined field types, grouped in three categorie
73
73
  - `Accordion`: It works as a `List` with collapsible entries.
74
74
  - `Layer`: It works as a `List` whose entries will open in a dialog window.
75
75
  - `Tab`: It's commonly supposed to be used as a wrapper around the rest of the elements. You will normally want to add an `Object` inside and you can use it to separate the form in different pages or sections.
76
- - **Advanced fields**: More complex or situational fields such as `URI`, `Rich/Latex editor`, `Tags`, `ID Fetcher`, `Code Editor` and `Files`.
76
+ - **Advanced fields**: More complex or situational fields such as `URI`, `Rich/Latex editor`, `Tags`, `ID Fetcher`, `Code Editor`, `Files` and `Slider`.
77
77
 
78
78
  You can freely remove some of these predefined fields and add your own custom fields and widgets following the JSON Schema specifications. More details below.
79
79
 
@@ -0,0 +1,8 @@
1
+ export default SchemaCodeEditor;
2
+ declare function SchemaCodeEditor({ valueType, value, height, lang, isReadOnly }: {
3
+ valueType: any;
4
+ value: any;
5
+ height: any;
6
+ lang: any;
7
+ isReadOnly: any;
8
+ }): import("react/jsx-runtime").JSX.Element;