@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,31 @@
|
|
|
1
|
+
import { SingleDigitMultiplicationQuestion } 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<SingleDigitMultiplicationQuestion | 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=blorizontal.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"blorizontal.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/multiplication/blorizontal.vue"],"names":[],"mappings":"AAQA;AAkEA,OAAO,EAAE,iCAAiC,EAAE,MAAM,SAAS,CAAC;AAE5D,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;;;iFAHhD,CAxBiB;iCAwBjB,OAAA,MAtDyC;;;;yCAsDzC,CApD4B;;;;;;;;;;AAyD5B,wBA8CG"}
|
|
@@ -0,0 +1,71 @@
|
|
|
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 SingleDigitMultiplicationQuestion 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<SingleDigitMultiplicationQuestion | 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
|
+
constructor(data: ViewData[]);
|
|
38
|
+
isCorrect(answer: Answer): boolean;
|
|
39
|
+
dataShapes(): {
|
|
40
|
+
name: DataShapeName;
|
|
41
|
+
fields: FieldDefinition[];
|
|
42
|
+
}[];
|
|
43
|
+
views(): import('vue').DefineComponent<{
|
|
44
|
+
data: ViewData[];
|
|
45
|
+
modifyDifficulty: number;
|
|
46
|
+
}, {
|
|
47
|
+
answer: import('vue').Ref<string, string>;
|
|
48
|
+
question: import('vue').ComputedRef<SingleDigitMultiplicationQuestion | undefined>;
|
|
49
|
+
submit: () => void;
|
|
50
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
51
|
+
priorAttempts: import('vue').Ref<number>;
|
|
52
|
+
priorAnswers: import('vue').Ref<[Answer, string][]>;
|
|
53
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
54
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
55
|
+
submitAnswer: (answer: Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
56
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
57
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
58
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
59
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
60
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
61
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
62
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
63
|
+
data: ViewData[];
|
|
64
|
+
modifyDifficulty: number;
|
|
65
|
+
}> & Readonly<{}>, {
|
|
66
|
+
modifyDifficulty: number;
|
|
67
|
+
}, {}, {
|
|
68
|
+
UserInputNumber: any;
|
|
69
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/multiplication/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;AAmC9B,qBAAa,iCAAkC,SAAQ,QAAQ;IAC7D,OAAc,UAAU;;;QAKtB;IAEF,OAAc,KAAK;;;;;;;;;;;;sDAAQ,CAAC;qCAtCE,OAAO,MAAM;;;;6CAKrC,CAAL;;;;;;;;;2EAiCsE;IAEhE,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;gBAEL,IAAI,EAAE,QAAQ,EAAE;IAMrB,SAAS,CAAC,MAAM,EAAE,MAAM;IAIxB,UAAU;;;;IAIV,KAAK;;;;;;;;;;;;sDAnBe,CAAC;qCAtCE,OAAO,MAAM;;;;6CAKrC,CAAL;;;;;;;;;;CAuDF"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { SingleDigitMultiplicationQuestion } 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<SingleDigitMultiplicationQuestion | 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=verbal.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"verbal.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/multiplication/verbal.vue"],"names":[],"mappings":"AAQA;AAkEA,OAAO,EAAE,iCAAiC,EAAE,MAAM,SAAS,CAAC;AAE5D,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;;;iFAHhD,CAxB8B;iCAwB9B,OAAA,MAtD8C;;;;yCAsD9C,CApDiC;;;;;;;;;;AAyDjC,wBA8CG"}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { Question } from '../../../../../common-ui/dist/common-ui.es.js';
|
|
2
|
+
import { ViewData, DataShapeName, FieldDefinition, Answer } from '../../../../../common/dist/index.mjs';
|
|
3
|
+
declare enum Operation {
|
|
4
|
+
ADDITION = "ADDITION",
|
|
5
|
+
SUBTRACTION = "SUBTRACTION",
|
|
6
|
+
MULTIPLICATION = "MULTIPLICATION",
|
|
7
|
+
DIVISION = "DIVISION"
|
|
8
|
+
}
|
|
9
|
+
export declare class OneStepEquation extends Question {
|
|
10
|
+
static dataShapes: {
|
|
11
|
+
name: DataShapeName;
|
|
12
|
+
fields: FieldDefinition[];
|
|
13
|
+
}[];
|
|
14
|
+
static views: import('vue').DefineComponent<{
|
|
15
|
+
data: ViewData[];
|
|
16
|
+
modifyDifficulty: number;
|
|
17
|
+
}, {
|
|
18
|
+
answer: import('vue').Ref<string, string>;
|
|
19
|
+
question: import('vue').ComputedRef<OneStepEquation | undefined>;
|
|
20
|
+
variable: import('vue').Ref<string, string>;
|
|
21
|
+
submit: () => 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
|
+
}, {}, {
|
|
40
|
+
UserInputNumber: any;
|
|
41
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
42
|
+
a: number;
|
|
43
|
+
b: number;
|
|
44
|
+
operation: Operation;
|
|
45
|
+
constructor(data: ViewData[]);
|
|
46
|
+
answer(): number;
|
|
47
|
+
isCorrect(userAnswer: Answer): boolean;
|
|
48
|
+
dataShapes(): {
|
|
49
|
+
name: DataShapeName;
|
|
50
|
+
fields: FieldDefinition[];
|
|
51
|
+
}[];
|
|
52
|
+
views(): import('vue').DefineComponent<{
|
|
53
|
+
data: ViewData[];
|
|
54
|
+
modifyDifficulty: number;
|
|
55
|
+
}, {
|
|
56
|
+
answer: import('vue').Ref<string, string>;
|
|
57
|
+
question: import('vue').ComputedRef<OneStepEquation | undefined>;
|
|
58
|
+
variable: import('vue').Ref<string, string>;
|
|
59
|
+
submit: () => void;
|
|
60
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
61
|
+
priorAttempts: import('vue').Ref<number>;
|
|
62
|
+
priorAnswers: import('vue').Ref<[Answer, string][]>;
|
|
63
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
64
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
65
|
+
submitAnswer: (answer: Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
66
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
67
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
68
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
69
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
70
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
71
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
72
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
73
|
+
data: ViewData[];
|
|
74
|
+
modifyDifficulty: number;
|
|
75
|
+
}> & Readonly<{}>, {
|
|
76
|
+
modifyDifficulty: number;
|
|
77
|
+
}, {}, {
|
|
78
|
+
UserInputNumber: any;
|
|
79
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
80
|
+
}
|
|
81
|
+
export {};
|
|
82
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/oneStepEqn/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,OAAO,EACL,QAAQ,EACR,aAAa,EAIb,eAAe,EACf,MAAM,EACP,MAAM,sBAAsB,CAAC;AA6D9B,aAAK,SAAS;IACZ,QAAQ,aAAa;IACrB,WAAW,gBAAgB;IAC3B,cAAc,mBAAmB;IACjC,QAAQ,aAAa;CACtB;AAED,qBAAa,eAAgB,SAAQ,QAAQ;IAC3C,OAAc,UAAU;;;QAKtB;IAEF,OAAc,KAAK;;;;;;;;;;;;;sDAvC0B,CAAC;qCAhCC,OAAO,MACrD;;;;6CAIe,CAAC;;;;;;;;;2EAkEa;IAEvB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,SAAS,CAAC;gBAEhB,IAAI,EAAE,QAAQ,EAAE;IAOrB,MAAM,IAAI,MAAM;IA2BhB,SAAS,CAAC,UAAU,EAAE,MAAM;IAI5B,UAAU;;;;IAIV,KAAK;;;;;;;;;;;;;sDAvFiC,CAAC;qCAhCC,OAAO,MACrD;;;;6CAIe,CAAC;;;;;;;;;;CAqHlB"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OneStepEquation } 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<OneStepEquation | undefined>;
|
|
9
|
+
variable: import('vue').Ref<string, string>;
|
|
10
|
+
submit: () => void;
|
|
11
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
12
|
+
priorAttempts: import('vue').Ref<number>;
|
|
13
|
+
priorAnswers: import('vue').Ref<[import('../../../../../common/dist/index.mjs').Answer, string][]>;
|
|
14
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
15
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
16
|
+
submitAnswer: (answer: import('../../../../../common/dist/index.mjs').Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
17
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
18
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
19
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
20
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
21
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
22
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
23
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
24
|
+
data: ViewData[];
|
|
25
|
+
modifyDifficulty: number;
|
|
26
|
+
}> & Readonly<{}>, {
|
|
27
|
+
modifyDifficulty: number;
|
|
28
|
+
}, {}, {
|
|
29
|
+
UserInputNumber: any;
|
|
30
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
31
|
+
export default _default;
|
|
32
|
+
//# sourceMappingURL=solve.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"solve.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/oneStepEqn/solve.vue"],"names":[],"mappings":"AAuBA;AAqFA,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAE1C,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;;;;iFAHhD,CAxDA;iCAwDA,OAAA,MA7E6B;;;;yCA6E7B,CA1EkB;;;;;;;;;;AAgFlB,wBAiDG"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { Question } from '../../../../../common-ui/dist/common-ui.es.js';
|
|
2
|
+
import { Answer, FieldDefinition, ViewData, DataShapeName } from '../../../../../common/dist/index.mjs';
|
|
3
|
+
export declare class SupplementaryAngles 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
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
13
|
+
priorAttempts: import('vue').Ref<number>;
|
|
14
|
+
priorAnswers: import('vue').Ref<[Answer, string][]>;
|
|
15
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
16
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
17
|
+
question: import('vue').Ref<SupplementaryAngles | undefined, SupplementaryAngles | undefined>;
|
|
18
|
+
submitAnswer: (answer: Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
19
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
20
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
21
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
22
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
23
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
24
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
25
|
+
answer: import('vue').Ref<string, string>;
|
|
26
|
+
canvasRef: import('vue').Ref<HTMLCanvasElement | null, HTMLCanvasElement | null>;
|
|
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
|
+
angles: number[];
|
|
36
|
+
targetAngleIndex: number;
|
|
37
|
+
angleCount: number;
|
|
38
|
+
constructor(data: ViewData[]);
|
|
39
|
+
isCorrect(userAnswer: Answer): boolean;
|
|
40
|
+
dataShapes(): {
|
|
41
|
+
name: DataShapeName;
|
|
42
|
+
fields: FieldDefinition[];
|
|
43
|
+
}[];
|
|
44
|
+
views(): import('vue').DefineComponent<{
|
|
45
|
+
data: ViewData[];
|
|
46
|
+
modifyDifficulty: number;
|
|
47
|
+
}, {
|
|
48
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
49
|
+
priorAttempts: import('vue').Ref<number>;
|
|
50
|
+
priorAnswers: import('vue').Ref<[Answer, string][]>;
|
|
51
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
52
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
53
|
+
question: import('vue').Ref<SupplementaryAngles | undefined, SupplementaryAngles | undefined>;
|
|
54
|
+
submitAnswer: (answer: Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
55
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
56
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
57
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
58
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
59
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
60
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
61
|
+
answer: import('vue').Ref<string, string>;
|
|
62
|
+
canvasRef: import('vue').Ref<HTMLCanvasElement | null, HTMLCanvasElement | null>;
|
|
63
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
64
|
+
data: ViewData[];
|
|
65
|
+
modifyDifficulty: number;
|
|
66
|
+
}> & Readonly<{}>, {
|
|
67
|
+
modifyDifficulty: number;
|
|
68
|
+
}, {}, {
|
|
69
|
+
UserInputNumber: any;
|
|
70
|
+
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>[];
|
|
71
|
+
}
|
|
72
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/supplementaryAngles/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,OAAO,EACL,MAAM,EACN,eAAe,EACf,QAAQ,EACR,aAAa,EAGd,MAAM,sBAAsB,CAAC;AA6B9B,qBAAa,mBAAoB,SAAQ,QAAQ;IAC/C,OAAc,UAAU;;;QAKtB;IAEF,OAAc,KAAK;;;;;;;;;;sDAQN,CAAC;qCAxCW,OAAM,MAC7B;;;;6CAMA,CAAF;;;;;;;;;;;2EAyBqD;IAE9C,MAAM,EAAE,MAAM,EAAE,CAAM;IACtB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;gBAEd,IAAI,EAAE,QAAQ,EAAE;IAarB,SAAS,CAAC,UAAU,EAAE,MAAM;IAI5B,UAAU;;;;IAIV,KAAK;;;;;;;;;;sDAnBC,CAAC;qCAxCW,OAAM,MAC7B;;;;6CAMA,CAAF;;;;;;;;;;;;CAuDD"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { SupplementaryAngles } 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
|
+
priorSessionViews: import('vue').Ref<number>;
|
|
8
|
+
priorAttempts: import('vue').Ref<number>;
|
|
9
|
+
priorAnswers: import('vue').Ref<[import('../../../../../common/dist/index.mjs').Answer, string][]>;
|
|
10
|
+
maxAttemptsPerView: import('vue').Ref<number>;
|
|
11
|
+
maxSessionViews: import('vue').Ref<number>;
|
|
12
|
+
question: import('vue').Ref<SupplementaryAngles | undefined, SupplementaryAngles | undefined>;
|
|
13
|
+
submitAnswer: (answer: import('../../../../../common/dist/index.mjs').Answer, submittingClass?: string) => import('packages/db/dist').QuestionRecord;
|
|
14
|
+
startTime: import('vue').Ref<moment.Moment>;
|
|
15
|
+
hotKeys: import('vue').Ref<import('../../../../../common-ui/dist/common-ui.es.js').HotKey[]>;
|
|
16
|
+
timeSpent: import('vue').ComputedRef<number>;
|
|
17
|
+
logger: import('../../../../../common-ui/dist/common-ui.es.js').ViewableLogger;
|
|
18
|
+
getURL: (item: string, dataShapeIndex?: number) => string;
|
|
19
|
+
emitResponse: (record: import('packages/db/dist').CardRecord) => void;
|
|
20
|
+
answer: import('vue').Ref<string, string>;
|
|
21
|
+
canvasRef: import('vue').Ref<HTMLCanvasElement | null, HTMLCanvasElement | null>;
|
|
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=supplementaryAngles.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"supplementaryAngles.vue.d.ts","sourceRoot":"","sources":["../../../../src/math/questions/supplementaryAngles/supplementaryAngles.vue"],"names":[],"mappings":"AAQA;AAuMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAG9C,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;iFALhD,CA9Ja;iCA8Jb,OAAA,MA3L6D;;;;yCA2L7D,CAzL2B;;;;;;;;;;;;AAiM3B,wBAsKG"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare class ProperFraction {
|
|
2
|
+
readonly num: number;
|
|
3
|
+
readonly den: number;
|
|
4
|
+
private readonly rotation;
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
constructor(num: number, den: number, rotation?: number);
|
|
9
|
+
toString(): string;
|
|
10
|
+
static sum(a: ProperFraction, b: ProperFraction): ProperFraction;
|
|
11
|
+
reduce(): ProperFraction;
|
|
12
|
+
hasReduction(): boolean;
|
|
13
|
+
simplify(): ProperFraction;
|
|
14
|
+
getCanvasDrawing(size: number): HTMLCanvasElement;
|
|
15
|
+
getSquareCanvasDrawing(size: number): HTMLCanvasElement;
|
|
16
|
+
}
|
|
17
|
+
export default ProperFraction;
|
|
18
|
+
//# sourceMappingURL=Fraction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Fraction.d.ts","sourceRoot":"","sources":["../../../src/math/utility/Fraction.ts"],"names":[],"mappings":"AAAA,cAAM,cAAc;IAClB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IAErB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC;;OAEG;gBACS,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM;IAWvD,QAAQ,IAAI,MAAM;IAIlB,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,cAAc,EAAE,CAAC,EAAE,cAAc,GAAG,cAAc;IAShE,MAAM,IAAI,cAAc;IAexB,YAAY,IAAI,OAAO;IAIvB,QAAQ,IAAI,cAAc;IAQ1B,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,iBAAiB;IAwDjD,sBAAsB,CAAC,IAAI,EAAE,MAAM,GAAG,iBAAiB;CAsCxD;AAED,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Validator } from '../../../../common/dist/index.mjs';
|
|
2
|
+
/**
|
|
3
|
+
* Returns an integer between (inclusive) the two inputs
|
|
4
|
+
* @param min The smallest possible return value
|
|
5
|
+
* @param max The largest possible return value
|
|
6
|
+
*/
|
|
7
|
+
export declare function randomInt(min: number, max: number): number;
|
|
8
|
+
/**
|
|
9
|
+
* Returns the cosine of an angle measured in degrees
|
|
10
|
+
* @param degrees the angle measure in degrees
|
|
11
|
+
*/
|
|
12
|
+
export declare function cos(degrees: number): number;
|
|
13
|
+
/**
|
|
14
|
+
* Returns the sine of an angle measured in degrees
|
|
15
|
+
* @param degrees the angle measure in degrees
|
|
16
|
+
*/
|
|
17
|
+
export declare function sin(degrees: number): number;
|
|
18
|
+
export declare function intValidator(min: number, max: number): Validator;
|
|
19
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/math/utility/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAU,MAAM,sBAAsB,CAAC;AAEzD;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAE1D;AAED;;;GAGG;AACH,wBAAgB,GAAG,CAAC,OAAO,EAAE,MAAM,UAElC;AAED;;;GAGG;AACH,wBAAgB,GAAG,CAAC,OAAO,EAAE,MAAM,UAElC;AAMD,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,SAAS,CAiBhE"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
chroma: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}>, {
|
|
7
|
+
style: (n: number) => {
|
|
8
|
+
fill: string;
|
|
9
|
+
'fill-opacity': number;
|
|
10
|
+
stroke: string;
|
|
11
|
+
'stroke-width': number;
|
|
12
|
+
'stroke-miterlimit': number;
|
|
13
|
+
'stroke-dasharray': string;
|
|
14
|
+
'stroke-opacity': number;
|
|
15
|
+
};
|
|
16
|
+
white: number;
|
|
17
|
+
black: number;
|
|
18
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
19
|
+
chroma: {
|
|
20
|
+
type: NumberConstructor;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
24
|
+
export default _default;
|
|
25
|
+
//# sourceMappingURL=NoteDisplay.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NoteDisplay.vue.d.ts","sourceRoot":"","sources":["../../src/piano/NoteDisplay.vue"],"names":[],"mappings":"AAwHA;;;;;;;eAuLsB,MAAM;;;;;;;;;;;;;;;;;AAd5B,wBAuCG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/piano/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAI3C,QAAA,MAAM,KAAK,EAAE,UAA8D,CAAC;AAE5E,eAAe,KAAK,CAAC"}
|