fansunited-management-components 1.31.3 → 1.33.0
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/index.es.js +6423 -6273
- package/index.umd.js +236 -228
- package/package.json +1 -1
- package/src/components/Inputs/InformationInput/InformationInput.d.ts +1 -0
- package/src/components/Switch/BooleanSwitch.d.ts +1 -0
- package/src/components/WidgetEmbedCode/WidgetEmbedCode.d.ts +10 -0
- package/src/components/WidgetListEmbedCode/WidgetListEmbedCode.d.ts +8 -0
package/package.json
CHANGED
|
@@ -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,10 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
type WidgetEmbedCodeProps = {
|
|
4
|
+
entityType: 'classic-quiz' | 'either-or' | 'poll';
|
|
5
|
+
entityId: string;
|
|
6
|
+
authRequirement: string | null;
|
|
7
|
+
labels: any;
|
|
8
|
+
};
|
|
9
|
+
declare const WidgetEmbedCode: React.FC<WidgetEmbedCodeProps>;
|
|
10
|
+
export default WidgetEmbedCode;
|