cogsbox-state 0.5.423 → 0.5.425

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.
@@ -101,7 +101,6 @@ export type ArrayEndType<TShape extends unknown> = {
101
101
  last: () => StateObject<InferArrayElement<TShape>> | undefined;
102
102
  } & EndType<TShape>;
103
103
  export type FormOptsType = {
104
- key?: string;
105
104
  validation?: {
106
105
  hideMessage?: boolean;
107
106
  message?: string;
@@ -109,9 +108,7 @@ export type FormOptsType = {
109
108
  props?: GenericObject;
110
109
  disable?: boolean;
111
110
  };
112
- formElements?: boolean;
113
111
  debounceTime?: number;
114
- stateServerDifferences?: string[][];
115
112
  };
116
113
  export type FormControl<T> = (obj: FormElementParams<T>) => JSX.Element;
117
114
  export type UpdateArg<S> = S | ((prevState: S) => S);