@vue-skuilder/courseware 0.1.8-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/dist/CourseWare.d.ts +18 -0
- package/dist/CourseWare.d.ts.map +1 -0
- package/dist/assets/index.css +1 -0
- package/dist/chess/chessUtils.d.ts +17 -0
- package/dist/chess/chessUtils.d.ts.map +1 -0
- package/dist/chess/chessground/anim.d.ts +18 -0
- package/dist/chess/chessground/anim.d.ts.map +1 -0
- package/dist/chess/chessground/api.d.ts +29 -0
- package/dist/chess/chessground/api.d.ts.map +1 -0
- package/dist/chess/chessground/autoPieces.d.ts +4 -0
- package/dist/chess/chessground/autoPieces.d.ts.map +1 -0
- package/dist/chess/chessground/board.d.ts +26 -0
- package/dist/chess/chessground/board.d.ts.map +1 -0
- package/dist/chess/chessground/chessground.d.ts +8 -0
- package/dist/chess/chessground/chessground.d.ts.map +1 -0
- package/dist/chess/chessground/config.d.ts +88 -0
- package/dist/chess/chessground/config.d.ts.map +1 -0
- package/dist/chess/chessground/drag.d.ts +21 -0
- package/dist/chess/chessground/drag.d.ts.map +1 -0
- package/dist/chess/chessground/draw.d.ts +66 -0
- package/dist/chess/chessground/draw.d.ts.map +1 -0
- package/dist/chess/chessground/drop.d.ts +6 -0
- package/dist/chess/chessground/drop.d.ts.map +1 -0
- package/dist/chess/chessground/events.d.ts +5 -0
- package/dist/chess/chessground/events.d.ts.map +1 -0
- package/dist/chess/chessground/explosion.d.ts +4 -0
- package/dist/chess/chessground/explosion.d.ts.map +1 -0
- package/dist/chess/chessground/fen.d.ts +5 -0
- package/dist/chess/chessground/fen.d.ts.map +1 -0
- package/dist/chess/chessground/premove.d.ts +7 -0
- package/dist/chess/chessground/premove.d.ts.map +1 -0
- package/dist/chess/chessground/render.d.ts +5 -0
- package/dist/chess/chessground/render.d.ts.map +1 -0
- package/dist/chess/chessground/state.d.ts +101 -0
- package/dist/chess/chessground/state.d.ts.map +1 -0
- package/dist/chess/chessground/svg.d.ts +9 -0
- package/dist/chess/chessground/svg.d.ts.map +1 -0
- package/dist/chess/chessground/sync.d.ts +9 -0
- package/dist/chess/chessground/sync.d.ts.map +1 -0
- package/dist/chess/chessground/types.d.ts +94 -0
- package/dist/chess/chessground/types.d.ts.map +1 -0
- package/dist/chess/chessground/util.d.ts +21 -0
- package/dist/chess/chessground/util.d.ts.map +1 -0
- package/dist/chess/chessground/wrap.d.ts +4 -0
- package/dist/chess/chessground/wrap.d.ts.map +1 -0
- package/dist/chess/components/ChessBoard.vue.d.ts +48 -0
- package/dist/chess/components/ChessBoard.vue.d.ts.map +1 -0
- package/dist/chess/components/types.d.ts +11 -0
- package/dist/chess/components/types.d.ts.map +1 -0
- package/dist/chess/composables/useChessEngine.d.ts +303 -0
- package/dist/chess/composables/useChessEngine.d.ts.map +1 -0
- package/dist/chess/composables/usePromotionDialog.d.ts +38 -0
- package/dist/chess/composables/usePromotionDialog.d.ts.map +1 -0
- package/dist/chess/index.d.ts +4 -0
- package/dist/chess/index.d.ts.map +1 -0
- package/dist/chess/questions/forks/forksView.vue.d.ts +52 -0
- package/dist/chess/questions/forks/forksView.vue.d.ts.map +1 -0
- package/dist/chess/questions/forks/index.d.ts +86 -0
- package/dist/chess/questions/forks/index.d.ts.map +1 -0
- package/dist/chess/questions/puzzle/index.d.ts +25 -0
- package/dist/chess/questions/puzzle/index.d.ts.map +1 -0
- package/dist/chess/questions/puzzle/puzzle.vue.d.ts +55 -0
- package/dist/chess/questions/puzzle/puzzle.vue.d.ts.map +1 -0
- package/dist/components/MusicScoreRender.vue.d.ts +13 -0
- package/dist/components/MusicScoreRender.vue.d.ts.map +1 -0
- package/dist/default/index.d.ts +4 -0
- package/dist/default/index.d.ts.map +1 -0
- package/dist/default/questions/fillIn/blanksCorrection.d.ts +3 -0
- package/dist/default/questions/fillIn/blanksCorrection.d.ts.map +1 -0
- package/dist/default/questions/fillIn/fillIn.vue.d.ts +41 -0
- package/dist/default/questions/fillIn/fillIn.vue.d.ts.map +1 -0
- package/dist/default/questions/fillIn/index.d.ts +105 -0
- package/dist/default/questions/fillIn/index.d.ts.map +1 -0
- package/dist/french/index.d.ts +4 -0
- package/dist/french/index.d.ts.map +1 -0
- package/dist/french/questions/audioparse/index.d.ts +65 -0
- package/dist/french/questions/audioparse/index.d.ts.map +1 -0
- package/dist/french/questions/audioparse/view.vue.d.ts +31 -0
- package/dist/french/questions/audioparse/view.vue.d.ts.map +1 -0
- package/dist/french/questions/vocab/identify.vue.d.ts +27 -0
- package/dist/french/questions/vocab/identify.vue.d.ts.map +1 -0
- package/dist/french/questions/vocab/index.d.ts +54 -0
- package/dist/french/questions/vocab/index.d.ts.map +1 -0
- package/dist/index.cjs.js +75 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +86 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.mjs +63128 -0
- package/dist/index.mjs.map +1 -0
- package/dist/math/index.d.ts +4 -0
- package/dist/math/index.d.ts.map +1 -0
- package/dist/math/questions/addition/horizontal.vue.d.ts +46 -0
- package/dist/math/questions/addition/horizontal.vue.d.ts.map +1 -0
- package/dist/math/questions/addition/index.d.ts +24 -0
- package/dist/math/questions/addition/index.d.ts.map +1 -0
- package/dist/math/questions/addition/verbal.vue.d.ts +46 -0
- package/dist/math/questions/addition/verbal.vue.d.ts.map +1 -0
- package/dist/math/questions/angleCategorize/angleCategorize.vue.d.ts +30 -0
- package/dist/math/questions/angleCategorize/angleCategorize.vue.d.ts.map +1 -0
- package/dist/math/questions/angleCategorize/index.d.ts +76 -0
- package/dist/math/questions/angleCategorize/index.d.ts.map +1 -0
- package/dist/math/questions/countBy/default.vue.d.ts +29 -0
- package/dist/math/questions/countBy/default.vue.d.ts.map +1 -0
- package/dist/math/questions/countBy/index.d.ts +81 -0
- package/dist/math/questions/countBy/index.d.ts.map +1 -0
- package/dist/math/questions/division/horizontal.vue.d.ts +31 -0
- package/dist/math/questions/division/horizontal.vue.d.ts.map +1 -0
- package/dist/math/questions/division/index.d.ts +75 -0
- package/dist/math/questions/division/index.d.ts.map +1 -0
- package/dist/math/questions/equalityTest/index.d.ts +77 -0
- package/dist/math/questions/equalityTest/index.d.ts.map +1 -0
- package/dist/math/questions/equalityTest/trueFalse.vue.d.ts +33 -0
- package/dist/math/questions/equalityTest/trueFalse.vue.d.ts.map +1 -0
- package/dist/math/questions/multiplication/blorizontal.vue.d.ts +31 -0
- package/dist/math/questions/multiplication/blorizontal.vue.d.ts.map +1 -0
- package/dist/math/questions/multiplication/index.d.ts +71 -0
- package/dist/math/questions/multiplication/index.d.ts.map +1 -0
- package/dist/math/questions/multiplication/verbal.vue.d.ts +31 -0
- package/dist/math/questions/multiplication/verbal.vue.d.ts.map +1 -0
- package/dist/math/questions/oneStepEqn/index.d.ts +82 -0
- package/dist/math/questions/oneStepEqn/index.d.ts.map +1 -0
- package/dist/math/questions/oneStepEqn/solve.vue.d.ts +32 -0
- package/dist/math/questions/oneStepEqn/solve.vue.d.ts.map +1 -0
- package/dist/math/questions/supplementaryAngles/index.d.ts +72 -0
- package/dist/math/questions/supplementaryAngles/index.d.ts.map +1 -0
- package/dist/math/questions/supplementaryAngles/supplementaryAngles.vue.d.ts +31 -0
- package/dist/math/questions/supplementaryAngles/supplementaryAngles.vue.d.ts.map +1 -0
- package/dist/math/utility/Fraction.d.ts +18 -0
- package/dist/math/utility/Fraction.d.ts.map +1 -0
- package/dist/math/utility/index.d.ts +19 -0
- package/dist/math/utility/index.d.ts.map +1 -0
- package/dist/piano/NoteDisplay.vue.d.ts +25 -0
- package/dist/piano/NoteDisplay.vue.d.ts.map +1 -0
- package/dist/piano/index.d.ts +4 -0
- package/dist/piano/index.d.ts.map +1 -0
- package/dist/piano/questions/echo/Playback.vue.d.ts +369 -0
- package/dist/piano/questions/echo/Playback.vue.d.ts.map +1 -0
- package/dist/piano/questions/echo/index.d.ts +744 -0
- package/dist/piano/questions/echo/index.d.ts.map +1 -0
- package/dist/piano/questions/playNote/NotePlayback.vue.d.ts +208 -0
- package/dist/piano/questions/playNote/NotePlayback.vue.d.ts.map +1 -0
- package/dist/piano/questions/playNote/index.d.ts +419 -0
- package/dist/piano/questions/playNote/index.d.ts.map +1 -0
- package/dist/piano/utility/MidiConfig.vue.d.ts +113 -0
- package/dist/piano/utility/MidiConfig.vue.d.ts.map +1 -0
- package/dist/piano/utility/PianoRangeVisualizer.vue.d.ts +41 -0
- package/dist/piano/utility/PianoRangeVisualizer.vue.d.ts.map +1 -0
- package/dist/piano/utility/SyllableSeqVis.vue.d.ts +36 -0
- package/dist/piano/utility/SyllableSeqVis.vue.d.ts.map +1 -0
- package/dist/piano/utility/midi.d.ts +82 -0
- package/dist/piano/utility/midi.d.ts.map +1 -0
- package/dist/pitch/index.d.ts +4 -0
- package/dist/pitch/index.d.ts.map +1 -0
- package/dist/pitch/questions/indentify/index.d.ts +76 -0
- package/dist/pitch/questions/indentify/index.d.ts.map +1 -0
- package/dist/pitch/questions/indentify/textBox.vue.d.ts +31 -0
- package/dist/pitch/questions/indentify/textBox.vue.d.ts.map +1 -0
- package/dist/sightsing/index.d.ts +4 -0
- package/dist/sightsing/index.d.ts.map +1 -0
- package/dist/sightsing/questions/IdentifyKey/IdentifyKey.vue.d.ts +43 -0
- package/dist/sightsing/questions/IdentifyKey/IdentifyKey.vue.d.ts.map +1 -0
- package/dist/sightsing/questions/IdentifyKey/index.d.ts +117 -0
- package/dist/sightsing/questions/IdentifyKey/index.d.ts.map +1 -0
- package/dist/typing/index.d.ts +4 -0
- package/dist/typing/index.d.ts.map +1 -0
- package/dist/typing/questions/falling-letters/FallingLetters.vue.d.ts +62 -0
- package/dist/typing/questions/falling-letters/FallingLetters.vue.d.ts.map +1 -0
- package/dist/typing/questions/falling-letters/index.d.ts +144 -0
- package/dist/typing/questions/falling-letters/index.d.ts.map +1 -0
- package/dist/typing/questions/falling-letters/types.d.ts +13 -0
- package/dist/typing/questions/falling-letters/types.d.ts.map +1 -0
- package/dist/typing/questions/single-letter/index.d.ts +67 -0
- package/dist/typing/questions/single-letter/index.d.ts.map +1 -0
- package/dist/typing/questions/single-letter/typeSingleLetter.vue.d.ts +28 -0
- package/dist/typing/questions/single-letter/typeSingleLetter.vue.d.ts.map +1 -0
- package/dist/word-work/ankiCardGen/data.d.ts +63 -0
- package/dist/word-work/ankiCardGen/data.d.ts.map +1 -0
- package/dist/word-work/index.d.ts +4 -0
- package/dist/word-work/index.d.ts.map +1 -0
- package/dist/word-work/questions/spelling/index.d.ts +69 -0
- package/dist/word-work/questions/spelling/index.d.ts.map +1 -0
- package/dist/word-work/questions/spelling/textBox.vue.d.ts +32 -0
- package/dist/word-work/questions/spelling/textBox.vue.d.ts.map +1 -0
- package/package.json +60 -0
- package/src/logic.d.ts +26 -0
- package/src/logic.js +202 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/math/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAU3C,QAAA,MAAM,IAAI,EAAE,UASV,CAAC;AAEH,eAAe,IAAI,CAAC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { SingleDigitAdditionQuestion } from './index';
|
|
3
|
+
import { ViewData } from '../../../../../common/dist/index.mjs';
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
data: {
|
|
6
|
+
type: PropType<ViewData[]>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
modifyDifficulty: {
|
|
10
|
+
type: NumberConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
}>, {
|
|
15
|
+
answer: import('vue').Ref<string, string>;
|
|
16
|
+
question: import('vue').ComputedRef<SingleDigitAdditionQuestion | undefined>;
|
|
17
|
+
submit: () => void;
|
|
18
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
19
|
+
priorAttempts: import('vue').Ref<number>;
|
|
20
|
+
priorAnswers: import('vue').Ref<[import('../../../../../common/dist/index.mjs').Answer, string][]>;
|
|
21
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
22
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
23
|
+
submitAnswer: (answer: import('../../../../../common/dist/index.mjs').Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
24
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
25
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
26
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
27
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
28
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
29
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
30
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
31
|
+
data: {
|
|
32
|
+
type: PropType<ViewData[]>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
modifyDifficulty: {
|
|
36
|
+
type: NumberConstructor;
|
|
37
|
+
required: false;
|
|
38
|
+
default: number;
|
|
39
|
+
};
|
|
40
|
+
}>> & Readonly<{}>, {
|
|
41
|
+
modifyDifficulty: number;
|
|
42
|
+
}, {}, {
|
|
43
|
+
UserInputNumber: any;
|
|
44
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
45
|
+
export default _default;
|
|
46
|
+
//# sourceMappingURL=horizontal.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"horizontal.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/addition/horizontal.vue"],"names":[],"mappings":"AAQA;AAiEA,OAAO,EAAkC,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC/D,OAAO,EAAE,2BAA2B,EAAE,MAAM,SAAS,CAAC;AAEtD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;cAW3B,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;;;;;;;;;;;;;;;iFAdzC,CAxBqD;iCAwBrD,OAAA,MAtDqD;;;;yCAsDrD,CApD8C;;;;cAkEzB,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;;;;;;;;;;;AATzC,wBA8CG"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Question, ViewComponent } from '../../../../../common-ui/dist/common-ui.es.js';
|
|
2
|
+
import { Answer, FieldDefinition, ViewData, DataShapeName } from '../../../../../common/dist/index.mjs';
|
|
3
|
+
export declare class SingleDigitAdditionQuestion extends Question {
|
|
4
|
+
static dataShapes: {
|
|
5
|
+
name: DataShapeName;
|
|
6
|
+
fields: FieldDefinition[];
|
|
7
|
+
}[];
|
|
8
|
+
static views: ViewComponent[];
|
|
9
|
+
a: number;
|
|
10
|
+
b: number;
|
|
11
|
+
static seedData: {
|
|
12
|
+
a: number;
|
|
13
|
+
b: number;
|
|
14
|
+
}[];
|
|
15
|
+
static acceptsUserData: boolean;
|
|
16
|
+
constructor(data: ViewData[]);
|
|
17
|
+
isCorrect(answer: Answer): boolean;
|
|
18
|
+
dataShapes(): {
|
|
19
|
+
name: DataShapeName;
|
|
20
|
+
fields: FieldDefinition[];
|
|
21
|
+
}[];
|
|
22
|
+
views(): any[];
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/addition/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,QAAQ,EAAE,aAAa,EAAa,MAAM,sBAAsB,CAAC;AA4BnG,qBAAa,2BAA4B,SAAQ,QAAQ;IACvD,OAAc,UAAU;;;QAKtB;IAEF,OAAc,KAAK,EAAE,aAAa,EAAE,CAAwC;IAErE,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IAEjB,OAAc,QAAQ;WAzBN,MAAM;WAAK,MAAM;QAyBD;IAChC,OAAc,eAAe,UAAS;gBAE1B,IAAI,EAAE,QAAQ,EAAE;IAMrB,SAAS,CAAC,MAAM,EAAE,MAAM;IAIxB,UAAU;;;;IAIV,KAAK;CAGb"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { SingleDigitAdditionQuestion } from './index';
|
|
3
|
+
import { ViewData } from '../../../../../common/dist/index.mjs';
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
data: {
|
|
6
|
+
type: PropType<ViewData[]>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
modifyDifficulty: {
|
|
10
|
+
type: NumberConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
}>, {
|
|
15
|
+
answer: import('vue').Ref<string, string>;
|
|
16
|
+
question: import('vue').ComputedRef<SingleDigitAdditionQuestion | undefined>;
|
|
17
|
+
submit: () => void;
|
|
18
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
19
|
+
priorAttempts: import('vue').Ref<number>;
|
|
20
|
+
priorAnswers: import('vue').Ref<[import('../../../../../common/dist/index.mjs').Answer, string][]>;
|
|
21
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
22
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
23
|
+
submitAnswer: (answer: import('../../../../../common/dist/index.mjs').Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
24
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
25
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
26
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
27
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
28
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
29
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
30
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
31
|
+
data: {
|
|
32
|
+
type: PropType<ViewData[]>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
modifyDifficulty: {
|
|
36
|
+
type: NumberConstructor;
|
|
37
|
+
required: false;
|
|
38
|
+
default: number;
|
|
39
|
+
};
|
|
40
|
+
}>> & Readonly<{}>, {
|
|
41
|
+
modifyDifficulty: number;
|
|
42
|
+
}, {}, {
|
|
43
|
+
UserInputNumber: any;
|
|
44
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
45
|
+
export default _default;
|
|
46
|
+
//# sourceMappingURL=verbal.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"verbal.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/addition/verbal.vue"],"names":[],"mappings":"AAQA;AAiEA,OAAO,EAAkC,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC/D,OAAO,EAAE,2BAA2B,EAAE,MAAM,SAAS,CAAC;AAEtD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;cAW3B,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;;;;;;;;;;;;;;;iFAdzC,CAxB6D;iCAwB7D,OAAA,MAtDqD;;;;yCAsDrD,CApD8C;;;;cAkEzB,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;;;;;;;;;;;AATzC,wBA8CG"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AngleCategorize } from './index';
|
|
2
|
+
import { ViewData } from '../../../../../common/dist/index.mjs';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
data: ViewData[];
|
|
5
|
+
modifyDifficulty: number;
|
|
6
|
+
}, {
|
|
7
|
+
canvasRef: import('vue').Ref<HTMLCanvasElement | null, HTMLCanvasElement | null>;
|
|
8
|
+
question: import('vue').ComputedRef<AngleCategorize | undefined>;
|
|
9
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
10
|
+
priorAttempts: import('vue').Ref<number>;
|
|
11
|
+
priorAnswers: import('vue').Ref<[import('../../../../../common/dist/index.mjs').Answer, string][]>;
|
|
12
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
13
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
14
|
+
submitAnswer: (answer: import('../../../../../common/dist/index.mjs').Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
15
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
16
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
17
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
18
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
19
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
20
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
21
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
22
|
+
data: ViewData[];
|
|
23
|
+
modifyDifficulty: number;
|
|
24
|
+
}> & Readonly<{}>, {
|
|
25
|
+
modifyDifficulty: number;
|
|
26
|
+
}, {}, {
|
|
27
|
+
RadioMultipleChoice: any;
|
|
28
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
29
|
+
export default _default;
|
|
30
|
+
//# sourceMappingURL=angleCategorize.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"angleCategorize.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/angleCategorize/angleCategorize.vue"],"names":[],"mappings":"AAUA;AAqHA,OAAO,EAAE,eAAe,EAAmB,MAAM,SAAS,CAAC;AAC3D,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;;iFAHhD,CA5E6D;iCA4E7D,OAAA,MAvGgC;;;;yCAuGhC,CArGC;;;;;;;;;;AA2GD,wBAqFG"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { Question } from '../../../../../common-ui/dist/common-ui.es.js';
|
|
2
|
+
import { RadioMultipleChoiceAnswer, FieldDefinition, ViewData, DataShapeName } from '../../../../../common/dist/index.mjs';
|
|
3
|
+
export declare enum AngleCategories {
|
|
4
|
+
ACUTE = "ACUTE",
|
|
5
|
+
RIGHT = "RIGHT",
|
|
6
|
+
OBTUSE = "OBTUSE",
|
|
7
|
+
STRAIGHT = "STRAIGHT",
|
|
8
|
+
REFLEX = "REFLEX"
|
|
9
|
+
}
|
|
10
|
+
export declare class AngleCategorize extends Question {
|
|
11
|
+
static dataShapes: {
|
|
12
|
+
name: DataShapeName;
|
|
13
|
+
fields: FieldDefinition[];
|
|
14
|
+
}[];
|
|
15
|
+
static views: import('vue').DefineComponent<{
|
|
16
|
+
data: ViewData[];
|
|
17
|
+
modifyDifficulty: number;
|
|
18
|
+
}, {
|
|
19
|
+
canvasRef: import('vue').Ref<HTMLCanvasElement | null, HTMLCanvasElement | null>;
|
|
20
|
+
question: import('vue').ComputedRef<AngleCategorize | undefined>;
|
|
21
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
22
|
+
priorAttempts: import('vue').Ref<number>;
|
|
23
|
+
priorAnswers: import('vue').Ref<[import('../../../../../common/dist/index.mjs').Answer, string][]>;
|
|
24
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
25
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
26
|
+
submitAnswer: (answer: import('../../../../../common/dist/index.mjs').Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
27
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
28
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
29
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
30
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
31
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
32
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
33
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
34
|
+
data: ViewData[];
|
|
35
|
+
modifyDifficulty: number;
|
|
36
|
+
}> & Readonly<{}>, {
|
|
37
|
+
modifyDifficulty: number;
|
|
38
|
+
}, {}, {
|
|
39
|
+
RadioMultipleChoice: any;
|
|
40
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
41
|
+
angleCategory: AngleCategories;
|
|
42
|
+
answers: string[];
|
|
43
|
+
constructor(data: ViewData[]);
|
|
44
|
+
isCorrect(answer: RadioMultipleChoiceAnswer): boolean;
|
|
45
|
+
dataShapes(): {
|
|
46
|
+
name: DataShapeName;
|
|
47
|
+
fields: FieldDefinition[];
|
|
48
|
+
}[];
|
|
49
|
+
views(): import('vue').DefineComponent<{
|
|
50
|
+
data: ViewData[];
|
|
51
|
+
modifyDifficulty: number;
|
|
52
|
+
}, {
|
|
53
|
+
canvasRef: import('vue').Ref<HTMLCanvasElement | null, HTMLCanvasElement | null>;
|
|
54
|
+
question: import('vue').ComputedRef<AngleCategorize | undefined>;
|
|
55
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
56
|
+
priorAttempts: import('vue').Ref<number>;
|
|
57
|
+
priorAnswers: import('vue').Ref<[import('../../../../../common/dist/index.mjs').Answer, string][]>;
|
|
58
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
59
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
60
|
+
submitAnswer: (answer: import('../../../../../common/dist/index.mjs').Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
61
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
62
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
63
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
64
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
65
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
66
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
67
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
68
|
+
data: ViewData[];
|
|
69
|
+
modifyDifficulty: number;
|
|
70
|
+
}> & Readonly<{}>, {
|
|
71
|
+
modifyDifficulty: number;
|
|
72
|
+
}, {}, {
|
|
73
|
+
RadioMultipleChoice: any;
|
|
74
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/angleCategorize/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,OAAO,EAAE,yBAAyB,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAClF,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAqB,MAAM,sBAAsB,CAAC;AA0BlF,oBAAY,eAAe;IACzB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,MAAM,WAAW;CAClB;AAUD,qBAAa,eAAgB,SAAQ,QAAQ;IAC3C,OAAc,UAAU;;;QAKtB;IAEF,OAAc,KAAK;;;;;;;;;;;qFAbF,CAAC;qCAjCJ,OAAO,MAAM;;;;6CAIvB,CAAC;;;;;;;;;2EA0CoC;IAElC,aAAa,EAAE,eAAe,CAAC;IAC/B,OAAO,EAAE,MAAM,EAAE,CAAC;gBAEb,IAAI,EAAE,QAAQ,EAAE;IAYrB,SAAS,CAAC,MAAM,EAAE,yBAAyB;IAI3C,UAAU;;;;IAIV,KAAK;;;;;;;;;;;qFAtCK,CAAC;qCAjCJ,OAAO,MAAM;;;;6CAIvB,CAAC;;;;;;;;;;CAsEN"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { CountBy } from './index';
|
|
2
|
+
import { ViewData } from '../../../../../common/dist/index.mjs';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
data: ViewData[];
|
|
5
|
+
modifyDifficulty: number;
|
|
6
|
+
}, {
|
|
7
|
+
answer: import('vue').Ref<string[], string[]>;
|
|
8
|
+
question: import('vue').ComputedRef<CountBy>;
|
|
9
|
+
track: (n: number) => void;
|
|
10
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
11
|
+
priorAttempts: import('vue').Ref<number>;
|
|
12
|
+
priorAnswers: import('vue').Ref<[import('../../../../../common/dist/index.mjs').Answer, string][]>;
|
|
13
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
14
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
15
|
+
submitAnswer: (answer: import('../../../../../common/dist/index.mjs').Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
16
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
17
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
18
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
19
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
20
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
21
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
22
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
23
|
+
data: ViewData[];
|
|
24
|
+
modifyDifficulty: number;
|
|
25
|
+
}> & Readonly<{}>, {
|
|
26
|
+
modifyDifficulty: number;
|
|
27
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
28
|
+
export default _default;
|
|
29
|
+
//# sourceMappingURL=default.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/countBy/default.vue"],"names":[],"mappings":"AAuBA;AAwHA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAElC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;;;;;eA+B1B,MAAM,KAAG,IAAI;;;;;;iFAlCnC,CA9EM;iCA8EN,OAAA,MA5GsB;;;;yCA4GtB,CAvGyB;;;;;;;;AA4GzB,wBAkEG"}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { Answer, FieldDefinition, ViewData, DataShapeName } from '../../../../../common/dist/index.mjs';
|
|
2
|
+
import { Question } from '../../../../../common-ui/dist/common-ui.es.js';
|
|
3
|
+
interface A extends Answer {
|
|
4
|
+
[index: number]: number;
|
|
5
|
+
}
|
|
6
|
+
declare enum Hands {
|
|
7
|
+
LEFT = "LEFT",
|
|
8
|
+
RIGHT = "RIGHT"
|
|
9
|
+
}
|
|
10
|
+
export declare class CountBy extends Question {
|
|
11
|
+
static dataShapes: {
|
|
12
|
+
name: DataShapeName;
|
|
13
|
+
fields: FieldDefinition[];
|
|
14
|
+
}[];
|
|
15
|
+
static views: import('vue').DefineComponent<{
|
|
16
|
+
data: ViewData[];
|
|
17
|
+
modifyDifficulty: number;
|
|
18
|
+
}, {
|
|
19
|
+
answer: import('vue').Ref<string[], string[]>;
|
|
20
|
+
question: import('vue').ComputedRef<CountBy>;
|
|
21
|
+
track: (n: number) => void;
|
|
22
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
23
|
+
priorAttempts: import('vue').Ref<number>;
|
|
24
|
+
priorAnswers: import('vue').Ref<[Answer, string][]>;
|
|
25
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
26
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
27
|
+
submitAnswer: (answer: Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
28
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
29
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
30
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
31
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
32
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
33
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
34
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
35
|
+
data: ViewData[];
|
|
36
|
+
modifyDifficulty: number;
|
|
37
|
+
}> & Readonly<{}>, {
|
|
38
|
+
modifyDifficulty: number;
|
|
39
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
40
|
+
n: number;
|
|
41
|
+
hand: Hands;
|
|
42
|
+
static seedData: {
|
|
43
|
+
n: number;
|
|
44
|
+
hand: Hands;
|
|
45
|
+
}[];
|
|
46
|
+
static acceptsUserData: boolean;
|
|
47
|
+
constructor(data: ViewData[]);
|
|
48
|
+
get answer(): number[];
|
|
49
|
+
isCorrect(answer: A): boolean;
|
|
50
|
+
dataShapes(): {
|
|
51
|
+
name: DataShapeName;
|
|
52
|
+
fields: FieldDefinition[];
|
|
53
|
+
}[];
|
|
54
|
+
views(): import('vue').DefineComponent<{
|
|
55
|
+
data: ViewData[];
|
|
56
|
+
modifyDifficulty: number;
|
|
57
|
+
}, {
|
|
58
|
+
answer: import('vue').Ref<string[], string[]>;
|
|
59
|
+
question: import('vue').ComputedRef<CountBy>;
|
|
60
|
+
track: (n: number) => void;
|
|
61
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
62
|
+
priorAttempts: import('vue').Ref<number>;
|
|
63
|
+
priorAnswers: import('vue').Ref<[Answer, string][]>;
|
|
64
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
65
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
66
|
+
submitAnswer: (answer: Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
67
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
68
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
69
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
70
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
71
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
72
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
73
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
74
|
+
data: ViewData[];
|
|
75
|
+
modifyDifficulty: number;
|
|
76
|
+
}> & Readonly<{}>, {
|
|
77
|
+
modifyDifficulty: number;
|
|
78
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
79
|
+
}
|
|
80
|
+
export {};
|
|
81
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/countBy/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACN,eAAe,EACf,QAAQ,EACR,aAAa,EAGd,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAInD,UAAU,CAAE,SAAQ,MAAM;IACxB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AACD,aAAK,KAAK;IACR,IAAI,SAAS;IACb,KAAK,UAAU;CAChB;AA6CD,qBAAa,OAAQ,SAAQ,QAAQ;IACnC,OAAc,UAAU;;;QAKtB;IAEF,OAAc,KAAK;;;;;;;;;;;;sDAfL,CAAC;qCApCV,OAAO,MAAM;;;;6CASd,CAAD;;;;;;;mFA0CiC;IAE7B,CAAC,EAAE,MAAM,CAAC;IACV,IAAI,EAAE,KAAK,CAAC;IAEnB,OAAc,QAAQ;WA7BN,MAAM;cAAQ,KAAK;QA6BH;IAChC,OAAc,eAAe,UAAS;gBAE1B,IAAI,EAAE,QAAQ,EAAE;IAM5B,IAAW,MAAM,IAAI,MAAM,EAAE,CAO5B;IAEM,SAAS,CAAC,MAAM,EAAE,CAAC;IAcnB,UAAU;;;;IAIV,KAAK;;;;;;;;;;;;sDAxDE,CAAC;qCApCV,OAAO,MAAM;;;;6CASd,CAAD;;;;;;;;CAsFJ"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { SingleDigitDivisionQuestion } from './index';
|
|
2
|
+
import { ViewData } from '../../../../../common/dist/index.mjs';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
data: ViewData[];
|
|
5
|
+
modifyDifficulty: number;
|
|
6
|
+
}, {
|
|
7
|
+
answer: import('vue').Ref<string, string>;
|
|
8
|
+
question: import('vue').ComputedRef<SingleDigitDivisionQuestion | undefined>;
|
|
9
|
+
submit: () => void;
|
|
10
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
11
|
+
priorAttempts: import('vue').Ref<number>;
|
|
12
|
+
priorAnswers: import('vue').Ref<[import('../../../../../common/dist/index.mjs').Answer, string][]>;
|
|
13
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
14
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
15
|
+
submitAnswer: (answer: import('../../../../../common/dist/index.mjs').Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
16
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
17
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
18
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
19
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
20
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
21
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
22
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
23
|
+
data: ViewData[];
|
|
24
|
+
modifyDifficulty: number;
|
|
25
|
+
}> & Readonly<{}>, {
|
|
26
|
+
modifyDifficulty: number;
|
|
27
|
+
}, {}, {
|
|
28
|
+
UserInputNumber: any;
|
|
29
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
30
|
+
export default _default;
|
|
31
|
+
//# sourceMappingURL=horizontal.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"horizontal.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/division/horizontal.vue"],"names":[],"mappings":"AAQA;AAkEA,OAAO,EAAE,2BAA2B,EAAE,MAAM,SAAS,CAAC;AAEtD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;;;iFAHhD,CAxBiC;iCAwBjC,OAAA,MAtDiC;;;;yCAsDjC,CApD0B;;;;;;;;;;AAyD1B,wBA8CG"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { Question } from '../../../../../common-ui/dist/common-ui.es.js';
|
|
2
|
+
import { FieldDefinition, Answer, ViewData, DataShapeName } from '../../../../../common/dist/index.mjs';
|
|
3
|
+
export declare class SingleDigitDivisionQuestion extends Question {
|
|
4
|
+
static dataShapes: {
|
|
5
|
+
name: DataShapeName;
|
|
6
|
+
fields: FieldDefinition[];
|
|
7
|
+
}[];
|
|
8
|
+
static views: import('vue').DefineComponent<{
|
|
9
|
+
data: ViewData[];
|
|
10
|
+
modifyDifficulty: number;
|
|
11
|
+
}, {
|
|
12
|
+
answer: import('vue').Ref<string, string>;
|
|
13
|
+
question: import('vue').ComputedRef<SingleDigitDivisionQuestion | undefined>;
|
|
14
|
+
submit: () => void;
|
|
15
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
16
|
+
priorAttempts: import('vue').Ref<number>;
|
|
17
|
+
priorAnswers: import('vue').Ref<[Answer, string][]>;
|
|
18
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
19
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
20
|
+
submitAnswer: (answer: Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
21
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
22
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
23
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
24
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
25
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
26
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
27
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
28
|
+
data: ViewData[];
|
|
29
|
+
modifyDifficulty: number;
|
|
30
|
+
}> & Readonly<{}>, {
|
|
31
|
+
modifyDifficulty: number;
|
|
32
|
+
}, {}, {
|
|
33
|
+
UserInputNumber: any;
|
|
34
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
35
|
+
a: number;
|
|
36
|
+
b: number;
|
|
37
|
+
/**
|
|
38
|
+
* @param data a and b are seed props that will pop a question of
|
|
39
|
+
* the form [(a*b) / b = ___]. So, b must be non-zero.
|
|
40
|
+
*/
|
|
41
|
+
constructor(data: ViewData[]);
|
|
42
|
+
isCorrect(answer: Answer): boolean;
|
|
43
|
+
dataShapes(): {
|
|
44
|
+
name: DataShapeName;
|
|
45
|
+
fields: FieldDefinition[];
|
|
46
|
+
}[];
|
|
47
|
+
views(): import('vue').DefineComponent<{
|
|
48
|
+
data: ViewData[];
|
|
49
|
+
modifyDifficulty: number;
|
|
50
|
+
}, {
|
|
51
|
+
answer: import('vue').Ref<string, string>;
|
|
52
|
+
question: import('vue').ComputedRef<SingleDigitDivisionQuestion | undefined>;
|
|
53
|
+
submit: () => void;
|
|
54
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
55
|
+
priorAttempts: import('vue').Ref<number>;
|
|
56
|
+
priorAnswers: import('vue').Ref<[Answer, string][]>;
|
|
57
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
58
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
59
|
+
submitAnswer: (answer: Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
60
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
61
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
62
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
63
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
64
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
65
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
66
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
67
|
+
data: ViewData[];
|
|
68
|
+
modifyDifficulty: number;
|
|
69
|
+
}> & Readonly<{}>, {
|
|
70
|
+
modifyDifficulty: number;
|
|
71
|
+
}, {}, {
|
|
72
|
+
UserInputNumber: any;
|
|
73
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
74
|
+
}
|
|
75
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/division/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,OAAO,EACL,eAAe,EACf,MAAM,EACN,QAAQ,EACR,aAAa,EAGd,MAAM,sBAAsB,CAAC;AAoC9B,qBAAa,2BAA4B,SAAQ,QAAQ;IACvD,OAAc,UAAU;;;QAKtB;IAEF,OAAc,KAAK;;;;;;;;;;;;sDALf,CAAJ;qCA7BE,OAAO,MAAM;;;;6CAIF,CAAC;;;;;;;;;2EA8B6B;IAEpC,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;gBACS,IAAI,EAAE,QAAQ,EAAE;IAMrB,SAAS,CAAC,MAAM,EAAE,MAAM;IAIxB,UAAU;;;;IAIV,KAAK;;;;;;;;;;;;sDA5BR,CAAJ;qCA7BE,OAAO,MAAM;;;;6CAIF,CAAC;;;;;;;;;;CAwDf"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { Question } from '../../../../../common-ui/dist/common-ui.es.js';
|
|
2
|
+
import { FieldDefinition, Answer, ViewData, DataShapeName } from '../../../../../common/dist/index.mjs';
|
|
3
|
+
export declare class EqualityTest extends Question {
|
|
4
|
+
static dataShapes: {
|
|
5
|
+
name: DataShapeName;
|
|
6
|
+
fields: FieldDefinition[];
|
|
7
|
+
}[];
|
|
8
|
+
static views: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
9
|
+
data: {
|
|
10
|
+
type: import('vue').PropType<ViewData[]>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
modifyDifficulty: {
|
|
14
|
+
type: NumberConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
default: number;
|
|
17
|
+
};
|
|
18
|
+
}>, {
|
|
19
|
+
question: import('vue').ComputedRef<EqualityTest>;
|
|
20
|
+
submit: (selection: number) => void;
|
|
21
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
22
|
+
data: {
|
|
23
|
+
type: import('vue').PropType<ViewData[]>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
modifyDifficulty: {
|
|
27
|
+
type: NumberConstructor;
|
|
28
|
+
required: false;
|
|
29
|
+
default: number;
|
|
30
|
+
};
|
|
31
|
+
}>> & Readonly<{}>, {
|
|
32
|
+
modifyDifficulty: number;
|
|
33
|
+
}, {}, {
|
|
34
|
+
TFSelect: any;
|
|
35
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
36
|
+
a: string;
|
|
37
|
+
b: string;
|
|
38
|
+
/**
|
|
39
|
+
* @param data a and b are seed props that will pop a question of
|
|
40
|
+
* the form [(a*b) / b = ___]. So, b must be non-zero.
|
|
41
|
+
*/
|
|
42
|
+
constructor(data: ViewData[]);
|
|
43
|
+
isCorrect(answer: Answer): boolean;
|
|
44
|
+
dataShapes(): {
|
|
45
|
+
name: DataShapeName;
|
|
46
|
+
fields: FieldDefinition[];
|
|
47
|
+
}[];
|
|
48
|
+
views(): import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
49
|
+
data: {
|
|
50
|
+
type: import('vue').PropType<ViewData[]>;
|
|
51
|
+
required: true;
|
|
52
|
+
};
|
|
53
|
+
modifyDifficulty: {
|
|
54
|
+
type: NumberConstructor;
|
|
55
|
+
required: false;
|
|
56
|
+
default: number;
|
|
57
|
+
};
|
|
58
|
+
}>, {
|
|
59
|
+
question: import('vue').ComputedRef<EqualityTest>;
|
|
60
|
+
submit: (selection: number) => void;
|
|
61
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
62
|
+
data: {
|
|
63
|
+
type: import('vue').PropType<ViewData[]>;
|
|
64
|
+
required: true;
|
|
65
|
+
};
|
|
66
|
+
modifyDifficulty: {
|
|
67
|
+
type: NumberConstructor;
|
|
68
|
+
required: false;
|
|
69
|
+
default: number;
|
|
70
|
+
};
|
|
71
|
+
}>> & Readonly<{}>, {
|
|
72
|
+
modifyDifficulty: number;
|
|
73
|
+
}, {}, {
|
|
74
|
+
TFSelect: any;
|
|
75
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
76
|
+
}
|
|
77
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/equalityTest/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAerD,qBAAa,YAAa,SAAQ,QAAQ;IACxC,OAAc,UAAU;;;QAKtB;IAEF,OAAc,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;2EAAe;IAE3B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;gBACS,IAAI,EAAE,QAAQ,EAAE;IAMrB,SAAS,CAAC,MAAM,EAAE,MAAM;IAIxB,UAAU;;;;IAIV,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGb"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { EqualityTest } from './index';
|
|
3
|
+
import { ViewData } from '../../../../../common/dist/index.mjs';
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
data: {
|
|
6
|
+
type: PropType<ViewData[]>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
modifyDifficulty: {
|
|
10
|
+
type: NumberConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
}>, {
|
|
15
|
+
question: import('vue').ComputedRef<EqualityTest>;
|
|
16
|
+
submit: (selection: number) => void;
|
|
17
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
18
|
+
data: {
|
|
19
|
+
type: PropType<ViewData[]>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
modifyDifficulty: {
|
|
23
|
+
type: NumberConstructor;
|
|
24
|
+
required: false;
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
27
|
+
}>> & Readonly<{}>, {
|
|
28
|
+
modifyDifficulty: number;
|
|
29
|
+
}, {}, {
|
|
30
|
+
TFSelect: any;
|
|
31
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
32
|
+
export default _default;
|
|
33
|
+
//# sourceMappingURL=trueFalse.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trueFalse.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/equalityTest/trueFalse.vue"],"names":[],"mappings":"AAOA;AAuDA,OAAO,EAA6B,QAAQ,EAAE,MAAM,KAAK,CAAC;AAE1D,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;cAW3B,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;;;;;;;;wBAmBV,MAAM;;;cAnBhB,QAAQ,CAAC,QAAQ,EAAE,CAAC;;;;;;;;;;;;;AATzC,wBAqCG"}
|