@react-typed-forms/schemas 17.0.1 → 17.1.1

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.
@@ -309,6 +309,7 @@ export interface DisplayRendererProps {
309
309
  */
310
310
  style?: React.CSSProperties;
311
311
  inline?: boolean;
312
+ noSelection?: boolean | null;
312
313
  }
313
314
  export interface ParentRendererProps {
314
315
  formNode: FormStateNode;
package/lib/index.cjs CHANGED
@@ -1009,7 +1009,8 @@ function renderControlLayout(props) {
1009
1009
  textClass: rendererClass(textClass, c.textClass),
1010
1010
  style: style,
1011
1011
  dataContext: dataContext,
1012
- inline: inline
1012
+ inline: inline,
1013
+ noSelection: c.noSelection
1013
1014
  };
1014
1015
  if (data.type === formsCore.DisplayDataType.Custom && customDisplay) {
1015
1016
  return {