itemengine-cypress-automation 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (142) hide show
  1. package/.build_wna +4 -0
  2. package/README.md +3 -0
  3. package/currents.config.js +6 -0
  4. package/cypress/API/createItem/toggleItemMode.js +15 -0
  5. package/cypress/config-files/ildev.json +15 -0
  6. package/cypress/config-files/ilprod.json +15 -0
  7. package/cypress/config-files/ilqa.json +15 -0
  8. package/cypress/config-files/ilstage.json +15 -0
  9. package/cypress/e2e/ILC/sorry-cypress-test/spec1.js +18 -0
  10. package/cypress/e2e/ILC/sorry-cypress-test/spec2.js +18 -0
  11. package/cypress/e2e/ILC/sorry-cypress-test/spec3.js +18 -0
  12. package/cypress/fixtures/accessibilityConfig.json +6 -0
  13. package/cypress/fixtures/constants.js +18 -0
  14. package/cypress/fixtures/equationEditorCategoriesAndSymbols .js +2271 -0
  15. package/cypress/fixtures/specialAndMathCharacters.js +118 -0
  16. package/cypress/fixtures/theme/ilc.json +150 -0
  17. package/cypress/fixtures/theme/ngie.json +26 -0
  18. package/cypress/fixtures/uploads/20mbFile.png +0 -0
  19. package/cypress/fixtures/uploads/80mbFile.pdf +0 -0
  20. package/cypress/fixtures/uploads/highlightImage.jpg +0 -0
  21. package/cypress/fixtures/uploads/image.png +0 -0
  22. package/cypress/fixtures/uploads/sample.aac +0 -0
  23. package/cypress/fixtures/uploads/sample.accdb +0 -0
  24. package/cypress/fixtures/uploads/sample.csv +100 -0
  25. package/cypress/fixtures/uploads/sample.doc +0 -0
  26. package/cypress/fixtures/uploads/sample.gif +0 -0
  27. package/cypress/fixtures/uploads/sample.heic +0 -0
  28. package/cypress/fixtures/uploads/sample.heif +0 -0
  29. package/cypress/fixtures/uploads/sample.hevc +0 -0
  30. package/cypress/fixtures/uploads/sample.jpeg +0 -0
  31. package/cypress/fixtures/uploads/sample.jpg +0 -0
  32. package/cypress/fixtures/uploads/sample.mp3 +0 -0
  33. package/cypress/fixtures/uploads/sample.mp4 +0 -0
  34. package/cypress/fixtures/uploads/sample.pdf +0 -0
  35. package/cypress/fixtures/uploads/sample.ppt +0 -0
  36. package/cypress/fixtures/uploads/sample.pub +0 -0
  37. package/cypress/fixtures/uploads/sample.rtf +7902 -0
  38. package/cypress/fixtures/uploads/sample.svg +10 -0
  39. package/cypress/fixtures/uploads/sample.txt +1 -0
  40. package/cypress/fixtures/uploads/sample.wav +0 -0
  41. package/cypress/fixtures/uploads/sample.xlsx +0 -0
  42. package/cypress/fixtures/uploads/sample.xps +0 -0
  43. package/cypress/fixtures/uploads/sample.zip +0 -0
  44. package/cypress/fixtures/uploads/sample1.jpg +0 -0
  45. package/cypress/fixtures/uploads/sample1.mp3 +0 -0
  46. package/cypress/fixtures/uploads/sample1.zip +0 -0
  47. package/cypress/fixtures/uploads/sample10Sec.mp3 +0 -0
  48. package/cypress/fixtures/uploads/sample2.jpg +0 -0
  49. package/cypress/fixtures/uploads/sample2.mp3 +0 -0
  50. package/cypress/fixtures/uploads/sampleVirus.zip +0 -0
  51. package/cypress/pages/audioPlayerPage.js +628 -0
  52. package/cypress/pages/audioResponsePage.js +264 -0
  53. package/cypress/pages/components/additionalSettingsPanel.js +174 -0
  54. package/cypress/pages/components/answerNumerationComponent.js +109 -0
  55. package/cypress/pages/components/autoScoredAdditionalSettings.js +183 -0
  56. package/cypress/pages/components/autoScoredPreviewBase.js +94 -0
  57. package/cypress/pages/components/autoScoredScoringSection.js +195 -0
  58. package/cypress/pages/components/autoScoredScoringSectionMultipleResponsesType.js +268 -0
  59. package/cypress/pages/components/autoScoredSetCorrectAnswerSection.js +291 -0
  60. package/cypress/pages/components/ckEditorToolbar.js +64 -0
  61. package/cypress/pages/components/colorPopupComponent.js +293 -0
  62. package/cypress/pages/components/commonComponents.js +93 -0
  63. package/cypress/pages/components/componentsFlowChart/figFlowChart.png +0 -0
  64. package/cypress/pages/components/createCustomCategoryFlyout.js +138 -0
  65. package/cypress/pages/components/createQuestionBasePage.js +225 -0
  66. package/cypress/pages/components/customizeHighlightPropertiesComponent.js +318 -0
  67. package/cypress/pages/components/dragAndDropResponseOptions.js +738 -0
  68. package/cypress/pages/components/dragAndDropSetCorrectAnswerCheckboxComponents.js +124 -0
  69. package/cypress/pages/components/draggableOptionsContainer.js +857 -0
  70. package/cypress/pages/components/editCategoryFlyout.js +40 -0
  71. package/cypress/pages/components/equationEditorFlyout.js +158 -0
  72. package/cypress/pages/components/essayResponseCommonComponents.js +86 -0
  73. package/cypress/pages/components/figOverImageCommonComponent.js +924 -0
  74. package/cypress/pages/components/fillInTheGapsCommonComponents.js +687 -0
  75. package/cypress/pages/components/fillInTheGapsDropdownCommonComponent.js +442 -0
  76. package/cypress/pages/components/fillInTheGapsTextCommonComponent.js +884 -0
  77. package/cypress/pages/components/gridCommonComponents.js +951 -0
  78. package/cypress/pages/components/index.js +38 -0
  79. package/cypress/pages/components/listSortingAndOrderingBase.js +401 -0
  80. package/cypress/pages/components/maximumRecorderLengthComponent.js +116 -0
  81. package/cypress/pages/components/mcqAdditionalSettingsBase.js +390 -0
  82. package/cypress/pages/components/mcqOptionsComponent.js +263 -0
  83. package/cypress/pages/components/mcqPreviewComponents.js +78 -0
  84. package/cypress/pages/components/mcqQuestionCommonComponents.js +265 -0
  85. package/cypress/pages/components/mcqScoringComponent.js +120 -0
  86. package/cypress/pages/components/mcqSetCorrectAnswerSection.js +143 -0
  87. package/cypress/pages/components/optionsWrapperComponent.js +221 -0
  88. package/cypress/pages/components/playbackControlsBaseComponent.js +163 -0
  89. package/cypress/pages/components/previewScoringAndShowCorrectAnswerComponent.js +90 -0
  90. package/cypress/pages/components/questionInstructionsComponent.js +112 -0
  91. package/cypress/pages/components/scoringSectionBase.js +308 -0
  92. package/cypress/pages/components/setPointsPopupBase.js +79 -0
  93. package/cypress/pages/components/specialAndCustomSpecialCharactersComponent.js +79 -0
  94. package/cypress/pages/components/specialCharactersFlyoutComponent.js +58 -0
  95. package/cypress/pages/components/studentResponseAreaAndLayoutComponent.js +28 -0
  96. package/cypress/pages/components/uploadImageSectionComponent.js +594 -0
  97. package/cypress/pages/createItemPage.js +28 -0
  98. package/cypress/pages/dialogBoxBase.js +111 -0
  99. package/cypress/pages/dragAndDropIntoCategoriesAllOrNothingScoring.js +1161 -0
  100. package/cypress/pages/dragAndDropIntoCategoriesCellsScoring.js +1559 -0
  101. package/cypress/pages/dragAndDropIntoCategoriesPage.js +1556 -0
  102. package/cypress/pages/dragAndDropIntoCategoriesResponseScoring.js +1396 -0
  103. package/cypress/pages/essayResponseBasicPage.js +57 -0
  104. package/cypress/pages/essayResponseMathPage.js +47 -0
  105. package/cypress/pages/essayResponsePage.js +385 -0
  106. package/cypress/pages/feedbackScalePage.js +698 -0
  107. package/cypress/pages/fillInTheGapsDragAndDropPage.js +742 -0
  108. package/cypress/pages/fillInTheGapsDropdownPage.js +99 -0
  109. package/cypress/pages/fillInTheGapsOverImageDropdownPage.js +232 -0
  110. package/cypress/pages/fillInTheGapsOverImageTextPage.js +135 -0
  111. package/cypress/pages/fillInTheGapsScoring.js +5974 -0
  112. package/cypress/pages/fillInTheGapsSetCorrectAnswerSection.js +260 -0
  113. package/cypress/pages/fillInTheGapsTextPage.js +225 -0
  114. package/cypress/pages/highlightImagePage.js +1316 -0
  115. package/cypress/pages/highlightPage.js +870 -0
  116. package/cypress/pages/index.js +30 -0
  117. package/cypress/pages/listMatchingPage.js +1330 -0
  118. package/cypress/pages/listMatchingScoring.js +2635 -0
  119. package/cypress/pages/listOrderingPage.js +751 -0
  120. package/cypress/pages/listSortingPage.js +1201 -0
  121. package/cypress/pages/multipleSelectionGridPage.js +359 -0
  122. package/cypress/pages/multipleSelectionPage.js +88 -0
  123. package/cypress/pages/passagePage.js +426 -0
  124. package/cypress/pages/readingRulerPage.js +302 -0
  125. package/cypress/pages/selectQuestionResourceToolPage.js +64 -0
  126. package/cypress/pages/shortTextResponsePage.js +197 -0
  127. package/cypress/pages/singleSelectionGridPage.js +370 -0
  128. package/cypress/pages/singleSelectionPage.js +65 -0
  129. package/cypress/pages/uploadResponsePage.js +110 -0
  130. package/cypress/pages/videoResponsePage.js +375 -0
  131. package/cypress/support/commands.js +140 -0
  132. package/cypress/support/e2e.js +14 -0
  133. package/cypress/support/helpers/abortEarly.js +19 -0
  134. package/cypress/support/helpers/accessibility.js +34 -0
  135. package/cypress/support/helpers/cypressUtilities.js +64 -0
  136. package/cypress/support/helpers/localStorage.js +13 -0
  137. package/cypress/support/helpers/selectText.js +77 -0
  138. package/cypress/support/helpers/utilities.js +126 -0
  139. package/cypress.config.js +76 -0
  140. package/il.yaml +14 -0
  141. package/language +1 -0
  142. package/package.json +26 -0
