@steroidsjs/core 3.0.80 → 3.0.81

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.
@@ -26936,7 +26936,7 @@
26936
26936
  "decorators": [],
26937
26937
  "description": "Свойства для элемента input",
26938
26938
  "required": true,
26939
- "type": "{disabled: boolean, max: number, min: number, name: string, placeholder: string, step: string | number, type: string, value: number, onChange: null}",
26939
+ "type": "{disabled: boolean, max: number, min: number, name: string, placeholder: string, required: boolean, step: string | number, type: string, value: number, onChange: null}",
26940
26940
  "example": null
26941
26941
  },
26942
26942
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steroidsjs/core",
3
- "version": "3.0.80",
3
+ "version": "3.0.81",
4
4
  "description": "",
5
5
  "author": "Vladimir Kozhin <hello@kozhindev.com>",
6
6
  "repository": {
@@ -42,6 +42,7 @@ export interface INumberFieldViewProps extends INumberFieldProps, IFieldWrapperO
42
42
  min: number;
43
43
  max: number;
44
44
  step: string | number;
45
+ required: boolean;
45
46
  };
46
47
  inputRef: React.MutableRefObject<any>;
47
48
  onStepUp: VoidFunction;