@adriansteffan/reactive 0.0.9 → 0.0.11

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # ReactivePsych
1
+ # reactive
2
2
 
3
3
  A framework for quickly building interactive online experiments using Typescript, React, and TailwindCSS. Comes with a template project that has all batteries included (build tools, docker deployment setup, node server for upload etc.)
4
4
  The project is very early stage, so many of the abstractions are still very leaky and the documentation is largely unfinished.
@@ -30,7 +30,6 @@ Premade components available so far:
30
30
  * Quest: SurveyJS questionnaires
31
31
  * ... all questiontypes supported by SurveyJS can be used
32
32
  * voicerecorder: a custom question type that allows participants to record voice
33
- * MasterMindleWrapper: (weird name atm, needs splitting up) Participants play a game similar to Mastermind with varying difficulties
34
33
  * Upload: Uploads the collected data on a button press by the participant
35
34
 
36
35
 
package/dist/mod.d.ts CHANGED
@@ -45,14 +45,6 @@ export declare interface FileUpload {
45
45
 
46
46
  export declare function getParam<T extends ParamType>(name: string, defaultValue: ParamValue<T> | undefined, type?: T): ParamValue<T> | undefined;
47
47
 
48
- export declare function MasterMindleWrapper({ next, blockIndex, feedback, timeLimit, maxGuesses, }: {
49
- next: (data: object) => void;
50
- blockIndex: number;
51
- feedback: 1 | 2 | 3 | 4 | 5;
52
- timeLimit: number;
53
- maxGuesses: number;
54
- }): JSX_2.Element;
55
-
56
48
  export declare const MicCheck: ({ next }: {
57
49
  next: (data: object) => void;
58
50
  }) => JSX_2.Element;