@steroidsjs/core 2.2.33 → 2.2.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steroidsjs/core",
3
- "version": "2.2.33",
3
+ "version": "2.2.34",
4
4
  "description": "",
5
5
  "author": "Vladimir Kozhin <hello@kozhindev.com>",
6
6
  "repository": {
@@ -32,6 +32,7 @@ export interface IRadioListFieldViewProps extends IFieldWrapperOutputProps {
32
32
  items: {
33
33
  id: number | string | boolean;
34
34
  label?: string;
35
+ disabled?: boolean;
35
36
  isSelected: boolean;
36
37
  isHovered: boolean;
37
38
  }[];
@@ -26,6 +26,7 @@ function RadioListField(props) {
26
26
  // Data select
27
27
  var _a = hooks_1.useDataSelect({
28
28
  selectedIds: props.selectedIds,
29
+ selectFirst: props.selectFirst,
29
30
  primaryKey: props.primaryKey,
30
31
  items: items,
31
32
  inputValue: props.input.value