@adriansteffan/reactive 0.0.10 → 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 +0 -1
- package/dist/mod.d.ts +0 -8
- package/dist/{reactivepsych.es.js → reactive.es.js} +6101 -6513
- package/dist/{reactivepsych.umd.js → reactive.umd.js} +31 -42
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/experiment.tsx +1 -3
- package/src/components/text.tsx +1 -1
- package/src/index.css +0 -6
- package/src/mod.tsx +1 -2
- package/template/package-lock.json +45 -0
- package/template/package.json +1 -0
- package/template/tailwind.config.js +1 -1
- package/vite.config.ts +1 -1
- package/src/components/mastermindlewrapper.tsx +0 -662
package/README.md
CHANGED
|
@@ -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;
|