@adriansteffan/reactive 0.0.18 → 0.0.20

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/dist/mod.d.ts CHANGED
@@ -16,6 +16,14 @@ declare type ComponentsMap_2 = {
16
16
  [key: string]: ComponentType<any>;
17
17
  };
18
18
 
19
+ export declare function EnterFullscreen({ content, buttonText, next, }: {
20
+ prolificCode?: string;
21
+ content?: React.ReactNode;
22
+ buttonText?: string;
23
+ } & BaseComponentProps): JSX_2.Element;
24
+
25
+ export declare function ExitFullscreen({ next }: BaseComponentProps): JSX_2.Element;
26
+
19
27
  export declare function Experiment({ timeline, config, components, questions, }: {
20
28
  timeline: ExperimentTrial[];
21
29
  config?: ExperimentConfig;
@@ -45,6 +53,8 @@ export declare interface FileUpload {
45
53
 
46
54
  export declare function getParam<T extends ParamType>(name: string, defaultValue: ParamValue<T> | undefined, type?: T): ParamValue<T> | undefined;
47
55
 
56
+ export declare function isDesktop(): boolean;
57
+
48
58
  export declare const MicCheck: ({ next }: {
49
59
  next: (data: object) => void;
50
60
  }) => JSX_2.Element;
@@ -87,12 +97,14 @@ declare function Text_2({ content, buttonText, className, next, animate, }: {
87
97
  }): JSX_2.Element;
88
98
  export { Text_2 as Text }
89
99
 
90
- export declare function Upload({ data, next, sessionID, generateFiles, uploadRaw, }: {
100
+ export declare function Upload({ data, next, sessionID, generateFiles, uploadRaw, autoUpload, androidFolderName, }: {
91
101
  data: StudyEvent[];
92
102
  next: () => void;
93
103
  sessionID?: string | null;
94
104
  generateFiles: (sessionID: string, data: StudyEvent[]) => FileUpload[];
95
105
  uploadRaw: boolean;
106
+ autoUpload: boolean;
107
+ androidFolderName?: string;
96
108
  }): JSX_2.Element;
97
109
 
98
110
  export { }