@magmamath/students-features 0.9.6-rc.1 → 0.9.6-rc.2
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/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +6 -0
- package/dist/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/Keyboard.js +0 -2
- package/dist/commonjs/features/keyboard/components/Keyboard.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/KeysList/KeysList.js +1 -2
- package/dist/commonjs/features/keyboard/components/KeysList/KeysList.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/MainLayout.js +2 -1
- package/dist/commonjs/features/keyboard/components/MainLayout.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/Numpad/Numpad.js +1 -14
- package/dist/commonjs/features/keyboard/components/Numpad/Numpad.js.map +1 -1
- package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitTabs.js +23 -29
- package/dist/commonjs/features/keyboard/components/UnitsLayout/UnitTabs.js.map +1 -1
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/units.js +16 -16
- package/dist/commonjs/features/keyboard/types/MathKeysGroups/units.js.map +1 -1
- package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js +6 -0
- package/dist/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/Keyboard.js +0 -2
- package/dist/module/features/keyboard/components/Keyboard.js.map +1 -1
- package/dist/module/features/keyboard/components/KeysList/KeysList.js +1 -2
- package/dist/module/features/keyboard/components/KeysList/KeysList.js.map +1 -1
- package/dist/module/features/keyboard/components/MainLayout.js +2 -1
- package/dist/module/features/keyboard/components/MainLayout.js.map +1 -1
- package/dist/module/features/keyboard/components/Numpad/Numpad.js +1 -14
- package/dist/module/features/keyboard/components/Numpad/Numpad.js.map +1 -1
- package/dist/module/features/keyboard/components/UnitsLayout/UnitTabs.js +23 -29
- package/dist/module/features/keyboard/components/UnitsLayout/UnitTabs.js.map +1 -1
- package/dist/module/features/keyboard/types/MathKeysGroups/units.js +17 -17
- package/dist/module/features/keyboard/types/MathKeysGroups/units.js.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/KeysList/KeysList.d.ts +0 -1
- package/dist/typescript/commonjs/features/keyboard/components/KeysList/KeysList.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/Numpad/Numpad.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/components/UnitsLayout/UnitTabs.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/units.d.ts +208 -208
- package/dist/typescript/commonjs/features/keyboard/types/MathKeysGroups/units.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/AlgebraLayout/AlgebraLayout.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/KeysList/KeysList.d.ts +0 -1
- package/dist/typescript/module/features/keyboard/components/KeysList/KeysList.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/Numpad/Numpad.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/components/UnitsLayout/UnitTabs.d.ts.map +1 -1
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/units.d.ts +208 -208
- package/dist/typescript/module/features/keyboard/types/MathKeysGroups/units.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/features/keyboard/components/AlgebraLayout/AlgebraLayout.tsx +11 -1
- package/src/features/keyboard/components/Keyboard.tsx +0 -2
- package/src/features/keyboard/components/KeysList/KeysList.tsx +1 -2
- package/src/features/keyboard/components/MainLayout.tsx +1 -0
- package/src/features/keyboard/components/Numpad/Numpad.tsx +1 -18
- package/src/features/keyboard/components/UnitsLayout/UnitTabs.tsx +23 -28
- package/src/features/keyboard/types/MathKeysGroups/units.tsx +12 -11
|
@@ -47,11 +47,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
47
47
|
width: number;
|
|
48
48
|
};
|
|
49
49
|
container: {
|
|
50
|
-
flexBasis: number
|
|
51
|
-
};
|
|
50
|
+
flexBasis: number;
|
|
51
|
+
} | undefined;
|
|
52
52
|
text: {
|
|
53
|
-
fontSize:
|
|
54
|
-
fontWeight: 700;
|
|
53
|
+
readonly fontSize: 14;
|
|
54
|
+
readonly fontWeight: 700;
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
57
|
};
|
|
@@ -64,11 +64,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
64
64
|
width: number;
|
|
65
65
|
};
|
|
66
66
|
container: {
|
|
67
|
-
flexBasis: number
|
|
68
|
-
};
|
|
67
|
+
flexBasis: number;
|
|
68
|
+
} | undefined;
|
|
69
69
|
text: {
|
|
70
|
-
fontSize:
|
|
71
|
-
fontWeight: 700;
|
|
70
|
+
readonly fontSize: 14;
|
|
71
|
+
readonly fontWeight: 700;
|
|
72
72
|
};
|
|
73
73
|
};
|
|
74
74
|
};
|
|
@@ -81,11 +81,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
81
81
|
width: number;
|
|
82
82
|
};
|
|
83
83
|
container: {
|
|
84
|
-
flexBasis: number
|
|
85
|
-
};
|
|
84
|
+
flexBasis: number;
|
|
85
|
+
} | undefined;
|
|
86
86
|
text: {
|
|
87
|
-
fontSize:
|
|
88
|
-
fontWeight: 700;
|
|
87
|
+
readonly fontSize: 14;
|
|
88
|
+
readonly fontWeight: 700;
|
|
89
89
|
};
|
|
90
90
|
};
|
|
91
91
|
};
|
|
@@ -98,11 +98,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
98
98
|
width: number;
|
|
99
99
|
};
|
|
100
100
|
container: {
|
|
101
|
-
flexBasis: number
|
|
102
|
-
};
|
|
101
|
+
flexBasis: number;
|
|
102
|
+
} | undefined;
|
|
103
103
|
text: {
|
|
104
|
-
fontSize:
|
|
105
|
-
fontWeight: 700;
|
|
104
|
+
readonly fontSize: 14;
|
|
105
|
+
readonly fontWeight: 700;
|
|
106
106
|
};
|
|
107
107
|
};
|
|
108
108
|
};
|
|
@@ -115,11 +115,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
115
115
|
width: number;
|
|
116
116
|
};
|
|
117
117
|
container: {
|
|
118
|
-
flexBasis: number
|
|
119
|
-
};
|
|
118
|
+
flexBasis: number;
|
|
119
|
+
} | undefined;
|
|
120
120
|
text: {
|
|
121
|
-
fontSize:
|
|
122
|
-
fontWeight: 700;
|
|
121
|
+
readonly fontSize: 14;
|
|
122
|
+
readonly fontWeight: 700;
|
|
123
123
|
};
|
|
124
124
|
};
|
|
125
125
|
};
|
|
@@ -132,11 +132,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
132
132
|
width: number;
|
|
133
133
|
};
|
|
134
134
|
container: {
|
|
135
|
-
flexBasis: number
|
|
136
|
-
};
|
|
135
|
+
flexBasis: number;
|
|
136
|
+
} | undefined;
|
|
137
137
|
text: {
|
|
138
|
-
fontSize:
|
|
139
|
-
fontWeight: 700;
|
|
138
|
+
readonly fontSize: 14;
|
|
139
|
+
readonly fontWeight: 700;
|
|
140
140
|
};
|
|
141
141
|
};
|
|
142
142
|
};
|
|
@@ -150,11 +150,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
150
150
|
width: number;
|
|
151
151
|
};
|
|
152
152
|
container: {
|
|
153
|
-
flexBasis: number
|
|
154
|
-
};
|
|
153
|
+
flexBasis: number;
|
|
154
|
+
} | undefined;
|
|
155
155
|
text: {
|
|
156
|
-
fontSize:
|
|
157
|
-
fontWeight: 700;
|
|
156
|
+
readonly fontSize: 14;
|
|
157
|
+
readonly fontWeight: 700;
|
|
158
158
|
};
|
|
159
159
|
};
|
|
160
160
|
};
|
|
@@ -167,11 +167,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
167
167
|
width: number;
|
|
168
168
|
};
|
|
169
169
|
container: {
|
|
170
|
-
flexBasis: number
|
|
171
|
-
};
|
|
170
|
+
flexBasis: number;
|
|
171
|
+
} | undefined;
|
|
172
172
|
text: {
|
|
173
|
-
fontSize:
|
|
174
|
-
fontWeight: 700;
|
|
173
|
+
readonly fontSize: 14;
|
|
174
|
+
readonly fontWeight: 700;
|
|
175
175
|
};
|
|
176
176
|
};
|
|
177
177
|
};
|
|
@@ -184,11 +184,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
184
184
|
width: number;
|
|
185
185
|
};
|
|
186
186
|
container: {
|
|
187
|
-
flexBasis: number
|
|
188
|
-
};
|
|
187
|
+
flexBasis: number;
|
|
188
|
+
} | undefined;
|
|
189
189
|
text: {
|
|
190
|
-
fontSize:
|
|
191
|
-
fontWeight: 700;
|
|
190
|
+
readonly fontSize: 14;
|
|
191
|
+
readonly fontWeight: 700;
|
|
192
192
|
};
|
|
193
193
|
};
|
|
194
194
|
};
|
|
@@ -201,11 +201,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
201
201
|
width: number;
|
|
202
202
|
};
|
|
203
203
|
container: {
|
|
204
|
-
flexBasis: number
|
|
205
|
-
};
|
|
204
|
+
flexBasis: number;
|
|
205
|
+
} | undefined;
|
|
206
206
|
text: {
|
|
207
|
-
fontSize:
|
|
208
|
-
fontWeight: 700;
|
|
207
|
+
readonly fontSize: 14;
|
|
208
|
+
readonly fontWeight: 700;
|
|
209
209
|
};
|
|
210
210
|
};
|
|
211
211
|
};
|
|
@@ -218,11 +218,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
218
218
|
width: number;
|
|
219
219
|
};
|
|
220
220
|
container: {
|
|
221
|
-
flexBasis: number
|
|
222
|
-
};
|
|
221
|
+
flexBasis: number;
|
|
222
|
+
} | undefined;
|
|
223
223
|
text: {
|
|
224
|
-
fontSize:
|
|
225
|
-
fontWeight: 700;
|
|
224
|
+
readonly fontSize: 14;
|
|
225
|
+
readonly fontWeight: 700;
|
|
226
226
|
};
|
|
227
227
|
};
|
|
228
228
|
};
|
|
@@ -235,11 +235,11 @@ export declare const MATH_LENGTH_UNITS: {
|
|
|
235
235
|
width: number;
|
|
236
236
|
};
|
|
237
237
|
container: {
|
|
238
|
-
flexBasis: number
|
|
239
|
-
};
|
|
238
|
+
flexBasis: number;
|
|
239
|
+
} | undefined;
|
|
240
240
|
text: {
|
|
241
|
-
fontSize:
|
|
242
|
-
fontWeight: 700;
|
|
241
|
+
readonly fontSize: 14;
|
|
242
|
+
readonly fontWeight: 700;
|
|
243
243
|
};
|
|
244
244
|
};
|
|
245
245
|
};
|
|
@@ -255,11 +255,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
255
255
|
width: number;
|
|
256
256
|
};
|
|
257
257
|
container: {
|
|
258
|
-
flexBasis: number
|
|
259
|
-
};
|
|
258
|
+
flexBasis: number;
|
|
259
|
+
} | undefined;
|
|
260
260
|
text: {
|
|
261
|
-
fontSize:
|
|
262
|
-
fontWeight: 700;
|
|
261
|
+
readonly fontSize: 14;
|
|
262
|
+
readonly fontWeight: 700;
|
|
263
263
|
};
|
|
264
264
|
};
|
|
265
265
|
};
|
|
@@ -273,11 +273,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
273
273
|
width: number;
|
|
274
274
|
};
|
|
275
275
|
container: {
|
|
276
|
-
flexBasis: number
|
|
277
|
-
};
|
|
276
|
+
flexBasis: number;
|
|
277
|
+
} | undefined;
|
|
278
278
|
text: {
|
|
279
|
-
fontSize:
|
|
280
|
-
fontWeight: 700;
|
|
279
|
+
readonly fontSize: 14;
|
|
280
|
+
readonly fontWeight: 700;
|
|
281
281
|
};
|
|
282
282
|
};
|
|
283
283
|
};
|
|
@@ -291,11 +291,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
291
291
|
width: number;
|
|
292
292
|
};
|
|
293
293
|
container: {
|
|
294
|
-
flexBasis: number
|
|
295
|
-
};
|
|
294
|
+
flexBasis: number;
|
|
295
|
+
} | undefined;
|
|
296
296
|
text: {
|
|
297
|
-
fontSize:
|
|
298
|
-
fontWeight: 700;
|
|
297
|
+
readonly fontSize: 14;
|
|
298
|
+
readonly fontWeight: 700;
|
|
299
299
|
};
|
|
300
300
|
};
|
|
301
301
|
};
|
|
@@ -309,11 +309,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
309
309
|
width: number;
|
|
310
310
|
};
|
|
311
311
|
container: {
|
|
312
|
-
flexBasis: number
|
|
313
|
-
};
|
|
312
|
+
flexBasis: number;
|
|
313
|
+
} | undefined;
|
|
314
314
|
text: {
|
|
315
|
-
fontSize:
|
|
316
|
-
fontWeight: 700;
|
|
315
|
+
readonly fontSize: 14;
|
|
316
|
+
readonly fontWeight: 700;
|
|
317
317
|
};
|
|
318
318
|
};
|
|
319
319
|
};
|
|
@@ -327,11 +327,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
327
327
|
width: number;
|
|
328
328
|
};
|
|
329
329
|
container: {
|
|
330
|
-
flexBasis: number
|
|
331
|
-
};
|
|
330
|
+
flexBasis: number;
|
|
331
|
+
} | undefined;
|
|
332
332
|
text: {
|
|
333
|
-
fontSize:
|
|
334
|
-
fontWeight: 700;
|
|
333
|
+
readonly fontSize: 14;
|
|
334
|
+
readonly fontWeight: 700;
|
|
335
335
|
};
|
|
336
336
|
};
|
|
337
337
|
};
|
|
@@ -345,11 +345,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
345
345
|
width: number;
|
|
346
346
|
};
|
|
347
347
|
container: {
|
|
348
|
-
flexBasis: number
|
|
349
|
-
};
|
|
348
|
+
flexBasis: number;
|
|
349
|
+
} | undefined;
|
|
350
350
|
text: {
|
|
351
|
-
fontSize:
|
|
352
|
-
fontWeight: 700;
|
|
351
|
+
readonly fontSize: 14;
|
|
352
|
+
readonly fontWeight: 700;
|
|
353
353
|
};
|
|
354
354
|
};
|
|
355
355
|
};
|
|
@@ -363,11 +363,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
363
363
|
width: number;
|
|
364
364
|
};
|
|
365
365
|
container: {
|
|
366
|
-
flexBasis: number
|
|
367
|
-
};
|
|
366
|
+
flexBasis: number;
|
|
367
|
+
} | undefined;
|
|
368
368
|
text: {
|
|
369
|
-
fontSize:
|
|
370
|
-
fontWeight: 700;
|
|
369
|
+
readonly fontSize: 14;
|
|
370
|
+
readonly fontWeight: 700;
|
|
371
371
|
};
|
|
372
372
|
};
|
|
373
373
|
};
|
|
@@ -381,11 +381,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
381
381
|
width: number;
|
|
382
382
|
};
|
|
383
383
|
container: {
|
|
384
|
-
flexBasis: number
|
|
385
|
-
};
|
|
384
|
+
flexBasis: number;
|
|
385
|
+
} | undefined;
|
|
386
386
|
text: {
|
|
387
|
-
fontSize:
|
|
388
|
-
fontWeight: 700;
|
|
387
|
+
readonly fontSize: 14;
|
|
388
|
+
readonly fontWeight: 700;
|
|
389
389
|
};
|
|
390
390
|
};
|
|
391
391
|
};
|
|
@@ -399,11 +399,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
399
399
|
width: number;
|
|
400
400
|
};
|
|
401
401
|
container: {
|
|
402
|
-
flexBasis: number
|
|
403
|
-
};
|
|
402
|
+
flexBasis: number;
|
|
403
|
+
} | undefined;
|
|
404
404
|
text: {
|
|
405
|
-
fontSize:
|
|
406
|
-
fontWeight: 700;
|
|
405
|
+
readonly fontSize: 14;
|
|
406
|
+
readonly fontWeight: 700;
|
|
407
407
|
};
|
|
408
408
|
};
|
|
409
409
|
};
|
|
@@ -416,11 +416,11 @@ export declare const MATH_AREA_UNITS: {
|
|
|
416
416
|
width: number;
|
|
417
417
|
};
|
|
418
418
|
container: {
|
|
419
|
-
flexBasis: number
|
|
420
|
-
};
|
|
419
|
+
flexBasis: number;
|
|
420
|
+
} | undefined;
|
|
421
421
|
text: {
|
|
422
|
-
fontSize:
|
|
423
|
-
fontWeight: 700;
|
|
422
|
+
readonly fontSize: 14;
|
|
423
|
+
readonly fontWeight: 700;
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
};
|
|
@@ -436,11 +436,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
436
436
|
width: number;
|
|
437
437
|
};
|
|
438
438
|
container: {
|
|
439
|
-
flexBasis: number
|
|
440
|
-
};
|
|
439
|
+
flexBasis: number;
|
|
440
|
+
} | undefined;
|
|
441
441
|
text: {
|
|
442
|
-
fontSize:
|
|
443
|
-
fontWeight: 700;
|
|
442
|
+
readonly fontSize: 14;
|
|
443
|
+
readonly fontWeight: 700;
|
|
444
444
|
};
|
|
445
445
|
};
|
|
446
446
|
};
|
|
@@ -454,11 +454,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
454
454
|
width: number;
|
|
455
455
|
};
|
|
456
456
|
container: {
|
|
457
|
-
flexBasis: number
|
|
458
|
-
};
|
|
457
|
+
flexBasis: number;
|
|
458
|
+
} | undefined;
|
|
459
459
|
text: {
|
|
460
|
-
fontSize:
|
|
461
|
-
fontWeight: 700;
|
|
460
|
+
readonly fontSize: 14;
|
|
461
|
+
readonly fontWeight: 700;
|
|
462
462
|
};
|
|
463
463
|
};
|
|
464
464
|
};
|
|
@@ -472,11 +472,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
472
472
|
width: number;
|
|
473
473
|
};
|
|
474
474
|
container: {
|
|
475
|
-
flexBasis: number
|
|
476
|
-
};
|
|
475
|
+
flexBasis: number;
|
|
476
|
+
} | undefined;
|
|
477
477
|
text: {
|
|
478
|
-
fontSize:
|
|
479
|
-
fontWeight: 700;
|
|
478
|
+
readonly fontSize: 14;
|
|
479
|
+
readonly fontWeight: 700;
|
|
480
480
|
};
|
|
481
481
|
};
|
|
482
482
|
};
|
|
@@ -490,11 +490,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
490
490
|
width: number;
|
|
491
491
|
};
|
|
492
492
|
container: {
|
|
493
|
-
flexBasis: number
|
|
494
|
-
};
|
|
493
|
+
flexBasis: number;
|
|
494
|
+
} | undefined;
|
|
495
495
|
text: {
|
|
496
|
-
fontSize:
|
|
497
|
-
fontWeight: 700;
|
|
496
|
+
readonly fontSize: 14;
|
|
497
|
+
readonly fontWeight: 700;
|
|
498
498
|
};
|
|
499
499
|
};
|
|
500
500
|
};
|
|
@@ -508,11 +508,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
508
508
|
width: number;
|
|
509
509
|
};
|
|
510
510
|
container: {
|
|
511
|
-
flexBasis: number
|
|
512
|
-
};
|
|
511
|
+
flexBasis: number;
|
|
512
|
+
} | undefined;
|
|
513
513
|
text: {
|
|
514
|
-
fontSize:
|
|
515
|
-
fontWeight: 700;
|
|
514
|
+
readonly fontSize: 14;
|
|
515
|
+
readonly fontWeight: 700;
|
|
516
516
|
};
|
|
517
517
|
};
|
|
518
518
|
};
|
|
@@ -526,11 +526,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
526
526
|
width: number;
|
|
527
527
|
};
|
|
528
528
|
container: {
|
|
529
|
-
flexBasis: number
|
|
530
|
-
};
|
|
529
|
+
flexBasis: number;
|
|
530
|
+
} | undefined;
|
|
531
531
|
text: {
|
|
532
|
-
fontSize:
|
|
533
|
-
fontWeight: 700;
|
|
532
|
+
readonly fontSize: 14;
|
|
533
|
+
readonly fontWeight: 700;
|
|
534
534
|
};
|
|
535
535
|
};
|
|
536
536
|
};
|
|
@@ -544,11 +544,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
544
544
|
width: number;
|
|
545
545
|
};
|
|
546
546
|
container: {
|
|
547
|
-
flexBasis: number
|
|
548
|
-
};
|
|
547
|
+
flexBasis: number;
|
|
548
|
+
} | undefined;
|
|
549
549
|
text: {
|
|
550
|
-
fontSize:
|
|
551
|
-
fontWeight: 700;
|
|
550
|
+
readonly fontSize: 14;
|
|
551
|
+
readonly fontWeight: 700;
|
|
552
552
|
};
|
|
553
553
|
};
|
|
554
554
|
};
|
|
@@ -562,11 +562,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
562
562
|
width: number;
|
|
563
563
|
};
|
|
564
564
|
container: {
|
|
565
|
-
flexBasis: number
|
|
566
|
-
};
|
|
565
|
+
flexBasis: number;
|
|
566
|
+
} | undefined;
|
|
567
567
|
text: {
|
|
568
|
-
fontSize:
|
|
569
|
-
fontWeight: 700;
|
|
568
|
+
readonly fontSize: 14;
|
|
569
|
+
readonly fontWeight: 700;
|
|
570
570
|
};
|
|
571
571
|
};
|
|
572
572
|
};
|
|
@@ -580,11 +580,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
580
580
|
width: number;
|
|
581
581
|
};
|
|
582
582
|
container: {
|
|
583
|
-
flexBasis: number
|
|
584
|
-
};
|
|
583
|
+
flexBasis: number;
|
|
584
|
+
} | undefined;
|
|
585
585
|
text: {
|
|
586
|
-
fontSize:
|
|
587
|
-
fontWeight: 700;
|
|
586
|
+
readonly fontSize: 14;
|
|
587
|
+
readonly fontWeight: 700;
|
|
588
588
|
};
|
|
589
589
|
};
|
|
590
590
|
};
|
|
@@ -597,11 +597,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
597
597
|
width: number;
|
|
598
598
|
};
|
|
599
599
|
container: {
|
|
600
|
-
flexBasis: number
|
|
601
|
-
};
|
|
600
|
+
flexBasis: number;
|
|
601
|
+
} | undefined;
|
|
602
602
|
text: {
|
|
603
|
-
fontSize:
|
|
604
|
-
fontWeight: 700;
|
|
603
|
+
readonly fontSize: 14;
|
|
604
|
+
readonly fontWeight: 700;
|
|
605
605
|
};
|
|
606
606
|
};
|
|
607
607
|
};
|
|
@@ -614,11 +614,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
614
614
|
width: number;
|
|
615
615
|
};
|
|
616
616
|
container: {
|
|
617
|
-
flexBasis: number
|
|
618
|
-
};
|
|
617
|
+
flexBasis: number;
|
|
618
|
+
} | undefined;
|
|
619
619
|
text: {
|
|
620
|
-
fontSize:
|
|
621
|
-
fontWeight: 700;
|
|
620
|
+
readonly fontSize: 14;
|
|
621
|
+
readonly fontWeight: 700;
|
|
622
622
|
};
|
|
623
623
|
};
|
|
624
624
|
};
|
|
@@ -631,11 +631,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
631
631
|
width: number;
|
|
632
632
|
};
|
|
633
633
|
container: {
|
|
634
|
-
flexBasis: number
|
|
635
|
-
};
|
|
634
|
+
flexBasis: number;
|
|
635
|
+
} | undefined;
|
|
636
636
|
text: {
|
|
637
|
-
fontSize:
|
|
638
|
-
fontWeight: 700;
|
|
637
|
+
readonly fontSize: 14;
|
|
638
|
+
readonly fontWeight: 700;
|
|
639
639
|
};
|
|
640
640
|
};
|
|
641
641
|
};
|
|
@@ -648,11 +648,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
648
648
|
width: number;
|
|
649
649
|
};
|
|
650
650
|
container: {
|
|
651
|
-
flexBasis: number
|
|
652
|
-
};
|
|
651
|
+
flexBasis: number;
|
|
652
|
+
} | undefined;
|
|
653
653
|
text: {
|
|
654
|
-
fontSize:
|
|
655
|
-
fontWeight: 700;
|
|
654
|
+
readonly fontSize: 14;
|
|
655
|
+
readonly fontWeight: 700;
|
|
656
656
|
};
|
|
657
657
|
};
|
|
658
658
|
};
|
|
@@ -665,11 +665,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
665
665
|
width: number;
|
|
666
666
|
};
|
|
667
667
|
container: {
|
|
668
|
-
flexBasis: number
|
|
669
|
-
};
|
|
668
|
+
flexBasis: number;
|
|
669
|
+
} | undefined;
|
|
670
670
|
text: {
|
|
671
|
-
fontSize:
|
|
672
|
-
fontWeight: 700;
|
|
671
|
+
readonly fontSize: 14;
|
|
672
|
+
readonly fontWeight: 700;
|
|
673
673
|
};
|
|
674
674
|
};
|
|
675
675
|
};
|
|
@@ -683,11 +683,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
683
683
|
width: number;
|
|
684
684
|
};
|
|
685
685
|
container: {
|
|
686
|
-
flexBasis: number
|
|
687
|
-
};
|
|
686
|
+
flexBasis: number;
|
|
687
|
+
} | undefined;
|
|
688
688
|
text: {
|
|
689
|
-
fontSize:
|
|
690
|
-
fontWeight: 700;
|
|
689
|
+
readonly fontSize: 14;
|
|
690
|
+
readonly fontWeight: 700;
|
|
691
691
|
};
|
|
692
692
|
};
|
|
693
693
|
};
|
|
@@ -700,11 +700,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
700
700
|
width: number;
|
|
701
701
|
};
|
|
702
702
|
container: {
|
|
703
|
-
flexBasis: number
|
|
704
|
-
};
|
|
703
|
+
flexBasis: number;
|
|
704
|
+
} | undefined;
|
|
705
705
|
text: {
|
|
706
|
-
fontSize:
|
|
707
|
-
fontWeight: 700;
|
|
706
|
+
readonly fontSize: 14;
|
|
707
|
+
readonly fontWeight: 700;
|
|
708
708
|
};
|
|
709
709
|
};
|
|
710
710
|
};
|
|
@@ -717,11 +717,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
717
717
|
width: number;
|
|
718
718
|
};
|
|
719
719
|
container: {
|
|
720
|
-
flexBasis: number
|
|
721
|
-
};
|
|
720
|
+
flexBasis: number;
|
|
721
|
+
} | undefined;
|
|
722
722
|
text: {
|
|
723
|
-
fontSize:
|
|
724
|
-
fontWeight: 700;
|
|
723
|
+
readonly fontSize: 14;
|
|
724
|
+
readonly fontWeight: 700;
|
|
725
725
|
};
|
|
726
726
|
};
|
|
727
727
|
};
|
|
@@ -734,11 +734,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
734
734
|
width: number;
|
|
735
735
|
};
|
|
736
736
|
container: {
|
|
737
|
-
flexBasis: number
|
|
738
|
-
};
|
|
737
|
+
flexBasis: number;
|
|
738
|
+
} | undefined;
|
|
739
739
|
text: {
|
|
740
|
-
fontSize:
|
|
741
|
-
fontWeight: 700;
|
|
740
|
+
readonly fontSize: 14;
|
|
741
|
+
readonly fontWeight: 700;
|
|
742
742
|
};
|
|
743
743
|
};
|
|
744
744
|
};
|
|
@@ -751,11 +751,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
751
751
|
width: number;
|
|
752
752
|
};
|
|
753
753
|
container: {
|
|
754
|
-
flexBasis: number
|
|
755
|
-
};
|
|
754
|
+
flexBasis: number;
|
|
755
|
+
} | undefined;
|
|
756
756
|
text: {
|
|
757
|
-
fontSize:
|
|
758
|
-
fontWeight: 700;
|
|
757
|
+
readonly fontSize: 14;
|
|
758
|
+
readonly fontWeight: 700;
|
|
759
759
|
};
|
|
760
760
|
};
|
|
761
761
|
};
|
|
@@ -768,11 +768,11 @@ export declare const MATH_VOLUME_UNITS: {
|
|
|
768
768
|
width: number;
|
|
769
769
|
};
|
|
770
770
|
container: {
|
|
771
|
-
flexBasis: number
|
|
772
|
-
};
|
|
771
|
+
flexBasis: number;
|
|
772
|
+
} | undefined;
|
|
773
773
|
text: {
|
|
774
|
-
fontSize:
|
|
775
|
-
fontWeight: 700;
|
|
774
|
+
readonly fontSize: 14;
|
|
775
|
+
readonly fontWeight: 700;
|
|
776
776
|
};
|
|
777
777
|
};
|
|
778
778
|
};
|
|
@@ -787,11 +787,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
787
787
|
width: number;
|
|
788
788
|
};
|
|
789
789
|
container: {
|
|
790
|
-
flexBasis: number
|
|
791
|
-
};
|
|
790
|
+
flexBasis: number;
|
|
791
|
+
} | undefined;
|
|
792
792
|
text: {
|
|
793
|
-
fontSize:
|
|
794
|
-
fontWeight: 700;
|
|
793
|
+
readonly fontSize: 14;
|
|
794
|
+
readonly fontWeight: 700;
|
|
795
795
|
};
|
|
796
796
|
};
|
|
797
797
|
};
|
|
@@ -804,11 +804,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
804
804
|
width: number;
|
|
805
805
|
};
|
|
806
806
|
container: {
|
|
807
|
-
flexBasis: number
|
|
808
|
-
};
|
|
807
|
+
flexBasis: number;
|
|
808
|
+
} | undefined;
|
|
809
809
|
text: {
|
|
810
|
-
fontSize:
|
|
811
|
-
fontWeight: 700;
|
|
810
|
+
readonly fontSize: 14;
|
|
811
|
+
readonly fontWeight: 700;
|
|
812
812
|
};
|
|
813
813
|
};
|
|
814
814
|
};
|
|
@@ -821,11 +821,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
821
821
|
width: number;
|
|
822
822
|
};
|
|
823
823
|
container: {
|
|
824
|
-
flexBasis: number
|
|
825
|
-
};
|
|
824
|
+
flexBasis: number;
|
|
825
|
+
} | undefined;
|
|
826
826
|
text: {
|
|
827
|
-
fontSize:
|
|
828
|
-
fontWeight: 700;
|
|
827
|
+
readonly fontSize: 14;
|
|
828
|
+
readonly fontWeight: 700;
|
|
829
829
|
};
|
|
830
830
|
};
|
|
831
831
|
};
|
|
@@ -838,11 +838,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
838
838
|
width: number;
|
|
839
839
|
};
|
|
840
840
|
container: {
|
|
841
|
-
flexBasis: number
|
|
842
|
-
};
|
|
841
|
+
flexBasis: number;
|
|
842
|
+
} | undefined;
|
|
843
843
|
text: {
|
|
844
|
-
fontSize:
|
|
845
|
-
fontWeight: 700;
|
|
844
|
+
readonly fontSize: 14;
|
|
845
|
+
readonly fontWeight: 700;
|
|
846
846
|
};
|
|
847
847
|
};
|
|
848
848
|
};
|
|
@@ -855,11 +855,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
855
855
|
width: number;
|
|
856
856
|
};
|
|
857
857
|
container: {
|
|
858
|
-
flexBasis: number
|
|
859
|
-
};
|
|
858
|
+
flexBasis: number;
|
|
859
|
+
} | undefined;
|
|
860
860
|
text: {
|
|
861
|
-
fontSize:
|
|
862
|
-
fontWeight: 700;
|
|
861
|
+
readonly fontSize: 14;
|
|
862
|
+
readonly fontWeight: 700;
|
|
863
863
|
};
|
|
864
864
|
};
|
|
865
865
|
};
|
|
@@ -872,11 +872,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
872
872
|
width: number;
|
|
873
873
|
};
|
|
874
874
|
container: {
|
|
875
|
-
flexBasis: number
|
|
876
|
-
};
|
|
875
|
+
flexBasis: number;
|
|
876
|
+
} | undefined;
|
|
877
877
|
text: {
|
|
878
|
-
fontSize:
|
|
879
|
-
fontWeight: 700;
|
|
878
|
+
readonly fontSize: 14;
|
|
879
|
+
readonly fontWeight: 700;
|
|
880
880
|
};
|
|
881
881
|
};
|
|
882
882
|
};
|
|
@@ -889,11 +889,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
889
889
|
width: number;
|
|
890
890
|
};
|
|
891
891
|
container: {
|
|
892
|
-
flexBasis: number
|
|
893
|
-
};
|
|
892
|
+
flexBasis: number;
|
|
893
|
+
} | undefined;
|
|
894
894
|
text: {
|
|
895
|
-
fontSize:
|
|
896
|
-
fontWeight: 700;
|
|
895
|
+
readonly fontSize: 14;
|
|
896
|
+
readonly fontWeight: 700;
|
|
897
897
|
};
|
|
898
898
|
};
|
|
899
899
|
};
|
|
@@ -906,11 +906,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
906
906
|
width: number;
|
|
907
907
|
};
|
|
908
908
|
container: {
|
|
909
|
-
flexBasis: number
|
|
910
|
-
};
|
|
909
|
+
flexBasis: number;
|
|
910
|
+
} | undefined;
|
|
911
911
|
text: {
|
|
912
|
-
fontSize:
|
|
913
|
-
fontWeight: 700;
|
|
912
|
+
readonly fontSize: 14;
|
|
913
|
+
readonly fontWeight: 700;
|
|
914
914
|
};
|
|
915
915
|
};
|
|
916
916
|
};
|
|
@@ -923,11 +923,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
923
923
|
width: number;
|
|
924
924
|
};
|
|
925
925
|
container: {
|
|
926
|
-
flexBasis: number
|
|
927
|
-
};
|
|
926
|
+
flexBasis: number;
|
|
927
|
+
} | undefined;
|
|
928
928
|
text: {
|
|
929
|
-
fontSize:
|
|
930
|
-
fontWeight: 700;
|
|
929
|
+
readonly fontSize: 14;
|
|
930
|
+
readonly fontWeight: 700;
|
|
931
931
|
};
|
|
932
932
|
};
|
|
933
933
|
};
|
|
@@ -940,11 +940,11 @@ export declare const MATH_WEIGHT_UNITS: {
|
|
|
940
940
|
width: number;
|
|
941
941
|
};
|
|
942
942
|
container: {
|
|
943
|
-
flexBasis: number
|
|
944
|
-
};
|
|
943
|
+
flexBasis: number;
|
|
944
|
+
} | undefined;
|
|
945
945
|
text: {
|
|
946
|
-
fontSize:
|
|
947
|
-
fontWeight: 700;
|
|
946
|
+
readonly fontSize: 14;
|
|
947
|
+
readonly fontWeight: 700;
|
|
948
948
|
};
|
|
949
949
|
};
|
|
950
950
|
};
|