@@ -0,0 +1,2271 @@
1
+ export const equationEditorCategoriesAndSymbols = {
2
+ keypad: {
3
+ displayName: 'Keypad',
4
+ symbols: {
5
+ one: {
6
+ title: 'One',
7
+ textElement: '1',
8
+ ariaLabel: 'One',
9
+ displayText: '1'
10
+ },
11
+ two: {
12
+ title: 'Two',
13
+ textElement: '2',
14
+ ariaLabel: 'Two',
15
+ displayText: '2'
16
+ },
17
+ three: {
18
+ title: 'Three',
19
+ textElement: '3',
20
+ ariaLabel: 'Three',
21
+ displayText: '3'
22
+ },
23
+ four: {
24
+ title: 'Four',
25
+ textElement: '4',
26
+ ariaLabel: 'Four',
27
+ displayText: '4'
28
+ },
29
+ five: {
30
+ title: 'Five',
31
+ textElement: '5',
32
+ ariaLabel: 'Five',
33
+ displayText: '5'
34
+ },
35
+ six: {
36
+ title: 'Six',
37
+ textElement: '6',
38
+ ariaLabel: 'Six',
39
+ displayText: '6'
40
+ },
41
+ seven: {
42
+ title: 'Seven',
43
+ textElement: '7',
44
+ ariaLabel: 'Seven',
45
+ displayText: '7'
46
+ },
47
+ eight: {
48
+ title: 'Eight',
49
+ textElement: '8',
50
+ ariaLabel: 'Eight',
51
+ displayText: '8'
52
+ },
53
+ nine: {
54
+ title: 'Nine',
55
+ textElement: '9',
56
+ ariaLabel: 'Nine',
57
+ displayText: '9'
58
+ },
59
+ zero: {
60
+ title: 'Zero',
61
+ textElement: '0',
62
+ ariaLabel: 'Zero',
63
+ displayText: '0'
64
+ },
65
+ dotMultiplier: {
66
+ title: 'Dot Multiplier',
67
+ textElement: null,
68
+ ariaLabel: 'DotMultiplier',
69
+ displayText: '·'
70
+ },
71
+ comma: {
72
+ title: 'Comma',
73
+ textElement: null,
74
+ ariaLabel: 'Comma',
75
+ displayText: ','
76
+ },
77
+ add: {
78
+ title: 'Addition',
79
+ textElement: null,
80
+ ariaLabel: 'Plus',
81
+ displayText: '+'
82
+ },
83
+ subtract: {
84
+ title: 'Subtraction',
85
+ textElement: null,
86
+ ariaLabel: 'Minus',
87
+ displayText: '−'
88
+ },
89
+ multiply: {
90
+ title: 'Multiply',
91
+ textElement: null,
92
+ ariaLabel: 'Multiply',
93
+ displayText: '×'
94
+ },
95
+ divide: {
96
+ title: 'Division',
97
+ textElement: null,
98
+ ariaLabel: 'Division',
99
+ displayText: '÷'
100
+ },
101
+ //TODO: Need to update when https://redmine.zeuslearning.com/issues/525382 is resolved
102
+ equalTo: {
103
+ title: 'Equal To',
104
+ textElement: null,
105
+ ariaLabel: 'Equalto',
106
+ displayText: '='
107
+ },
108
+ polygonLeft: {
109
+ title: 'PolygonLeft',
110
+ textElement: null,
111
+ ariaLabel: 'PolygonLeft',
112
+ displayText: null
113
+ },
114
+ polygonRight: {
115
+ title: 'PolygonRight',
116
+ textElement: null,
117
+ ariaLabel: 'PolygonRight',
118
+ displayText: null
119
+ },
120
+ clear: {
121
+ title: 'Clear',
122
+ textElement: null,
123
+ ariaLabel: 'Clear',
124
+ displayText: null
125
+ }
126
+ }
127
+ },
128
+
129
+ basic: {
130
+ displayName: 'Basic',
131
+ symbols: {
132
+ lowerExponent: {
133
+ title: 'Lower Exponent',
134
+ text: null,
135
+ ariaLabel: 'Subscript',
136
+ displayText: null,
137
+ },
138
+ upperExponent: {
139
+ title: 'Upper Exponent',
140
+ text: null,
141
+ ariaLabel: 'Superscript',
142
+ displayText: null,
143
+ },
144
+ square: {
145
+ title: 'Square (x^2)',
146
+ text: null,
147
+ ariaLabel: 'Square',
148
+ displayText: null,
149
+ },
150
+ fraction: {
151
+ title: 'Fraction',
152
+ text: null,
153
+ ariaLabel: 'Fraction',
154
+ displayText: null,
155
+ },
156
+ mixedFraction: {
157
+ title: 'Mixed Fraction',
158
+ text: null,
159
+ ariaLabel: 'MixedFraction',
160
+ displayText: null,
161
+ },
162
+ sqrt: {
163
+ title: 'Square Root',
164
+ text: null,
165
+ ariaLabel: 'SquareRoot',
166
+ displayText: null,
167
+ },
168
+ cubeRoot: {
169
+ title: 'Cube Root',
170
+ text: null,
171
+ ariaLabel: 'CubeRoot',
172
+ displayText: null,
173
+ },
174
+ nRoot: {
175
+ title: 'nth Root',
176
+ text: null,
177
+ ariaLabel: 'NthRoot',
178
+ displayText: null,
179
+ },
180
+ longDivision: {
181
+ title: 'Long Division',
182
+ text: null,
183
+ ariaLabel: 'LongDivision',
184
+ displayText: null,
185
+ },
186
+ angleBracket: {
187
+ title: 'Angle Brackets',
188
+ text: null,
189
+ ariaLabel: 'AngleBracket',
190
+ displayText: null,
191
+ },
192
+ binomialCoefficient: {
193
+ title: 'Binomial Coefficient',
194
+ text: null,
195
+ ariaLabel: 'BinomialCoefficient',
196
+ displayText: null,
197
+ },
198
+ matrix: {
199
+ title: 'Matrix',
200
+ text: null,
201
+ ariaLabel: 'Matrix',
202
+ displayText: null,
203
+ },
204
+ function: {
205
+ title: 'Function',
206
+ text: null,
207
+ ariaLabel: 'FunctionF',
208
+ displayText: null,
209
+ },
210
+ prime: {
211
+ title: 'Prime/Arcminute',
212
+ text: null,
213
+ ariaLabel: 'Prime',
214
+ displayText: null,
215
+ },
216
+ absoluteValue: {
217
+ title: 'Absolute Value',
218
+ text: null,
219
+ ariaLabel: 'AbsoluteValue',
220
+ displayText: null,
221
+ },
222
+ add: {
223
+ title: 'Addition',
224
+ text: null,
225
+ ariaLabel: 'Plus',
226
+ displayText: '+',
227
+ },
228
+ subtract: {
229
+ title: 'Subtraction',
230
+ text: null,
231
+ ariaLabel: 'Minus',
232
+ displayText: '−',
233
+ },
234
+ plusMinus: {
235
+ title: 'Plus or minus one below the other',
236
+ text: null,
237
+ ariaLabel: 'Plusminus',
238
+ displayText: '±',
239
+ },
240
+ minusPlus: {
241
+ title: 'Minus or plus one below the other',
242
+ text: null,
243
+ ariaLabel: 'Minusplus',
244
+ displayText: '∓',
245
+ },
246
+ dotMultiplier: {
247
+ title: 'Dot Multiplier',
248
+ text: null,
249
+ ariaLabel: 'DotMultiplier',
250
+ displayText: '·',
251
+ },
252
+ equalTo: {
253
+ title: 'Equal To',
254
+ text: null,
255
+ ariaLabel: 'Equalto',
256
+ displayText: '=',
257
+ },
258
+ multiply: {
259
+ title: 'Multiply',
260
+ textElement: null,
261
+ ariaLabel: 'Multiply',
262
+ displayText: '×'
263
+ },
264
+ divide: {
265
+ title: 'Division',
266
+ textElement: null,
267
+ ariaLabel: 'Division',
268
+ displayText: '÷'
269
+ },
270
+ colonRatio: {
271
+ title: 'Colon/Ratio',
272
+ textElement: null,
273
+ ariaLabel: 'Colon',
274
+ displayText: ':'
275
+ },
276
+ percent: {
277
+ title: 'Percentage',
278
+ textElement: null,
279
+ ariaLabel: 'Percentage',
280
+ displayText: '%'
281
+ },
282
+ //TODO: Need to update when https://redmine.zeuslearning.com/issues/526301 is resolved
283
+ questionMark: {
284
+ title: 'Question Mark',
285
+ textElement: null,
286
+ ariaLabel: 'QuestionMark',
287
+ displayText: '?'
288
+ },
289
+ dollar: {
290
+ title: 'Dollar',
291
+ textElement: null,
292
+ ariaLabel: 'Dollar',
293
+ displayText: '$'
294
+ },
295
+ cents: {
296
+ title: 'Cents',
297
+ textElement: null,
298
+ ariaLabel: 'Cents',
299
+ displayText: '¢'
300
+ },
301
+ asterisk: {
302
+ title: 'Asterisk',
303
+ textElement: null,
304
+ ariaLabel: 'Asterisk',
305
+ displayText: '∗'
306
+ },
307
+ comma: {
308
+ title: 'Comma',
309
+ textElement: null,
310
+ ariaLabel: 'Comma',
311
+ displayText: ','
312
+ },
313
+ therefore: {
314
+ title: 'Therefore',
315
+ textElement: null,
316
+ ariaLabel: 'Therefore',
317
+ displayText: '∴'
318
+ },
319
+ because: {
320
+ title: 'Because',
321
+ textElement: null,
322
+ ariaLabel: 'Because',
323
+ displayText: '∵'
324
+ },
325
+ summation: {
326
+ title: 'Summation',
327
+ textElement: null,
328
+ ariaLabel: 'Summation',
329
+ displayText: '∑'
330
+ },
331
+ product: {
332
+ title: 'Product',
333
+ textElement: null,
334
+ ariaLabel: 'Product',
335
+ displayText: '∏'
336
+ },
337
+ coProduct: {
338
+ title: 'Coproduct',
339
+ textElement: null,
340
+ ariaLabel: 'CoProduct',
341
+ displayText: '∐'
342
+ },
343
+ integral: {
344
+ title: 'Integral',
345
+ textElement: null,
346
+ ariaLabel: 'Integral',
347
+ displayText: '∫'
348
+ },
349
+ groupInParenthesis: {
350
+ title: 'Group In Parenthesis',
351
+ textElement: null,
352
+ ariaLabel: 'GroupInParathesis',
353
+ displayText: '​()'
354
+ },
355
+ groupInBrackets: {
356
+ title: 'Group In Brackets',
357
+ textElement: null,
358
+ ariaLabel: 'GroupInBrackets',
359
+ displayText: '[]'
360
+ },
361
+ groupInBraces: {
362
+ title: 'Group In Braces',
363
+ textElement: null,
364
+ ariaLabel: 'GroupInBraces',
365
+ displayText: '{}'
366
+ },
367
+ x: {
368
+ title: 'x Letter',
369
+ textElement: null,
370
+ ariaLabel: 'X',
371
+ displayText: 'x'
372
+ },
373
+ y: {
374
+ title: 'y Letter',
375
+ textElement: null,
376
+ ariaLabel: 'Y',
377
+ displayText: 'y'
378
+ },
379
+ letterN: {
380
+ title: 'N Letter',
381
+ textElement: null,
382
+ ariaLabel: 'LetterN',
383
+ displayText: 'ℕ'
384
+ },
385
+ letterP: {
386
+ title: 'P Letter',
387
+ textElement: null,
388
+ ariaLabel: 'LetterP',
389
+ displayText: 'ℙ'
390
+ },
391
+ letterZ: {
392
+ title: 'Z Letter',
393
+ textElement: null,
394
+ ariaLabel: 'LetterZ',
395
+ displayText: 'ℤ'
396
+ },
397
+ letterQ: {
398
+ title: 'Q Letter',
399
+ textElement: null,
400
+ ariaLabel: 'LetterQ',
401
+ displayText: 'ℚ'
402
+ },
403
+ letterR: {
404
+ title: 'R Letter',
405
+ textElement: null,
406
+ ariaLabel: 'LetterR',
407
+ displayText: 'ℝ'
408
+ },
409
+ letterC: {
410
+ title: 'C Letter',
411
+ textElement: null,
412
+ ariaLabel: 'LetterC',
413
+ displayText: 'ℂ'
414
+ },
415
+ letterH: {
416
+ title: 'H Letter',
417
+ textElement: null,
418
+ ariaLabel: 'LetterH',
419
+ displayText: 'ℍ'
420
+ }
421
+ }
422
+ },
423
+
424
+ greek: {
425
+ displayName: 'Greek',
426
+ symbols: {
427
+ alpha: {
428
+ title: 'Alpha',
429
+ text: null,
430
+ ariaLabel: 'Alpha',
431
+ displayText: 'α',
432
+ },
433
+ beta: {
434
+ title: 'Beta',
435
+ text: null,
436
+ ariaLabel: 'Beta',
437
+ displayText: 'β'
438
+ },
439
+ gamma: {
440
+ title: 'Gamma',
441
+ text: null,
442
+ ariaLabel: 'Gamma',
443
+ displayText: 'γ'
444
+ },
445
+ delta: {
446
+ title: 'Delta',
447
+ text: null,
448
+ ariaLabel: 'Delta',
449
+ displayText: 'δ'
450
+ },
451
+ epsilon: {
452
+ title: 'Epsilon',
453
+ text: null,
454
+ ariaLabel: 'Epsilon',
455
+ displayText: 'ϵ'
456
+ },
457
+ zeta: {
458
+ title: 'Zeta',
459
+ text: null,
460
+ ariaLabel: 'Zeta',
461
+ displayText: 'ζ'
462
+ },
463
+ eta: {
464
+ title: 'Eta',
465
+ text: null,
466
+ ariaLabel: 'Eta',
467
+ displayText: 'η'
468
+ },
469
+ theta: {
470
+ title: 'Theta',
471
+ text: null,
472
+ ariaLabel: 'Theta',
473
+ displayText: 'θ'
474
+ },
475
+ iota: {
476
+ title: 'Iota',
477
+ text: null,
478
+ ariaLabel: 'Iota',
479
+ displayText: 'ι'
480
+ },
481
+ kappa: {
482
+ title: 'Kappa',
483
+ text: null,
484
+ ariaLabel: 'Kappa',
485
+ displayText: 'κ'
486
+ },
487
+ lambda: {
488
+ title: 'Lambda',
489
+ text: null,
490
+ ariaLabel: 'Lambda',
491
+ displayText: 'λ'
492
+ },
493
+ mu: {
494
+ title: 'Mu',
495
+ text: null,
496
+ ariaLabel: 'Mu',
497
+ displayText: 'μ'
498
+ },
499
+ nu: {
500
+ title: 'Nu',
501
+ text: null,
502
+ ariaLabel: 'Nu',
503
+ displayText: 'ν'
504
+ },
505
+ xi: {
506
+ title: 'Xi',
507
+ text: null,
508
+ ariaLabel: 'Xi',
509
+ displayText: 'ξ'
510
+ },
511
+ pi: {
512
+ title: 'Pi',
513
+ text: null,
514
+ ariaLabel: 'Pi',
515
+ displayText: 'π'
516
+ },
517
+ rho: {
518
+ title: 'Rho',
519
+ text: null,
520
+ ariaLabel: 'Rho',
521
+ displayText: 'ρ'
522
+ },
523
+ sigma: {
524
+ title: 'Sigma',
525
+ text: null,
526
+ ariaLabel: 'Sigma',
527
+ displayText: 'σ'
528
+ },
529
+ tau: {
530
+ title: 'Tau',
531
+ text: null,
532
+ ariaLabel: 'Tau',
533
+ displayText: 'τ'
534
+ },
535
+ upsilon: {
536
+ title: 'Upsilon',
537
+ text: null,
538
+ ariaLabel: 'Upsilon',
539
+ displayText: 'υ'
540
+ },
541
+ phi: {
542
+ title: 'Phi',
543
+ text: null,
544
+ ariaLabel: 'Phi',
545
+ displayText: 'ϕ'
546
+ },
547
+ chi: {
548
+ title: 'Chi',
549
+ text: null,
550
+ ariaLabel: 'Chi',
551
+ displayText: 'χ'
552
+ },
553
+ psi: {
554
+ title: 'Psi',
555
+ text: null,
556
+ ariaLabel: 'Psi',
557
+ displayText: 'ψ'
558
+ },
559
+ omega: {
560
+ title: 'Omega',
561
+ text: null,
562
+ ariaLabel: 'Omega',
563
+ displayText: 'ω'
564
+ },
565
+ diGamma: {
566
+ title: 'Digamma',
567
+ text: null,
568
+ ariaLabel: 'DiGamma',
569
+ displayText: 'ϝ'
570
+ },
571
+ varEpsilon: {
572
+ title: 'Variant Of Epsilon',
573
+ text: null,
574
+ ariaLabel: 'VarEpsilon',
575
+ displayText: 'ε'
576
+ },
577
+ varTheta: {
578
+ title: 'Variant Of Theta',
579
+ text: null,
580
+ ariaLabel: 'VariantOfTheta',
581
+ displayText: 'ϑ'
582
+ },
583
+ varKappa: {
584
+ title: 'Variant Of Kappa',
585
+ text: null,
586
+ ariaLabel: 'VarKappa',
587
+ displayText: 'ϰ'
588
+ },
589
+ varPi: {
590
+ title: 'Variant Of Pi',
591
+ text: null,
592
+ ariaLabel: 'VarPi',
593
+ displayText: 'ϖ'
594
+ },
595
+ varRho: {
596
+ title: 'Variant Of Rho',
597
+ text: null,
598
+ ariaLabel: 'VarRho',
599
+ displayText: 'ϱ'
600
+ },
601
+ varSigma: {
602
+ title: 'Variant Of Sigma',
603
+ text: null,
604
+ ariaLabel: 'VarSigma',
605
+ displayText: 'ς'
606
+ },
607
+ varPhi: {
608
+ title: 'Variant Of Phi',
609
+ text: null,
610
+ ariaLabel: 'VarPhi',
611
+ displayText: 'φ'
612
+ },
613
+ gammaUpper: {
614
+ title: 'Gamma Uppercase',
615
+ text: null,
616
+ ariaLabel: 'GammaUppercase',
617
+ displayText: 'Γ'
618
+ },
619
+ deltaUpper: {
620
+ title: 'Delta Uppercase',
621
+ text: null,
622
+ ariaLabel: 'DeltaUppercase',
623
+ displayText: 'Δ'
624
+ },
625
+ thetaUpper: {
626
+ title: 'Theta Uppercase',
627
+ text: null,
628
+ ariaLabel: 'ThetaUppercase',
629
+ displayText: 'Θ'
630
+ },
631
+ lambdaUpper: {
632
+ title: 'Lambda Uppercase',
633
+ text: null,
634
+ ariaLabel: 'LambdaUppercase',
635
+ displayText: 'Λ'
636
+ },
637
+ xiUpper: {
638
+ title: 'Xi Uppercase',
639
+ text: null,
640
+ ariaLabel: 'XiUppercase',
641
+ displayText: 'Ξ'
642
+ },
643
+ piUpper: {
644
+ title: 'Pi Uppercase',
645
+ text: null,
646
+ ariaLabel: 'PiUppercase',
647
+ displayText: 'Π'
648
+ },
649
+ sigmaUpper: {
650
+ title: 'Sigma Uppercase',
651
+ text: null,
652
+ ariaLabel: 'SigmaUppercase',
653
+ displayText: 'Σ'
654
+ },
655
+ upsilonUpper: {
656
+ title: 'Upsilon Uppercase',
657
+ text: null,
658
+ ariaLabel: 'UpsilonUppercase',
659
+ displayText: 'ϒ'
660
+ },
661
+ phiUpper: {
662
+ title: 'Phi Uppercase',
663
+ text: null,
664
+ ariaLabel: 'PhiUppercase',
665
+ displayText: 'Φ'
666
+ },
667
+ psiUpper: {
668
+ title: 'Psi Uppercase',
669
+ text: null,
670
+ ariaLabel: 'PsiUppercase',
671
+ displayText: 'Ψ'
672
+ },
673
+ omegaUpper: {
674
+ title: 'Omega Uppercase',
675
+ text: null,
676
+ ariaLabel: 'OmegaUppercase',
677
+ displayText: 'Ω'
678
+ }
679
+ }
680
+ },
681
+
682
+ operators: {
683
+ displayName: 'Operators',
684
+ symbols: {
685
+ and: {
686
+ title: 'Logical And',
687
+ text: null,
688
+ ariaLabel: 'LogicalAnd',
689
+ displayText: '∧'
690
+ },
691
+ or: {
692
+ title: 'Logical Or',
693
+ text: null,
694
+ ariaLabel: 'LogicalOr',
695
+ displayText: '∨'
696
+ },
697
+ not: {
698
+ title: 'Logical Not',
699
+ text: null,
700
+ ariaLabel: 'LogicalNot',
701
+ displayText: '¬'
702
+ },
703
+ union: {
704
+ title: 'Union',
705
+ text: null,
706
+ ariaLabel: 'Union',
707
+ displayText: '∪'
708
+ },
709
+ intersection: {
710
+ title: 'Intersection',
711
+ text: null,
712
+ ariaLabel: 'Intersection',
713
+ displayText: '∩'
714
+ },
715
+ diamond: {
716
+ title: 'Diamond',
717
+ text: null,
718
+ ariaLabel: 'Diamond',
719
+ displayText: '◇'
720
+ },
721
+ triangle: {
722
+ title: 'Triangle',
723
+ text: null,
724
+ ariaLabel: 'triangle',
725
+ displayText: '△'
726
+ },
727
+ circledMinus: {
728
+ title: 'Circled Minus',
729
+ text: null,
730
+ ariaLabel: 'CirclesMinus',
731
+ displayText: '⊖'
732
+ },
733
+ multiset: {
734
+ title: 'Multiset',
735
+ text: null,
736
+ ariaLabel: 'Multiset',
737
+ displayText: '⊎'
738
+ },
739
+ circledTimes: {
740
+ title: 'Circled Times',
741
+ text: null,
742
+ ariaLabel: 'circlesTimes',
743
+ displayText: '⊗'
744
+ },
745
+ circledPlus: {
746
+ title: 'Circled Plus',
747
+ text: null,
748
+ ariaLabel: 'circlesPlus',
749
+ displayText: '⊕'
750
+ },
751
+ nabla: {
752
+ title: 'Nabla',
753
+ text: null,
754
+ ariaLabel: 'nabla',
755
+ displayText: '▽'
756
+ },
757
+ product: {
758
+ title: 'Product',
759
+ text: null,
760
+ ariaLabel: 'product',
761
+ displayText: '⊓'
762
+ },
763
+ triangleLeft: {
764
+ title: 'Triangle Left',
765
+ text: null,
766
+ ariaLabel: 'triangleLeft',
767
+ displayText: '⊲'
768
+ },
769
+ coproduct: {
770
+ title: 'Coproduct',
771
+ text: null,
772
+ ariaLabel: 'coproduct',
773
+ displayText: '⊔'
774
+ },
775
+ triangleRight: {
776
+ title: 'Triangle Right',
777
+ text: null,
778
+ ariaLabel: 'triangleRight',
779
+ displayText: '⊳'
780
+ },
781
+ circledDotOperator: {
782
+ title: 'Circled Dot Operator',
783
+ text: null,
784
+ ariaLabel: 'circlesDot',
785
+ displayText: '⊙'
786
+ },
787
+ circle: {
788
+ title: 'Circle',
789
+ text: null,
790
+ ariaLabel: 'BigCircle',
791
+ displayText: '◯'
792
+ },
793
+ dagger: {
794
+ title: 'Dagger',
795
+ text: null,
796
+ ariaLabel: 'Dagger',
797
+ displayText: '†'
798
+ },
799
+ dDagger: {
800
+ title: 'Ddagger',
801
+ text: null,
802
+ ariaLabel: 'DDagger',
803
+ displayText: '‡'
804
+ },
805
+ wreathProduct: {
806
+ title: 'Wreath Product',
807
+ text: null,
808
+ ariaLabel: 'WreathProduct',
809
+ displayText: '≀'
810
+ },
811
+ amalg: {
812
+ title: 'Amalg',
813
+ text: null,
814
+ ariaLabel: 'Amalg',
815
+ displayText: '∐'
816
+ }
817
+ }
818
+ },
819
+
820
+ relationships: {
821
+ displayName: 'Relationships',
822
+ symbols: {
823
+ lessThan: {
824
+ title: 'Less Than',
825
+ text: null,
826
+ ariaLabel: 'LessThan',
827
+ displayText: '<'
828
+ },
829
+ greaterThan: {
830
+ title: 'Greater Than',
831
+ text: null,
832
+ ariaLabel: 'GreaterThan',
833
+ displayText: '>'
834
+ },
835
+ equivalance: {
836
+ title: 'Equivalence',
837
+ text: null,
838
+ ariaLabel: 'Equivalance',
839
+ displayText: '≡'
840
+ },
841
+ congruentTo: {
842
+ title: 'Congruent To',
843
+ text: null,
844
+ ariaLabel: 'CongruentTo',
845
+ displayText: '≅'
846
+ },
847
+ similarTo: {
848
+ title: 'Similar To',
849
+ text: null,
850
+ ariaLabel: 'SimilarTo',
851
+ displayText: '~'
852
+ },
853
+ notMemberOf: {
854
+ title: 'Not Member Of',
855
+ text: null,
856
+ ariaLabel: 'NotMemberOf',
857
+ displayText: '∉'
858
+ },
859
+ notEqualTo: {
860
+ title: 'Not Equal To',
861
+ text: null,
862
+ ariaLabel: 'NotEqualTo',
863
+ displayText: '≠'
864
+ },
865
+ propTo: {
866
+ title: 'Proportionate To',
867
+ text: null,
868
+ ariaLabel: 'proportionateTo',
869
+ displayText: '∝'
870
+ },
871
+ approxEqualTo: {
872
+ title: 'Approx. Equal To',
873
+ text: null,
874
+ ariaLabel: 'ApproxEqualTo',
875
+ displayText: '≈'
876
+ },
877
+ lessThanEqual: {
878
+ title: 'Less Than Or Equal To',
879
+ text: null,
880
+ ariaLabel: 'LessThanEqual',
881
+ displayText: '≤'
882
+ },
883
+ greaterThanEqual: {
884
+ title: 'Greater Than Or Equal To',
885
+ text: null,
886
+ ariaLabel: 'GreaterThanEqual',
887
+ displayText: '≥'
888
+ },
889
+ memberOf: {
890
+ title: 'Member Of',
891
+ text: null,
892
+ ariaLabel: 'MemberOf',
893
+ displayText: '∈'
894
+ },
895
+ contains: {
896
+ title: 'Contains',
897
+ text: null,
898
+ ariaLabel: 'Contains',
899
+ displayText: '∋'
900
+ },
901
+ notContain: {
902
+ title: 'Does Not Contain',
903
+ text: null,
904
+ ariaLabel: 'doesNotContain',
905
+ displayText: '∌'
906
+ },
907
+ subset: {
908
+ title: 'Subset (Strict)',
909
+ text: null,
910
+ ariaLabel: 'Subset',
911
+ displayText: '⊂'
912
+ },
913
+ superset: {
914
+ title: 'Superset (Strict)',
915
+ text: null,
916
+ ariaLabel: 'Superset',
917
+ displayText: '⊃'
918
+ },
919
+ notSubset: {
920
+ title: 'Not Subset (Strict)',
921
+ text: null,
922
+ ariaLabel: 'NotSubset',
923
+ displayText: '⊄'
924
+ },
925
+ notSuperset: {
926
+ title: 'Not Superset (Strict)',
927
+ text: null,
928
+ ariaLabel: 'NotSuperset',
929
+ displayText: '⊅'
930
+ },
931
+ subsetEq: {
932
+ title: 'Subset',
933
+ text: null,
934
+ ariaLabel: 'SubsetEq',
935
+ displayText: '⊆'
936
+ },
937
+ supersetEq: {
938
+ title: 'Superset',
939
+ text: null,
940
+ ariaLabel: 'SupersetEq',
941
+ displayText: '⊇'
942
+ },
943
+ notSubsetEq: {
944
+ title: 'Not Subset',
945
+ text: null,
946
+ ariaLabel: 'NotSubsetEq',
947
+ displayText: '⊈'
948
+ },
949
+ notSupersetEq: {
950
+ title: 'Not Superset',
951
+ text: null,
952
+ ariaLabel: 'NotSupersetEq',
953
+ displayText: '⊉'
954
+ },
955
+ models: {
956
+ title: 'Models',
957
+ text: null,
958
+ ariaLabel: 'Models',
959
+ displayText: '⊨'
960
+ },
961
+ precede: {
962
+ title: 'Precede',
963
+ text: null,
964
+ ariaLabel: 'Precede',
965
+ displayText: '≺'
966
+ },
967
+ succeed: {
968
+ title: 'Succeed',
969
+ text: null,
970
+ ariaLabel: 'Succeed',
971
+ displayText: '≻'
972
+ },
973
+ precedingEqual: {
974
+ title: 'Preceding Or Equal To',
975
+ text: null,
976
+ ariaLabel: 'precedingOrEqualTo',
977
+ displayText: '≼'
978
+ },
979
+ succeedingEqual: {
980
+ title: 'Succeeding Or Equal To',
981
+ text: null,
982
+ ariaLabel: 'succeedingOrEqualTo',
983
+ displayText: '≽'
984
+ },
985
+ similarEqual: {
986
+ title: 'Similar Or Equal To',
987
+ text: null,
988
+ ariaLabel: 'similarOrEqualTo',
989
+ displayText: '≃'
990
+ },
991
+ mid: {
992
+ title: 'Mid',
993
+ text: null,
994
+ ariaLabel: 'Mid',
995
+ displayText: '∣'
996
+ },
997
+ muchLessThan: {
998
+ title: 'Much Less Than',
999
+ text: null,
1000
+ ariaLabel: 'MuchLessThan',
1001
+ displayText: '≪'
1002
+ },
1003
+ muchGreaterThan: {
1004
+ title: 'Much Greater Than',
1005
+ text: null,
1006
+ ariaLabel: 'MuchGreaterThan',
1007
+ displayText: '≫'
1008
+ },
1009
+ parallel: {
1010
+ title: 'Parallel',
1011
+ text: null,
1012
+ ariaLabel: 'Parallel',
1013
+ displayText: '∥'
1014
+ },
1015
+ join: {
1016
+ title: 'Join',
1017
+ text: null,
1018
+ ariaLabel: 'Join',
1019
+ displayText: '⋈'
1020
+ },
1021
+ squareSubset: {
1022
+ title: 'Square Subset',
1023
+ text: null,
1024
+ ariaLabel: 'SquareSubset',
1025
+ displayText: '⊏'
1026
+ },
1027
+ squareSuperset: {
1028
+ title: 'Square Superset',
1029
+ text: null,
1030
+ ariaLabel: 'SquareSuperset',
1031
+ displayText: '⊐'
1032
+ },
1033
+ smile: {
1034
+ title: 'Smile',
1035
+ text: null,
1036
+ ariaLabel: 'Smile',
1037
+ displayText: '⌣'
1038
+ },
1039
+ squareSubsetEqual: {
1040
+ title: 'Square Subset Or Equal To',
1041
+ text: null,
1042
+ ariaLabel: 'SquareSubsetEqual',
1043
+ displayText: '⊑'
1044
+ },
1045
+ squareSupersetEqual: {
1046
+ title: 'Square Superset Or Equal To',
1047
+ text: null,
1048
+ ariaLabel: 'SquareSupersetEqual',
1049
+ displayText: '⊒'
1050
+ },
1051
+ equalToDot: {
1052
+ title: 'Defined As',
1053
+ text: null,
1054
+ ariaLabel: 'EqualToDot',
1055
+ displayText: '≐'
1056
+ },
1057
+ frown: {
1058
+ title: 'Frown',
1059
+ text: null,
1060
+ ariaLabel: 'Frown',
1061
+ displayText: '⌢'
1062
+ },
1063
+ vdashRightTack: {
1064
+ title: 'Vdash/Right Tack',
1065
+ text: null,
1066
+ ariaLabel: 'RightTack',
1067
+ displayText: '⊦'
1068
+ },
1069
+ vdashLeftTack: {
1070
+ title: 'Dashv/Left Tack',
1071
+ text: null,
1072
+ ariaLabel: 'LeftTack',
1073
+ displayText: '⊣'
1074
+ },
1075
+ existentialQuantifier: {
1076
+ title: 'Existential Quantifier',
1077
+ text: null,
1078
+ ariaLabel: 'ExistentialQuantifier',
1079
+ displayText: '∃'
1080
+ },
1081
+ emptySet: {
1082
+ title: 'Minuscule',
1083
+ text: null,
1084
+ ariaLabel: 'EmptySet',
1085
+ displayText: '∅'
1086
+ },
1087
+ notSimilarTo: {
1088
+ title: 'Not Similar To',
1089
+ text: null,
1090
+ ariaLabel: 'NotSimilarTo',
1091
+ displayText: '≁'
1092
+ },
1093
+ notCongruentTo: {
1094
+ title: 'Not Congruent To',
1095
+ text: null,
1096
+ ariaLabel: 'NotCongruentTo',
1097
+ displayText: '≇'
1098
+ },
1099
+ notLessThan: {
1100
+ title: 'Not Less Than',
1101
+ text: null,
1102
+ ariaLabel: 'NotLessThan',
1103
+ displayText: '≮'
1104
+ },
1105
+ notGreaterThan: {
1106
+ title: 'Not Greater Than',
1107
+ text: null,
1108
+ ariaLabel: 'NotGreaterThan',
1109
+ displayText: '≯'
1110
+ },
1111
+ systemOfEquationsInequalities: {
1112
+ title: 'System Of Equations/Inequalities',
1113
+ text: null,
1114
+ ariaLabel: 'SystemOfEquationsInequalities',
1115
+ displayText: '{'
1116
+ },
1117
+ simultaneousEquations: {
1118
+ title: 'Simultaneous Equations',
1119
+ text: null,
1120
+ ariaLabel: 'SimultaneousEquations',
1121
+ displayText: '+=+='
1122
+ },
1123
+ }
1124
+ },
1125
+
1126
+ arrows: {
1127
+ displayName: 'Arrows',
1128
+ symbols: {
1129
+ leftArrow: {
1130
+ title: 'Leftwards arrow',
1131
+ text: null,
1132
+ ariaLabel: 'LeftArrow',
1133
+ displayText: '←'
1134
+ },
1135
+ rightArrow: {
1136
+ title: 'Rightwards arrow',
1137
+ text: null,
1138
+ ariaLabel: 'RightArrow',
1139
+ displayText: '→'
1140
+ },
1141
+ leftArrowDouble: {
1142
+ title: 'Leftwards double arrow',
1143
+ text: null,
1144
+ ariaLabel: 'LeftArrowDouble',
1145
+ displayText: '⇐'
1146
+ },
1147
+ rightArrowDouble: {
1148
+ title: 'Rightwards double arrow',
1149
+ text: null,
1150
+ ariaLabel: 'RightArrowDouble',
1151
+ displayText: '⇒'
1152
+ },
1153
+ biDirectionalLR: {
1154
+ title: 'Bi-directional arrow (left - right)',
1155
+ text: null,
1156
+ ariaLabel: 'biDirectionalArrowLeftRight',
1157
+ displayText: '↔'
1158
+ },
1159
+ biDirectionalUD: {
1160
+ title: 'Bi-directional arrow (up - down)',
1161
+ text: null,
1162
+ ariaLabel: 'biDirectionalArrowUpDown',
1163
+ displayText: '↕'
1164
+ },
1165
+ biDirectionalLRDouble: {
1166
+ title: 'Bi-directional arrow (left - right, double lines)',
1167
+ text: null,
1168
+ ariaLabel: 'biDirectionalArrowLeftRightDouble',
1169
+ displayText: '⇔'
1170
+ },
1171
+ biDirectionalUDDouble: {
1172
+ title: 'Bi-directional arrow (up - down, double lines)',
1173
+ text: null,
1174
+ ariaLabel: 'biDirectionalArrowUpDownDouble',
1175
+ displayText: '⇕'
1176
+ },
1177
+ mapsTo: {
1178
+ title: 'Maps to arrow',
1179
+ text: null,
1180
+ ariaLabel: 'MapsTo',
1181
+ displayText: '↦'
1182
+ },
1183
+ NWArrow: {
1184
+ title: 'North east arrow',
1185
+ text: null,
1186
+ ariaLabel: 'northWestArrow',
1187
+ displayText: '↗'
1188
+ },
1189
+ leftwardsArrowHook: {
1190
+ title: 'leftwards arrow with hook',
1191
+ text: null,
1192
+ ariaLabel: 'leftwardsArrowHook',
1193
+ displayText: '↩'
1194
+ },
1195
+ rightwardsArrowHook: {
1196
+ title: 'Rightwards arrow with hook',
1197
+ text: null,
1198
+ ariaLabel: 'RightwardsArrowHook',
1199
+ displayText: '↪'
1200
+ },
1201
+ SWArrow: {
1202
+ title: 'South east arrow',
1203
+ text: null,
1204
+ ariaLabel: 'southWestArrow',
1205
+ displayText: '↘'
1206
+ },
1207
+ leftHarpoonBarbUp: {
1208
+ title: 'Leftwards Harpoon With Barb Upwards',
1209
+ text: null,
1210
+ ariaLabel: 'LeftHarpoonBarbUp',
1211
+ displayText: '↼'
1212
+ },
1213
+ rightHarpoonBarbUp: {
1214
+ title: 'Rightwards Harpoon With Barb Upwards',
1215
+ text: null,
1216
+ ariaLabel: 'RightHarpoonBarbUp',
1217
+ displayText: '⇀'
1218
+ },
1219
+ SEArrow: {
1220
+ title: 'South west arrow',
1221
+ text: null,
1222
+ ariaLabel: 'southEastArrow',
1223
+ displayText: '↙'
1224
+ },
1225
+ leftHarpoonBarbDown: {
1226
+ title: 'Leftwards Harpoon With Barb Downwards',
1227
+ text: null,
1228
+ ariaLabel: 'LeftHarpoonBarbDown',
1229
+ displayText: '↽'
1230
+ },
1231
+ rightHarpoonBarbDown: {
1232
+ title: 'Rightwards Harpoon With Barb Downwards',
1233
+ text: null,
1234
+ ariaLabel: 'RightHarpoonBarbDown',
1235
+ displayText: '⇁'
1236
+ },
1237
+ NEArrow: {
1238
+ title: 'North west arrow',
1239
+ text: null,
1240
+ ariaLabel: 'northEastArrow',
1241
+ displayText: '↖'
1242
+ },
1243
+ downArrow: {
1244
+ title: 'Downwards Arrow',
1245
+ text: null,
1246
+ ariaLabel: 'DownArrow',
1247
+ displayText: '↓'
1248
+ },
1249
+ downArrowDouble: {
1250
+ title: 'Downwards Double Arrow',
1251
+ text: null,
1252
+ ariaLabel: 'downArrowDouble',
1253
+ displayText: '⇓'
1254
+ },
1255
+ upwardsArrow: {
1256
+ title: 'Upwards Arrow',
1257
+ text: null,
1258
+ ariaLabel: 'UpwardsArrow',
1259
+ displayText: '↑'
1260
+ },
1261
+ rightLeftHarpoons: {
1262
+ title: 'Right/left harpoons',
1263
+ text: null,
1264
+ ariaLabel: 'RightLeftHarpoons',
1265
+ displayText: '⇌'
1266
+ },
1267
+ leftRightHarpoons: {
1268
+ title: 'Left/right harpoons',
1269
+ text: null,
1270
+ ariaLabel: 'LeftRightHarpoons',
1271
+ displayText: '⇋'
1272
+ }
1273
+ }
1274
+ },
1275
+
1276
+ delimiters: {
1277
+ displayName: 'Delimiters',
1278
+ symbols: {
1279
+ lFloor: {
1280
+ title: 'L-Floor',
1281
+ text: null,
1282
+ ariaLabel: 'LFloor',
1283
+ displayText: '⌊'
1284
+ },
1285
+ rFloor: {
1286
+ title: 'R-Floor',
1287
+ text: null,
1288
+ ariaLabel: 'RFloor',
1289
+ displayText: '⌋'
1290
+ },
1291
+ lCeil: {
1292
+ title: 'L-Ceil',
1293
+ text: null,
1294
+ ariaLabel: 'LCeil',
1295
+ displayText: '⌈'
1296
+ },
1297
+ rCeil: {
1298
+ title: 'R-Ceil',
1299
+ text: null,
1300
+ ariaLabel: 'RCeil',
1301
+ displayText: '⌉'
1302
+ },
1303
+ forwardSlash: {
1304
+ title: 'Forward slash',
1305
+ text: null,
1306
+ ariaLabel: 'ForwardSlash',
1307
+ displayText: '/'
1308
+ },
1309
+ openCurlBracket: {
1310
+ title: 'Left curly bracket',
1311
+ text: null,
1312
+ ariaLabel: 'OpenCurlBracket',
1313
+ displayText: '{'
1314
+ },
1315
+ closedCurlBracket: {
1316
+ title: 'Right curly bracket',
1317
+ text: null,
1318
+ ariaLabel: 'ClosedCurlBracket',
1319
+ displayText: '}'
1320
+ },
1321
+ groupInParathesis: {
1322
+ title: 'Group In Parenthesis',
1323
+ text: null,
1324
+ ariaLabel: 'GroupInParathesis',
1325
+ displayText: '()'
1326
+ },
1327
+ groupInBrackets: {
1328
+ title: 'Group In Brackets',
1329
+ text: null,
1330
+ ariaLabel: 'GroupInBrackets',
1331
+ displayText: '[]'
1332
+ },
1333
+ squareRoundBrackets: {
1334
+ title: 'Square round brackets',
1335
+ text: null,
1336
+ ariaLabel: 'SquareRoundBrackets',
1337
+ displayText: '[)'
1338
+ },
1339
+ roundSquareBrackets: {
1340
+ title: 'Round square brackets',
1341
+ text: null,
1342
+ ariaLabel: 'RoundSquareBrackets',
1343
+ displayText: '(]'
1344
+ },
1345
+ angleBracket: {
1346
+ title: 'Angular brackets',
1347
+ text: null,
1348
+ ariaLabel: 'AngleBracket',
1349
+ displayText: '⟨⟩'
1350
+ },
1351
+ singleSquareOpen: {
1352
+ title: 'Single square open',
1353
+ text: null,
1354
+ ariaLabel: 'SingleSquareOpen',
1355
+ displayText: '['
1356
+ },
1357
+ singleSquareClose: {
1358
+ title: 'Single square close',
1359
+ text: null,
1360
+ ariaLabel: 'SingleSquareClose',
1361
+ displayText: ']'
1362
+ }
1363
+ }
1364
+ },
1365
+
1366
+ misc: {
1367
+ displayName: 'Misc',
1368
+ symbols: {
1369
+ forAll: {
1370
+ title: 'For-All',
1371
+ text: null,
1372
+ ariaLabel: 'ForAll',
1373
+ displayText: '∀'
1374
+ },
1375
+ dotsBottom: {
1376
+ title: 'Horizontal dots (baseline)',
1377
+ text: null,
1378
+ ariaLabel: 'DotsBottom',
1379
+ displayText: '…'
1380
+ },
1381
+ horizontalDots: {
1382
+ title: 'Horizontal dots (centered)',
1383
+ text: null,
1384
+ ariaLabel: 'DotsMiddle',
1385
+ displayText: '⋯'
1386
+ },
1387
+ verticalDots: {
1388
+ title: 'Vertical dots',
1389
+ text: null,
1390
+ ariaLabel: 'VerticalDots',
1391
+ displayText: '⋮'
1392
+ },
1393
+ diagonalDots: {
1394
+ title: 'Diagonal dots',
1395
+ text: null,
1396
+ ariaLabel: 'DiagonalDots',
1397
+ displayText: '⋱'
1398
+ },
1399
+ sqrt: {
1400
+ title: 'Square Root',
1401
+ text: null,
1402
+ ariaLabel: 'SquareRoot',
1403
+ displayText: '√'
1404
+ },
1405
+ triangle: {
1406
+ title: 'Triangle (variation)',
1407
+ text: null,
1408
+ ariaLabel: 'triangle',
1409
+ displayText: '△'
1410
+ },
1411
+ ell: {
1412
+ title: 'Ell',
1413
+ text: null,
1414
+ ariaLabel: 'Ell',
1415
+ displayText: 'ℓ'
1416
+ },
1417
+ top: {
1418
+ title: 'Top',
1419
+ text: null,
1420
+ ariaLabel: 'Top',
1421
+ displayText: '⊤'
1422
+ },
1423
+ flat: {
1424
+ title: 'Flat',
1425
+ text: null,
1426
+ ariaLabel: 'Flat',
1427
+ displayText: '♭'
1428
+ },
1429
+ natural: {
1430
+ title: 'Natural',
1431
+ text: null,
1432
+ ariaLabel: 'Natural',
1433
+ displayText: '♮'
1434
+ },
1435
+ sharp: {
1436
+ title: 'Sharp',
1437
+ text: null,
1438
+ ariaLabel: 'Sharp',
1439
+ displayText: '♯'
1440
+ },
1441
+ elliptic: {
1442
+ title: 'Weierstrass\'s Elliptic Function',
1443
+ text: null,
1444
+ ariaLabel: 'weierstrassEllipticFunction',
1445
+ displayText: '℘'
1446
+ },
1447
+ perpendicularTo: {
1448
+ title: 'Perpendicular To',
1449
+ text: null,
1450
+ ariaLabel: 'PerpendicularTo',
1451
+ displayText: '⊥'
1452
+ },
1453
+ clubSuit: {
1454
+ title: 'Club-Suit',
1455
+ text: null,
1456
+ ariaLabel: 'ClubSuit',
1457
+ displayText: '♧'
1458
+ },
1459
+ diamondSuit: {
1460
+ title: 'Diamond-Suit',
1461
+ text: null,
1462
+ ariaLabel: 'DiamondSuit',
1463
+ displayText: '♢'
1464
+ },
1465
+ heartSuit: {
1466
+ title: 'Heart-Suit',
1467
+ text: null,
1468
+ ariaLabel: 'HeartSuit',
1469
+ displayText: '♡'
1470
+ },
1471
+ spadeSuit: {
1472
+ title: 'Spade-Suit',
1473
+ text: null,
1474
+ ariaLabel: 'SpadeSuit',
1475
+ displayText: '♤'
1476
+ },
1477
+ exponent: {
1478
+ title: 'Exponent',
1479
+ text: null,
1480
+ ariaLabel: 'Exponent',
1481
+ displayText: '^'
1482
+ },
1483
+ underscore: {
1484
+ title: 'Underscore',
1485
+ text: null,
1486
+ ariaLabel: 'Underscore',
1487
+ displayText: '_'
1488
+ },
1489
+ backSlash: {
1490
+ title: 'Backslash',
1491
+ text: null,
1492
+ ariaLabel: 'BackSlash',
1493
+ displayText: '\\'
1494
+ },
1495
+ forwardSlash: {
1496
+ title: 'Forward slash',
1497
+ text: null,
1498
+ ariaLabel: 'ForwardSlash',
1499
+ displayText: '/'
1500
+ },
1501
+ vert: {
1502
+ title: 'Mid',
1503
+ text: null,
1504
+ ariaLabel: 'Mid',
1505
+ displayText: '|'
1506
+ },
1507
+ nabla: {
1508
+ title: 'Nabla',
1509
+ text: null,
1510
+ ariaLabel: 'Nabla',
1511
+ displayText: '∇'
1512
+ },
1513
+ planck: {
1514
+ title: 'Reduced Planck\'s constant',
1515
+ text: null,
1516
+ ariaLabel: 'HBar',
1517
+ displayText: 'ℏ'
1518
+ },
1519
+ angstrom: {
1520
+ title: 'Angstrom',
1521
+ text: null,
1522
+ ariaLabel: 'Angstrom',
1523
+ displayText: 'Å'
1524
+ },
1525
+ circle: {
1526
+ title: 'Circle',
1527
+ text: null,
1528
+ ariaLabel: 'Circle',
1529
+ displayText: '∘'
1530
+ },
1531
+ bullet: {
1532
+ title: 'Bullet',
1533
+ text: null,
1534
+ ariaLabel: 'Bullet',
1535
+ displayText: '•'
1536
+ },
1537
+ not: {
1538
+ title: 'Not',
1539
+ text: null,
1540
+ ariaLabel: 'Not',
1541
+ displayText: '¬'
1542
+ },
1543
+ real: {
1544
+ title: 'Real part',
1545
+ text: null,
1546
+ ariaLabel: 'RealPart',
1547
+ displayText: 'ℜ'
1548
+ },
1549
+ imaginary: {
1550
+ title: 'Imaginary part',
1551
+ text: null,
1552
+ ariaLabel: 'ImaginaryPart',
1553
+ displayText: 'ℑ'
1554
+ },
1555
+ partialDerivative: {
1556
+ title: 'Partial Derivative',
1557
+ text: null,
1558
+ ariaLabel: 'PartialDerivative',
1559
+ displayText: '∂'
1560
+ },
1561
+ infinity: {
1562
+ title: 'Infinity',
1563
+ text: null,
1564
+ ariaLabel: 'Infinity',
1565
+ displayText: '∞'
1566
+ },
1567
+ alpeh: {
1568
+ title: 'Aleph',
1569
+ text: null,
1570
+ ariaLabel: 'Aleph',
1571
+ displayText: 'ℵ'
1572
+ },
1573
+ degree: {
1574
+ title: 'Degree',
1575
+ text: null,
1576
+ ariaLabel: 'Degree',
1577
+ displayText: '°'
1578
+ },
1579
+ angle: {
1580
+ title: 'Angle',
1581
+ text: null,
1582
+ ariaLabel: 'Angle',
1583
+ displayText: '∠'
1584
+ }
1585
+ }
1586
+ },
1587
+
1588
+ matrices: {
1589
+ displayName: 'Matrices',
1590
+ symbols: {
1591
+ matrix: {
1592
+ title: 'Matrix',
1593
+ text: null,
1594
+ ariaLabel: 'Matrix',
1595
+ displayText: null
1596
+ },
1597
+ twoByTwoMatrixBoundedBrackets: {
1598
+ title: '2 x 2 Matrix bounded by brackets',
1599
+ text: null,
1600
+ ariaLabel: 'TwoByTwoMatrixBoundedBrackets',
1601
+ displayText: null
1602
+ },
1603
+ matrixBoundedParenthesis: {
1604
+ title: 'Matrix bounded by parenthesis',
1605
+ text: null,
1606
+ ariaLabel: 'MatrixBoundedParenthesis',
1607
+ displayText: null
1608
+ },
1609
+ matrixBoundedBraces: {
1610
+ title: 'Matrix bounded by braces',
1611
+ text: null,
1612
+ ariaLabel: 'MatrixBoundedBraces',
1613
+ displayText: null
1614
+ },
1615
+ singleMatrixBoundedBrackets: {
1616
+ title: 'Single matrix bounded by brackets',
1617
+ text: null,
1618
+ ariaLabel: 'SingleMatrixBoundedBrackets',
1619
+ displayText: null
1620
+ },
1621
+ insertColumnInMatrix: {
1622
+ title: 'Insert column in matrix',
1623
+ text: null,
1624
+ ariaLabel: 'InsertColumnInMatrix',
1625
+ displayText: null
1626
+ },
1627
+ insertRowInMatrix: {
1628
+ title: 'Insert row in matrix',
1629
+ text: null,
1630
+ ariaLabel: 'InsertRowInMatrix',
1631
+ displayText: null
1632
+ },
1633
+ matrixBoundedVerticalLines: {
1634
+ title: 'Matrix bounded by vertical lines',
1635
+ text: null,
1636
+ ariaLabel: 'MatrixBoundedVerticalLines',
1637
+ displayText: null
1638
+ },
1639
+ matrixBoundedDoubleVerticalLines: {
1640
+ title: 'Matrix bounded by double vertical lines',
1641
+ text: null,
1642
+ ariaLabel: 'MatrixBoundedDoubleVerticalLines',
1643
+ displayText: null
1644
+ },
1645
+ threeByThreeMatrixBoundedBrackets: {
1646
+ title: '3 x 3 Matrix bounded by brackets',
1647
+ text: null,
1648
+ ariaLabel: 'ThreeByThreeMatrixBoundedBrackets',
1649
+ displayText: null
1650
+ },
1651
+ subscript: {
1652
+ title: 'Lower Exponent',
1653
+ text: null,
1654
+ ariaLabel: 'Subscript',
1655
+ displayText: null
1656
+ },
1657
+ superscript: {
1658
+ title: 'Upper Exponent',
1659
+ text: null,
1660
+ ariaLabel: 'Superscript',
1661
+ displayText: null
1662
+ },
1663
+ factorial: {
1664
+ title: 'Factorial',
1665
+ text: null,
1666
+ ariaLabel: 'Factorial',
1667
+ displayText: null
1668
+ },
1669
+ dotsBottom: {
1670
+ title: 'Horizontal dots (baseline)',
1671
+ text: null,
1672
+ ariaLabel: 'DotsBottom',
1673
+ displayText: '…'
1674
+ },
1675
+ dotsMiddle: {
1676
+ title: 'Horizontal dots (centered)',
1677
+ text: null,
1678
+ ariaLabel: 'DotsMiddle',
1679
+ displayText: '⋯'
1680
+ },
1681
+ verticalDots: {
1682
+ title: 'Vertical dots',
1683
+ text: null,
1684
+ ariaLabel: 'VerticalDots',
1685
+ displayText: '⋮'
1686
+ },
1687
+ diagonalDots: {
1688
+ title: 'Diagonal dots',
1689
+ text: null,
1690
+ ariaLabel: 'DiagonalDots',
1691
+ displayText: '⋱'
1692
+ }
1693
+ }
1694
+ },
1695
+
1696
+ trigonometry: {
1697
+ displayName: 'Trigonometric functions',
1698
+ symbols: {
1699
+ sin: {
1700
+ title: 'sin',
1701
+ text: 'sin',
1702
+ ariaLabel: 'Sine',
1703
+ displayText: 'sin'
1704
+ },
1705
+ cos: {
1706
+ title: 'cos',
1707
+ text: 'cos',
1708
+ ariaLabel: 'CosineT',
1709
+ displayText: 'cos'
1710
+ },
1711
+ tan: {
1712
+ title: 'tan',
1713
+ text: 'tan',
1714
+ ariaLabel: 'TangentT',
1715
+ displayText: 'tan'
1716
+ },
1717
+ sec: {
1718
+ title: 'sec',
1719
+ text: 'sec',
1720
+ ariaLabel: 'Sec',
1721
+ displayText: 'sec'
1722
+ },
1723
+ cosec: {
1724
+ title: 'cosec',
1725
+ text: 'cosec',
1726
+ ariaLabel: 'Cosec',
1727
+ displayText: 'cosec'
1728
+ },
1729
+ cot: {
1730
+ title: 'cot',
1731
+ text: 'cot',
1732
+ ariaLabel: 'Cot',
1733
+ displayText: 'cot'
1734
+ },
1735
+ sinInverse: {
1736
+ title: 'sin inverse',
1737
+ text: 'sin',
1738
+ ariaLabel: 'SinInverse',
1739
+ displayText: 'sin−1'
1740
+ },
1741
+ cosInverse: {
1742
+ title: 'cos inverse',
1743
+ text: 'cos',
1744
+ ariaLabel: 'CosInverse',
1745
+ displayText: 'cos−1'
1746
+ },
1747
+ TanInverse: {
1748
+ title: 'tan inverse',
1749
+ text: 'tan',
1750
+ ariaLabel: 'TanInverse',
1751
+ displayText: 'tan−1'
1752
+ },
1753
+ secInverse: {
1754
+ title: 'sec inverse',
1755
+ text: 'sec',
1756
+ ariaLabel: 'SecInverse',
1757
+ displayText: 'sec−1'
1758
+ },
1759
+ cosecInverse: {
1760
+ title: 'cosec inverse',
1761
+ text: 'csc',
1762
+ ariaLabel: 'CosecInverse',
1763
+ displayText: 'csc−1'
1764
+ },
1765
+ cotInverse: {
1766
+ title: 'cot inverse',
1767
+ text: 'cot',
1768
+ ariaLabel: 'CotInverse',
1769
+ displayText: 'cot−1'
1770
+ },
1771
+ arcsin: {
1772
+ title: 'arcsin',
1773
+ text: 'arcsin',
1774
+ ariaLabel: 'Arcsin',
1775
+ displayText: 'arcsin'
1776
+ },
1777
+ arccos: {
1778
+ title: 'arccos',
1779
+ text: 'arccos',
1780
+ ariaLabel: 'Arccos',
1781
+ displayText: 'arccos'
1782
+ },
1783
+ arctan: {
1784
+ title: 'arctan',
1785
+ text: 'arctan',
1786
+ ariaLabel: 'Arctan',
1787
+ displayText: 'arctan'
1788
+ }
1789
+ }
1790
+ },
1791
+
1792
+ units: {
1793
+ displayName: 'Units',
1794
+ symbols: {
1795
+ gram: {
1796
+ title: 'Gram',
1797
+ text: 'g',
1798
+ ariaLabel: 'Gram',
1799
+ displayText: 'g'
1800
+ },
1801
+ meter: {
1802
+ title: 'Meter',
1803
+ text: 'm',
1804
+ ariaLabel: 'Meter',
1805
+ displayText: 'm'
1806
+ },
1807
+ litre: {
1808
+ title: 'Litre',
1809
+ text: 'L',
1810
+ ariaLabel: 'Litre',
1811
+ displayText: 'L'
1812
+ },
1813
+ second: {
1814
+ title: 'Second',
1815
+ text: 's',
1816
+ ariaLabel: 'Second',
1817
+ displayText: 's'
1818
+ },
1819
+ kilogram: {
1820
+ title: 'Kilogram',
1821
+ text: 'kg',
1822
+ ariaLabel: 'Kilogram',
1823
+ displayText: 'kg'
1824
+ },
1825
+ centigram: {
1826
+ title: 'Centigram',
1827
+ text: 'cg',
1828
+ ariaLabel: 'Centigram',
1829
+ displayText: 'cg'
1830
+ },
1831
+ milligram: {
1832
+ title: 'Milligram',
1833
+ text: 'mg',
1834
+ ariaLabel: 'Milligram',
1835
+ displayText: 'mg'
1836
+ },
1837
+ microgram: {
1838
+ title: 'Microgram',
1839
+ text: 'μg',
1840
+ ariaLabel: 'Microgram',
1841
+ displayText: 'µg'
1842
+ },
1843
+ nanogram: {
1844
+ title: 'Nanogram',
1845
+ text: 'ng',
1846
+ ariaLabel: 'Nanogram',
1847
+ displayText: 'ng'
1848
+ },
1849
+ kilometer: {
1850
+ title: 'Kilometer',
1851
+ text: 'km',
1852
+ ariaLabel: 'Kilometer',
1853
+ displayText: 'km'
1854
+ },
1855
+ centimeter: {
1856
+ title: 'Centimeter',
1857
+ text: 'cm',
1858
+ ariaLabel: 'Centimeter',
1859
+ displayText: 'cm'
1860
+ },
1861
+ millimeter: {
1862
+ title: 'Millimeter',
1863
+ text: 'mm',
1864
+ ariaLabel: 'Millimeter',
1865
+ displayText: 'mm'
1866
+ },
1867
+ micrometer: {
1868
+ title: 'Micrometer',
1869
+ text: 'μm',
1870
+ ariaLabel: 'Micrometer',
1871
+ displayText: 'µm'
1872
+ },
1873
+ nanometer: {
1874
+ title: 'Nanometer',
1875
+ text: 'nm',
1876
+ ariaLabel: 'Nanometer',
1877
+ displayText: 'nm'
1878
+ },
1879
+ millilitre: {
1880
+ title: 'Millilitre',
1881
+ text: 'mL',
1882
+ ariaLabel: 'Millilitre',
1883
+ displayText: 'mL'
1884
+ },
1885
+ microlitre: {
1886
+ title: 'Microlitre',
1887
+ text: 'μL',
1888
+ ariaLabel: 'Microlitre',
1889
+ displayText: 'µL'
1890
+ },
1891
+ kilosecond: {
1892
+ title: 'Kilosecond',
1893
+ text: 'ks',
1894
+ ariaLabel: 'Kilosecond',
1895
+ displayText: 'ks'
1896
+ },
1897
+ centisecond: {
1898
+ title: 'Centisecond',
1899
+ text: 'cs',
1900
+ ariaLabel: 'Centisecond',
1901
+ displayText: 'cs'
1902
+ },
1903
+ millisecond: {
1904
+ title: 'Millisecond',
1905
+ text: 'ms',
1906
+ ariaLabel: 'Millisecond',
1907
+ displayText: 'ms'
1908
+ },
1909
+ microsecond: {
1910
+ title: 'Microsecond',
1911
+ text: 'μs',
1912
+ ariaLabel: 'Microsecond',
1913
+ displayText: 'µs'
1914
+ },
1915
+ nanosecond: {
1916
+ title: 'Nanosecond',
1917
+ text: 'ns',
1918
+ ariaLabel: 'Nanosecond',
1919
+ displayText: 'ns'
1920
+ },
1921
+ ounce: {
1922
+ title: 'Ounce',
1923
+ text: 'oz',
1924
+ ariaLabel: 'Ounce',
1925
+ displayText: 'oz'
1926
+ },
1927
+ Pound: {
1928
+ title: 'Pound',
1929
+ text: 'lb',
1930
+ ariaLabel: 'Pound',
1931
+ displayText: 'lb'
1932
+ },
1933
+ inch: {
1934
+ title: 'Inch',
1935
+ text: 'in',
1936
+ ariaLabel: 'Inch',
1937
+ displayText: 'in'
1938
+ },
1939
+ foot: {
1940
+ title: 'Foot',
1941
+ text: 'ft',
1942
+ ariaLabel: 'Foot',
1943
+ displayText: 'ft'
1944
+ },
1945
+ mile: {
1946
+ title: 'Mile',
1947
+ text: 'mi',
1948
+ ariaLabel: 'Mile',
1949
+ displayText: 'mi'
1950
+ },
1951
+ fluidOunce: {
1952
+ title: 'Fluid Ounce',
1953
+ text: 'fl oz',
1954
+ ariaLabel: 'FluidOunce',
1955
+ displayText: 'fl oz'
1956
+ },
1957
+ cup: {
1958
+ title: 'Cup',
1959
+ text: 'cup',
1960
+ ariaLabel: 'Cup',
1961
+ displayText: 'cup'
1962
+ },
1963
+ pint: {
1964
+ title: 'Pint',
1965
+ text: 'pt',
1966
+ ariaLabel: 'Pint',
1967
+ displayText: 'pt'
1968
+ },
1969
+ quart: {
1970
+ title: 'Quart',
1971
+ text: 'qt',
1972
+ ariaLabel: 'Quart',
1973
+ displayText: 'qt'
1974
+ },
1975
+ gallon: {
1976
+ title: 'Gallon',
1977
+ text: 'gal',
1978
+ ariaLabel: 'Gallon',
1979
+ displayText: 'gal'
1980
+ }
1981
+ }
1982
+ },
1983
+
1984
+ calculus: {
1985
+ displayName: 'Calculus symbols',
1986
+ symbols: {
1987
+ limit: {
1988
+ title: 'Limit x to',
1989
+ text: 'lim',
1990
+ ariaLabel: 'LimitXTo',
1991
+ displayText: 'limx→'
1992
+ },
1993
+ epsilon: {
1994
+ title: 'Epsilon',
1995
+ text: null,
1996
+ ariaLabel: 'Epsilon',
1997
+ displayText: 'ϵ'
1998
+ },
1999
+ eulersNumber: {
2000
+ title: 'Euler\'s number',
2001
+ text: 'e',
2002
+ ariaLabel: 'EulersNumber',
2003
+ displayText: 'e'
2004
+ },
2005
+ deltaUppercase: {
2006
+ title: 'Delta (uppercase)',
2007
+ text: null,
2008
+ ariaLabel: 'DeltaUppercase',
2009
+ displayText: 'Δ'
2010
+ },
2011
+ derivative: {
2012
+ title: 'Derivative dy/dx',
2013
+ text: null,
2014
+ ariaLabel: 'Derivative',
2015
+ displayText: 'dydx'
2016
+ },
2017
+ secondDerivative: {
2018
+ title: 'Second derivative',
2019
+ text: null,
2020
+ ariaLabel: 'SecondDerivative',
2021
+ displayText: '​d2ydx2'
2022
+ },
2023
+ nDerivative: {
2024
+ title: 'nth derivative',
2025
+ text: null,
2026
+ ariaLabel: 'NthDerivative',
2027
+ displayText: '​dydx​'
2028
+ },
2029
+ partialDerivative: {
2030
+ title: 'Partial derivative',
2031
+ text: null,
2032
+ ariaLabel: 'PartialDerivative',
2033
+ displayText: '∂y∂x'
2034
+ },
2035
+ timeDerivative: {
2036
+ title: 'Time derivative',
2037
+ text: null,
2038
+ ariaLabel: 'TimeDerivative',
2039
+ displayText: '​˙y'
2040
+ },
2041
+ timeSecondDerivative: {
2042
+ title: 'Time second derivative',
2043
+ text: null,
2044
+ ariaLabel: 'TimeSecondDerivative',
2045
+ displayText: '˙˙y'
2046
+ },
2047
+ integral: {
2048
+ title: 'Integral',
2049
+ text: null,
2050
+ ariaLabel: 'Integral',
2051
+ displayText: '∫​'
2052
+ },
2053
+ doubleIntegral: {
2054
+ title: 'Double integral',
2055
+ text: null,
2056
+ ariaLabel: 'DoubleIntegral',
2057
+ displayText: '∬'
2058
+ },
2059
+ tripleIntegral: {
2060
+ title: 'Triple integral',
2061
+ text: null,
2062
+ ariaLabel: 'TripleIntegral',
2063
+ displayText: '​∭'
2064
+ },
2065
+ lineIntegral: {
2066
+ title: 'closed contour integral',
2067
+ text: null,
2068
+ ariaLabel: 'LineIntegral',
2069
+ displayText: '​∮'
2070
+ },
2071
+ closedSurfaceIntegral: {
2072
+ title: 'Closed surface integral',
2073
+ text: null,
2074
+ ariaLabel: 'ClosedSurfaceIntegral',
2075
+ displayText: '∯'
2076
+ },
2077
+ closedVolumeIntegral: {
2078
+ title: 'Closed volume integral',
2079
+ text: null,
2080
+ ariaLabel: 'ClosedVolumeIntegral',
2081
+ displayText: '∰'
2082
+ },
2083
+ summation: {
2084
+ title: 'Summation',
2085
+ text: null,
2086
+ ariaLabel: 'Summation',
2087
+ displayText: '∑'
2088
+ },
2089
+ underSim: {
2090
+ title: 'Under sim',
2091
+ text: null,
2092
+ ariaLabel: 'UnderSim',
2093
+ displayText: '~'
2094
+ },
2095
+ vector: {
2096
+ title: 'Vector',
2097
+ text: null,
2098
+ ariaLabel: 'Vector',
2099
+ displayText: '→'
2100
+ },
2101
+ unitVector: {
2102
+ title: 'Unit vector',
2103
+ text: null,
2104
+ ariaLabel: 'UnitVector',
2105
+ displayText: '^'
2106
+ },
2107
+ nabla: {
2108
+ title: 'Nabla',
2109
+ text: null,
2110
+ ariaLabel: 'Nabla',
2111
+ displayText: '∇'
2112
+ },
2113
+ infinity: {
2114
+ title: 'Infinity',
2115
+ text: null,
2116
+ ariaLabel: 'Infinity',
2117
+ displayText: '∞'
2118
+ },
2119
+ absoluteValue: {
2120
+ title: 'Absolute Value',
2121
+ text: null,
2122
+ ariaLabel: 'AbsoluteValue',
2123
+ displayText: '||'
2124
+ }
2125
+ }
2126
+ },
2127
+
2128
+ geometry: {
2129
+ displayName: 'Geometric symbols',
2130
+ symbols: {
2131
+ circle: {
2132
+ title: 'Circle',
2133
+ text: null,
2134
+ ariaLabel: 'BigCircle',
2135
+ displayText: '◯'
2136
+ },
2137
+ square: {
2138
+ title: 'Square',
2139
+ text: null,
2140
+ ariaLabel: 'SquareShape',
2141
+ displayText: '□'
2142
+ },
2143
+ triangle: {
2144
+ title: 'Triangle',
2145
+ text: null,
2146
+ ariaLabel: 'Triangle',
2147
+ displayText: '△'
2148
+ },
2149
+ parallelogram: {
2150
+ title: 'Parallelogram',
2151
+ text: null,
2152
+ ariaLabel: 'Parallelogram',
2153
+ displayText: '▱'
2154
+ },
2155
+ perpendicularTo: {
2156
+ title: 'Perpendicular to',
2157
+ text: null,
2158
+ ariaLabel: 'PerpendicularTo',
2159
+ displayText: '⊥'
2160
+ },
2161
+ similarTo: {
2162
+ title: 'Similar To',
2163
+ text: null,
2164
+ ariaLabel: 'SimilarTo',
2165
+ displayText: '~'
2166
+ },
2167
+ congruentTo: {
2168
+ title: 'Congruent To',
2169
+ text: null,
2170
+ ariaLabel: 'CongruentTo',
2171
+ displayText: '≅'
2172
+ },
2173
+ parallelTo: {
2174
+ title: 'Parallel to',
2175
+ text: null,
2176
+ ariaLabel: 'ParallelTo',
2177
+ displayText: '∥'
2178
+ },
2179
+ notParallel: {
2180
+ title: 'Not parallel',
2181
+ text: null,
2182
+ ariaLabel: 'NotParallel',
2183
+ displayText: '∦'
2184
+ },
2185
+ pi: {
2186
+ title: 'Pi',
2187
+ text: null,
2188
+ ariaLabel: 'Pi',
2189
+ displayText: 'π'
2190
+ },
2191
+ dotMultiplier: {
2192
+ title: 'Dot Multiplier',
2193
+ text: null,
2194
+ ariaLabel: 'DotMultiplier',
2195
+ displayText: '·'
2196
+ },
2197
+ degree: {
2198
+ title: 'Degree',
2199
+ text: null,
2200
+ ariaLabel: 'Degree',
2201
+ displayText: '°'
2202
+ },
2203
+ prime: {
2204
+ title: 'Prime/Arcminute',
2205
+ text: null,
2206
+ ariaLabel: 'Prime',
2207
+ displayText: '′'
2208
+ },
2209
+ doublePrime: {
2210
+ title: 'Double Prime/Arcsecond',
2211
+ text: null,
2212
+ ariaLabel: 'DoublePrime',
2213
+ displayText: '″'
2214
+ },
2215
+ angle: {
2216
+ title: 'Angle',
2217
+ text: null,
2218
+ ariaLabel: 'Angle',
2219
+ displayText: '∠'
2220
+ },
2221
+ measureOfAngle: {
2222
+ title: 'Measure of angle',
2223
+ text: null,
2224
+ ariaLabel: 'MeasureOfAngle',
2225
+ displayText: 'm∠'
2226
+ },
2227
+ arc: {
2228
+ title: 'Arc',
2229
+ text: null,
2230
+ ariaLabel: 'Arc',
2231
+ displayText: null
2232
+ },
2233
+ topLineSegment: {
2234
+ title: 'Line segment on top',
2235
+ text: null,
2236
+ ariaLabel: 'TopLineSegment',
2237
+ displayText: null
2238
+ },
2239
+ vector: {
2240
+ title: 'Vector',
2241
+ text: null,
2242
+ ariaLabel: 'Vector',
2243
+ displayText: '→'
2244
+ },
2245
+ topDoubleSidedArrow: {
2246
+ title: 'Double sided arrow on top',
2247
+ text: null,
2248
+ ariaLabel: 'TopDoubleSidedArrow',
2249
+ displayText: null
2250
+ },
2251
+ topLeftArrow: {
2252
+ title: 'Left Arrow (Ray) on top',
2253
+ text: null,
2254
+ ariaLabel: 'TopLeftArrow',
2255
+ displayText: null
2256
+ },
2257
+ topRightArrow: {
2258
+ title: 'Right Arrow (Ray) on top',
2259
+ text: null,
2260
+ ariaLabel: 'TopRightArrow',
2261
+ displayText: null
2262
+ },
2263
+ recurringDecimal: {
2264
+ title: 'Recurring decimal',
2265
+ text: null,
2266
+ ariaLabel: 'RecurringDecimal',
2267
+ displayText: '˙'
2268
+ }
2269
+ }
2270
+ }
2271
+ }