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
|
@@ -108,49 +108,49 @@ export declare const BASIC_OPERATIONS: {
|
|
|
108
108
|
export declare const MATH_STRUCTURES: {
|
|
109
109
|
readonly FRACTION: {
|
|
110
110
|
readonly label: "\\frac{\\Box}{\\Box}";
|
|
111
|
-
readonly value: "\\frac{
|
|
111
|
+
readonly value: "\\frac{\\Box}{\\Box}";
|
|
112
112
|
readonly isShortcut: true;
|
|
113
113
|
readonly description: "Fraction";
|
|
114
114
|
};
|
|
115
115
|
readonly FRACTION_ALT: {
|
|
116
116
|
readonly label: "\\frac{\\square}{\\square}";
|
|
117
|
-
readonly value: "\\frac{
|
|
117
|
+
readonly value: "\\frac{\\Box}{\\Box}";
|
|
118
118
|
readonly isShortcut: true;
|
|
119
119
|
readonly description: "Fraction";
|
|
120
120
|
};
|
|
121
121
|
readonly SQUARE_ROOT: {
|
|
122
122
|
readonly label: "\\sqrt{\\square}";
|
|
123
|
-
readonly value: "\\sqrt{
|
|
123
|
+
readonly value: "\\sqrt{\\Box}";
|
|
124
124
|
readonly isShortcut: true;
|
|
125
125
|
readonly description: "Square root";
|
|
126
126
|
};
|
|
127
127
|
readonly NTH_ROOT: {
|
|
128
128
|
readonly label: "\\sqrt[\\Box]{\\square}";
|
|
129
|
-
readonly value: "\\sqrt[
|
|
129
|
+
readonly value: "\\sqrt[\\Box]{\\Box}";
|
|
130
130
|
readonly isShortcut: true;
|
|
131
131
|
readonly description: "nth root";
|
|
132
132
|
};
|
|
133
133
|
readonly POWER_SQUARE: {
|
|
134
134
|
readonly label: "\\square^2";
|
|
135
|
-
readonly value: "
|
|
135
|
+
readonly value: "\\Box^2";
|
|
136
136
|
readonly isShortcut: true;
|
|
137
137
|
readonly description: "Square/Power of 2";
|
|
138
138
|
};
|
|
139
139
|
readonly POWER: {
|
|
140
140
|
readonly label: "\\square^\\Box";
|
|
141
|
-
readonly value: "
|
|
141
|
+
readonly value: "\\Box^{\\Box}";
|
|
142
142
|
readonly isShortcut: true;
|
|
143
143
|
readonly description: "Power/Superscript";
|
|
144
144
|
};
|
|
145
145
|
readonly POWER_ALT: {
|
|
146
146
|
readonly label: "\\Box^\\Box";
|
|
147
|
-
readonly value: "
|
|
147
|
+
readonly value: "\\Box^{\\Box}";
|
|
148
148
|
readonly isShortcut: true;
|
|
149
149
|
readonly description: "Power/Superscript";
|
|
150
150
|
};
|
|
151
151
|
readonly SUBSCRIPT: {
|
|
152
152
|
readonly label: "\\Box_\\Box";
|
|
153
|
-
readonly value: "
|
|
153
|
+
readonly value: "\\Box_{\\Box}";
|
|
154
154
|
readonly isShortcut: true;
|
|
155
155
|
readonly description: "Subscript";
|
|
156
156
|
};
|
|
@@ -162,19 +162,19 @@ export declare const MATH_STRUCTURES: {
|
|
|
162
162
|
};
|
|
163
163
|
readonly ABSOLUTE_VALUE: {
|
|
164
164
|
readonly label: "|\\Box|";
|
|
165
|
-
readonly value: "|
|
|
165
|
+
readonly value: "|\\Box|";
|
|
166
166
|
readonly isShortcut: true;
|
|
167
167
|
readonly description: "Absolute value";
|
|
168
168
|
};
|
|
169
169
|
readonly ABSOLUTE_VALUE_ALT: {
|
|
170
170
|
readonly label: "|\\Box|";
|
|
171
|
-
readonly value: "|
|
|
171
|
+
readonly value: "|\\Box|";
|
|
172
172
|
readonly isShortcut: true;
|
|
173
173
|
readonly description: "Absolute value";
|
|
174
174
|
};
|
|
175
175
|
readonly MATRIX_SQUARE: {
|
|
176
|
-
readonly label: "
|
|
177
|
-
readonly value: "\\begin{bmatrix}
|
|
176
|
+
readonly label: "matrix (2×2)";
|
|
177
|
+
readonly value: "\\begin{bmatrix}\\Box&\\Box\\\\\\Box&\\Box\\end{bmatrix}";
|
|
178
178
|
readonly isShortcut: true;
|
|
179
179
|
readonly description: "Matrix with square brackets";
|
|
180
180
|
};
|
|
@@ -588,37 +588,37 @@ export declare const BRACKETS: {
|
|
|
588
588
|
};
|
|
589
589
|
readonly CURLY_BRACES: {
|
|
590
590
|
readonly label: "\\{\\Box\\}";
|
|
591
|
-
readonly value: "\\{\\}";
|
|
591
|
+
readonly value: "\\{\\Box\\}";
|
|
592
592
|
readonly isShortcut: true;
|
|
593
593
|
readonly description: "Curly braces";
|
|
594
594
|
};
|
|
595
595
|
readonly CURLY_BRACES_ALT: {
|
|
596
596
|
readonly label: "\\{\\Box\\}";
|
|
597
|
-
readonly value: "\\{\\}";
|
|
597
|
+
readonly value: "\\{\\Box\\}";
|
|
598
598
|
readonly isShortcut: true;
|
|
599
599
|
readonly description: "Curly braces";
|
|
600
600
|
};
|
|
601
601
|
readonly ROUND_BRACES: {
|
|
602
602
|
readonly label: "(\\Box)";
|
|
603
|
-
readonly value: "()";
|
|
603
|
+
readonly value: "(\\Box)";
|
|
604
604
|
readonly isShortcut: true;
|
|
605
605
|
readonly description: "Round braces";
|
|
606
606
|
};
|
|
607
607
|
readonly SQUARE_BRACKETS: {
|
|
608
608
|
readonly label: "[ \\Box ]";
|
|
609
|
-
readonly value: "[
|
|
609
|
+
readonly value: "[ \\Box ]";
|
|
610
610
|
readonly isShortcut: true;
|
|
611
611
|
readonly description: "Square brackets";
|
|
612
612
|
};
|
|
613
613
|
readonly SQUARE_BRACKETS_ALT: {
|
|
614
614
|
readonly label: "[\\Box]";
|
|
615
|
-
readonly value: "[
|
|
615
|
+
readonly value: "[\\Box]";
|
|
616
616
|
readonly isShortcut: true;
|
|
617
617
|
readonly description: "Square brackets";
|
|
618
618
|
};
|
|
619
619
|
readonly DOUBLE_BRACKETS: {
|
|
620
|
-
readonly label: "
|
|
621
|
-
readonly value: "
|
|
620
|
+
readonly label: "⟦\\Box⟧";
|
|
621
|
+
readonly value: "⟦\\Box⟧";
|
|
622
622
|
readonly isShortcut: true;
|
|
623
623
|
readonly description: "Double brackets";
|
|
624
624
|
};
|
|
@@ -636,55 +636,55 @@ export declare const BRACKETS: {
|
|
|
636
636
|
export declare const TRIGONOMETRIC: {
|
|
637
637
|
readonly SIN: {
|
|
638
638
|
readonly label: "\\sin (\\Box)";
|
|
639
|
-
readonly value: "\\sin ()";
|
|
639
|
+
readonly value: "\\sin (\\Box)";
|
|
640
640
|
readonly isShortcut: true;
|
|
641
641
|
readonly description: "Sine function with parentheses";
|
|
642
642
|
};
|
|
643
643
|
readonly COS: {
|
|
644
644
|
readonly label: "\\cos (\\Box)";
|
|
645
|
-
readonly value: "\\cos ()";
|
|
645
|
+
readonly value: "\\cos (\\Box)";
|
|
646
646
|
readonly isShortcut: true;
|
|
647
647
|
readonly description: "Cosine function with parentheses";
|
|
648
648
|
};
|
|
649
649
|
readonly TAN: {
|
|
650
650
|
readonly label: "\\tan (\\Box)";
|
|
651
|
-
readonly value: "\\tan ()";
|
|
651
|
+
readonly value: "\\tan (\\Box)";
|
|
652
652
|
readonly isShortcut: true;
|
|
653
653
|
readonly description: "Tangent function with parentheses";
|
|
654
654
|
};
|
|
655
655
|
readonly ARCSIN: {
|
|
656
656
|
readonly label: "\\sin^{-1} (\\Box)";
|
|
657
|
-
readonly value: "\\sin^{-1} ()";
|
|
657
|
+
readonly value: "\\sin^{-1} (\\Box)";
|
|
658
658
|
readonly isShortcut: true;
|
|
659
659
|
readonly description: "Inverse sine (arcsine) with parentheses";
|
|
660
660
|
};
|
|
661
661
|
readonly ARCCOS: {
|
|
662
662
|
readonly label: "\\cos^{-1} (\\Box)";
|
|
663
|
-
readonly value: "\\cos^{-1} ()";
|
|
663
|
+
readonly value: "\\cos^{-1} (\\Box)";
|
|
664
664
|
readonly isShortcut: true;
|
|
665
665
|
readonly description: "Inverse cosine (arccosine) with parentheses";
|
|
666
666
|
};
|
|
667
667
|
readonly ARCTAN: {
|
|
668
668
|
readonly label: "\\tan^{-1} (\\Box)";
|
|
669
|
-
readonly value: "\\tan^{-1} ()";
|
|
669
|
+
readonly value: "\\tan^{-1} (\\Box)";
|
|
670
670
|
readonly isShortcut: true;
|
|
671
671
|
readonly description: "Inverse tangent (arctangent)";
|
|
672
672
|
};
|
|
673
673
|
readonly SEC: {
|
|
674
674
|
readonly label: "\\sec (\\Box)";
|
|
675
|
-
readonly value: "\\sec ()";
|
|
675
|
+
readonly value: "\\sec (\\Box)";
|
|
676
676
|
readonly isShortcut: true;
|
|
677
677
|
readonly description: "Secant function with parentheses";
|
|
678
678
|
};
|
|
679
679
|
readonly CSC: {
|
|
680
680
|
readonly label: "\\csc (\\Box)";
|
|
681
|
-
readonly value: "\\csc ()";
|
|
681
|
+
readonly value: "\\csc (\\Box)";
|
|
682
682
|
readonly isShortcut: true;
|
|
683
683
|
readonly description: "Cosecant function with parentheses";
|
|
684
684
|
};
|
|
685
685
|
readonly COT: {
|
|
686
686
|
readonly label: "\\cot (\\Box)";
|
|
687
|
-
readonly value: "\\cot ()";
|
|
687
|
+
readonly value: "\\cot (\\Box)";
|
|
688
688
|
readonly isShortcut: true;
|
|
689
689
|
readonly description: "Cotangent function with parentheses";
|
|
690
690
|
};
|
|
@@ -698,13 +698,13 @@ export declare const LOGARITHMIC: {
|
|
|
698
698
|
};
|
|
699
699
|
readonly LOG_BASE: {
|
|
700
700
|
readonly label: "\\text{log}_\\Box";
|
|
701
|
-
readonly value: "\\text{log}
|
|
701
|
+
readonly value: "\\text{log}_\\Box";
|
|
702
702
|
readonly isShortcut: true;
|
|
703
703
|
readonly description: "Logarithm base x";
|
|
704
704
|
};
|
|
705
705
|
readonly LOG_BASE_ALT: {
|
|
706
706
|
readonly label: "\\log_\\Box (\\Box)";
|
|
707
|
-
readonly value: "\\log_{} ()";
|
|
707
|
+
readonly value: "\\log_{\\Box} (\\Box)";
|
|
708
708
|
readonly isShortcut: true;
|
|
709
709
|
readonly description: "Logarithm with subscript and parentheses";
|
|
710
710
|
};
|
|
@@ -716,7 +716,7 @@ export declare const LOGARITHMIC: {
|
|
|
716
716
|
};
|
|
717
717
|
readonly LN_ALT: {
|
|
718
718
|
readonly label: "\\ln (\\Box)";
|
|
719
|
-
readonly value: "\\ln ()";
|
|
719
|
+
readonly value: "\\ln (\\Box)";
|
|
720
720
|
readonly isShortcut: true;
|
|
721
721
|
readonly description: "Natural logarithm with parentheses";
|
|
722
722
|
};
|
|
@@ -786,19 +786,19 @@ export declare const CHEMISTRY: {
|
|
|
786
786
|
};
|
|
787
787
|
readonly SOLID: {
|
|
788
788
|
readonly label: "(\\Box)_{s}";
|
|
789
|
-
readonly value: "()_{s}";
|
|
789
|
+
readonly value: "(\\Box)_{s}";
|
|
790
790
|
};
|
|
791
791
|
readonly LIQUID: {
|
|
792
792
|
readonly label: "(\\Box)_{l}";
|
|
793
|
-
readonly value: "()_{l}";
|
|
793
|
+
readonly value: "(\\Box)_{l}";
|
|
794
794
|
};
|
|
795
795
|
readonly GAS: {
|
|
796
796
|
readonly label: "(\\Box)_{g}";
|
|
797
|
-
readonly value: "()_{g}";
|
|
797
|
+
readonly value: "(\\Box)_{g}";
|
|
798
798
|
};
|
|
799
799
|
readonly AQUEOUS: {
|
|
800
800
|
readonly label: "(\\Box)_{aq}";
|
|
801
|
-
readonly value: "()_{aq}";
|
|
801
|
+
readonly value: "(\\Box)_{aq}";
|
|
802
802
|
};
|
|
803
803
|
readonly REACTION_ARROW: {
|
|
804
804
|
readonly label: "\\rightarrow";
|
|
@@ -844,7 +844,7 @@ export declare const CHEMISTRY: {
|
|
|
844
844
|
};
|
|
845
845
|
readonly CONCENTRATION: {
|
|
846
846
|
readonly label: "[\\Box]";
|
|
847
|
-
readonly value: "[
|
|
847
|
+
readonly value: "[\\Box]";
|
|
848
848
|
readonly isShortcut: true;
|
|
849
849
|
readonly description: "Concentration brackets";
|
|
850
850
|
};
|
|
@@ -910,7 +910,7 @@ export declare const SPECIAL_SYMBOLS: {
|
|
|
910
910
|
};
|
|
911
911
|
readonly ANGLE: {
|
|
912
912
|
readonly label: "∠(\\Box)";
|
|
913
|
-
readonly value: "\\angle ()";
|
|
913
|
+
readonly value: "\\angle (\\Box)";
|
|
914
914
|
readonly isShortcut: true;
|
|
915
915
|
readonly description: "Angle symbol with parentheses";
|
|
916
916
|
};
|
|
@@ -945,19 +945,19 @@ export declare const SPECIAL_SYMBOLS: {
|
|
|
945
945
|
};
|
|
946
946
|
readonly SUMMATION: {
|
|
947
947
|
readonly label: "\\sum_\\Box^\\Box (\\Box)";
|
|
948
|
-
readonly value: "\\sum_
|
|
948
|
+
readonly value: "\\sum_\\Box^\\Box (\\Box)";
|
|
949
949
|
readonly isShortcut: true;
|
|
950
950
|
readonly description: "Summation with parentheses";
|
|
951
951
|
};
|
|
952
952
|
readonly PRODUCT: {
|
|
953
953
|
readonly label: "\\prod_\\Box^\\Box (\\Box)";
|
|
954
|
-
readonly value: "\\prod_
|
|
954
|
+
readonly value: "\\prod_\\Box^\\Box (\\Box)";
|
|
955
955
|
readonly isShortcut: true;
|
|
956
956
|
readonly description: "Product with parentheses";
|
|
957
957
|
};
|
|
958
958
|
readonly FUNCTION: {
|
|
959
959
|
readonly label: "f(\\Box)";
|
|
960
|
-
readonly value: "f()";
|
|
960
|
+
readonly value: "f(\\Box)";
|
|
961
961
|
readonly isShortcut: true;
|
|
962
962
|
readonly description: "Function";
|
|
963
963
|
};
|
|
@@ -999,7 +999,7 @@ export declare const SPECIAL_SYMBOLS: {
|
|
|
999
999
|
};
|
|
1000
1000
|
readonly RUPEES: {
|
|
1001
1001
|
readonly label: "\\text{Rs.} (\\Box)";
|
|
1002
|
-
readonly value: "\\text{Rs.} ()";
|
|
1002
|
+
readonly value: "\\text{Rs.} (\\Box)";
|
|
1003
1003
|
readonly isShortcut: true;
|
|
1004
1004
|
readonly description: "Rupees symbol with parentheses";
|
|
1005
1005
|
};
|
|
@@ -1011,43 +1011,43 @@ export declare const SPECIAL_SYMBOLS: {
|
|
|
1011
1011
|
};
|
|
1012
1012
|
readonly TRIANGLE: {
|
|
1013
1013
|
readonly label: "\\triangle\\Box";
|
|
1014
|
-
readonly value: "\\triangle";
|
|
1014
|
+
readonly value: "\\triangle\\Box";
|
|
1015
1015
|
readonly isShortcut: true;
|
|
1016
1016
|
readonly description: "Triangle";
|
|
1017
1017
|
};
|
|
1018
1018
|
readonly SEGMENT: {
|
|
1019
1019
|
readonly label: "\\overline{\\Box}";
|
|
1020
|
-
readonly value: "\\overline{
|
|
1020
|
+
readonly value: "\\overline{\\Box}";
|
|
1021
1021
|
readonly isShortcut: true;
|
|
1022
1022
|
readonly description: "Line segment";
|
|
1023
1023
|
};
|
|
1024
1024
|
readonly RAY: {
|
|
1025
1025
|
readonly label: "\\overrightarrow{\\Box}";
|
|
1026
|
-
readonly value: "\\overrightarrow{
|
|
1026
|
+
readonly value: "\\overrightarrow{\\Box}";
|
|
1027
1027
|
readonly isShortcut: true;
|
|
1028
1028
|
readonly description: "Ray";
|
|
1029
1029
|
};
|
|
1030
1030
|
readonly LINE: {
|
|
1031
1031
|
readonly label: "\\overleftrightarrow{\\Box}";
|
|
1032
|
-
readonly value: "\\overleftrightarrow{
|
|
1032
|
+
readonly value: "\\overleftrightarrow{\\Box}";
|
|
1033
1033
|
readonly isShortcut: true;
|
|
1034
1034
|
readonly description: "Line";
|
|
1035
1035
|
};
|
|
1036
1036
|
readonly ARC: {
|
|
1037
1037
|
readonly label: "\\overset{\\frown}{\\Box\\Box}";
|
|
1038
|
-
readonly value: "\\overset{\\frown}{
|
|
1038
|
+
readonly value: "\\overset{\\frown}{\\Box\\Box}";
|
|
1039
1039
|
readonly isShortcut: true;
|
|
1040
1040
|
readonly description: "Arc";
|
|
1041
1041
|
};
|
|
1042
1042
|
readonly COORDINATES: {
|
|
1043
1043
|
readonly label: "(\\Box, \\Box)";
|
|
1044
|
-
readonly value: "(
|
|
1044
|
+
readonly value: "(\\Box, \\Box)";
|
|
1045
1045
|
readonly isShortcut: true;
|
|
1046
1046
|
readonly description: "Coordinate pair";
|
|
1047
1047
|
};
|
|
1048
1048
|
readonly SLOPE_FORMULA: {
|
|
1049
1049
|
readonly label: "m = \\frac{\\Box - \\Box}{\\Box - \\Box}";
|
|
1050
|
-
readonly value: "m = \\frac{
|
|
1050
|
+
readonly value: "m = \\frac{\\Box - \\Box}{\\Box - \\Box}";
|
|
1051
1051
|
readonly isShortcut: true;
|
|
1052
1052
|
readonly description: "Slope formula";
|
|
1053
1053
|
};
|
|
@@ -1055,49 +1055,49 @@ export declare const SPECIAL_SYMBOLS: {
|
|
|
1055
1055
|
export declare const CALCULUS: {
|
|
1056
1056
|
readonly LIMIT: {
|
|
1057
1057
|
readonly label: "\\lim_{\\Box\\to\\Box} (\\Box)";
|
|
1058
|
-
readonly value: "\\lim_{
|
|
1058
|
+
readonly value: "\\lim_{\\Box\\to\\Box} (\\Box)";
|
|
1059
1059
|
readonly isShortcut: true;
|
|
1060
1060
|
readonly description: "Limit notation with parentheses";
|
|
1061
1061
|
};
|
|
1062
1062
|
readonly DERIVATIVE: {
|
|
1063
1063
|
readonly label: "\\frac{d}{d\\Box} (\\Box)";
|
|
1064
|
-
readonly value: "\\frac{d}{
|
|
1064
|
+
readonly value: "\\frac{d}{d\\Box} (\\Box)";
|
|
1065
1065
|
readonly isShortcut: true;
|
|
1066
1066
|
readonly description: "First derivative with parentheses";
|
|
1067
1067
|
};
|
|
1068
1068
|
readonly SECOND_DERIVATIVE: {
|
|
1069
1069
|
readonly label: "\\frac{d^2\\Box}{d\\Box^2}";
|
|
1070
|
-
readonly value: "\\frac{d^
|
|
1070
|
+
readonly value: "\\frac{d^2\\Box}{d\\Box^2}";
|
|
1071
1071
|
readonly isShortcut: true;
|
|
1072
1072
|
readonly description: "Second derivative";
|
|
1073
1073
|
};
|
|
1074
1074
|
readonly INTEGRAL_SIMPLE: {
|
|
1075
1075
|
readonly label: "\\int \\Box \\, d\\Box";
|
|
1076
|
-
readonly value: "\\int
|
|
1076
|
+
readonly value: "\\int \\Box \\, d\\Box";
|
|
1077
1077
|
readonly isShortcut: true;
|
|
1078
1078
|
readonly description: "Indefinite integral";
|
|
1079
1079
|
};
|
|
1080
1080
|
readonly INTEGRAL_DEFINITE: {
|
|
1081
1081
|
readonly label: "\\int_{\\Box}^{\\Box} \\Box \\, d\\Box";
|
|
1082
|
-
readonly value: "\\int_{
|
|
1082
|
+
readonly value: "\\int_{\\Box}^{\\Box} \\Box \\, d\\Box";
|
|
1083
1083
|
readonly isShortcut: true;
|
|
1084
1084
|
readonly description: "Definite integral";
|
|
1085
1085
|
};
|
|
1086
1086
|
readonly PARTIAL_DERIVATIVE: {
|
|
1087
1087
|
readonly label: "\\frac{\\partial \\Box}{\\partial \\Box}";
|
|
1088
|
-
readonly value: "\\frac{\\partial
|
|
1088
|
+
readonly value: "\\frac{\\partial \\Box}{\\partial \\Box}";
|
|
1089
1089
|
readonly isShortcut: true;
|
|
1090
1090
|
readonly description: "Partial derivative";
|
|
1091
1091
|
};
|
|
1092
1092
|
readonly EVALUATION_BRACKETS: {
|
|
1093
1093
|
readonly label: "[\\Box]_{\\Box}^{\\Box}";
|
|
1094
|
-
readonly value: "[
|
|
1094
|
+
readonly value: "[\\Box]_{\\Box}^{\\Box}";
|
|
1095
1095
|
readonly isShortcut: true;
|
|
1096
1096
|
readonly description: "Evaluation brackets";
|
|
1097
1097
|
};
|
|
1098
1098
|
readonly LINE_INTEGRAL: {
|
|
1099
1099
|
readonly label: "\\oint (\\Box) \\, d\\Box";
|
|
1100
|
-
readonly value: "\\oint () \\,
|
|
1100
|
+
readonly value: "\\oint (\\Box) \\, d\\Box";
|
|
1101
1101
|
readonly isShortcut: true;
|
|
1102
1102
|
readonly description: "Line integral with parentheses";
|
|
1103
1103
|
};
|
|
@@ -1109,7 +1109,7 @@ export declare const CALCULUS: {
|
|
|
1109
1109
|
};
|
|
1110
1110
|
readonly NATURAL_LOG_ABS: {
|
|
1111
1111
|
readonly label: "\\ln |\\Box|";
|
|
1112
|
-
readonly value: "\\ln |
|
|
1112
|
+
readonly value: "\\ln |\\Box|";
|
|
1113
1113
|
readonly isShortcut: true;
|
|
1114
1114
|
readonly description: "Natural logarithm of absolute value";
|
|
1115
1115
|
};
|
|
@@ -1117,31 +1117,31 @@ export declare const CALCULUS: {
|
|
|
1117
1117
|
export declare const STATISTICS: {
|
|
1118
1118
|
readonly SAMPLE_MEAN: {
|
|
1119
1119
|
readonly label: "\\overline{\\Box}";
|
|
1120
|
-
readonly value: "\\overline{
|
|
1120
|
+
readonly value: "\\overline{\\Box}";
|
|
1121
1121
|
readonly isShortcut: true;
|
|
1122
1122
|
readonly description: "Sample mean (x-bar)";
|
|
1123
1123
|
};
|
|
1124
1124
|
readonly PERMUTATION: {
|
|
1125
1125
|
readonly label: "^\\Box P_\\Box";
|
|
1126
|
-
readonly value: "
|
|
1126
|
+
readonly value: "^\\Box P_\\Box";
|
|
1127
1127
|
readonly isShortcut: true;
|
|
1128
1128
|
readonly description: "Permutation (nPr)";
|
|
1129
1129
|
};
|
|
1130
1130
|
readonly COMBINATION: {
|
|
1131
1131
|
readonly label: "^\\Box C_\\Box";
|
|
1132
|
-
readonly value: "
|
|
1132
|
+
readonly value: "^\\Box C_\\Box";
|
|
1133
1133
|
readonly isShortcut: true;
|
|
1134
1134
|
readonly description: "Combination (nCr)";
|
|
1135
1135
|
};
|
|
1136
1136
|
readonly PROBABILITY_FUNCTION: {
|
|
1137
1137
|
readonly label: "P(\\Box)";
|
|
1138
|
-
readonly value: "P()";
|
|
1138
|
+
readonly value: "P(\\Box)";
|
|
1139
1139
|
readonly isShortcut: true;
|
|
1140
1140
|
readonly description: "Probability function";
|
|
1141
1141
|
};
|
|
1142
1142
|
readonly BINOMIAL_COEFFICIENT: {
|
|
1143
1143
|
readonly label: "\\binom{\\Box}{\\Box}";
|
|
1144
|
-
readonly value: "\\binom{
|
|
1144
|
+
readonly value: "\\binom{\\Box}{\\Box}";
|
|
1145
1145
|
readonly isShortcut: true;
|
|
1146
1146
|
readonly description: "Binomial coefficient (n choose k)";
|
|
1147
1147
|
};
|
|
@@ -1159,7 +1159,7 @@ export declare const STATISTICS: {
|
|
|
1159
1159
|
};
|
|
1160
1160
|
readonly VARIANCE_FUNCTION: {
|
|
1161
1161
|
readonly label: "\\text{Var}(\\Box)";
|
|
1162
|
-
readonly value: "\\text{Var}(
|
|
1162
|
+
readonly value: "\\text{Var}(\\Box)";
|
|
1163
1163
|
readonly isShortcut: true;
|
|
1164
1164
|
readonly description: "Variance function";
|
|
1165
1165
|
};
|
|
@@ -1183,13 +1183,13 @@ export declare const STATISTICS: {
|
|
|
1183
1183
|
};
|
|
1184
1184
|
readonly Z_SCORE_FORMULA: {
|
|
1185
1185
|
readonly label: "z = \\frac{\\Box - μ}{σ}";
|
|
1186
|
-
readonly value: "z = \\frac{
|
|
1186
|
+
readonly value: "z = \\frac{\\Box - μ}{σ}";
|
|
1187
1187
|
readonly isShortcut: true;
|
|
1188
1188
|
readonly description: "Z-score standardization formula";
|
|
1189
1189
|
};
|
|
1190
1190
|
readonly SUMMATION_SIMPLE: {
|
|
1191
1191
|
readonly label: "\\sum \\Box";
|
|
1192
|
-
readonly value: "\\sum
|
|
1192
|
+
readonly value: "\\sum \\Box";
|
|
1193
1193
|
readonly isShortcut: true;
|
|
1194
1194
|
readonly description: "Simple summation";
|
|
1195
1195
|
};
|
|
@@ -1197,19 +1197,19 @@ export declare const STATISTICS: {
|
|
|
1197
1197
|
export declare const MATRICES_VECTORS: {
|
|
1198
1198
|
readonly VECTOR_ARROW: {
|
|
1199
1199
|
readonly label: "\\vec{\\Box}";
|
|
1200
|
-
readonly value: "\\vec{
|
|
1200
|
+
readonly value: "\\vec{\\Box}";
|
|
1201
1201
|
readonly isShortcut: true;
|
|
1202
1202
|
readonly description: "Vector with arrow";
|
|
1203
1203
|
};
|
|
1204
1204
|
readonly VECTOR_HAT: {
|
|
1205
1205
|
readonly label: "\\hat{\\Box}";
|
|
1206
|
-
readonly value: "\\hat{
|
|
1206
|
+
readonly value: "\\hat{\\Box}";
|
|
1207
1207
|
readonly isShortcut: true;
|
|
1208
1208
|
readonly description: "Unit vector with hat";
|
|
1209
1209
|
};
|
|
1210
1210
|
readonly VECTOR_MAGNITUDE: {
|
|
1211
1211
|
readonly label: "||\\Box||";
|
|
1212
|
-
readonly value: "||
|
|
1212
|
+
readonly value: "||\\Box||";
|
|
1213
1213
|
readonly isShortcut: true;
|
|
1214
1214
|
readonly description: "Vector magnitude/norm";
|
|
1215
1215
|
};
|
|
@@ -1232,34 +1232,34 @@ export declare const MATRICES_VECTORS: {
|
|
|
1232
1232
|
readonly description: "Unit vector k";
|
|
1233
1233
|
};
|
|
1234
1234
|
readonly MATRIX_2x2: {
|
|
1235
|
-
readonly label: "
|
|
1235
|
+
readonly label: "matrix (2×2)";
|
|
1236
1236
|
readonly value: "\\begin{bmatrix}{}&{}\\\\{}&{}\\end{bmatrix}";
|
|
1237
1237
|
readonly isShortcut: true;
|
|
1238
|
-
readonly description: "
|
|
1238
|
+
readonly description: "matrix (2×2)";
|
|
1239
1239
|
};
|
|
1240
1240
|
readonly MATRIX_2x3: {
|
|
1241
|
-
readonly label: "
|
|
1241
|
+
readonly label: "matrix (2×3)";
|
|
1242
1242
|
readonly value: "\\begin{bmatrix}{}&{}&{}\\\\{}&{}&{}\\end{bmatrix}";
|
|
1243
1243
|
readonly isShortcut: true;
|
|
1244
|
-
readonly description: "
|
|
1244
|
+
readonly description: "matrix (2×3)";
|
|
1245
1245
|
};
|
|
1246
1246
|
readonly MATRIX_3x2: {
|
|
1247
|
-
readonly label: "
|
|
1247
|
+
readonly label: "matrix (3×2)";
|
|
1248
1248
|
readonly value: "\\begin{bmatrix}{}&{}\\\\{}&{}\\\\{}&{}\\end{bmatrix}";
|
|
1249
1249
|
readonly isShortcut: true;
|
|
1250
|
-
readonly description: "
|
|
1250
|
+
readonly description: "matrix (3×2)";
|
|
1251
1251
|
};
|
|
1252
1252
|
readonly DETERMINANT_2x2: {
|
|
1253
|
-
readonly label: "
|
|
1253
|
+
readonly label: "determinant (2×2)";
|
|
1254
1254
|
readonly value: "\\begin{vmatrix}{}&{}\\\\{}&{}\\end{vmatrix}";
|
|
1255
1255
|
readonly isShortcut: true;
|
|
1256
|
-
readonly description: "
|
|
1256
|
+
readonly description: "determinant (2×2)";
|
|
1257
1257
|
};
|
|
1258
1258
|
readonly MATRIX_3x3: {
|
|
1259
|
-
readonly label: "
|
|
1259
|
+
readonly label: "matrix (3×3)";
|
|
1260
1260
|
readonly value: "\\begin{bmatrix}{}&{}&{}\\\\{}&{}&{}\\\\{}&{}&{}\\end{bmatrix}";
|
|
1261
1261
|
readonly isShortcut: true;
|
|
1262
|
-
readonly description: "
|
|
1262
|
+
readonly description: "matrix (3×3)";
|
|
1263
1263
|
};
|
|
1264
1264
|
readonly DOT_PRODUCT: {
|
|
1265
1265
|
readonly label: "\\cdot";
|
|
@@ -1281,7 +1281,7 @@ export declare const MATRICES_VECTORS: {
|
|
|
1281
1281
|
};
|
|
1282
1282
|
readonly DETERMINANT_FUNCTION: {
|
|
1283
1283
|
readonly label: "\\text{det}(\\Box)";
|
|
1284
|
-
readonly value: "\\text{det}(
|
|
1284
|
+
readonly value: "\\text{det}(\\Box)";
|
|
1285
1285
|
readonly isShortcut: true;
|
|
1286
1286
|
readonly description: "Determinant function";
|
|
1287
1287
|
};
|
|
@@ -1295,7 +1295,7 @@ export declare const COMPLEX_NUMBERS: {
|
|
|
1295
1295
|
};
|
|
1296
1296
|
readonly COMPLEX_CONJUGATE: {
|
|
1297
1297
|
readonly label: "\\overline{\\Box}";
|
|
1298
|
-
readonly value: "\\overline{
|
|
1298
|
+
readonly value: "\\overline{\\Box}";
|
|
1299
1299
|
readonly isShortcut: true;
|
|
1300
1300
|
readonly description: "Complex conjugate";
|
|
1301
1301
|
};
|
|
@@ -1307,7 +1307,7 @@ export declare const COMPLEX_NUMBERS: {
|
|
|
1307
1307
|
};
|
|
1308
1308
|
readonly ARGUMENT: {
|
|
1309
1309
|
readonly label: "\\arg(\\Box)";
|
|
1310
|
-
readonly value: "\\arg(
|
|
1310
|
+
readonly value: "\\arg(\\Box)";
|
|
1311
1311
|
readonly isShortcut: true;
|
|
1312
1312
|
readonly description: "Argument of complex number";
|
|
1313
1313
|
};
|
|
@@ -1319,13 +1319,13 @@ export declare const COMPLEX_NUMBERS: {
|
|
|
1319
1319
|
};
|
|
1320
1320
|
readonly REAL_PART: {
|
|
1321
1321
|
readonly label: "\\text{Re}(\\Box)";
|
|
1322
|
-
readonly value: "\\text{Re}(
|
|
1322
|
+
readonly value: "\\text{Re}(\\Box)";
|
|
1323
1323
|
readonly isShortcut: true;
|
|
1324
1324
|
readonly description: "Real part of complex number";
|
|
1325
1325
|
};
|
|
1326
1326
|
readonly IMAGINARY_PART: {
|
|
1327
1327
|
readonly label: "\\text{Im}(\\Box)";
|
|
1328
|
-
readonly value: "\\text{Im}(
|
|
1328
|
+
readonly value: "\\text{Im}(\\Box)";
|
|
1329
1329
|
readonly isShortcut: true;
|
|
1330
1330
|
readonly description: "Imaginary part of complex number";
|
|
1331
1331
|
};
|
|
@@ -1351,7 +1351,7 @@ export declare const COMPLEX_NUMBERS: {
|
|
|
1351
1351
|
export declare const PHYSICS: {
|
|
1352
1352
|
readonly SCIENTIFIC_NOTATION: {
|
|
1353
1353
|
readonly label: "\\Box \\times 10^\\Box";
|
|
1354
|
-
readonly value: "
|
|
1354
|
+
readonly value: "\\Box \\times 10^\\Box";
|
|
1355
1355
|
readonly isShortcut: true;
|
|
1356
1356
|
readonly description: "Scientific notation";
|
|
1357
1357
|
};
|
|
@@ -1741,25 +1741,25 @@ export declare const LETTERS_LOWER: {
|
|
|
1741
1741
|
export declare const PROFILE_TEMPLATES: {
|
|
1742
1742
|
readonly MIXED_FRACTION: {
|
|
1743
1743
|
readonly label: "\\Box\\frac{\\Box}{\\Box}";
|
|
1744
|
-
readonly value: "
|
|
1744
|
+
readonly value: "\\Box\\frac{\\Box}{\\Box}";
|
|
1745
1745
|
readonly isShortcut: true;
|
|
1746
1746
|
readonly description: "Mixed fraction";
|
|
1747
1747
|
};
|
|
1748
1748
|
readonly BOTTOM_FRACTION: {
|
|
1749
1749
|
readonly label: "\\frac{}{\\Box}";
|
|
1750
|
-
readonly value: "\\frac{}{
|
|
1750
|
+
readonly value: "\\frac{}{\\Box}";
|
|
1751
1751
|
readonly isShortcut: true;
|
|
1752
1752
|
readonly description: "Bottom fraction only";
|
|
1753
1753
|
};
|
|
1754
1754
|
readonly SQUARE_BRACKETS_TWO_ELEMENTS: {
|
|
1755
1755
|
readonly label: "[\\Box,\\Box]";
|
|
1756
|
-
readonly value: "[
|
|
1756
|
+
readonly value: "[\\Box,\\Box]";
|
|
1757
1757
|
readonly isShortcut: true;
|
|
1758
1758
|
readonly description: "Square brackets with 2 elements";
|
|
1759
1759
|
};
|
|
1760
1760
|
readonly ROUND_BRACKETS_TWO_ELEMENTS: {
|
|
1761
1761
|
readonly label: "(\\Box,\\Box)";
|
|
1762
|
-
readonly value: "(
|
|
1762
|
+
readonly value: "(\\Box,\\Box)";
|
|
1763
1763
|
readonly isShortcut: true;
|
|
1764
1764
|
readonly description: "Round brackets with 2 elements";
|
|
1765
1765
|
};
|