fansunited-management-components 1.31.3-RC3 → 1.31.3-RC4

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": "fansunited-management-components",
3
- "version": "1.31.3-RC3",
3
+ "version": "1.31.3-RC4",
4
4
  "main": "index.es.js",
5
5
  "author": "Fans United",
6
6
  "description": "",
@@ -1,6 +1,4 @@
1
1
  import { default as React } from 'react';
2
2
 
3
- declare const DragHandle: React.FC<{
4
- disabled: boolean;
5
- }>;
3
+ declare const DragHandle: React.FC;
6
4
  export default DragHandle;
@@ -4,7 +4,7 @@ type ScheduleProps = {
4
4
  labels: any;
5
5
  entityId: string;
6
6
  entityType: string;
7
- readonly?: boolean;
7
+ readOnly?: boolean;
8
8
  };
9
9
  declare const Schedule: React.FC<ScheduleProps>;
10
10
  export default Schedule;