@minimalstuff/ui 0.0.30 → 0.0.31

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/dist/index.d.ts CHANGED
@@ -151,9 +151,9 @@ iGlobalHotkeysContextState
151
151
  );
152
152
 
153
153
  declare interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement> & FormFieldProps, 'onChange'> {
154
- label: string;
155
154
  name: string;
156
155
  checked: boolean;
156
+ label?: string;
157
157
  errors?: string[];
158
158
  onChange?: (name: string, checked: boolean) => void;
159
159
  }