fansunited-management-components 1.32.0 → 1.33.1

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.32.0",
3
+ "version": "1.33.1",
4
4
  "main": "index.es.js",
5
5
  "author": "Fans United",
6
6
  "description": "",
@@ -8,6 +8,7 @@ type InformationInputProps = {
8
8
  required: boolean;
9
9
  size: 'sm' | 'md' | 'lg';
10
10
  readOnly?: boolean;
11
+ endDecorator?: React.ReactNode;
11
12
  onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
12
13
  };
13
14
  declare const InformationInput: React.FC<InformationInputProps>;
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+
3
+ type WidgetListEmbedCodeProps = {
4
+ entityId: string;
5
+ labels: any;
6
+ };
7
+ declare const WidgetListEmbedCode: React.FC<WidgetListEmbedCodeProps>;
8
+ export default WidgetListEmbedCode;