@steroidsjs/core 3.0.0-beta.30 → 3.0.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steroidsjs/core",
3
- "version": "3.0.0-beta.30",
3
+ "version": "3.0.0-beta.31",
4
4
  "description": "",
5
5
  "author": "Vladimir Kozhin <hello@kozhindev.com>",
6
6
  "repository": {
@@ -44,6 +44,7 @@ export interface ICheckboxListFieldViewProps extends IFieldWrapperOutputProps {
44
44
  selectedIds: (PrimaryKey | any)[];
45
45
  onItemSelect: (id: PrimaryKey | any) => void;
46
46
  orientation?: Orientation;
47
+ disabled?: boolean;
47
48
  renderCheckbox: (checkboxProps: ICheckboxFieldViewProps) => JSX.Element;
48
49
  }
49
50
  declare const _default: import("../../../ui/form/Field/fieldWrapper").FieldWrapperComponent<ICheckboxListFieldProps>;
@@ -44,6 +44,7 @@ export interface IRadioListFieldViewProps extends IFieldWrapperOutputProps {
44
44
  selectedIds: (PrimaryKey | any)[];
45
45
  className?: CssClassName;
46
46
  orientation?: Orientation;
47
+ disabled?: boolean;
47
48
  size?: Size;
48
49
  onItemSelect: (id: PrimaryKey | any) => void;
49
50
  renderRadio: (radioProps: IRadioFieldViewProps) => JSX.Element;
@@ -34,6 +34,7 @@ export interface IListViewProps extends Omit<IListProps, 'onFetch'>, Omit<IListO
34
34
  }
35
35
  export interface IListItemViewProps {
36
36
  id: PrimaryKey;
37
+ primaryKey: PrimaryKey;
37
38
  item: {
38
39
  id?: PrimaryKey;
39
40
  title?: string | any;