keyboard-ui-profiles 0.0.19 → 0.0.21
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/components/Organisms/ReviewComponent/ReviewPresenter.js +0 -1
- package/dist/components/Organisms/ReviewComponent/ReviewPresenter.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/StudentEditor.stories.js +1 -1
- package/dist/components/Organisms/StudentEditor/StudentEditor.stories.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/components/MathModalSME.js +12 -1
- package/dist/components/Organisms/StudentEditor/components/MathModalSME.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/components/mathModalStyles.d.ts +1 -1
- package/dist/components/Organisms/StudentEditor/components/mathModalStyles.js +20 -0
- package/dist/components/Organisms/StudentEditor/components/mathModalStyles.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/utils/keyboard-config.d.ts +161 -173
- package/dist/components/Organisms/StudentEditor/utils/keyboard-config.js +10 -17
- package/dist/components/Organisms/StudentEditor/utils/keyboard-config.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/utils/keyboardConstants.d.ts +88 -88
- package/dist/components/Organisms/StudentEditor/utils/keyboardConstants.js +88 -88
- package/dist/components/Organisms/StudentEditor/utils/keyboardConstants.js.map +1 -1
- package/package.json +1 -1
|
@@ -44,49 +44,49 @@ exports.BASIC_OPERATIONS = {
|
|
|
44
44
|
exports.MATH_STRUCTURES = {
|
|
45
45
|
FRACTION: {
|
|
46
46
|
label: "\\frac{\\Box}{\\Box}",
|
|
47
|
-
value: "\\frac{
|
|
47
|
+
value: "\\frac{\\Box}{\\Box}",
|
|
48
48
|
isShortcut: true,
|
|
49
49
|
description: "Fraction",
|
|
50
50
|
},
|
|
51
51
|
FRACTION_ALT: {
|
|
52
52
|
label: "\\frac{\\square}{\\square}",
|
|
53
|
-
value: "\\frac{
|
|
53
|
+
value: "\\frac{\\Box}{\\Box}",
|
|
54
54
|
isShortcut: true,
|
|
55
55
|
description: "Fraction",
|
|
56
56
|
},
|
|
57
57
|
SQUARE_ROOT: {
|
|
58
58
|
label: "\\sqrt{\\square}",
|
|
59
|
-
value: "\\sqrt{
|
|
59
|
+
value: "\\sqrt{\\Box}",
|
|
60
60
|
isShortcut: true,
|
|
61
61
|
description: "Square root",
|
|
62
62
|
},
|
|
63
63
|
NTH_ROOT: {
|
|
64
64
|
label: "\\sqrt[\\Box]{\\square}",
|
|
65
|
-
value: "\\sqrt[
|
|
65
|
+
value: "\\sqrt[\\Box]{\\Box}",
|
|
66
66
|
isShortcut: true,
|
|
67
67
|
description: "nth root",
|
|
68
68
|
},
|
|
69
69
|
POWER_SQUARE: {
|
|
70
70
|
label: "\\square^2",
|
|
71
|
-
value: "
|
|
71
|
+
value: "\\Box^2",
|
|
72
72
|
isShortcut: true,
|
|
73
73
|
description: "Square/Power of 2",
|
|
74
74
|
},
|
|
75
75
|
POWER: {
|
|
76
76
|
label: "\\square^\\Box",
|
|
77
|
-
value: "
|
|
77
|
+
value: "\\Box^{\\Box}",
|
|
78
78
|
isShortcut: true,
|
|
79
79
|
description: "Power/Superscript",
|
|
80
80
|
},
|
|
81
81
|
POWER_ALT: {
|
|
82
82
|
label: "\\Box^\\Box",
|
|
83
|
-
value: "
|
|
83
|
+
value: "\\Box^{\\Box}",
|
|
84
84
|
isShortcut: true,
|
|
85
85
|
description: "Power/Superscript",
|
|
86
86
|
},
|
|
87
87
|
SUBSCRIPT: {
|
|
88
88
|
label: "\\Box_\\Box",
|
|
89
|
-
value: "
|
|
89
|
+
value: "\\Box_{\\Box}",
|
|
90
90
|
isShortcut: true,
|
|
91
91
|
description: "Subscript",
|
|
92
92
|
},
|
|
@@ -98,19 +98,19 @@ exports.MATH_STRUCTURES = {
|
|
|
98
98
|
},
|
|
99
99
|
ABSOLUTE_VALUE: {
|
|
100
100
|
label: "|\\Box|",
|
|
101
|
-
value: "|
|
|
101
|
+
value: "|\\Box|",
|
|
102
102
|
isShortcut: true,
|
|
103
103
|
description: "Absolute value",
|
|
104
104
|
},
|
|
105
105
|
ABSOLUTE_VALUE_ALT: {
|
|
106
106
|
label: "|\\Box|",
|
|
107
|
-
value: "|
|
|
107
|
+
value: "|\\Box|",
|
|
108
108
|
isShortcut: true,
|
|
109
109
|
description: "Absolute value",
|
|
110
110
|
},
|
|
111
111
|
MATRIX_SQUARE: {
|
|
112
|
-
label: "
|
|
113
|
-
value: "\\begin{bmatrix}
|
|
112
|
+
label: "matrix (2×2)",
|
|
113
|
+
value: "\\begin{bmatrix}\\Box&\\Box\\\\\\Box&\\Box\\end{bmatrix}",
|
|
114
114
|
isShortcut: true,
|
|
115
115
|
description: "Matrix with square brackets",
|
|
116
116
|
},
|
|
@@ -501,37 +501,37 @@ exports.BRACKETS = {
|
|
|
501
501
|
SQUARE_CLOSE: { label: "]", value: "]" },
|
|
502
502
|
CURLY_BRACES: {
|
|
503
503
|
label: "\\{\\Box\\}",
|
|
504
|
-
value: "\\{\\}",
|
|
504
|
+
value: "\\{\\Box\\}",
|
|
505
505
|
isShortcut: true,
|
|
506
506
|
description: "Curly braces",
|
|
507
507
|
},
|
|
508
508
|
CURLY_BRACES_ALT: {
|
|
509
509
|
label: "\\{\\Box\\}",
|
|
510
|
-
value: "\\{\\}",
|
|
510
|
+
value: "\\{\\Box\\}",
|
|
511
511
|
isShortcut: true,
|
|
512
512
|
description: "Curly braces",
|
|
513
513
|
},
|
|
514
514
|
ROUND_BRACES: {
|
|
515
515
|
label: "(\\Box)",
|
|
516
|
-
value: "()",
|
|
516
|
+
value: "(\\Box)",
|
|
517
517
|
isShortcut: true,
|
|
518
518
|
description: "Round braces",
|
|
519
519
|
},
|
|
520
520
|
SQUARE_BRACKETS: {
|
|
521
521
|
label: "[ \\Box ]",
|
|
522
|
-
value: "[
|
|
522
|
+
value: "[ \\Box ]",
|
|
523
523
|
isShortcut: true,
|
|
524
524
|
description: "Square brackets",
|
|
525
525
|
},
|
|
526
526
|
SQUARE_BRACKETS_ALT: {
|
|
527
527
|
label: "[\\Box]",
|
|
528
|
-
value: "[
|
|
528
|
+
value: "[\\Box]",
|
|
529
529
|
isShortcut: true,
|
|
530
530
|
description: "Square brackets",
|
|
531
531
|
},
|
|
532
532
|
DOUBLE_BRACKETS: {
|
|
533
|
-
label: "
|
|
534
|
-
value: "
|
|
533
|
+
label: "⟦\\Box⟧",
|
|
534
|
+
value: "⟦\\Box⟧",
|
|
535
535
|
isShortcut: true,
|
|
536
536
|
description: "Double brackets",
|
|
537
537
|
},
|
|
@@ -542,55 +542,55 @@ exports.BRACKETS = {
|
|
|
542
542
|
exports.TRIGONOMETRIC = {
|
|
543
543
|
SIN: {
|
|
544
544
|
label: "\\sin (\\Box)",
|
|
545
|
-
value: "\\sin ()",
|
|
545
|
+
value: "\\sin (\\Box)",
|
|
546
546
|
isShortcut: true,
|
|
547
547
|
description: "Sine function with parentheses",
|
|
548
548
|
},
|
|
549
549
|
COS: {
|
|
550
550
|
label: "\\cos (\\Box)",
|
|
551
|
-
value: "\\cos ()",
|
|
551
|
+
value: "\\cos (\\Box)",
|
|
552
552
|
isShortcut: true,
|
|
553
553
|
description: "Cosine function with parentheses",
|
|
554
554
|
},
|
|
555
555
|
TAN: {
|
|
556
556
|
label: "\\tan (\\Box)",
|
|
557
|
-
value: "\\tan ()",
|
|
557
|
+
value: "\\tan (\\Box)",
|
|
558
558
|
isShortcut: true,
|
|
559
559
|
description: "Tangent function with parentheses",
|
|
560
560
|
},
|
|
561
561
|
ARCSIN: {
|
|
562
562
|
label: "\\sin^{-1} (\\Box)",
|
|
563
|
-
value: "\\sin^{-1} ()",
|
|
563
|
+
value: "\\sin^{-1} (\\Box)",
|
|
564
564
|
isShortcut: true,
|
|
565
565
|
description: "Inverse sine (arcsine) with parentheses",
|
|
566
566
|
},
|
|
567
567
|
ARCCOS: {
|
|
568
568
|
label: "\\cos^{-1} (\\Box)",
|
|
569
|
-
value: "\\cos^{-1} ()",
|
|
569
|
+
value: "\\cos^{-1} (\\Box)",
|
|
570
570
|
isShortcut: true,
|
|
571
571
|
description: "Inverse cosine (arccosine) with parentheses",
|
|
572
572
|
},
|
|
573
573
|
ARCTAN: {
|
|
574
574
|
label: "\\tan^{-1} (\\Box)",
|
|
575
|
-
value: "\\tan^{-1} ()",
|
|
575
|
+
value: "\\tan^{-1} (\\Box)",
|
|
576
576
|
isShortcut: true,
|
|
577
577
|
description: "Inverse tangent (arctangent)",
|
|
578
578
|
},
|
|
579
579
|
SEC: {
|
|
580
580
|
label: "\\sec (\\Box)",
|
|
581
|
-
value: "\\sec ()",
|
|
581
|
+
value: "\\sec (\\Box)",
|
|
582
582
|
isShortcut: true,
|
|
583
583
|
description: "Secant function with parentheses",
|
|
584
584
|
},
|
|
585
585
|
CSC: {
|
|
586
586
|
label: "\\csc (\\Box)",
|
|
587
|
-
value: "\\csc ()",
|
|
587
|
+
value: "\\csc (\\Box)",
|
|
588
588
|
isShortcut: true,
|
|
589
589
|
description: "Cosecant function with parentheses",
|
|
590
590
|
},
|
|
591
591
|
COT: {
|
|
592
592
|
label: "\\cot (\\Box)",
|
|
593
|
-
value: "\\cot ()",
|
|
593
|
+
value: "\\cot (\\Box)",
|
|
594
594
|
isShortcut: true,
|
|
595
595
|
description: "Cotangent function with parentheses",
|
|
596
596
|
},
|
|
@@ -605,13 +605,13 @@ exports.LOGARITHMIC = {
|
|
|
605
605
|
},
|
|
606
606
|
LOG_BASE: {
|
|
607
607
|
label: "\\text{log}_\\Box",
|
|
608
|
-
value: "\\text{log}
|
|
608
|
+
value: "\\text{log}_\\Box",
|
|
609
609
|
isShortcut: true,
|
|
610
610
|
description: "Logarithm base x",
|
|
611
611
|
},
|
|
612
612
|
LOG_BASE_ALT: {
|
|
613
613
|
label: "\\log_\\Box (\\Box)",
|
|
614
|
-
value: "\\log_{} ()",
|
|
614
|
+
value: "\\log_{\\Box} (\\Box)",
|
|
615
615
|
isShortcut: true,
|
|
616
616
|
description: "Logarithm with subscript and parentheses",
|
|
617
617
|
},
|
|
@@ -623,7 +623,7 @@ exports.LOGARITHMIC = {
|
|
|
623
623
|
},
|
|
624
624
|
LN_ALT: {
|
|
625
625
|
label: "\\ln (\\Box)",
|
|
626
|
-
value: "\\ln ()",
|
|
626
|
+
value: "\\ln (\\Box)",
|
|
627
627
|
isShortcut: true,
|
|
628
628
|
description: "Natural logarithm with parentheses",
|
|
629
629
|
},
|
|
@@ -690,10 +690,10 @@ exports.CHEMISTRY = {
|
|
|
690
690
|
description: "Negative charge",
|
|
691
691
|
},
|
|
692
692
|
// States
|
|
693
|
-
SOLID: { label: "(\\Box)_{s}", value: "()_{s}" },
|
|
694
|
-
LIQUID: { label: "(\\Box)_{l}", value: "()_{l}" },
|
|
695
|
-
GAS: { label: "(\\Box)_{g}", value: "()_{g}" },
|
|
696
|
-
AQUEOUS: { label: "(\\Box)_{aq}", value: "()_{aq}" },
|
|
693
|
+
SOLID: { label: "(\\Box)_{s}", value: "(\\Box)_{s}" },
|
|
694
|
+
LIQUID: { label: "(\\Box)_{l}", value: "(\\Box)_{l}" },
|
|
695
|
+
GAS: { label: "(\\Box)_{g}", value: "(\\Box)_{g}" },
|
|
696
|
+
AQUEOUS: { label: "(\\Box)_{aq}", value: "(\\Box)_{aq}" },
|
|
697
697
|
// Reaction arrows
|
|
698
698
|
REACTION_ARROW: {
|
|
699
699
|
label: "\\rightarrow",
|
|
@@ -740,7 +740,7 @@ exports.CHEMISTRY = {
|
|
|
740
740
|
},
|
|
741
741
|
CONCENTRATION: {
|
|
742
742
|
label: "[\\Box]",
|
|
743
|
-
value: "[
|
|
743
|
+
value: "[\\Box]",
|
|
744
744
|
isShortcut: true,
|
|
745
745
|
description: "Concentration brackets",
|
|
746
746
|
},
|
|
@@ -797,7 +797,7 @@ exports.SPECIAL_SYMBOLS = {
|
|
|
797
797
|
},
|
|
798
798
|
ANGLE: {
|
|
799
799
|
label: "∠(\\Box)",
|
|
800
|
-
value: "\\angle ()",
|
|
800
|
+
value: "\\angle (\\Box)",
|
|
801
801
|
isShortcut: true,
|
|
802
802
|
description: "Angle symbol with parentheses",
|
|
803
803
|
},
|
|
@@ -830,19 +830,19 @@ exports.SPECIAL_SYMBOLS = {
|
|
|
830
830
|
// Advanced math
|
|
831
831
|
SUMMATION: {
|
|
832
832
|
label: "\\sum_\\Box^\\Box (\\Box)",
|
|
833
|
-
value: "\\sum_
|
|
833
|
+
value: "\\sum_\\Box^\\Box (\\Box)",
|
|
834
834
|
isShortcut: true,
|
|
835
835
|
description: "Summation with parentheses",
|
|
836
836
|
},
|
|
837
837
|
PRODUCT: {
|
|
838
838
|
label: "\\prod_\\Box^\\Box (\\Box)",
|
|
839
|
-
value: "\\prod_
|
|
839
|
+
value: "\\prod_\\Box^\\Box (\\Box)",
|
|
840
840
|
isShortcut: true,
|
|
841
841
|
description: "Product with parentheses",
|
|
842
842
|
},
|
|
843
843
|
FUNCTION: {
|
|
844
844
|
label: "f(\\Box)",
|
|
845
|
-
value: "f()",
|
|
845
|
+
value: "f(\\Box)",
|
|
846
846
|
isShortcut: true,
|
|
847
847
|
description: "Function",
|
|
848
848
|
},
|
|
@@ -887,7 +887,7 @@ exports.SPECIAL_SYMBOLS = {
|
|
|
887
887
|
// Currency
|
|
888
888
|
RUPEES: {
|
|
889
889
|
label: "\\text{Rs.} (\\Box)",
|
|
890
|
-
value: "\\text{Rs.} ()",
|
|
890
|
+
value: "\\text{Rs.} (\\Box)",
|
|
891
891
|
isShortcut: true,
|
|
892
892
|
description: "Rupees symbol with parentheses",
|
|
893
893
|
},
|
|
@@ -901,43 +901,43 @@ exports.SPECIAL_SYMBOLS = {
|
|
|
901
901
|
// Geometry symbols
|
|
902
902
|
TRIANGLE: {
|
|
903
903
|
label: "\\triangle\\Box",
|
|
904
|
-
value: "\\triangle",
|
|
904
|
+
value: "\\triangle\\Box",
|
|
905
905
|
isShortcut: true,
|
|
906
906
|
description: "Triangle",
|
|
907
907
|
},
|
|
908
908
|
SEGMENT: {
|
|
909
909
|
label: "\\overline{\\Box}",
|
|
910
|
-
value: "\\overline{
|
|
910
|
+
value: "\\overline{\\Box}",
|
|
911
911
|
isShortcut: true,
|
|
912
912
|
description: "Line segment",
|
|
913
913
|
},
|
|
914
914
|
RAY: {
|
|
915
915
|
label: "\\overrightarrow{\\Box}",
|
|
916
|
-
value: "\\overrightarrow{
|
|
916
|
+
value: "\\overrightarrow{\\Box}",
|
|
917
917
|
isShortcut: true,
|
|
918
918
|
description: "Ray",
|
|
919
919
|
},
|
|
920
920
|
LINE: {
|
|
921
921
|
label: "\\overleftrightarrow{\\Box}",
|
|
922
|
-
value: "\\overleftrightarrow{
|
|
922
|
+
value: "\\overleftrightarrow{\\Box}",
|
|
923
923
|
isShortcut: true,
|
|
924
924
|
description: "Line",
|
|
925
925
|
},
|
|
926
926
|
ARC: {
|
|
927
927
|
label: "\\overset{\\frown}{\\Box\\Box}",
|
|
928
|
-
value: "\\overset{\\frown}{
|
|
928
|
+
value: "\\overset{\\frown}{\\Box\\Box}",
|
|
929
929
|
isShortcut: true,
|
|
930
930
|
description: "Arc",
|
|
931
931
|
},
|
|
932
932
|
COORDINATES: {
|
|
933
933
|
label: "(\\Box, \\Box)",
|
|
934
|
-
value: "(
|
|
934
|
+
value: "(\\Box, \\Box)",
|
|
935
935
|
isShortcut: true,
|
|
936
936
|
description: "Coordinate pair",
|
|
937
937
|
},
|
|
938
938
|
SLOPE_FORMULA: {
|
|
939
939
|
label: "m = \\frac{\\Box - \\Box}{\\Box - \\Box}",
|
|
940
|
-
value: "m = \\frac{
|
|
940
|
+
value: "m = \\frac{\\Box - \\Box}{\\Box - \\Box}",
|
|
941
941
|
isShortcut: true,
|
|
942
942
|
description: "Slope formula",
|
|
943
943
|
},
|
|
@@ -946,49 +946,49 @@ exports.SPECIAL_SYMBOLS = {
|
|
|
946
946
|
exports.CALCULUS = {
|
|
947
947
|
LIMIT: {
|
|
948
948
|
label: "\\lim_{\\Box\\to\\Box} (\\Box)",
|
|
949
|
-
value: "\\lim_{
|
|
949
|
+
value: "\\lim_{\\Box\\to\\Box} (\\Box)",
|
|
950
950
|
isShortcut: true,
|
|
951
951
|
description: "Limit notation with parentheses",
|
|
952
952
|
},
|
|
953
953
|
DERIVATIVE: {
|
|
954
954
|
label: "\\frac{d}{d\\Box} (\\Box)",
|
|
955
|
-
value: "\\frac{d}{
|
|
955
|
+
value: "\\frac{d}{d\\Box} (\\Box)",
|
|
956
956
|
isShortcut: true,
|
|
957
957
|
description: "First derivative with parentheses",
|
|
958
958
|
},
|
|
959
959
|
SECOND_DERIVATIVE: {
|
|
960
960
|
label: "\\frac{d^2\\Box}{d\\Box^2}",
|
|
961
|
-
value: "\\frac{d^
|
|
961
|
+
value: "\\frac{d^2\\Box}{d\\Box^2}",
|
|
962
962
|
isShortcut: true,
|
|
963
963
|
description: "Second derivative",
|
|
964
964
|
},
|
|
965
965
|
INTEGRAL_SIMPLE: {
|
|
966
966
|
label: "\\int \\Box \\, d\\Box",
|
|
967
|
-
value: "\\int
|
|
967
|
+
value: "\\int \\Box \\, d\\Box",
|
|
968
968
|
isShortcut: true,
|
|
969
969
|
description: "Indefinite integral",
|
|
970
970
|
},
|
|
971
971
|
INTEGRAL_DEFINITE: {
|
|
972
972
|
label: "\\int_{\\Box}^{\\Box} \\Box \\, d\\Box",
|
|
973
|
-
value: "\\int_{
|
|
973
|
+
value: "\\int_{\\Box}^{\\Box} \\Box \\, d\\Box",
|
|
974
974
|
isShortcut: true,
|
|
975
975
|
description: "Definite integral",
|
|
976
976
|
},
|
|
977
977
|
PARTIAL_DERIVATIVE: {
|
|
978
978
|
label: "\\frac{\\partial \\Box}{\\partial \\Box}",
|
|
979
|
-
value: "\\frac{\\partial
|
|
979
|
+
value: "\\frac{\\partial \\Box}{\\partial \\Box}",
|
|
980
980
|
isShortcut: true,
|
|
981
981
|
description: "Partial derivative",
|
|
982
982
|
},
|
|
983
983
|
EVALUATION_BRACKETS: {
|
|
984
984
|
label: "[\\Box]_{\\Box}^{\\Box}",
|
|
985
|
-
value: "[
|
|
985
|
+
value: "[\\Box]_{\\Box}^{\\Box}",
|
|
986
986
|
isShortcut: true,
|
|
987
987
|
description: "Evaluation brackets",
|
|
988
988
|
},
|
|
989
989
|
LINE_INTEGRAL: {
|
|
990
990
|
label: "\\oint (\\Box) \\, d\\Box",
|
|
991
|
-
value: "\\oint () \\,
|
|
991
|
+
value: "\\oint (\\Box) \\, d\\Box",
|
|
992
992
|
isShortcut: true,
|
|
993
993
|
description: "Line integral with parentheses",
|
|
994
994
|
},
|
|
@@ -1000,7 +1000,7 @@ exports.CALCULUS = {
|
|
|
1000
1000
|
},
|
|
1001
1001
|
NATURAL_LOG_ABS: {
|
|
1002
1002
|
label: "\\ln |\\Box|",
|
|
1003
|
-
value: "\\ln |
|
|
1003
|
+
value: "\\ln |\\Box|",
|
|
1004
1004
|
isShortcut: true,
|
|
1005
1005
|
description: "Natural logarithm of absolute value",
|
|
1006
1006
|
},
|
|
@@ -1009,31 +1009,31 @@ exports.CALCULUS = {
|
|
|
1009
1009
|
exports.STATISTICS = {
|
|
1010
1010
|
SAMPLE_MEAN: {
|
|
1011
1011
|
label: "\\overline{\\Box}",
|
|
1012
|
-
value: "\\overline{
|
|
1012
|
+
value: "\\overline{\\Box}",
|
|
1013
1013
|
isShortcut: true,
|
|
1014
1014
|
description: "Sample mean (x-bar)",
|
|
1015
1015
|
},
|
|
1016
1016
|
PERMUTATION: {
|
|
1017
1017
|
label: "^\\Box P_\\Box",
|
|
1018
|
-
value: "
|
|
1018
|
+
value: "^\\Box P_\\Box",
|
|
1019
1019
|
isShortcut: true,
|
|
1020
1020
|
description: "Permutation (nPr)",
|
|
1021
1021
|
},
|
|
1022
1022
|
COMBINATION: {
|
|
1023
1023
|
label: "^\\Box C_\\Box",
|
|
1024
|
-
value: "
|
|
1024
|
+
value: "^\\Box C_\\Box",
|
|
1025
1025
|
isShortcut: true,
|
|
1026
1026
|
description: "Combination (nCr)",
|
|
1027
1027
|
},
|
|
1028
1028
|
PROBABILITY_FUNCTION: {
|
|
1029
1029
|
label: "P(\\Box)",
|
|
1030
|
-
value: "P()",
|
|
1030
|
+
value: "P(\\Box)",
|
|
1031
1031
|
isShortcut: true,
|
|
1032
1032
|
description: "Probability function",
|
|
1033
1033
|
},
|
|
1034
1034
|
BINOMIAL_COEFFICIENT: {
|
|
1035
1035
|
label: "\\binom{\\Box}{\\Box}",
|
|
1036
|
-
value: "\\binom{
|
|
1036
|
+
value: "\\binom{\\Box}{\\Box}",
|
|
1037
1037
|
isShortcut: true,
|
|
1038
1038
|
description: "Binomial coefficient (n choose k)",
|
|
1039
1039
|
},
|
|
@@ -1051,7 +1051,7 @@ exports.STATISTICS = {
|
|
|
1051
1051
|
},
|
|
1052
1052
|
VARIANCE_FUNCTION: {
|
|
1053
1053
|
label: "\\text{Var}(\\Box)",
|
|
1054
|
-
value: "\\text{Var}(
|
|
1054
|
+
value: "\\text{Var}(\\Box)",
|
|
1055
1055
|
isShortcut: true,
|
|
1056
1056
|
description: "Variance function",
|
|
1057
1057
|
},
|
|
@@ -1075,13 +1075,13 @@ exports.STATISTICS = {
|
|
|
1075
1075
|
},
|
|
1076
1076
|
Z_SCORE_FORMULA: {
|
|
1077
1077
|
label: "z = \\frac{\\Box - μ}{σ}",
|
|
1078
|
-
value: "z = \\frac{
|
|
1078
|
+
value: "z = \\frac{\\Box - μ}{σ}",
|
|
1079
1079
|
isShortcut: true,
|
|
1080
1080
|
description: "Z-score standardization formula",
|
|
1081
1081
|
},
|
|
1082
1082
|
SUMMATION_SIMPLE: {
|
|
1083
1083
|
label: "\\sum \\Box",
|
|
1084
|
-
value: "\\sum
|
|
1084
|
+
value: "\\sum \\Box",
|
|
1085
1085
|
isShortcut: true,
|
|
1086
1086
|
description: "Simple summation",
|
|
1087
1087
|
},
|
|
@@ -1090,19 +1090,19 @@ exports.STATISTICS = {
|
|
|
1090
1090
|
exports.MATRICES_VECTORS = {
|
|
1091
1091
|
VECTOR_ARROW: {
|
|
1092
1092
|
label: "\\vec{\\Box}",
|
|
1093
|
-
value: "\\vec{
|
|
1093
|
+
value: "\\vec{\\Box}",
|
|
1094
1094
|
isShortcut: true,
|
|
1095
1095
|
description: "Vector with arrow",
|
|
1096
1096
|
},
|
|
1097
1097
|
VECTOR_HAT: {
|
|
1098
1098
|
label: "\\hat{\\Box}",
|
|
1099
|
-
value: "\\hat{
|
|
1099
|
+
value: "\\hat{\\Box}",
|
|
1100
1100
|
isShortcut: true,
|
|
1101
1101
|
description: "Unit vector with hat",
|
|
1102
1102
|
},
|
|
1103
1103
|
VECTOR_MAGNITUDE: {
|
|
1104
1104
|
label: "||\\Box||",
|
|
1105
|
-
value: "||
|
|
1105
|
+
value: "||\\Box||",
|
|
1106
1106
|
isShortcut: true,
|
|
1107
1107
|
description: "Vector magnitude/norm",
|
|
1108
1108
|
},
|
|
@@ -1125,34 +1125,34 @@ exports.MATRICES_VECTORS = {
|
|
|
1125
1125
|
description: "Unit vector k",
|
|
1126
1126
|
},
|
|
1127
1127
|
MATRIX_2x2: {
|
|
1128
|
-
label: "
|
|
1128
|
+
label: "matrix (2×2)",
|
|
1129
1129
|
value: "\\begin{bmatrix}{}&{}\\\\{}&{}\\end{bmatrix}",
|
|
1130
1130
|
isShortcut: true,
|
|
1131
|
-
description: "
|
|
1131
|
+
description: "matrix (2×2)",
|
|
1132
1132
|
},
|
|
1133
1133
|
MATRIX_2x3: {
|
|
1134
|
-
label: "
|
|
1134
|
+
label: "matrix (2×3)",
|
|
1135
1135
|
value: "\\begin{bmatrix}{}&{}&{}\\\\{}&{}&{}\\end{bmatrix}",
|
|
1136
1136
|
isShortcut: true,
|
|
1137
|
-
description: "
|
|
1137
|
+
description: "matrix (2×3)",
|
|
1138
1138
|
},
|
|
1139
1139
|
MATRIX_3x2: {
|
|
1140
|
-
label: "
|
|
1140
|
+
label: "matrix (3×2)",
|
|
1141
1141
|
value: "\\begin{bmatrix}{}&{}\\\\{}&{}\\\\{}&{}\\end{bmatrix}",
|
|
1142
1142
|
isShortcut: true,
|
|
1143
|
-
description: "
|
|
1143
|
+
description: "matrix (3×2)",
|
|
1144
1144
|
},
|
|
1145
1145
|
DETERMINANT_2x2: {
|
|
1146
|
-
label: "
|
|
1146
|
+
label: "determinant (2×2)",
|
|
1147
1147
|
value: "\\begin{vmatrix}{}&{}\\\\{}&{}\\end{vmatrix}",
|
|
1148
1148
|
isShortcut: true,
|
|
1149
|
-
description: "
|
|
1149
|
+
description: "determinant (2×2)",
|
|
1150
1150
|
},
|
|
1151
1151
|
MATRIX_3x3: {
|
|
1152
|
-
label: "
|
|
1152
|
+
label: "matrix (3×3)",
|
|
1153
1153
|
value: "\\begin{bmatrix}{}&{}&{}\\\\{}&{}&{}\\\\{}&{}&{}\\end{bmatrix}",
|
|
1154
1154
|
isShortcut: true,
|
|
1155
|
-
description: "
|
|
1155
|
+
description: "matrix (3×3)",
|
|
1156
1156
|
},
|
|
1157
1157
|
DOT_PRODUCT: {
|
|
1158
1158
|
label: "\\cdot",
|
|
@@ -1174,7 +1174,7 @@ exports.MATRICES_VECTORS = {
|
|
|
1174
1174
|
},
|
|
1175
1175
|
DETERMINANT_FUNCTION: {
|
|
1176
1176
|
label: "\\text{det}(\\Box)",
|
|
1177
|
-
value: "\\text{det}(
|
|
1177
|
+
value: "\\text{det}(\\Box)",
|
|
1178
1178
|
isShortcut: true,
|
|
1179
1179
|
description: "Determinant function",
|
|
1180
1180
|
},
|
|
@@ -1189,7 +1189,7 @@ exports.COMPLEX_NUMBERS = {
|
|
|
1189
1189
|
},
|
|
1190
1190
|
COMPLEX_CONJUGATE: {
|
|
1191
1191
|
label: "\\overline{\\Box}",
|
|
1192
|
-
value: "\\overline{
|
|
1192
|
+
value: "\\overline{\\Box}",
|
|
1193
1193
|
isShortcut: true,
|
|
1194
1194
|
description: "Complex conjugate",
|
|
1195
1195
|
},
|
|
@@ -1201,7 +1201,7 @@ exports.COMPLEX_NUMBERS = {
|
|
|
1201
1201
|
},
|
|
1202
1202
|
ARGUMENT: {
|
|
1203
1203
|
label: "\\arg(\\Box)",
|
|
1204
|
-
value: "\\arg(
|
|
1204
|
+
value: "\\arg(\\Box)",
|
|
1205
1205
|
isShortcut: true,
|
|
1206
1206
|
description: "Argument of complex number",
|
|
1207
1207
|
},
|
|
@@ -1213,13 +1213,13 @@ exports.COMPLEX_NUMBERS = {
|
|
|
1213
1213
|
},
|
|
1214
1214
|
REAL_PART: {
|
|
1215
1215
|
label: "\\text{Re}(\\Box)",
|
|
1216
|
-
value: "\\text{Re}(
|
|
1216
|
+
value: "\\text{Re}(\\Box)",
|
|
1217
1217
|
isShortcut: true,
|
|
1218
1218
|
description: "Real part of complex number",
|
|
1219
1219
|
},
|
|
1220
1220
|
IMAGINARY_PART: {
|
|
1221
1221
|
label: "\\text{Im}(\\Box)",
|
|
1222
|
-
value: "\\text{Im}(
|
|
1222
|
+
value: "\\text{Im}(\\Box)",
|
|
1223
1223
|
isShortcut: true,
|
|
1224
1224
|
description: "Imaginary part of complex number",
|
|
1225
1225
|
},
|
|
@@ -1246,7 +1246,7 @@ exports.COMPLEX_NUMBERS = {
|
|
|
1246
1246
|
exports.PHYSICS = {
|
|
1247
1247
|
SCIENTIFIC_NOTATION: {
|
|
1248
1248
|
label: "\\Box \\times 10^\\Box",
|
|
1249
|
-
value: "
|
|
1249
|
+
value: "\\Box \\times 10^\\Box",
|
|
1250
1250
|
isShortcut: true,
|
|
1251
1251
|
description: "Scientific notation",
|
|
1252
1252
|
},
|
|
@@ -1406,25 +1406,25 @@ exports.PROFILE_TEMPLATES = {
|
|
|
1406
1406
|
// Profile 1 - Set theory and intervals
|
|
1407
1407
|
MIXED_FRACTION: {
|
|
1408
1408
|
label: "\\Box\\frac{\\Box}{\\Box}",
|
|
1409
|
-
value: "
|
|
1409
|
+
value: "\\Box\\frac{\\Box}{\\Box}",
|
|
1410
1410
|
isShortcut: true,
|
|
1411
1411
|
description: "Mixed fraction",
|
|
1412
1412
|
},
|
|
1413
1413
|
BOTTOM_FRACTION: {
|
|
1414
1414
|
label: "\\frac{}{\\Box}",
|
|
1415
|
-
value: "\\frac{}{
|
|
1415
|
+
value: "\\frac{}{\\Box}",
|
|
1416
1416
|
isShortcut: true,
|
|
1417
1417
|
description: "Bottom fraction only",
|
|
1418
1418
|
},
|
|
1419
1419
|
SQUARE_BRACKETS_TWO_ELEMENTS: {
|
|
1420
1420
|
label: "[\\Box,\\Box]",
|
|
1421
|
-
value: "[
|
|
1421
|
+
value: "[\\Box,\\Box]",
|
|
1422
1422
|
isShortcut: true,
|
|
1423
1423
|
description: "Square brackets with 2 elements",
|
|
1424
1424
|
},
|
|
1425
1425
|
ROUND_BRACKETS_TWO_ELEMENTS: {
|
|
1426
1426
|
label: "(\\Box,\\Box)",
|
|
1427
|
-
value: "(
|
|
1427
|
+
value: "(\\Box,\\Box)",
|
|
1428
1428
|
isShortcut: true,
|
|
1429
1429
|
description: "Round brackets with 2 elements",
|
|
1430
1430
|
},
|