@khanacademy/math-input 4.3.0 → 5.0.0
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/CHANGELOG.md +25 -0
- package/dist/components/input/math-wrapper.d.ts +2 -2
- package/dist/components/input/math-wrapper.js.flow +2 -4
- package/dist/components/input/mathquill-helpers.d.ts +1 -1
- package/dist/components/input/mathquill-helpers.js.flow +2 -2
- package/dist/components/input/mathquill-types.d.ts +270 -10
- package/dist/components/input/mathquill-types.js.flow +312 -10
- package/dist/components/keypad/index.d.ts +11 -1
- package/dist/components/keypad/index.js.flow +14 -1
- package/dist/components/keypad/shared-keys.d.ts +4 -0
- package/dist/components/keypad/shared-keys.js.flow +4 -0
- package/dist/components/tabbar/tabbar.d.ts +1 -0
- package/dist/components/tabbar/tabbar.js.flow +1 -0
- package/dist/components/tabbar/types.d.ts +1 -1
- package/dist/components/tabbar/types.js.flow +6 -1
- package/dist/es/index.js +607 -409
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +607 -409
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
- package/src/components/input/__tests__/mathquill-helpers.test.ts +105 -0
- package/src/components/input/math-input.tsx +1 -1
- package/src/components/input/math-wrapper.ts +6 -10
- package/src/components/input/mathquill-helpers.ts +8 -1
- package/src/components/input/mathquill-types.ts +308 -40
- package/src/components/key-handlers/__tests__/handle-jump-out.test.ts +94 -0
- package/src/components/key-handlers/handle-jump-out.ts +3 -2
- package/src/components/keypad/__tests__/keypad-v2-mathquill.test.tsx +42 -39
- package/src/components/keypad/__tests__/keypad.test.tsx +42 -0
- package/src/components/keypad/button-assets.tsx +540 -316
- package/src/components/keypad/index.tsx +25 -2
- package/src/components/keypad/keypad-mathquill.stories.tsx +20 -1
- package/src/components/keypad/keypad-pages/extras-page.tsx +1 -1
- package/src/components/keypad/keypad-pages/numbers-page.tsx +25 -16
- package/src/components/keypad/keypad.stories.tsx +11 -0
- package/src/components/keypad/shared-keys.tsx +56 -8
- package/src/components/tabbar/__tests__/tabbar.test.tsx +54 -14
- package/src/components/tabbar/icons.tsx +48 -8
- package/src/components/tabbar/item.tsx +2 -0
- package/src/components/tabbar/tabbar.tsx +32 -12
- package/src/components/tabbar/types.ts +6 -1
- package/tsconfig-build.json +3 -1
- package/tsconfig-build.tsbuildinfo +1 -1
package/dist/index.js
CHANGED
|
@@ -447,6 +447,12 @@ function createMathField(container, configCallback) {
|
|
|
447
447
|
return mathQuillInstance.MathField(container, config);
|
|
448
448
|
}
|
|
449
449
|
|
|
450
|
+
/**
|
|
451
|
+
* Editable math fields have all of the above methods in addition to
|
|
452
|
+
* the ones listed here.
|
|
453
|
+
* https://docs.mathquill.com/en/latest/Api_Methods/
|
|
454
|
+
*/
|
|
455
|
+
|
|
450
456
|
let MathFieldActionType = /*#__PURE__*/function (MathFieldActionType) {
|
|
451
457
|
MathFieldActionType["WRITE"] = "write";
|
|
452
458
|
MathFieldActionType["CMD"] = "cmd";
|
|
@@ -455,9 +461,11 @@ let MathFieldActionType = /*#__PURE__*/function (MathFieldActionType) {
|
|
|
455
461
|
return MathFieldActionType;
|
|
456
462
|
}({});
|
|
457
463
|
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
464
|
+
/**
|
|
465
|
+
* The MathQuill MathField Cursor
|
|
466
|
+
* it's not part of the public API for MathQuill,
|
|
467
|
+
* we reach into the internals to get it
|
|
468
|
+
*/
|
|
461
469
|
|
|
462
470
|
const Numerals = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
|
|
463
471
|
const GreekLetters = ["\\theta", "\\pi"];
|
|
@@ -625,8 +633,13 @@ function maybeFindCommand(initialNode) {
|
|
|
625
633
|
function maybeFindCommandBeforeParens(leftParenNode) {
|
|
626
634
|
return maybeFindCommand(leftParenNode[mathQuillInstance.L]);
|
|
627
635
|
}
|
|
628
|
-
function
|
|
636
|
+
function getCursorContext(mathField) {
|
|
637
|
+
if (!mathField) {
|
|
638
|
+
return CursorContext.NONE;
|
|
639
|
+
}
|
|
640
|
+
|
|
629
641
|
// First, try to find any fraction to the right, unimpeded.
|
|
642
|
+
const cursor = getCursor(mathField);
|
|
630
643
|
let visitor = cursor;
|
|
631
644
|
while (visitor[mathQuillInstance.R] !== MathFieldActionType.MQ_END) {
|
|
632
645
|
if (isFraction(visitor[mathQuillInstance.R])) {
|
|
@@ -1048,7 +1061,7 @@ const KeysForJumpContext = {
|
|
|
1048
1061
|
*/
|
|
1049
1062
|
function handleJumpOut(mathField, key) {
|
|
1050
1063
|
const cursor = getCursor(mathField);
|
|
1051
|
-
const context =
|
|
1064
|
+
const context = getCursorContext(mathField);
|
|
1052
1065
|
|
|
1053
1066
|
// Validate that the current cursor context matches the key's intent.
|
|
1054
1067
|
if (KeysForJumpContext[context] !== key) {
|
|
@@ -1064,6 +1077,7 @@ function handleJumpOut(mathField, key) {
|
|
|
1064
1077
|
// Insert at the end of the parentheses, and then navigate right
|
|
1065
1078
|
// once more to get 'beyond' the parentheses.
|
|
1066
1079
|
cursor.insRightOf(cursor.parent.parent);
|
|
1080
|
+
mathField.keystroke("Right");
|
|
1067
1081
|
break;
|
|
1068
1082
|
case CursorContext.BEFORE_FRACTION:
|
|
1069
1083
|
// Find the nearest fraction to the right of the cursor.
|
|
@@ -1386,7 +1400,7 @@ class MathWrapper {
|
|
|
1386
1400
|
// on the MathField, as that handler isn't triggered on navigation
|
|
1387
1401
|
// events.
|
|
1388
1402
|
return {
|
|
1389
|
-
context: this.contextForCursor(
|
|
1403
|
+
context: this.contextForCursor()
|
|
1390
1404
|
};
|
|
1391
1405
|
}
|
|
1392
1406
|
|
|
@@ -1427,7 +1441,7 @@ class MathWrapper {
|
|
|
1427
1441
|
}
|
|
1428
1442
|
if (this.callbacks.onCursorMove) {
|
|
1429
1443
|
this.callbacks.onCursorMove({
|
|
1430
|
-
context: this.contextForCursor(
|
|
1444
|
+
context: this.contextForCursor()
|
|
1431
1445
|
});
|
|
1432
1446
|
}
|
|
1433
1447
|
}
|
|
@@ -1441,8 +1455,8 @@ class MathWrapper {
|
|
|
1441
1455
|
|
|
1442
1456
|
// note(Matthew): extracted this logic to keep this file focused,
|
|
1443
1457
|
// but it's part of the public MathWrapper API
|
|
1444
|
-
contextForCursor(
|
|
1445
|
-
return
|
|
1458
|
+
contextForCursor() {
|
|
1459
|
+
return getCursorContext(this.mathField);
|
|
1446
1460
|
}
|
|
1447
1461
|
getSelection() {
|
|
1448
1462
|
return this.getCursor().selection;
|
|
@@ -1797,7 +1811,7 @@ class MathInput extends React__namespace.Component {
|
|
|
1797
1811
|
}
|
|
1798
1812
|
// In that event, we need to update the cursor context ourselves.
|
|
1799
1813
|
this.props.keypadElement && this.props.keypadElement.setCursor({
|
|
1800
|
-
context: this.mathField.contextForCursor(
|
|
1814
|
+
context: this.mathField.contextForCursor()
|
|
1801
1815
|
});
|
|
1802
1816
|
});
|
|
1803
1817
|
_defineProperty(this, "handleTouchStart", e => {
|
|
@@ -4906,20 +4920,22 @@ const IconAsset = function (_ref) {
|
|
|
4906
4920
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
4907
4921
|
fillRule: "evenodd",
|
|
4908
4922
|
clipRule: "evenodd",
|
|
4909
|
-
d: "M7.57584 7.
|
|
4923
|
+
d: "M7.57584 7.09442c.35139-.16458.76626-.11103 1.06434.13737L26.6402 22.2318c.3234.2695.4434.7128.3001 1.1086C26.7969 23.7363 26.421 24 26 24H8c-.55228 0-1-.4477-1-1V8.00001c0-.38802.22446-.74101.57584-.90559zM9 10.1351V17h4c.5523 0 1 .4477 1 1v4h9.238L9 10.1351zM12 22v-3H9v3h3z",
|
|
4910
4924
|
fill: tintColor
|
|
4911
4925
|
}));
|
|
4912
4926
|
}
|
|
4913
4927
|
case "Operators":
|
|
4914
4928
|
{
|
|
4915
4929
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
4930
|
+
width: "32",
|
|
4931
|
+
height: "32",
|
|
4916
4932
|
viewBox: "0 0 32 32",
|
|
4917
4933
|
fill: "none",
|
|
4918
4934
|
xmlns: "http://www.w3.org/2000/svg"
|
|
4919
4935
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
4920
4936
|
fillRule: "evenodd",
|
|
4921
4937
|
clipRule: "evenodd",
|
|
4922
|
-
d: "M29
|
|
4938
|
+
d: "M29 6h1v1h-1V6zm-2 0c0-1.10457.8954-2 2-2h1c1.1046 0 2 .89543 2 2v1c0 1.10457-.8954 2-2 2h-1c-1.1046 0-2-.89543-2-2V6zm-15.8682.50386C11.3098 6.19229 11.6411 6 12 6h2c.5523 0 1 .44772 1 1s-.4477 1-1 1h-1.4197l-3.71206 6.4961c-.18297.3202-.52733.5137-.89599.5035-.36865-.0102-.70175-.2225-.86668-.5524l-2-4c-.24699-.49396-.04676-1.09464.44722-1.34163.49397-.24699 1.09465-.04676 1.34164.44722L8.0588 11.8815l3.073-5.37764zM7.70676 16.2925c.39072.3904.39103 1.0235.00069 1.4143-.42202.4224-.86362 1.0235-1.19588 1.659C6.17039 20.0184 6 20.601 6 21c0 .3789.17235.9897.51638 1.6649.33677.661.7685 1.2472 1.15148 1.5908.41106.3689.44528 1.0011.07643 1.4122-.36885.411-1.00109.4452-1.41215.0764-.61604-.5528-1.18431-1.3599-1.5978-2.1715C4.32813 22.7755 3.99999 21.8345 4 21c.00001-.8609.3301-1.7783.73917-2.5608.41798-.7995.97637-1.5684 1.55338-2.146.39033-.3907 1.0235-.391 1.41421-.0007zm3.58644 0c.3908-.3903 1.0239-.39 1.4143.0007.577.5776 1.1353 1.3465 1.5533 2.146C14.6699 19.2217 15 20.1391 15 21c0 .8345-.3281 1.7755-.7343 2.5728-.4135.8116-.9818 1.6187-1.5978 2.1715-.4111.3688-1.0433.3346-1.4122-.0764-.3688-.4111-.3346-1.0433.0764-1.4122.383-.3436.8148-.9298 1.1515-1.5908.344-.6752.5164-1.286.5164-1.6649 0-.399-.1704-.9816-.5116-1.6342-.3322-.6355-.7738-1.2366-1.1959-1.659-.3903-.3908-.39-1.0239.0007-1.4143zm16.6431 1.3564c.1939.5171-.0681 1.0935-.5852 1.2874L21.848 21l5.5031 2.0637c.5171.1939.7791.7703.5852 1.2874-.1939.5171-.7703.7791-1.2874.5852l-8-3C18.2586 21.79 18 21.4168 18 21c0-.4168.2586-.79.6489-.9363l8-3c.5171-.1939 1.0935.0681 1.2874.5852zM21 8v5h3V8h-3zm-1-2c-.5523 0-1 .44772-1 1v7c0 .5523.4477 1 1 1h5c.5523 0 1-.4477 1-1V7c0-.55228-.4477-1-1-1h-5z",
|
|
4923
4939
|
fill: tintColor
|
|
4924
4940
|
}));
|
|
4925
4941
|
}
|
|
@@ -4932,7 +4948,7 @@ const IconAsset = function (_ref) {
|
|
|
4932
4948
|
fill: "none",
|
|
4933
4949
|
xmlns: "http://www.w3.org/2000/svg"
|
|
4934
4950
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
4935
|
-
d: "M10.4123 19.
|
|
4951
|
+
d: "M10.4123 19.5794v1.421H4.71434v-1.421h2.016v-5.558c0-.1213.00233-.245.007-.371.00466-.126.01166-.2543.021-.385l-1.33 1.106c-.09334.07-.18434.1144-.273.133-.08867.0187-.17267.021-.252.007-.07934-.0186-.14934-.0466-.21-.084-.06067-.042-.10734-.084-.14-.126l-.609-.819 3.122-2.646h1.589v8.743h1.75696zm8.3801-.35c.21 0 .3734.0584.49.175.1214.1167.182.2707.182.462v1.134h-7.042v-.63c0-.1213.0257-.252.077-.392.0514-.1446.1377-.2753.259-.392l3.01-3.017c.2567-.2566.483-.5016.679-.735.196-.238.3594-.469.49-.693.1307-.2286.2287-.4596.294-.693.0654-.2333.098-.4783.098-.735 0-.4526-.1166-.7956-.35-1.029-.2333-.238-.5623-.357-.987-.357-.1866 0-.3593.028-.518.084-.154.0514-.294.1237-.42.217-.1213.0934-.2263.203-.315.329-.0886.126-.154.2637-.196.413-.084.2334-.1983.3897-.343.469-.14.0747-.3406.091-.602.049l-1.022-.182c.0747-.4946.2147-.9286.42-1.302.2054-.3733.462-.6836.77-.931.308-.2473.6604-.4316 1.057-.553.3967-.126.8237-.189 1.281-.189.4807 0 .917.0724 1.309.217.3967.14.735.3384 1.015.595.28.252.497.5577.651.917.154.3594.231.756.231 1.19 0 .3734-.0536.7187-.161 1.036-.1073.3174-.2543.6207-.441.91-.182.2847-.3943.5624-.637.833-.2426.2707-.4993.5437-.77.819l-2.156 2.205c.238-.07.4737-.1236.707-.161.2334-.042.4527-.063.658-.063h2.282zm2.6611-5.523c.0747-.4946.2147-.9286.42-1.302.2054-.3733.462-.6836.77-.931.308-.2473.658-.4316 1.05-.553.3967-.126.8237-.189 1.281-.189.4854 0 .9194.07 1.302.21.3874.1354.714.322.98.56.266.238.469.5157.609.833.1447.3174.217.658.217 1.022 0 .322-.035.6067-.105.854-.0653.2427-.1656.455-.301.637-.1306.182-.294.336-.49.462-.1913.126-.413.231-.665.315 1.1667.3827 1.75 1.1597 1.75 2.331 0 .518-.0956.9754-.287 1.372-.1913.392-.448.721-.77.987s-.6976.4667-1.127.602c-.4246.1307-.8703.196-1.337.196-.4946 0-.931-.056-1.309-.168-.378-.112-.7116-.28-1.001-.504-.2846-.224-.5296-.504-.735-.84-.2053-.3406-.385-.7373-.539-1.19l.854-.35c.224-.0933.4317-.119.623-.077.196.042.336.1447.42.308.0934.1774.1914.3407.294.49.1074.1494.2264.28.357.392.1307.1074.2777.1914.441.252.168.0607.3594.091.574.091.2707 0 .5064-.0443.707-.133.2007-.0886.3687-.203.504-.343.1354-.1446.2357-.3056.301-.483.07-.182.105-.3616.105-.539 0-.2333-.021-.4433-.063-.63-.042-.1913-.14-.3523-.294-.483-.1493-.1353-.3733-.238-.672-.308-.294-.0746-.6953-.112-1.204-.112v-1.358c.4247 0 .7724-.035 1.043-.105.2707-.07.483-.168.637-.294.154-.126.259-.2776.315-.455.0607-.1773.091-.371.091-.581 0-.4433-.1166-.7816-.35-1.015-.2286-.2333-.5553-.35-.98-.35-.1866 0-.3593.028-.518.084-.154.0514-.294.1237-.42.217-.1213.0934-.2263.203-.315.329-.0886.126-.154.2637-.196.413-.0886.2334-.203.3897-.343.469-.14.0747-.343.091-.609.049l-1.015-.182z",
|
|
4936
4952
|
fill: tintColor
|
|
4937
4953
|
}));
|
|
4938
4954
|
}
|
|
@@ -4940,12 +4956,41 @@ const IconAsset = function (_ref) {
|
|
|
4940
4956
|
{
|
|
4941
4957
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
4942
4958
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4943
|
-
width: "
|
|
4944
|
-
height: "
|
|
4945
|
-
fill: "
|
|
4946
|
-
viewBox: "0 0
|
|
4959
|
+
width: "32",
|
|
4960
|
+
height: "32",
|
|
4961
|
+
fill: "none",
|
|
4962
|
+
viewBox: "0 0 32 32"
|
|
4963
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
4964
|
+
clipPath: "url(#a)"
|
|
4965
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
4966
|
+
fill: tintColor,
|
|
4967
|
+
fillRule: "evenodd",
|
|
4968
|
+
d: "M6.127 10.454c.224-.032.403-.05.53-.05.591 0 1.137.153 1.63.459.398.239.713.529.94.872l.188-.248.005-.007.006-.006c.619-.703 1.347-1.07 2.178-1.07.691 0 1.269.204 1.71.626.454.403.686.91.686 1.51 0 .533-.156.994-.476 1.37-.312.383-.738.574-1.254.574-.345 0-.643-.101-.878-.317a1.1 1.1 0 0 1-.353-.843c0-.405.11-.76.342-1.051.153-.193.354-.352.596-.479a1.416 1.416 0 0 0-.492-.07c-.195 0-.316.016-.38.035-.53.226-.938.694-1.208 1.445l-.001.003c-.02.05-.085.289-.202.74-.115.443-.275 1.077-.481 1.901-.414 1.641-.633 2.547-.662 2.74l-.002.01a3.423 3.423 0 0 0-.067.673c0 .337.097.581.272.756.176.177.413.272.733.272.6 0 1.15-.247 1.657-.768.518-.549.864-1.146 1.044-1.791l.001-.004a1.2 1.2 0 0 1 .088-.224.368.368 0 0 1 .161-.164.564.564 0 0 1 .198-.056 2.19 2.19 0 0 1 .276-.014c.159 0 .305.016.42.064.059.025.12.063.167.122.05.063.073.137.073.213 0 .023-.004.048-.005.057a12.52 12.52 0 0 1-.046.245l-.004.015c-.281 1.026-.86 1.917-1.73 2.67l-.007.007c-.776.611-1.605.925-2.484.925-1.08 0-1.93-.45-2.53-1.33-.453.605-1.015 1.024-1.685 1.248l-.01.003-.011.002a3.23 3.23 0 0 1-.664.053c-.974 0-1.703-.35-2.13-1.078A2.05 2.05 0 0 1 2 19.437c0-.52.158-.975.478-1.349.326-.38.749-.572 1.252-.572.372 0 .69.091.913.31.224.218.318.531.318.898 0 .327-.078.621-.241.874a1.706 1.706 0 0 1-.707.597l-.018.009c.158.063.331.095.52.095.467 0 .902-.285 1.295-.966l.002-.005c.071-.115.185-.417.341-.938.154-.51.341-1.209.563-2.096v-.002c.095-.364.198-.767.31-1.21.11-.444.188-.78.235-1.014l.002-.013c.058-.216.098-.36.119-.425.077-.42.113-.709.113-.877 0-.342-.092-.588-.254-.762-.159-.171-.384-.267-.704-.267-.652 0-1.217.251-1.704.768l-.002.002A4.215 4.215 0 0 0 3.79 14.28a1.084 1.084 0 0 1-.065.207.41.41 0 0 1-.14.176l-.01.007-.012.006a.35.35 0 0 1-.104.03 1.16 1.16 0 0 1-.095.01 5.04 5.04 0 0 1-.275.006H2.67l-.061-.061c-.109-.11-.204-.247-.204-.41v-.015l.003-.015c.07-.472.335-1.05.768-1.723l.001-.002c.771-1.165 1.754-1.857 2.949-2.042h.002Z",
|
|
4969
|
+
clipRule: "evenodd"
|
|
4970
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
4971
|
+
fill: tintColor,
|
|
4972
|
+
d: "M21.084 10.284c.932-.008 2.301-.013 4.107-.013 1.325 0 2.327.003 3.007.007a75.812 75.812 0 0 1 .99.013c.025 0 .047.002.065.003h.002c.01 0 .04.003.067.01l.01.002.011.004c.201.07.37.183.488.347a.966.966 0 0 1 .169.574c0 .3-.078.568-.248.79-.168.221-.411.377-.708.479h-.002a1.01 1.01 0 0 1-.221.034 8.213 8.213 0 0 1-.35.016c-.29.008-.696.012-1.219.012h-1.39l-.038.223v.001c-.198 1.185-.295 2.156-.295 2.916 0 1.446.251 2.746.75 3.905l.004.007c.059.153.105.284.137.393.03.103.053.205.053.29 0 .359-.16.68-.44.961-.278.296-.63.445-1.041.445-.255 0-.492-.03-.654-.139l-.009-.006-.008-.006c-.126-.101-.236-.274-.338-.477l-.006-.012c-.331-.768-.49-1.722-.49-2.852 0-.595.007-1.002.025-1.212v-.005c.118-1.157.377-2.551.776-4.18v-.002c.024-.096.045-.18.061-.25h-1.948c-.008.038-.02.086-.034.143l-.002.007a35.14 35.14 0 0 0-.146.537c-.05.232-.1.448-.15.648v.001a230.673 230.673 0 0 1-1.312 4.936 41.285 41.285 0 0 1-.411 1.384c-.104.322-.19.557-.256.681-.115.262-.28.473-.5.617-.225.146-.49.212-.783.212-.449 0-.807-.173-1.006-.549l-.006-.011-.005-.012a1.37 1.37 0 0 1-.067-.486v-.326l.346-.745c1.24-2.61 2.136-4.858 2.695-6.747l.002-.008.094-.281h-.463c-.662 0-1.105.025-1.346.07-.198.04-.47.173-.824.43l-.007.005-.007.005c-.366.228-.69.542-.97.947-.044.069-.085.13-.125.18a.651.651 0 0 1-.141.136l-.027.017-.03.01a.8.8 0 0 1-.19.03c-.07.005-.156.008-.258.008-.17 0-.335-.021-.465-.09a.437.437 0 0 1-.216-.546c.014-.042.034-.086.057-.132.047-.093.113-.208.198-.343l.003-.005c1.147-1.745 2.311-2.774 3.508-2.96a2.345 2.345 0 0 1 .158-.015 60.295 60.295 0 0 1 1.369-.026Z"
|
|
4973
|
+
})), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
4974
|
+
id: "a"
|
|
4975
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
4976
|
+
fill: "#fff",
|
|
4977
|
+
d: "M0 0h28v11.457H0z",
|
|
4978
|
+
transform: "translate(2 10.271)"
|
|
4979
|
+
}))));
|
|
4980
|
+
}
|
|
4981
|
+
case "Dismiss":
|
|
4982
|
+
{
|
|
4983
|
+
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
4984
|
+
width: "44",
|
|
4985
|
+
height: "44",
|
|
4986
|
+
viewBox: "0 0 44 44",
|
|
4987
|
+
fill: "none",
|
|
4988
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4947
4989
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
4948
|
-
|
|
4990
|
+
fillRule: "evenodd",
|
|
4991
|
+
clipRule: "evenodd",
|
|
4992
|
+
d: "M28.7071 15.2929C28.3166 14.9024 27.6834 14.9024 27.2929 15.2929L22 20.5858L16.7071 15.2929C16.3166 14.9024 15.6834 14.9024 15.2929 15.2929C14.9024 15.6834 14.9024 16.3166 15.2929 16.7071L20.5858 22L15.2929 27.2929C14.9024 27.6834 14.9024 28.3166 15.2929 28.7071C15.6834 29.0976 16.3166 29.0976 16.7071 28.7071L22 23.4142L27.2929 28.7071C27.6834 29.0976 28.3166 29.0976 28.7071 28.7071C29.0976 28.3166 29.0976 27.6834 28.7071 27.2929L23.4142 22L28.7071 16.7071C29.0976 16.3166 29.0976 15.6834 28.7071 15.2929Z",
|
|
4993
|
+
fill: tintColor
|
|
4949
4994
|
}));
|
|
4950
4995
|
}
|
|
4951
4996
|
default:
|
|
@@ -5021,7 +5066,9 @@ class TabbarItem extends React__namespace.Component {
|
|
|
5021
5066
|
return /*#__PURE__*/React__namespace.createElement(Clickable__default["default"], {
|
|
5022
5067
|
onClick: onClick,
|
|
5023
5068
|
disabled: itemState === "disabled",
|
|
5024
|
-
"aria-label": itemType
|
|
5069
|
+
"aria-label": itemType,
|
|
5070
|
+
"aria-selected": itemState === "active",
|
|
5071
|
+
role: "tab"
|
|
5025
5072
|
}, _ref => {
|
|
5026
5073
|
let {
|
|
5027
5074
|
hovered,
|
|
@@ -5049,19 +5096,28 @@ const styles$7 = aphrodite.StyleSheet.create({
|
|
|
5049
5096
|
tabbar: {
|
|
5050
5097
|
display: "flex",
|
|
5051
5098
|
flexDirection: "row",
|
|
5099
|
+
justifyContent: "space-between",
|
|
5052
5100
|
paddingTop: 2,
|
|
5053
5101
|
paddingBottom: 2
|
|
5102
|
+
},
|
|
5103
|
+
pages: {
|
|
5104
|
+
display: "flex",
|
|
5105
|
+
flexDirection: "row"
|
|
5054
5106
|
}
|
|
5055
5107
|
});
|
|
5056
5108
|
function Tabbar(props) {
|
|
5057
5109
|
const {
|
|
5058
5110
|
items,
|
|
5111
|
+
onClickClose,
|
|
5059
5112
|
selectedItem,
|
|
5060
5113
|
onSelectItem,
|
|
5061
5114
|
style
|
|
5062
5115
|
} = props;
|
|
5063
5116
|
return /*#__PURE__*/React__namespace.createElement(wonderBlocksCore.View, {
|
|
5064
|
-
style: [styles$7.tabbar, style]
|
|
5117
|
+
style: [styles$7.tabbar, style],
|
|
5118
|
+
role: "tablist"
|
|
5119
|
+
}, /*#__PURE__*/React__namespace.createElement(wonderBlocksCore.View, {
|
|
5120
|
+
style: [styles$7.pages]
|
|
5065
5121
|
}, items.map(item => /*#__PURE__*/React__namespace.createElement(TabbarItem, {
|
|
5066
5122
|
key: "tabbar-item-".concat(item),
|
|
5067
5123
|
itemState: item === selectedItem ? "active" : "inactive",
|
|
@@ -5069,6 +5125,10 @@ function Tabbar(props) {
|
|
|
5069
5125
|
onClick: () => {
|
|
5070
5126
|
onSelectItem(item);
|
|
5071
5127
|
}
|
|
5128
|
+
}))), /*#__PURE__*/React__namespace.createElement(wonderBlocksCore.View, null, onClickClose && /*#__PURE__*/React__namespace.createElement(TabbarItem, {
|
|
5129
|
+
itemState: "inactive",
|
|
5130
|
+
itemType: "Dismiss",
|
|
5131
|
+
onClick: onClickClose
|
|
5072
5132
|
})));
|
|
5073
5133
|
}
|
|
5074
5134
|
|
|
@@ -7548,7 +7608,7 @@ function ButtonAsset(_ref) {
|
|
|
7548
7608
|
fill: "none",
|
|
7549
7609
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7550
7610
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7551
|
-
d: "M26.
|
|
7611
|
+
d: "M26.299 20.3598c0 1.512-.164 2.82-.492 3.924-.32 1.104-.764 2.02-1.332 2.748-.568.728-1.236 1.268-2.004 1.62-.768.352-1.596.528-2.484.528-.888 0-1.716-.176-2.484-.528-.768-.352-1.436-.892-2.004-1.62-.56-.728-1-1.644-1.32-2.748-.32-1.104-.48-2.412-.48-3.924s.16-2.82.48-3.924c.32-1.112.76-2.028 1.32-2.748.568-.728 1.236-1.268 2.004-1.62.768-.36 1.596-.54 2.484-.54.888 0 1.716.18 2.484.54.768.352 1.436.892 2.004 1.62.568.72 1.012 1.636 1.332 2.748.328 1.104.492 2.412.492 3.924zm-2.664 0c0-1.28-.104-2.344-.312-3.192-.2-.856-.468-1.54-.804-2.052s-.724-.876-1.164-1.092c-.44-.216-.896-.324-1.368-.324-.48 0-.94.108-1.38.324-.432.216-.816.58-1.152 1.092-.336.512-.604 1.196-.804 2.052-.2.848-.3 1.912-.3 3.192 0 1.28.1 2.348.3 3.204.2.848.468 1.528.804 2.04s.72.876 1.152 1.092c.44.216.9.324 1.38.324.472 0 .928-.108 1.368-.324.44-.216.828-.58 1.164-1.092.336-.512.604-1.192.804-2.04.208-.856.312-1.924.312-3.204z",
|
|
7552
7612
|
fill: "#21242C"
|
|
7553
7613
|
}));
|
|
7554
7614
|
case "NUM_1":
|
|
@@ -7559,7 +7619,7 @@ function ButtonAsset(_ref) {
|
|
|
7559
7619
|
fill: "none",
|
|
7560
7620
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7561
7621
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7562
|
-
d: "M25.
|
|
7622
|
+
d: "M25.363 27.0441v1.956h-9.42v-1.956h3.6v-10.824c0-.384.012-.776.036-1.176l-2.772 2.34c-.12.096-.244.16-.372.192-.12.024-.236.024-.348 0-.104-.024-.2-.06-.288-.108-.08-.056-.144-.116-.192-.18l-.804-1.128 5.208-4.476h2.1v15.36h3.252z",
|
|
7563
7623
|
fill: "#21242C"
|
|
7564
7624
|
}));
|
|
7565
7625
|
case "NUM_2":
|
|
@@ -7570,7 +7630,7 @@ function ButtonAsset(_ref) {
|
|
|
7570
7630
|
fill: "none",
|
|
7571
7631
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7572
7632
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7573
|
-
d: "M24.8471 26.
|
|
7633
|
+
d: "M24.8471 26.5638c.28 0 .5.084.66.252.16.16.24.368.24.624v1.56h-11.688v-.876c0-.176.036-.36.108-.552.072-.192.188-.368.348-.528l5.376-5.388c.456-.456.86-.892 1.212-1.308.36-.416.664-.832.912-1.248.256-.416.448-.836.576-1.26.136-.432.204-.884.204-1.356 0-.456-.072-.856-.216-1.2-.136-.352-.328-.64-.576-.864-.24-.232-.532-.404-.876-.516-.336-.12-.708-.18-1.116-.18-.392 0-.756.056-1.092.168-.328.112-.624.268-.888.468-.256.2-.472.44-.648.72-.168.272-.292.572-.372.9-.12.328-.276.548-.468.66-.184.112-.456.136-.816.072l-1.356-.24c.12-.816.344-1.532.672-2.148.336-.616.756-1.128 1.26-1.536.504-.416 1.08-.728 1.728-.936.656-.216 1.364-.324 2.124-.324.768 0 1.472.116 2.112.348.648.224 1.204.548 1.668.972.472.416.84.924 1.104 1.524.264.6.396 1.276.396 2.028 0 .64-.096 1.232-.288 1.776-.184.544-.436 1.064-.756 1.56s-.696.98-1.128 1.452c-.424.464-.872.936-1.344 1.416l-4.176 4.272c.344-.096.688-.172 1.032-.228.352-.056.684-.084.996-.084h5.076z",
|
|
7574
7634
|
fill: "#21242C"
|
|
7575
7635
|
}));
|
|
7576
7636
|
case "NUM_3":
|
|
@@ -7581,7 +7641,7 @@ function ButtonAsset(_ref) {
|
|
|
7581
7641
|
fill: "none",
|
|
7582
7642
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7583
7643
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7584
|
-
d: "M14.
|
|
7644
|
+
d: "M14.4552 16.4718c.12-.816.344-1.532.672-2.148.336-.616.756-1.128 1.26-1.536.504-.416 1.08-.728 1.728-.936.656-.216 1.364-.324 2.124-.324.768 0 1.464.112 2.088.336.632.216 1.172.52 1.62.912.456.392.804.86 1.044 1.404.248.544.372 1.14.372 1.788 0 .552-.068 1.04-.204 1.464-.128.416-.316.784-.564 1.104-.24.32-.536.588-.888.804-.352.216-.748.396-1.188.54 1.072.312 1.876.812 2.412 1.5.536.68.804 1.536.804 2.568 0 .832-.156 1.572-.468 2.22-.312.648-.736 1.196-1.272 1.644-.528.448-1.148.792-1.86 1.032-.704.232-1.452.348-2.244.348-.888 0-1.656-.104-2.304-.312-.648-.216-1.208-.52-1.68-.912-.464-.4-.852-.88-1.164-1.44-.312-.56-.576-1.188-.792-1.884l1.116-.468c.296-.128.576-.164.84-.108.272.056.468.204.588.444.128.256.272.532.432.828.16.288.364.556.612.804.256.24.568.444.936.612.376.16.836.24 1.38.24.552 0 1.032-.088 1.44-.264.416-.184.76-.416 1.032-.696.28-.288.488-.608.624-.96s.204-.7.204-1.044c0-.432-.052-.828-.156-1.188-.104-.368-.308-.68-.612-.936-.296-.256-.72-.456-1.272-.6-.544-.152-1.26-.228-2.148-.228v-1.86c.728-.008 1.34-.08 1.836-.216.504-.144.904-.336 1.2-.576.304-.248.52-.544.648-.888.136-.344.204-.72.204-1.128 0-.44-.068-.828-.204-1.164-.136-.336-.328-.616-.576-.84-.24-.232-.528-.404-.864-.516-.336-.112-.708-.168-1.116-.168-.392 0-.756.056-1.092.168-.328.112-.624.268-.888.468-.256.2-.472.44-.648.72-.176.272-.304.572-.384.9-.112.328-.264.548-.456.66-.184.112-.456.136-.816.072l-1.356-.24z",
|
|
7585
7645
|
fill: "#21242C"
|
|
7586
7646
|
}));
|
|
7587
7647
|
case "NUM_4":
|
|
@@ -7592,7 +7652,7 @@ function ButtonAsset(_ref) {
|
|
|
7592
7652
|
fill: "none",
|
|
7593
7653
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7594
7654
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7595
|
-
d: "M21.
|
|
7655
|
+
d: "M21.691 22.616v-6.312c0-.504.036-1.056.108-1.656l-5.808 7.968h5.7zm4.632 0v1.488c0 .144-.048.268-.144.372-.088.104-.224.156-.408.156h-1.836V29h-2.244v-4.368h-7.476c-.184 0-.344-.052-.48-.156-.128-.112-.212-.248-.252-.408l-.264-1.32 8.292-11.04h2.424v10.908h2.388z",
|
|
7596
7656
|
fill: "#21242C"
|
|
7597
7657
|
}));
|
|
7598
7658
|
case "NUM_5":
|
|
@@ -7603,7 +7663,7 @@ function ButtonAsset(_ref) {
|
|
|
7603
7663
|
fill: "none",
|
|
7604
7664
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7605
7665
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7606
|
-
d: "M17.6591 18.
|
|
7666
|
+
d: "M17.6591 18.1042c.416-.088.812-.152 1.188-.192.384-.04.752-.06 1.104-.06.904 0 1.7.136 2.388.408.696.264 1.276.632 1.74 1.104.472.472.824 1.028 1.056 1.668.24.632.36 1.32.36 2.064 0 .92-.16 1.756-.48 2.508-.32.752-.764 1.396-1.332 1.932-.568.528-1.24.936-2.016 1.224-.768.288-1.6.432-2.496.432-.528 0-1.032-.052-1.512-.156-.472-.104-.916-.244-1.332-.42-.416-.184-.8-.392-1.152-.624-.352-.24-.668-.488-.948-.744l.792-1.104c.168-.24.392-.36.672-.36.176 0 .368.064.576.192.208.128.448.268.72.42.28.144.608.28.984.408.376.128.824.192 1.344.192.568 0 1.076-.092 1.524-.276.448-.184.824-.44 1.128-.768.312-.336.548-.736.708-1.2.16-.464.24-.972.24-1.524 0-.504-.076-.956-.228-1.356-.144-.4-.364-.74-.66-1.02-.288-.28-.652-.492-1.092-.636-.44-.152-.948-.228-1.524-.228-.424 0-.86.036-1.308.108-.44.072-.888.184-1.344.336l-1.608-.456 1.416-8.256h8.364v1.116c0 .368-.116.668-.348.9-.232.232-.62.348-1.164.348h-5.064l-.696 4.02z",
|
|
7607
7667
|
fill: "#21242C"
|
|
7608
7668
|
}));
|
|
7609
7669
|
case "NUM_6":
|
|
@@ -7614,7 +7674,7 @@ function ButtonAsset(_ref) {
|
|
|
7614
7674
|
fill: "none",
|
|
7615
7675
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7616
7676
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7617
|
-
d: "M19.
|
|
7677
|
+
d: "M19.975 27.0562c.52 0 .996-.084 1.428-.252.432-.176.8-.416 1.104-.72.312-.304.552-.664.72-1.08.168-.416.252-.868.252-1.356 0-.528-.084-1-.252-1.416-.16-.424-.392-.78-.696-1.068-.296-.288-.656-.508-1.08-.66-.416-.16-.876-.24-1.38-.24-.52 0-.992.088-1.416.264-.416.176-.772.416-1.068.72-.296.304-.524.66-.684 1.068-.16.408-.24.84-.24 1.296 0 .512.072.98.216 1.404.144.424.356.788.636 1.092.28.296.624.528 1.032.696.416.168.892.252 1.428.252zm-.948-8.976c-.128.16-.252.312-.372.456l-.336.432c.368-.208.772-.372 1.212-.492.44-.12.912-.18 1.416-.18.672 0 1.316.112 1.932.336.616.216 1.156.544 1.62.984.472.432.848.972 1.128 1.62.28.64.42 1.38.42 2.22 0 .8-.148 1.548-.444 2.244-.288.696-.696 1.304-1.224 1.824-.528.512-1.164.92-1.908 1.224-.736.296-1.552.444-2.448.444-.896 0-1.704-.144-2.424-.432-.72-.288-1.336-.692-1.848-1.212-.504-.528-.892-1.16-1.164-1.896-.272-.736-.408-1.556-.408-2.46 0-.784.168-1.604.504-2.46.336-.856.856-1.756 1.56-2.7l4.248-5.7c.128-.168.312-.312.552-.432.248-.12.524-.18.828-.18h2.28l-5.124 6.36z",
|
|
7618
7678
|
fill: "#21242C"
|
|
7619
7679
|
}));
|
|
7620
7680
|
case "NUM_7":
|
|
@@ -7625,7 +7685,7 @@ function ButtonAsset(_ref) {
|
|
|
7625
7685
|
fill: "none",
|
|
7626
7686
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7627
7687
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7628
|
-
d: "M26.
|
|
7688
|
+
d: "M26.083 11.7202v1.14c0 .336-.036.608-.108.816-.072.208-.144.384-.216.528l-6.828 13.896c-.12.256-.292.472-.516.648-.216.168-.504.252-.864.252h-1.86l6.96-13.668c.128-.248.256-.472.384-.672.128-.2.272-.392.432-.576h-8.628c-.16 0-.3-.06-.42-.18-.12-.128-.18-.272-.18-.432v-1.752h11.844z",
|
|
7629
7689
|
fill: "#21242C"
|
|
7630
7690
|
}));
|
|
7631
7691
|
case "NUM_8":
|
|
@@ -7636,7 +7696,7 @@ function ButtonAsset(_ref) {
|
|
|
7636
7696
|
fill: "none",
|
|
7637
7697
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7638
7698
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7639
|
-
d: "M19.
|
|
7699
|
+
d: "M19.999 27.1518c.52 0 .984-.072 1.392-.216.408-.152.748-.36 1.02-.624.28-.272.492-.592.636-.96.144-.368.216-.768.216-1.2 0-.528-.084-.984-.252-1.368-.16-.384-.388-.7-.684-.948-.288-.256-.632-.444-1.032-.564-.4-.128-.832-.192-1.296-.192-.464 0-.896.064-1.296.192-.4.12-.748.308-1.044.564-.288.248-.516.564-.684.948-.16.384-.24.84-.24 1.368 0 .432.072.832.216 1.2.144.368.352.688.624.96.28.264.624.472 1.032.624.408.144.872.216 1.392.216zm0-13.644c-.472 0-.888.072-1.248.216-.352.144-.644.336-.876.576-.232.24-.408.524-.528.852-.112.32-.168.66-.168 1.02s.048.712.144 1.056c.104.344.264.652.48.924.224.264.516.476.876.636.36.16.8.24 1.32.24s.96-.08 1.32-.24c.36-.16.648-.372.864-.636.224-.272.384-.58.48-.924.104-.344.156-.696.156-1.056 0-.36-.06-.7-.18-1.02-.112-.328-.288-.612-.528-.852-.232-.24-.524-.432-.876-.576-.352-.144-.764-.216-1.236-.216zm2.724 6.48c1.064.328 1.86.848 2.388 1.56.536.712.804 1.596.804 2.652 0 .76-.144 1.448-.432 2.064-.288.616-.692 1.14-1.212 1.572-.52.432-1.144.768-1.872 1.008-.72.232-1.52.348-2.4.348-.88 0-1.684-.116-2.412-.348-.72-.24-1.34-.576-1.86-1.008-.52-.432-.924-.956-1.212-1.572-.288-.616-.432-1.304-.432-2.064 0-1.056.264-1.94.792-2.652.536-.712 1.336-1.232 2.4-1.56-.864-.344-1.516-.844-1.956-1.5-.432-.656-.648-1.444-.648-2.364 0-.648.128-1.252.384-1.812s.616-1.044 1.08-1.452c.472-.416 1.036-.74 1.692-.972.656-.24 1.38-.36 2.172-.36.792 0 1.512.12 2.16.36.656.232 1.216.556 1.68.972.472.408.836.892 1.092 1.452.264.56.396 1.164.396 1.812 0 .92-.22 1.708-.66 2.364-.432.656-1.08 1.156-1.944 1.5z",
|
|
7640
7700
|
fill: "#21242C"
|
|
7641
7701
|
}));
|
|
7642
7702
|
case "NUM_9":
|
|
@@ -7647,10 +7707,13 @@ function ButtonAsset(_ref) {
|
|
|
7647
7707
|
fill: "none",
|
|
7648
7708
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7649
7709
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7650
|
-
d: "M16.
|
|
7710
|
+
d: "M16.735 16.8558c0 1.024.272 1.812.816 2.364.552.544 1.32.816 2.304.816.528 0 .992-.084 1.392-.252.408-.168.752-.392 1.032-.672.28-.288.492-.62.636-.996.144-.384.216-.792.216-1.224 0-.504-.08-.952-.24-1.344-.152-.4-.372-.74-.66-1.02-.28-.28-.616-.492-1.008-.636-.392-.152-.82-.228-1.284-.228-.488 0-.928.08-1.32.24-.392.16-.728.384-1.008.672-.28.28-.496.616-.648 1.008-.152.384-.228.808-.228 1.272zm4.428 5.364c.16-.2.308-.388.444-.564.136-.184.264-.368.384-.552-.416.296-.88.524-1.392.684-.512.152-1.056.228-1.632.228-.624 0-1.224-.104-1.8-.312-.576-.216-1.088-.532-1.536-.948-.448-.424-.808-.944-1.08-1.56-.264-.624-.396-1.34-.396-2.148 0-.76.14-1.476.42-2.148.288-.672.688-1.256 1.2-1.752.512-.504 1.124-.9 1.836-1.188.712-.288 1.5-.432 2.364-.432.856 0 1.632.14 2.328.42.696.272 1.288.66 1.776 1.164.488.496.864 1.092 1.128 1.788.264.688.396 1.448.396 2.28 0 .52-.048 1.012-.144 1.476-.088.464-.22.916-.396 1.356-.168.432-.376.86-.624 1.284-.24.416-.512.84-.816 1.272l-4.068 5.832c-.12.176-.3.32-.54.432-.232.112-.496.168-.792.168h-2.364l5.304-6.78z",
|
|
7651
7711
|
fill: "#21242C"
|
|
7652
7712
|
}));
|
|
7653
|
-
|
|
7713
|
+
// TODO(ned): Per the notes in `KeyConfigs`, shouldn't this be a comma
|
|
7714
|
+
// that we replace with the period icon for i18n? Duplicating for now.
|
|
7715
|
+
case "DECIMAL":
|
|
7716
|
+
case "PERIOD":
|
|
7654
7717
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7655
7718
|
width: "40",
|
|
7656
7719
|
height: "40",
|
|
@@ -7658,13 +7721,10 @@ function ButtonAsset(_ref) {
|
|
|
7658
7721
|
fill: "none",
|
|
7659
7722
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7660
7723
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7661
|
-
d: "
|
|
7662
|
-
|
|
7663
|
-
strokeWidth: "2",
|
|
7664
|
-
strokeLinecap: "round",
|
|
7665
|
-
strokeLinejoin: "round"
|
|
7724
|
+
d: "M18.3401 27.512c0-.232.04-.448.12-.648.088-.208.204-.388.348-.54.152-.152.328-.272.528-.36.208-.088.428-.132.66-.132.232 0 .448.044.648.132.208.088.388.208.54.36.152.152.272.332.36.54.088.2.132.416.132.648 0 .24-.044.46-.132.66-.088.2-.208.376-.36.528-.152.152-.332.268-.54.348-.2.088-.416.132-.648.132-.232 0-.452-.044-.66-.132-.2-.08-.376-.196-.528-.348-.144-.152-.26-.328-.348-.528-.08-.2-.12-.42-.12-.66z",
|
|
7725
|
+
fill: "#21242C"
|
|
7666
7726
|
}));
|
|
7667
|
-
case "
|
|
7727
|
+
case "PLUS":
|
|
7668
7728
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7669
7729
|
width: "40",
|
|
7670
7730
|
height: "40",
|
|
@@ -7672,103 +7732,95 @@ function ButtonAsset(_ref) {
|
|
|
7672
7732
|
fill: "none",
|
|
7673
7733
|
xmlns: "http://www.w3.org/2000/svg"
|
|
7674
7734
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7675
|
-
|
|
7676
|
-
|
|
7677
|
-
|
|
7678
|
-
|
|
7679
|
-
|
|
7735
|
+
fillRule: "evenodd",
|
|
7736
|
+
clipRule: "evenodd",
|
|
7737
|
+
d: "M12 20c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1s-.4477 1-1 1H13c-.5523 0-1-.4477-1-1z",
|
|
7738
|
+
fill: "#21242C"
|
|
7739
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
7740
|
+
fillRule: "evenodd",
|
|
7741
|
+
clipRule: "evenodd",
|
|
7742
|
+
d: "M20 28c-.5523 0-1-.4477-1-1V13c0-.5523.4477-1 1-1s1 .4477 1 1v14c0 .5523-.4477 1-1 1z",
|
|
7743
|
+
fill: "#21242C"
|
|
7680
7744
|
}));
|
|
7681
7745
|
case "MINUS":
|
|
7682
7746
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7683
|
-
|
|
7684
|
-
|
|
7685
|
-
|
|
7686
|
-
fill: "
|
|
7687
|
-
|
|
7747
|
+
width: "40",
|
|
7748
|
+
height: "40",
|
|
7749
|
+
viewBox: "0 0 40 40",
|
|
7750
|
+
fill: "none",
|
|
7751
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7688
7752
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7689
|
-
|
|
7753
|
+
fillRule: "evenodd",
|
|
7754
|
+
clipRule: "evenodd",
|
|
7755
|
+
d: "M12 20c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1s-.4477 1-1 1H13c-.5523 0-1-.4477-1-1z",
|
|
7756
|
+
fill: "#21242C"
|
|
7690
7757
|
}));
|
|
7691
|
-
case "PLUS":
|
|
7692
|
-
return (
|
|
7693
|
-
/*#__PURE__*/
|
|
7694
|
-
// Phosphor Icons - Plus Bold
|
|
7695
|
-
React__namespace.createElement("svg", {
|
|
7696
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7697
|
-
width: "20",
|
|
7698
|
-
height: "20",
|
|
7699
|
-
fill: "currentColor",
|
|
7700
|
-
viewBox: "0 0 256 256"
|
|
7701
|
-
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7702
|
-
d: "M224,128a8,8,0,0,1-8,8H136v80a8,8,0,0,1-16,0V136H40a8,8,0,0,1,0-16h80V40a8,8,0,0,1,16,0v80h80A8,8,0,0,1,224,128Z"
|
|
7703
|
-
}), " ")
|
|
7704
|
-
);
|
|
7705
7758
|
case "TIMES":
|
|
7706
|
-
return (
|
|
7707
|
-
/*#__PURE__*/
|
|
7708
|
-
// Phosphor Icons - X Bold
|
|
7709
|
-
React__namespace.createElement("svg", {
|
|
7710
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7711
|
-
width: "20",
|
|
7712
|
-
height: "20",
|
|
7713
|
-
fill: "#000000",
|
|
7714
|
-
viewBox: "0 0 256 256"
|
|
7715
|
-
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7716
|
-
d: "M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"
|
|
7717
|
-
}))
|
|
7718
|
-
);
|
|
7719
|
-
case "BACKSPACE":
|
|
7720
7759
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7721
|
-
|
|
7722
|
-
|
|
7723
|
-
|
|
7724
|
-
fill: "
|
|
7725
|
-
|
|
7760
|
+
width: "40",
|
|
7761
|
+
height: "40",
|
|
7762
|
+
viewBox: "0 0 40 40",
|
|
7763
|
+
fill: "none",
|
|
7764
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7726
7765
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7727
|
-
|
|
7766
|
+
fillRule: "evenodd",
|
|
7767
|
+
clipRule: "evenodd",
|
|
7768
|
+
d: "M14.3432 14.3428c.3905-.3905 1.0237-.3905 1.4142 0l9.8995 9.8995c.3905.3906.3905 1.0237 0 1.4143-.3905.3905-1.0237.3905-1.4142 0l-9.8995-9.8995c-.3905-.3906-.3905-1.0237 0-1.4143z",
|
|
7769
|
+
fill: "#21242C"
|
|
7770
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
7771
|
+
fillRule: "evenodd",
|
|
7772
|
+
clipRule: "evenodd",
|
|
7773
|
+
d: "M14.3431 25.6573c-.3905-.3905-.3905-1.0237 0-1.4142l9.8995-9.8995c.3905-.3905 1.0237-.3905 1.4142 0 .3905.3905.3905 1.0237 0 1.4142l-9.8995 9.8995c-.3905.3905-1.0237.3905-1.4142 0z",
|
|
7774
|
+
fill: "#21242C"
|
|
7728
7775
|
}));
|
|
7729
|
-
case "
|
|
7776
|
+
case "CDOT":
|
|
7730
7777
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7731
|
-
|
|
7732
|
-
|
|
7733
|
-
|
|
7734
|
-
fill: "
|
|
7735
|
-
|
|
7778
|
+
width: "40",
|
|
7779
|
+
height: "40",
|
|
7780
|
+
viewBox: "0 0 40 40",
|
|
7781
|
+
fill: "none",
|
|
7782
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7783
|
+
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
7784
|
+
clipPath: "url(#clip0_874_41555)"
|
|
7785
|
+
}, /*#__PURE__*/React__namespace.createElement("circle", {
|
|
7786
|
+
cx: "20",
|
|
7787
|
+
cy: "20",
|
|
7788
|
+
r: "1.5",
|
|
7789
|
+
fill: "#21242C"
|
|
7790
|
+
})), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
7791
|
+
id: "clip0_874_41555"
|
|
7736
7792
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7737
|
-
|
|
7738
|
-
transform: "
|
|
7739
|
-
d: "
|
|
7740
|
-
}));
|
|
7741
|
-
case "
|
|
7793
|
+
fill: "#fff",
|
|
7794
|
+
transform: "translate(18.5 18.5)",
|
|
7795
|
+
d: "M0 0h3v3H0z"
|
|
7796
|
+
}))));
|
|
7797
|
+
case "DIVIDE":
|
|
7742
7798
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7743
|
-
width: "
|
|
7744
|
-
height: "
|
|
7745
|
-
viewBox: "0 0
|
|
7746
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
7799
|
+
width: "40",
|
|
7800
|
+
height: "40",
|
|
7801
|
+
viewBox: "0 0 40 40",
|
|
7747
7802
|
fill: "none",
|
|
7748
|
-
|
|
7803
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7749
7804
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7805
|
+
fillRule: "evenodd",
|
|
7806
|
+
clipRule: "evenodd",
|
|
7807
|
+
d: "M20 16c.8284 0 1.5-.6716 1.5-1.5S20.8284 13 20 13s-1.5.6716-1.5 1.5.6716 1.5 1.5 1.5zm-8 4c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1s-.4477 1-1 1H13c-.5523 0-1-.4477-1-1zm9.5 5.5c0 .8284-.6716 1.5-1.5 1.5s-1.5-.6716-1.5-1.5.6716-1.5 1.5-1.5 1.5.6716 1.5 1.5z",
|
|
7808
|
+
fill: "#21242C"
|
|
7809
|
+
}));
|
|
7810
|
+
case "LEFT_PAREN":
|
|
7811
|
+
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7812
|
+
width: "40",
|
|
7813
|
+
height: "40",
|
|
7814
|
+
viewBox: "0 0 40 40",
|
|
7750
7815
|
fill: "none",
|
|
7751
|
-
|
|
7752
|
-
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
7753
|
-
transform: "translate(12 12)"
|
|
7816
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7754
7817
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7755
|
-
|
|
7756
|
-
|
|
7757
|
-
|
|
7758
|
-
|
|
7759
|
-
|
|
7760
|
-
|
|
7761
|
-
fill: "currentColor",
|
|
7762
|
-
x: "2",
|
|
7763
|
-
y: "11",
|
|
7764
|
-
width: "20",
|
|
7765
|
-
height: "2",
|
|
7766
|
-
rx: "1"
|
|
7767
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
7768
|
-
d: "M8 .997C8 .447 8.453 0 8.997 0h6.006c.55 0 .997.453.997.997v6.006c0 .55-.453.997-.997.997H8.997C8.447 8 8 7.547 8 7.003V.997zM10 2h4v4h-4V2z",
|
|
7769
|
-
fill: "currentColor"
|
|
7770
|
-
}))));
|
|
7771
|
-
case "FRAC_INCLUSIVE":
|
|
7818
|
+
fillRule: "evenodd",
|
|
7819
|
+
clipRule: "evenodd",
|
|
7820
|
+
d: "M22.6402 9.2318c.4243.35357.4816.9841.128 1.4084-4.6909 5.6292-4.6909 13.0905 0 18.7196.3536.4243.2963 1.0549-.128 1.4084-.4243.3536-1.0549.2963-1.4084-.128-5.3091-6.3708-5.3091-14.9095 0-21.28036.3535-.42428.9841-.4816 1.4084-.12804z",
|
|
7821
|
+
fill: "#21242C"
|
|
7822
|
+
}));
|
|
7823
|
+
case "RIGHT_PAREN":
|
|
7772
7824
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7773
7825
|
width: "40",
|
|
7774
7826
|
height: "40",
|
|
@@ -7778,10 +7830,10 @@ function ButtonAsset(_ref) {
|
|
|
7778
7830
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7779
7831
|
fillRule: "evenodd",
|
|
7780
7832
|
clipRule: "evenodd",
|
|
7781
|
-
d: "
|
|
7833
|
+
d: "M18.3598 9.2318c.4243-.35356 1.0549-.29624 1.4084.12804 5.3091 6.37086 5.3091 14.90956 0 21.28036-.3535.4243-.9841.4816-1.4084.128-.4242-.3535-.4816-.9841-.128-1.4084 4.691-5.6291 4.691-13.0904 0-18.7196-.3536-.4243-.2962-1.05483.128-1.4084z",
|
|
7782
7834
|
fill: "#21242C"
|
|
7783
7835
|
}));
|
|
7784
|
-
case "
|
|
7836
|
+
case "BACKSPACE":
|
|
7785
7837
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7786
7838
|
width: "40",
|
|
7787
7839
|
height: "40",
|
|
@@ -7791,13 +7843,10 @@ function ButtonAsset(_ref) {
|
|
|
7791
7843
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7792
7844
|
fillRule: "evenodd",
|
|
7793
7845
|
clipRule: "evenodd",
|
|
7794
|
-
d: "
|
|
7846
|
+
d: "M10 20l6-6h12.1716v12H16l-6-6zm-1.41421-1.4142l6.00001-6C14.9609 12.2107 15.4696 12 16 12h12.1716c1.1045 0 2 .8954 2 2v12c0 1.1046-.8955 2-2 2H16c-.5304 0-1.0391-.2107-1.4142-.5858l-6.00001-6c-.78105-.781-.78105-2.0474 0-2.8284zm13.87871-1.2929l-1.2929 1.2929-1.2929-1.2929c-.3905-.3905-1.0237-.3905-1.4142 0-.3905.3905-.3905 1.0237 0 1.4142L19.7574 20l-1.2929 1.2929c-.3905.3905-.3905 1.0237 0 1.4142.3905.3905 1.0237.3905 1.4142 0l1.2929-1.2929 1.2929 1.2929c.3905.3905 1.0237.3905 1.4142 0 .3906-.3905.3906-1.0237 0-1.4142L22.5858 20l1.2929-1.2929c.3906-.3905.3906-1.0237 0-1.4142-.3905-.3905-1.0237-.3905-1.4142 0z",
|
|
7795
7847
|
fill: "#21242C"
|
|
7796
7848
|
}));
|
|
7797
|
-
|
|
7798
|
-
// that we replace with the period icon for i18n? Duplicating for now.
|
|
7799
|
-
case "DECIMAL":
|
|
7800
|
-
case "PERIOD":
|
|
7849
|
+
case "DISMISS":
|
|
7801
7850
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7802
7851
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7803
7852
|
width: "20",
|
|
@@ -7805,13 +7854,27 @@ function ButtonAsset(_ref) {
|
|
|
7805
7854
|
fill: "currentColor",
|
|
7806
7855
|
viewBox: "0 0 256 256"
|
|
7807
7856
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7808
|
-
|
|
7809
|
-
|
|
7810
|
-
|
|
7811
|
-
,
|
|
7812
|
-
transform: "translate(0 80)"
|
|
7857
|
+
// flip to point down
|
|
7858
|
+
transform: "scale(1,-1) translate(0, -260)",
|
|
7859
|
+
d: "M205.66,125.66a8,8,0,0,1-11.32,0L128,59.31,61.66,125.66a8,8,0,0,1-11.32-11.32l72-72a8,8,0,0,1,11.32,0l72,72A8,8,0,0,1,205.66,125.66Z"
|
|
7813
7860
|
}));
|
|
7814
|
-
|
|
7861
|
+
// TODO: figure out what the difference is and what we need for what
|
|
7862
|
+
case "FRAC_INCLUSIVE":
|
|
7863
|
+
case "FRAC_EXCLUSIVE":
|
|
7864
|
+
case "FRAC":
|
|
7865
|
+
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7866
|
+
width: "40",
|
|
7867
|
+
height: "40",
|
|
7868
|
+
viewBox: "0 0 40 40",
|
|
7869
|
+
fill: "none",
|
|
7870
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7871
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7872
|
+
fillRule: "evenodd",
|
|
7873
|
+
clipRule: "evenodd",
|
|
7874
|
+
d: "M16 10C16 9.44772 16.4477 9 17 9H23C23.5523 9 24 9.44772 24 10V16C24 16.5523 23.5523 17 23 17H17C16.4477 17 16 16.5523 16 16V10ZM18 11H22V15H18V11ZM14 20C14 19.4477 14.4477 19 15 19H25C25.5523 19 26 19.4477 26 20C26 20.5523 25.5523 21 25 21H15C14.4477 21 14 20.5523 14 20ZM17 23C16.4477 23 16 23.4477 16 24V30C16 30.5523 16.4477 31 17 31H23C23.5523 31 24 30.5523 24 30V24C24 23.4477 23.5523 23 23 23H17ZM22 25H18V29H22V25Z",
|
|
7875
|
+
fill: "#21242C"
|
|
7876
|
+
}));
|
|
7877
|
+
case "NEGATIVE":
|
|
7815
7878
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7816
7879
|
width: "40",
|
|
7817
7880
|
height: "40",
|
|
@@ -7821,395 +7884,476 @@ function ButtonAsset(_ref) {
|
|
|
7821
7884
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7822
7885
|
fillRule: "evenodd",
|
|
7823
7886
|
clipRule: "evenodd",
|
|
7824
|
-
d: "
|
|
7887
|
+
d: "M12.9571 13.2929c.3905.3905.3905 1.0237 0 1.4142C11.6871 15.9771 11 17.9485 11 20c0 2.0515.6871 4.0229 1.9571 5.2929.3905.3905.3905 1.0237 0 1.4142-.3905.3905-1.0237.3905-1.4142 0C9.81292 24.9771 9 22.4485 9 20c0-2.4485.81292-4.9771 2.5429-6.7071.3905-.3905 1.0237-.3905 1.4142 0zM14 20c0-.5523.4477-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H15c-.5523 0-1-.4477-1-1zm14.4571-6.7071c-.3905-.3905-1.0237-.3905-1.4142 0-.3905.3905-.3905 1.0237 0 1.4142C28.3129 15.9771 29 17.9485 29 20c0 2.0515-.6871 4.0229-1.9571 5.2929-.3905.3905-.3905 1.0237 0 1.4142.3905.3905 1.0237.3905 1.4142 0C30.1871 24.9771 31 22.4485 31 20c0-2.4485-.8129-4.9771-2.5429-6.7071z",
|
|
7825
7888
|
fill: "#21242C"
|
|
7826
7889
|
}));
|
|
7890
|
+
case "RADICAL":
|
|
7891
|
+
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7892
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7893
|
+
width: "40",
|
|
7894
|
+
height: "40",
|
|
7895
|
+
fill: "none",
|
|
7896
|
+
viewBox: "0 0 40 40"
|
|
7897
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7898
|
+
fill: "#21242C",
|
|
7899
|
+
fillRule: "evenodd",
|
|
7900
|
+
d: "M9 9a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V9Zm2 1h4v4h-4v-4Zm12 2a1 1 0 0 0-.841.46l-8.174 12.714-3.153-4.729a1 1 0 0 0-1.664 1.11l4 6a1 1 0 0 0 1.673-.014L23.546 14H30a1 1 0 1 0 0-2h-7Z",
|
|
7901
|
+
clipRule: "evenodd"
|
|
7902
|
+
}));
|
|
7827
7903
|
case "SQRT":
|
|
7828
7904
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7829
7905
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7830
|
-
width: "
|
|
7831
|
-
height: "
|
|
7832
|
-
fill: "
|
|
7833
|
-
viewBox: "0 0
|
|
7906
|
+
width: "40",
|
|
7907
|
+
height: "40",
|
|
7908
|
+
fill: "none",
|
|
7909
|
+
viewBox: "0 0 40 40"
|
|
7834
7910
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7835
|
-
|
|
7911
|
+
fill: "#21242C",
|
|
7912
|
+
fillRule: "evenodd",
|
|
7913
|
+
d: "M22.159 12.46A1 1 0 0 1 23 12h7a1 1 0 1 1 0 2h-6.454l-8.705 13.54a1 1 0 0 1-1.673.015l-4-6a1 1 0 0 1 1.664-1.11l3.153 4.73 8.174-12.716Z",
|
|
7914
|
+
clipRule: "evenodd"
|
|
7836
7915
|
}));
|
|
7837
7916
|
case "CUBE_ROOT":
|
|
7838
7917
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7839
|
-
|
|
7840
|
-
|
|
7841
|
-
|
|
7842
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
7918
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7919
|
+
width: "40",
|
|
7920
|
+
height: "40",
|
|
7843
7921
|
fill: "none",
|
|
7844
|
-
|
|
7845
|
-
transform: "translate(0, -4)"
|
|
7922
|
+
viewBox: "0 0 40 40"
|
|
7846
7923
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7847
|
-
fill: "
|
|
7848
|
-
|
|
7849
|
-
|
|
7850
|
-
|
|
7851
|
-
|
|
7852
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
7853
|
-
stroke: "currentColor",
|
|
7854
|
-
strokeWidth: "2",
|
|
7855
|
-
strokeLinecap: "round",
|
|
7856
|
-
strokeLinejoin: "round",
|
|
7857
|
-
d: "M14 29l4 6 9-14h7"
|
|
7858
|
-
})));
|
|
7924
|
+
fill: "#21242C",
|
|
7925
|
+
fillRule: "evenodd",
|
|
7926
|
+
d: "M9.684 9.246a3.052 3.052 0 0 0-.33 1.023l.798.143c.209.033.368.02.478-.038.11-.063.2-.186.27-.369a1.05 1.05 0 0 1 .154-.324c.07-.1.152-.186.247-.259.1-.073.21-.13.33-.17.125-.044.26-.066.407-.066.334 0 .59.091.77.275.184.183.275.449.275.797 0 .165-.024.317-.071.457a.746.746 0 0 1-.248.357 1.297 1.297 0 0 1-.5.231 3.359 3.359 0 0 1-.82.083v1.067c.4 0 .715.029.946.088.235.055.41.135.528.242a.674.674 0 0 1 .231.38c.033.146.05.31.05.494 0 .14-.028.28-.083.424a1.116 1.116 0 0 1-.632.649c-.158.07-.343.104-.556.104-.169 0-.319-.024-.45-.071a1.197 1.197 0 0 1-.347-.198 1.738 1.738 0 0 1-.28-.308 3.794 3.794 0 0 1-.232-.385.457.457 0 0 0-.33-.242.809.809 0 0 0-.49.06l-.67.275c.12.356.262.668.423.935.162.264.354.484.578.66.227.176.49.308.786.396.297.088.64.132 1.029.132a3.55 3.55 0 0 0 1.05-.154c.338-.106.633-.264.886-.473a2.3 2.3 0 0 0 .605-.775c.15-.312.225-.671.225-1.078 0-.92-.458-1.531-1.375-1.832a2.24 2.24 0 0 0 .523-.247 1.47 1.47 0 0 0 .621-.864 2.47 2.47 0 0 0 .083-.67c0-.287-.057-.555-.17-.804a1.9 1.9 0 0 0-.48-.654 2.254 2.254 0 0 0-.77-.44c-.3-.11-.641-.165-1.022-.165-.36 0-.695.05-1.007.148a2.47 2.47 0 0 0-.825.435 2.42 2.42 0 0 0-.605.731ZM23 12a1 1 0 0 0-.841.46l-8.174 12.714-3.153-4.729a1 1 0 0 0-1.664 1.11l4 6a1 1 0 0 0 1.673-.014L23.546 14H30a1 1 0 1 0 0-2h-7Z",
|
|
7927
|
+
clipRule: "evenodd"
|
|
7928
|
+
}));
|
|
7859
7929
|
case "EXP":
|
|
7860
7930
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7931
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7861
7932
|
width: "40",
|
|
7862
7933
|
height: "40",
|
|
7863
|
-
viewBox: "0 0 40 40",
|
|
7864
7934
|
fill: "none",
|
|
7865
|
-
|
|
7935
|
+
viewBox: "0 0 40 40"
|
|
7866
7936
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7867
|
-
fillRule: "evenodd",
|
|
7868
|
-
clipRule: "evenodd",
|
|
7869
7937
|
fill: "#21242C",
|
|
7870
|
-
|
|
7938
|
+
fillRule: "evenodd",
|
|
7939
|
+
d: "M28 8a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V8Zm2 1h4v4h-4V9Zm-16 4a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H15a1 1 0 0 1-1-1V13Zm2 1h8v12h-8V14Z",
|
|
7940
|
+
clipRule: "evenodd"
|
|
7871
7941
|
}));
|
|
7872
7942
|
case "EXP_2":
|
|
7873
7943
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7944
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7874
7945
|
width: "40",
|
|
7875
7946
|
height: "40",
|
|
7876
|
-
viewBox: "0 0 40 40",
|
|
7877
7947
|
fill: "none",
|
|
7878
|
-
|
|
7948
|
+
viewBox: "0 0 40 40"
|
|
7879
7949
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7950
|
+
fill: "#21242C",
|
|
7880
7951
|
fillRule: "evenodd",
|
|
7881
|
-
|
|
7882
|
-
|
|
7883
|
-
fill: "#21242C"
|
|
7952
|
+
d: "M33.58 13.746a.52.52 0 0 0-.386-.137h-1.793c-.161 0-.334.016-.517.05a4.09 4.09 0 0 0-.555.126l1.694-1.733c.212-.216.414-.43.605-.643.19-.213.357-.431.5-.655a3.22 3.22 0 0 0 .347-.715c.084-.25.126-.52.126-.814 0-.34-.06-.653-.181-.935a2.033 2.033 0 0 0-.512-.72 2.293 2.293 0 0 0-.797-.468 2.952 2.952 0 0 0-1.029-.17c-.36 0-.695.05-1.006.148a2.43 2.43 0 0 0-.83.435 2.42 2.42 0 0 0-.606.731 3.049 3.049 0 0 0-.33 1.023l.803.143c.205.033.363.02.473-.038.114-.063.204-.186.27-.369a1.05 1.05 0 0 1 .154-.324 1.18 1.18 0 0 1 .247-.259c.1-.073.21-.13.33-.17.125-.044.26-.066.407-.066.334 0 .592.093.776.28.183.183.275.453.275.809 0 .201-.026.394-.077.577a2.407 2.407 0 0 1-.231.545 4.17 4.17 0 0 1-.385.544 9.098 9.098 0 0 1-.534.578l-2.365 2.37a.897.897 0 0 0-.264.616V15h5.533v-.89a.48.48 0 0 0-.143-.364ZM14 13a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H15a1 1 0 0 1-1-1V13Zm2 1h8v12h-8V14Z",
|
|
7953
|
+
clipRule: "evenodd"
|
|
7884
7954
|
}));
|
|
7885
7955
|
case "EXP_3":
|
|
7886
7956
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7887
|
-
|
|
7888
|
-
|
|
7889
|
-
|
|
7957
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7958
|
+
width: "40",
|
|
7959
|
+
height: "40",
|
|
7890
7960
|
fill: "none",
|
|
7891
|
-
|
|
7961
|
+
viewBox: "0 0 40 40"
|
|
7892
7962
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7893
|
-
transform: "translate(0, -8)",
|
|
7894
|
-
fillRule: "evenodd",
|
|
7895
|
-
clipRule: "evenodd",
|
|
7896
7963
|
fill: "#21242C",
|
|
7897
|
-
|
|
7964
|
+
fillRule: "evenodd",
|
|
7965
|
+
d: "M28.684 8.246a3.049 3.049 0 0 0-.33 1.023l.798.143c.209.033.368.02.478-.038.11-.063.2-.186.27-.369a1.05 1.05 0 0 1 .154-.324 1.18 1.18 0 0 1 .247-.259c.1-.073.21-.13.33-.17.125-.044.26-.066.407-.066.334 0 .59.091.77.275.183.183.275.449.275.797 0 .165-.024.317-.071.457a.746.746 0 0 1-.248.357 1.298 1.298 0 0 1-.5.231 3.36 3.36 0 0 1-.82.083v1.067c.4 0 .715.029.946.088.235.055.41.135.528.242a.674.674 0 0 1 .231.38c.033.146.05.31.05.494 0 .14-.028.28-.083.424a1.118 1.118 0 0 1-.632.649c-.158.07-.343.104-.556.104-.169 0-.319-.024-.45-.071a1.195 1.195 0 0 1-.347-.198 1.738 1.738 0 0 1-.28-.308 3.794 3.794 0 0 1-.232-.385.457.457 0 0 0-.33-.242.809.809 0 0 0-.49.06l-.67.275c.12.356.262.668.423.935.161.264.354.484.578.66.227.176.49.308.786.396.297.088.64.132 1.029.132.366 0 .716-.051 1.05-.154.337-.106.633-.264.886-.473a2.3 2.3 0 0 0 .605-.775c.15-.312.225-.671.225-1.078 0-.92-.458-1.531-1.375-1.832a2.24 2.24 0 0 0 .523-.247 1.471 1.471 0 0 0 .621-.863 2.47 2.47 0 0 0 .083-.672c0-.286-.057-.554-.17-.803a1.9 1.9 0 0 0-.48-.654 2.254 2.254 0 0 0-.77-.44c-.3-.11-.641-.165-1.022-.165-.36 0-.695.05-1.007.148a2.47 2.47 0 0 0-.825.435 2.42 2.42 0 0 0-.605.731ZM14 13a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H15a1 1 0 0 1-1-1V13Zm2 1h8v12h-8V14Z",
|
|
7966
|
+
clipRule: "evenodd"
|
|
7898
7967
|
}));
|
|
7899
7968
|
case "TAN":
|
|
7900
7969
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7970
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7901
7971
|
width: "40",
|
|
7902
7972
|
height: "40",
|
|
7903
|
-
viewBox: "0 0 40 40",
|
|
7904
7973
|
fill: "none",
|
|
7905
|
-
|
|
7974
|
+
viewBox: "0 0 40 40"
|
|
7906
7975
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7907
|
-
|
|
7908
|
-
|
|
7976
|
+
fill: "#21242C",
|
|
7977
|
+
d: "M12.157 26.128c-.714 0-1.264-.2-1.648-.6-.378-.405-.568-.962-.568-1.672v-4.584h-.84a.385.385 0 0 1-.272-.104c-.074-.07-.112-.173-.112-.312v-.784l1.32-.216.416-2.24a.439.439 0 0 1 .152-.248.452.452 0 0 1 .288-.088h1.024v2.584h2.192v1.408h-2.192v4.448c0 .256.062.456.184.6a.66.66 0 0 0 .52.216.978.978 0 0 0 .304-.04 1.63 1.63 0 0 0 .216-.096c.064-.032.12-.061.168-.088a.258.258 0 0 1 .144-.048c.059 0 .107.016.144.048.038.027.078.07.12.128l.592.96c-.288.24-.618.422-.992.544-.373.123-.76.184-1.16.184Zm7.553-3.632c-.57.027-1.05.078-1.44.152-.389.07-.7.16-.936.272-.234.112-.402.243-.504.392a.852.852 0 0 0-.152.488c0 .347.102.595.304.744.208.15.478.224.808.224.406 0 .755-.072 1.048-.216.3-.15.59-.373.872-.672v-1.384Zm-4.528-3.56c.944-.864 2.08-1.296 3.408-1.296.48 0 .91.08 1.288.24a2.696 2.696 0 0 1 1.552 1.656c.14.39.208.816.208 1.28V26h-.896c-.186 0-.33-.026-.432-.08-.1-.058-.18-.173-.24-.344l-.176-.592c-.208.187-.41.352-.608.496a3.743 3.743 0 0 1-.616.352 3.14 3.14 0 0 1-.688.216 3.65 3.65 0 0 1-.8.08 3.24 3.24 0 0 1-.96-.136 2.159 2.159 0 0 1-.76-.424 1.886 1.886 0 0 1-.496-.696 2.47 2.47 0 0 1-.176-.968 1.892 1.892 0 0 1 .44-1.208c.16-.186.366-.362.616-.528a4 4 0 0 1 .92-.432 7.836 7.836 0 0 1 1.28-.296c.486-.08 1.04-.128 1.664-.144v-.48c0-.55-.117-.954-.352-1.216-.234-.266-.573-.4-1.016-.4-.32 0-.586.038-.8.112-.208.075-.392.16-.552.256-.16.09-.306.174-.44.248a.842.842 0 0 1-.432.112.585.585 0 0 1-.352-.104.956.956 0 0 1-.232-.256l-.352-.632Zm10.165-.136a5.2 5.2 0 0 1 .52-.456 3.194 3.194 0 0 1 1.248-.592 3.2 3.2 0 0 1 .768-.088c.448 0 .846.078 1.192.232.347.15.635.363.864.64.235.272.411.6.528.984.123.379.184.798.184 1.256V26h-1.976v-5.224c0-.501-.114-.888-.344-1.16-.229-.277-.578-.416-1.048-.416-.34 0-.66.078-.96.232a3.438 3.438 0 0 0-.848.632V26H23.5v-8.208h1.208c.256 0 .424.12.504.36l.136.648Z"
|
|
7909
7978
|
}));
|
|
7910
7979
|
case "COS":
|
|
7911
7980
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7981
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7912
7982
|
width: "40",
|
|
7913
7983
|
height: "40",
|
|
7914
|
-
viewBox: "0 0 40 40",
|
|
7915
7984
|
fill: "none",
|
|
7916
|
-
|
|
7985
|
+
viewBox: "0 0 40 40"
|
|
7917
7986
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7918
|
-
|
|
7919
|
-
|
|
7987
|
+
fill: "#21242C",
|
|
7988
|
+
d: "M14.957 19.528a.918.918 0 0 1-.176.176c-.053.043-.133.064-.24.064-.1 0-.2-.03-.296-.088a5.242 5.242 0 0 0-.343-.208 2.237 2.237 0 0 0-.48-.208 2.066 2.066 0 0 0-.68-.096c-.347 0-.651.064-.913.192-.26.123-.48.301-.655.536-.171.235-.3.52-.384.856-.086.33-.128.707-.128 1.128 0 .437.045.827.135 1.168.096.341.232.63.409.864.176.23.389.405.64.528.25.117.533.176.848.176.314 0 .567-.037.76-.112.197-.08.362-.165.495-.256.134-.096.248-.181.345-.256a.53.53 0 0 1 .335-.12.4.4 0 0 1 .36.184l.568.72a3.68 3.68 0 0 1-.712.648c-.256.17-.522.31-.8.416a4.126 4.126 0 0 1-.848.216 5.897 5.897 0 0 1-.863.064c-.507 0-.984-.093-1.432-.28a3.43 3.43 0 0 1-1.177-.832 4.014 4.014 0 0 1-.8-1.328c-.192-.528-.288-1.128-.288-1.8 0-.603.086-1.16.256-1.672.176-.517.432-.963.768-1.336a3.479 3.479 0 0 1 1.248-.888c.496-.213 1.067-.32 1.712-.32.614 0 1.15.099 1.608.296.465.197.88.48 1.248.848l-.52.72Zm5.331-1.864c.608 0 1.16.099 1.656.296.5.197.928.477 1.28.84.357.363.632.805.824 1.328a5.05 5.05 0 0 1 .288 1.752 5.08 5.08 0 0 1-.288 1.76 3.742 3.742 0 0 1-.824 1.336c-.352.368-.78.65-1.28.848a4.445 4.445 0 0 1-1.656.296 4.53 4.53 0 0 1-1.672-.296 3.616 3.616 0 0 1-1.288-.848 3.897 3.897 0 0 1-.824-1.336 5.077 5.077 0 0 1-.288-1.76c0-.645.096-1.23.288-1.752a3.81 3.81 0 0 1 .824-1.328 3.668 3.668 0 0 1 1.288-.84 4.528 4.528 0 0 1 1.672-.296Zm0 6.936c.682 0 1.186-.23 1.512-.688.33-.459.496-1.13.496-2.016 0-.885-.166-1.56-.496-2.024-.326-.464-.83-.696-1.512-.696-.694 0-1.208.235-1.544.704-.331.464-.496 1.136-.496 2.016 0 .88.165 1.552.496 2.016.336.459.85.688 1.544.688Zm10.563-5.208a.574.574 0 0 1-.168.184.465.465 0 0 1-.224.048.731.731 0 0 1-.312-.08 9.204 9.204 0 0 0-.376-.176 3.15 3.15 0 0 0-.496-.184 2.311 2.311 0 0 0-.648-.08c-.39 0-.696.083-.92.248a.775.775 0 0 0-.328.648.64.64 0 0 0 .168.448c.117.117.27.221.456.312.192.09.408.173.648.248.24.07.483.147.728.232.25.085.496.184.736.296.24.107.453.245.64.416.192.165.344.365.456.6.117.235.176.517.176.848 0 .395-.072.76-.216 1.096-.139.33-.347.619-.624.864-.277.24-.621.43-1.032.568a4.51 4.51 0 0 1-1.408.2c-.283 0-.56-.027-.832-.08a4.527 4.527 0 0 1-1.464-.528 3.417 3.417 0 0 1-.552-.4l.456-.752a.644.644 0 0 1 .208-.208.583.583 0 0 1 .304-.072.62.62 0 0 1 .344.104c.112.07.24.144.384.224.144.08.312.155.504.224.197.07.445.104.744.104.235 0 .435-.027.6-.08.17-.059.31-.133.416-.224a.783.783 0 0 0 .24-.312.935.935 0 0 0 .08-.376.655.655 0 0 0-.176-.472 1.44 1.44 0 0 0-.456-.32 3.935 3.935 0 0 0-.648-.24c-.24-.075-.488-.155-.744-.24a8.006 8.006 0 0 1-.744-.296 2.725 2.725 0 0 1-.648-.44 2.054 2.054 0 0 1-.456-.648c-.112-.256-.168-.565-.168-.928 0-.336.067-.656.2-.96.133-.304.328-.568.584-.792.261-.23.584-.41.968-.544a3.99 3.99 0 0 1 1.344-.208c.565 0 1.08.093 1.544.28a3.5 3.5 0 0 1 1.16.736l-.448.712Z"
|
|
7920
7989
|
}));
|
|
7921
7990
|
case "SIN":
|
|
7922
7991
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7992
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7923
7993
|
width: "40",
|
|
7924
7994
|
height: "40",
|
|
7925
|
-
viewBox: "0 0 40 40",
|
|
7926
7995
|
fill: "none",
|
|
7927
|
-
|
|
7928
|
-
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7929
|
-
d: "M16.4215 19.392C16.3682 19.4773 16.3122 19.5387 16.2535 19.576C16.1948 19.608 16.1202 19.624 16.0295 19.624C15.9335 19.624 15.8295 19.5973 15.7175 19.544C15.6108 19.4907 15.4855 19.432 15.3415 19.368C15.1975 19.2987 15.0322 19.2373 14.8455 19.184C14.6642 19.1307 14.4482 19.104 14.1975 19.104C13.8082 19.104 13.5015 19.1867 13.2775 19.352C13.0588 19.5173 12.9495 19.7333 12.9495 20C12.9495 20.176 13.0055 20.3253 13.1175 20.448C13.2348 20.5653 13.3868 20.6693 13.5735 20.76C13.7655 20.8507 13.9815 20.9333 14.2215 21.008C14.4615 21.0773 14.7042 21.1547 14.9495 21.24C15.2002 21.3253 15.4455 21.424 15.6855 21.536C15.9255 21.6427 16.1388 21.7813 16.3255 21.952C16.5175 22.1173 16.6695 22.3173 16.7815 22.552C16.8988 22.7867 16.9575 23.0693 16.9575 23.4C16.9575 23.7947 16.8855 24.16 16.7415 24.496C16.6028 24.8267 16.3948 25.1147 16.1175 25.36C15.8402 25.6 15.4962 25.7893 15.0855 25.928C14.6802 26.0613 14.2108 26.128 13.6775 26.128C13.3948 26.128 13.1175 26.1013 12.8455 26.048C12.5788 26 12.3202 25.9307 12.0695 25.84C11.8242 25.7493 11.5948 25.6427 11.3815 25.52C11.1735 25.3973 10.9895 25.264 10.8295 25.12L11.2855 24.368C11.3442 24.2773 11.4135 24.208 11.4935 24.16C11.5735 24.112 11.6748 24.088 11.7975 24.088C11.9202 24.088 12.0348 24.1227 12.1415 24.192C12.2535 24.2613 12.3815 24.336 12.5255 24.416C12.6695 24.496 12.8375 24.5707 13.0295 24.64C13.2268 24.7093 13.4748 24.744 13.7735 24.744C14.0082 24.744 14.2082 24.7173 14.3735 24.664C14.5442 24.6053 14.6828 24.5307 14.7895 24.44C14.9015 24.3493 14.9815 24.2453 15.0295 24.128C15.0828 24.0053 15.1095 23.88 15.1095 23.752C15.1095 23.56 15.0508 23.4027 14.9335 23.28C14.8215 23.1573 14.6695 23.0507 14.4775 22.96C14.2908 22.8693 14.0748 22.7893 13.8295 22.72C13.5895 22.6453 13.3415 22.5653 13.0855 22.48C12.8348 22.3947 12.5868 22.296 12.3415 22.184C12.1015 22.0667 11.8855 21.92 11.6935 21.744C11.5068 21.568 11.3548 21.352 11.2375 21.096C11.1255 20.84 11.0695 20.5307 11.0695 20.168C11.0695 19.832 11.1362 19.512 11.2695 19.208C11.4028 18.904 11.5975 18.64 11.8535 18.416C12.1148 18.1867 12.4375 18.0053 12.8215 17.872C13.2108 17.7333 13.6588 17.664 14.1655 17.664C14.7308 17.664 15.2455 17.7573 15.7095 17.944C16.1735 18.1307 16.5602 18.376 16.8695 18.68L16.4215 19.392ZM20.4928 17.792V26H18.5088V17.792H20.4928ZM20.7648 15.4C20.7648 15.5707 20.7301 15.7307 20.6608 15.88C20.5914 16.0293 20.4981 16.16 20.3808 16.272C20.2688 16.384 20.1354 16.4747 19.9808 16.544C19.8261 16.608 19.6608 16.64 19.4848 16.64C19.3141 16.64 19.1514 16.608 18.9968 16.544C18.8474 16.4747 18.7168 16.384 18.6048 16.272C18.4928 16.16 18.4021 16.0293 18.3328 15.88C18.2688 15.7307 18.2368 15.5707 18.2368 15.4C18.2368 15.224 18.2688 15.0587 18.3328 14.904C18.4021 14.7493 18.4928 14.616 18.6048 14.504C18.7168 14.392 18.8474 14.304 18.9968 14.24C19.1514 14.1707 19.3141 14.136 19.4848 14.136C19.6608 14.136 19.8261 14.1707 19.9808 14.24C20.1354 14.304 20.2688 14.392 20.3808 14.504C20.4981 14.616 20.5914 14.7493 20.6608 14.904C20.7301 15.0587 20.7648 15.224 20.7648 15.4ZM24.3553 18.8C24.5206 18.6347 24.6939 18.4827 24.8753 18.344C25.0619 18.2 25.2566 18.08 25.4593 17.984C25.6673 17.8827 25.8886 17.8053 26.1233 17.752C26.3579 17.6933 26.6139 17.664 26.8913 17.664C27.3393 17.664 27.7366 17.7413 28.0833 17.896C28.4299 18.0453 28.7179 18.2587 28.9473 18.536C29.1819 18.808 29.3579 19.136 29.4753 19.52C29.5979 19.8987 29.6593 20.3173 29.6593 20.776V26H27.6833V20.776C27.6833 20.2747 27.5686 19.888 27.3393 19.616C27.1099 19.3387 26.7606 19.2 26.2913 19.2C25.9499 19.2 25.6299 19.2773 25.3313 19.432C25.0326 19.5867 24.7499 19.7973 24.4833 20.064V26H22.5073V17.792H23.7153C23.9713 17.792 24.1393 17.912 24.2193 18.152L24.3553 18.8Z",
|
|
7930
|
-
fill: "#21242C"
|
|
7931
|
-
}));
|
|
7932
|
-
case "DIVIDE":
|
|
7933
|
-
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7934
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7935
|
-
width: "20",
|
|
7936
|
-
height: "20",
|
|
7937
|
-
fill: "currentColor",
|
|
7938
|
-
viewBox: "0 0 256 256"
|
|
7996
|
+
viewBox: "0 0 40 40"
|
|
7939
7997
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7940
|
-
|
|
7998
|
+
fill: "#21242C",
|
|
7999
|
+
d: "M16.422 19.392a.57.57 0 0 1-.168.184.465.465 0 0 1-.224.048.73.73 0 0 1-.312-.08 9.34 9.34 0 0 0-.376-.176 3.15 3.15 0 0 0-.496-.184 2.314 2.314 0 0 0-.648-.08c-.39 0-.696.082-.92.248a.775.775 0 0 0-.328.648.64.64 0 0 0 .168.448c.117.117.269.221.456.312.192.09.408.173.648.248.24.07.482.146.728.232.25.085.496.184.736.296.24.106.453.245.64.416.192.165.344.365.456.6.117.234.176.517.176.848 0 .394-.072.76-.216 1.096-.14.33-.347.618-.624.864-.278.24-.622.43-1.032.568-.406.133-.875.2-1.408.2-.283 0-.56-.027-.832-.08a4.512 4.512 0 0 1-1.464-.528 3.41 3.41 0 0 1-.552-.4l.456-.752a.646.646 0 0 1 .208-.208.583.583 0 0 1 .304-.072.62.62 0 0 1 .344.104c.112.07.24.144.384.224.144.08.312.154.504.224.197.07.445.104.744.104.234 0 .434-.027.6-.08.17-.059.309-.134.416-.224a.782.782 0 0 0 .24-.312.935.935 0 0 0 .08-.376.655.655 0 0 0-.176-.472 1.443 1.443 0 0 0-.456-.32 3.953 3.953 0 0 0-.648-.24 37.95 37.95 0 0 1-.744-.24 7.978 7.978 0 0 1-.744-.296 2.722 2.722 0 0 1-.648-.44 2.054 2.054 0 0 1-.456-.648c-.112-.256-.168-.566-.168-.928 0-.336.066-.656.2-.96.133-.304.328-.568.584-.792.26-.23.584-.41.968-.544a3.985 3.985 0 0 1 1.344-.208c.565 0 1.08.093 1.544.28.464.186.85.432 1.16.736l-.448.712Zm4.071-1.6V26h-1.984v-8.208h1.984Zm.272-2.392c0 .17-.035.33-.104.48-.07.15-.163.28-.28.392a1.326 1.326 0 0 1-.4.272c-.155.064-.32.096-.496.096-.17 0-.334-.032-.488-.096a1.357 1.357 0 0 1-.664-.664 1.284 1.284 0 0 1 0-.976c.07-.155.16-.288.272-.4.112-.112.242-.2.392-.264a1.18 1.18 0 0 1 .488-.104c.176 0 .341.034.496.104.154.064.288.152.4.264.117.112.21.245.28.4.07.154.104.32.104.496Zm3.59 3.4c.166-.166.339-.318.52-.456a3.197 3.197 0 0 1 1.248-.592 3.15 3.15 0 0 1 .768-.088 2.9 2.9 0 0 1 1.192.232c.347.15.635.362.864.64.235.272.411.6.528.984.123.378.184.797.184 1.256V26h-1.976v-5.224c0-.502-.114-.888-.344-1.16-.229-.278-.578-.416-1.048-.416-.341 0-.661.077-.96.232a3.445 3.445 0 0 0-.848.632V26h-1.976v-8.208h1.208c.256 0 .424.12.504.36l.136.648Z"
|
|
7941
8000
|
}));
|
|
7942
8001
|
case "EQUAL":
|
|
7943
8002
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7944
8003
|
xmlns: "http://www.w3.org/2000/svg",
|
|
7945
|
-
width: "
|
|
7946
|
-
height: "
|
|
7947
|
-
fill: "
|
|
7948
|
-
viewBox: "0 0
|
|
8004
|
+
width: "40",
|
|
8005
|
+
height: "40",
|
|
8006
|
+
fill: "none",
|
|
8007
|
+
viewBox: "0 0 40 40"
|
|
7949
8008
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7950
|
-
|
|
8009
|
+
fill: "#21242C",
|
|
8010
|
+
fillRule: "evenodd",
|
|
8011
|
+
d: "M12 17a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H13a1 1 0 0 1-1-1Zm0 6a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H13a1 1 0 0 1-1-1Z",
|
|
8012
|
+
clipRule: "evenodd"
|
|
7951
8013
|
}));
|
|
7952
8014
|
case "GT":
|
|
7953
8015
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7954
|
-
|
|
7955
|
-
|
|
7956
|
-
|
|
7957
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
8016
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8017
|
+
width: "40",
|
|
8018
|
+
height: "40",
|
|
7958
8019
|
fill: "none",
|
|
7959
|
-
|
|
8020
|
+
viewBox: "0 0 40 40"
|
|
7960
8021
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7961
|
-
fill: "
|
|
7962
|
-
|
|
7963
|
-
|
|
7964
|
-
|
|
7965
|
-
|
|
7966
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
7967
|
-
stroke: "currentColor",
|
|
7968
|
-
strokeWidth: "2",
|
|
7969
|
-
strokeLinecap: "round",
|
|
7970
|
-
strokeLinejoin: "round",
|
|
7971
|
-
d: "M16 30l16-6-16-6"
|
|
7972
|
-
})));
|
|
8022
|
+
fill: "#21242C",
|
|
8023
|
+
fillRule: "evenodd",
|
|
8024
|
+
d: "M12.058 14.664a1 1 0 0 1 1.278-.605l14 5a1 1 0 0 1 0 1.883l-14 5a1 1 0 1 1-.672-1.884L24.027 20l-11.363-4.058a1 1 0 0 1-.606-1.278Z",
|
|
8025
|
+
clipRule: "evenodd"
|
|
8026
|
+
}));
|
|
7973
8027
|
case "LT":
|
|
7974
8028
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7975
|
-
|
|
7976
|
-
|
|
7977
|
-
|
|
7978
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
8029
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8030
|
+
width: "40",
|
|
8031
|
+
height: "40",
|
|
7979
8032
|
fill: "none",
|
|
7980
|
-
|
|
8033
|
+
viewBox: "0 0 40 40"
|
|
7981
8034
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
7982
|
-
fill: "
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
|
|
7986
|
-
|
|
7987
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
7988
|
-
stroke: "currentColor",
|
|
7989
|
-
strokeWidth: "2",
|
|
7990
|
-
strokeLinecap: "round",
|
|
7991
|
-
strokeLinejoin: "round",
|
|
7992
|
-
d: "M32 30l-16-6 16-6"
|
|
7993
|
-
})));
|
|
8035
|
+
fill: "#21242C",
|
|
8036
|
+
fillRule: "evenodd",
|
|
8037
|
+
d: "M27.942 14.664a1 1 0 0 1-.606 1.278L15.973 20l11.363 4.058a1 1 0 0 1-.672 1.884l-14-5a1 1 0 0 1 0-1.884l14-5a1 1 0 0 1 1.278.606Z",
|
|
8038
|
+
clipRule: "evenodd"
|
|
8039
|
+
}));
|
|
7994
8040
|
case "GEQ":
|
|
7995
8041
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
7996
|
-
|
|
7997
|
-
|
|
7998
|
-
|
|
7999
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
8042
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8043
|
+
width: "40",
|
|
8044
|
+
height: "40",
|
|
8000
8045
|
fill: "none",
|
|
8001
|
-
|
|
8046
|
+
viewBox: "0 0 40 40"
|
|
8002
8047
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8003
|
-
fill: "
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
|
|
8007
|
-
|
|
8008
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8009
|
-
d: "M16 33h16M16 30l16-6-16-6",
|
|
8010
|
-
stroke: "currentColor",
|
|
8011
|
-
strokeWidth: "2",
|
|
8012
|
-
strokeLinecap: "round",
|
|
8013
|
-
strokeLinejoin: "round"
|
|
8014
|
-
})));
|
|
8048
|
+
fill: "#21242C",
|
|
8049
|
+
fillRule: "evenodd",
|
|
8050
|
+
d: "M12 29a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H13a1 1 0 0 1-1-1Zm.058-14.336a1 1 0 0 1 1.278-.605l14 5a1 1 0 0 1 0 1.883l-14 5a1 1 0 1 1-.672-1.884L24.027 20l-11.363-4.058a1 1 0 0 1-.606-1.278Z",
|
|
8051
|
+
clipRule: "evenodd"
|
|
8052
|
+
}));
|
|
8015
8053
|
case "LEQ":
|
|
8016
8054
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8017
|
-
|
|
8018
|
-
|
|
8019
|
-
|
|
8020
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
8055
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8056
|
+
width: "40",
|
|
8057
|
+
height: "40",
|
|
8021
8058
|
fill: "none",
|
|
8022
|
-
|
|
8059
|
+
viewBox: "0 0 40 40"
|
|
8023
8060
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8024
|
-
fill: "
|
|
8025
|
-
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
|
|
8029
|
-
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8030
|
-
d: "M16 33h16M32 30l-16-6 16-6",
|
|
8031
|
-
stroke: "currentColor",
|
|
8032
|
-
strokeWidth: "2",
|
|
8033
|
-
strokeLinecap: "round",
|
|
8034
|
-
strokeLinejoin: "round"
|
|
8035
|
-
})));
|
|
8061
|
+
fill: "#21242C",
|
|
8062
|
+
fillRule: "evenodd",
|
|
8063
|
+
d: "M12 29a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H13a1 1 0 0 1-1-1Zm15.942-14.336a1 1 0 0 1-.606 1.278L15.973 20l11.363 4.058a1 1 0 0 1-.672 1.884l-14-5a1 1 0 0 1 0-1.884l14-5a1 1 0 0 1 1.278.606Z",
|
|
8064
|
+
clipRule: "evenodd"
|
|
8065
|
+
}));
|
|
8036
8066
|
case "NEQ":
|
|
8037
8067
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8038
|
-
|
|
8039
|
-
|
|
8040
|
-
|
|
8041
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
8068
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8069
|
+
width: "40",
|
|
8070
|
+
height: "40",
|
|
8042
8071
|
fill: "none",
|
|
8043
|
-
|
|
8072
|
+
viewBox: "0 0 40 40"
|
|
8044
8073
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8045
|
-
fill: "
|
|
8046
|
-
|
|
8047
|
-
|
|
8048
|
-
|
|
8049
|
-
d: "M12 12h24v24H12z"
|
|
8074
|
+
fill: "#21242C",
|
|
8075
|
+
fillRule: "evenodd",
|
|
8076
|
+
d: "M12 17a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H13a1 1 0 0 1-1-1Zm0 6a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H13a1 1 0 0 1-1-1Z",
|
|
8077
|
+
clipRule: "evenodd"
|
|
8050
8078
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8051
|
-
|
|
8052
|
-
|
|
8053
|
-
|
|
8054
|
-
|
|
8055
|
-
|
|
8056
|
-
})));
|
|
8079
|
+
fill: "#21242C",
|
|
8080
|
+
fillRule: "evenodd",
|
|
8081
|
+
d: "M16 26.928a1 1 0 0 1-.366-1.366l7-12.125a1 1 0 0 1 1.732 1l-7 12.125a1 1 0 0 1-1.366.366Z",
|
|
8082
|
+
clipRule: "evenodd"
|
|
8083
|
+
}));
|
|
8057
8084
|
case "LN":
|
|
8058
8085
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8059
|
-
|
|
8060
|
-
|
|
8061
|
-
|
|
8062
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
8086
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8087
|
+
width: "40",
|
|
8088
|
+
height: "40",
|
|
8063
8089
|
fill: "none",
|
|
8064
|
-
|
|
8090
|
+
viewBox: "0 0 40 40"
|
|
8065
8091
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8066
|
-
fill: "
|
|
8067
|
-
d: "
|
|
8068
|
-
})
|
|
8069
|
-
d: "M20.836 29v-9.338h-1.778V29h1.778zm8.106 0v-4.774c0-1.316-.714-2.156-2.198-2.156-1.106 0-1.932.532-2.366 1.05v-.882H22.6V29h1.778v-4.55c.294-.406.84-.798 1.54-.798.756 0 1.246.322 1.246 1.26V29h1.778z",
|
|
8070
|
-
fill: "currentColor"
|
|
8071
|
-
})));
|
|
8092
|
+
fill: "#21242C",
|
|
8093
|
+
d: "M16.976 14.112V26H15V14.112h1.976Zm3.817 4.688a5.19 5.19 0 0 1 .52-.456 3.195 3.195 0 0 1 1.248-.592 3.16 3.16 0 0 1 .768-.088c.448 0 .845.078 1.192.232.346.15.634.363.864.64.234.272.41.6.528.984.122.379.184.798.184 1.256V26H24.12v-5.224c0-.501-.115-.888-.344-1.16-.23-.277-.579-.416-1.048-.416-.342 0-.662.078-.96.232a3.439 3.439 0 0 0-.848.632V26h-1.976v-8.208h1.208c.256 0 .424.12.504.36l.136.648Z"
|
|
8094
|
+
}));
|
|
8072
8095
|
case "LOG":
|
|
8073
8096
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
|
|
8077
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
8097
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8098
|
+
width: "40",
|
|
8099
|
+
height: "40",
|
|
8078
8100
|
fill: "none",
|
|
8079
|
-
|
|
8101
|
+
viewBox: "0 0 40 40"
|
|
8080
8102
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8081
|
-
fill: "
|
|
8082
|
-
d: "
|
|
8083
|
-
})
|
|
8084
|
-
d: "M16.776 29v-9.338h-1.778V29h1.778zm4.9.168c2.24 0 3.584-1.624 3.584-3.556 0-1.918-1.344-3.542-3.584-3.542-2.226 0-3.57 1.624-3.57 3.542 0 1.932 1.344 3.556 3.57 3.556zm0-1.582c-1.106 0-1.722-.91-1.722-1.974 0-1.05.616-1.96 1.722-1.96 1.106 0 1.736.91 1.736 1.96 0 1.064-.63 1.974-1.736 1.974zm7.672 4.158c1.666 0 3.654-.63 3.654-3.206v-6.3H31.21v.868c-.546-.686-1.274-1.036-2.086-1.036-1.708 0-2.982 1.232-2.982 3.444 0 2.254 1.288 3.444 2.982 3.444.826 0 1.554-.392 2.086-1.064v.686c0 1.33-1.008 1.708-1.862 1.708-.854 0-1.568-.238-2.114-.84l-.798 1.288c.854.742 1.75 1.008 2.912 1.008zm.336-4.368c-1.008 0-1.708-.7-1.708-1.862 0-1.162.7-1.862 1.708-1.862.588 0 1.232.322 1.526.77v2.184c-.294.434-.938.77-1.526.77z",
|
|
8085
|
-
fill: "currentColor"
|
|
8086
|
-
})));
|
|
8103
|
+
fill: "#21242C",
|
|
8104
|
+
d: "M12.203 14.112V26h-1.976V14.112h1.976Zm5.6 3.552c.608 0 1.16.099 1.656.296.502.198.928.478 1.28.84.358.363.632.806.824 1.328.192.523.288 1.107.288 1.752 0 .651-.096 1.238-.288 1.76a3.741 3.741 0 0 1-.824 1.336 3.528 3.528 0 0 1-1.28.848 4.445 4.445 0 0 1-1.656.296 4.53 4.53 0 0 1-1.672-.296 3.616 3.616 0 0 1-1.288-.848 3.896 3.896 0 0 1-.824-1.336 5.076 5.076 0 0 1-.288-1.76c0-.645.096-1.229.288-1.752a3.81 3.81 0 0 1 .824-1.328 3.669 3.669 0 0 1 1.288-.84 4.53 4.53 0 0 1 1.672-.296Zm0 6.936c.683 0 1.187-.229 1.512-.688.331-.458.496-1.13.496-2.016 0-.885-.165-1.56-.496-2.024-.325-.464-.829-.696-1.512-.696-.693 0-1.208.235-1.544.704-.33.464-.496 1.136-.496 2.016 0 .88.166 1.552.496 2.016.336.459.851.688 1.544.688Zm8.493-2.904c.246 0 .459-.032.64-.096.182-.069.331-.162.448-.28.123-.117.214-.258.272-.424.064-.165.096-.346.096-.544 0-.405-.122-.725-.368-.96-.24-.24-.602-.36-1.088-.36-.485 0-.85.12-1.096.36-.24.235-.36.555-.36.96 0 .192.03.371.088.536.064.166.155.31.272.432.123.118.275.211.456.28.187.064.4.096.64.096Zm2.232 4.672c0-.16-.048-.29-.144-.392a.914.914 0 0 0-.392-.232 2.716 2.716 0 0 0-.584-.128 8.987 8.987 0 0 0-.704-.056 32.107 32.107 0 0 0-.768-.04 8.959 8.959 0 0 1-.768-.064 1.908 1.908 0 0 0-.536.432.89.89 0 0 0-.096.976.93.93 0 0 0 .344.328c.16.091.366.16.616.208.251.054.558.08.92.08.368 0 .686-.029.952-.088a2.09 2.09 0 0 0 .656-.232.954.954 0 0 0 .384-.352.84.84 0 0 0 .12-.44Zm1.968-8.296v.736c0 .235-.141.379-.424.432l-.736.136c.112.283.168.592.168.928a2.414 2.414 0 0 1-.92 1.936c-.288.23-.629.408-1.024.536a4.17 4.17 0 0 1-1.264.184c-.16 0-.314-.008-.464-.024a5.807 5.807 0 0 1-.44-.064c-.256.155-.384.328-.384.52 0 .166.075.288.224.368.155.075.358.128.608.16.251.032.536.054.856.064.32.006.648.022.984.048.336.027.664.075.984.144.32.064.606.168.856.312.251.144.451.342.6.592.155.246.232.563.232.952 0 .363-.09.715-.272 1.056a2.773 2.773 0 0 1-.776.912c-.336.267-.752.48-1.248.64-.49.166-1.05.248-1.68.248-.618 0-1.157-.061-1.616-.184-.458-.117-.84-.277-1.144-.48a2.037 2.037 0 0 1-.68-.688 1.623 1.623 0 0 1-.224-.816c0-.384.115-.704.344-.96.235-.261.555-.469.96-.624a1.377 1.377 0 0 1-.52-.448c-.128-.186-.192-.432-.192-.736 0-.122.022-.248.064-.376.048-.133.115-.264.2-.392.091-.128.203-.248.336-.36a2.2 2.2 0 0 1 .472-.312 2.621 2.621 0 0 1-.984-.896c-.234-.373-.352-.81-.352-1.312 0-.405.08-.77.24-1.096.166-.33.392-.61.68-.84a3.11 3.11 0 0 1 1.032-.536c.4-.122.835-.184 1.304-.184.352 0 .683.038.992.112.31.07.592.174.848.312h2.36Z"
|
|
8105
|
+
}));
|
|
8087
8106
|
case "LOG_N":
|
|
8088
8107
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8089
|
-
|
|
8090
|
-
|
|
8091
|
-
|
|
8092
|
-
}, /*#__PURE__*/React__namespace.createElement("g", {
|
|
8108
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8109
|
+
width: "40",
|
|
8110
|
+
height: "40",
|
|
8093
8111
|
fill: "none",
|
|
8094
|
-
|
|
8112
|
+
viewBox: "0 0 40 40"
|
|
8095
8113
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8096
|
-
fill: "
|
|
8097
|
-
d: "
|
|
8114
|
+
fill: "#21242C",
|
|
8115
|
+
d: "M12.203 14.112V26h-1.976V14.112h1.976Zm5.6 3.552c.608 0 1.16.099 1.656.296.502.198.928.478 1.28.84.358.363.632.806.824 1.328.192.523.288 1.107.288 1.752 0 .651-.096 1.238-.288 1.76a3.741 3.741 0 0 1-.824 1.336 3.528 3.528 0 0 1-1.28.848 4.445 4.445 0 0 1-1.656.296 4.53 4.53 0 0 1-1.672-.296 3.616 3.616 0 0 1-1.288-.848 3.896 3.896 0 0 1-.824-1.336 5.076 5.076 0 0 1-.288-1.76c0-.645.096-1.229.288-1.752a3.81 3.81 0 0 1 .824-1.328 3.669 3.669 0 0 1 1.288-.84 4.53 4.53 0 0 1 1.672-.296Zm0 6.936c.683 0 1.187-.229 1.512-.688.331-.458.496-1.13.496-2.016 0-.885-.165-1.56-.496-2.024-.325-.464-.829-.696-1.512-.696-.693 0-1.208.235-1.544.704-.33.464-.496 1.136-.496 2.016 0 .88.166 1.552.496 2.016.336.459.851.688 1.544.688Zm8.493-2.904c.246 0 .459-.032.64-.096.182-.069.331-.162.448-.28.123-.117.214-.258.272-.424.064-.165.096-.346.096-.544 0-.405-.122-.725-.368-.96-.24-.24-.602-.36-1.088-.36-.485 0-.85.12-1.096.36-.24.235-.36.555-.36.96 0 .192.03.371.088.536.064.166.155.31.272.432.123.118.275.211.456.28.187.064.4.096.64.096Zm2.232 4.672c0-.16-.048-.29-.144-.392a.914.914 0 0 0-.392-.232 2.716 2.716 0 0 0-.584-.128 8.987 8.987 0 0 0-.704-.056 32.107 32.107 0 0 0-.768-.04 8.959 8.959 0 0 1-.768-.064 1.908 1.908 0 0 0-.536.432.89.89 0 0 0-.096.976.93.93 0 0 0 .344.328c.16.091.366.16.616.208.251.054.558.08.92.08.368 0 .686-.029.952-.088a2.09 2.09 0 0 0 .656-.232.954.954 0 0 0 .384-.352.84.84 0 0 0 .12-.44Zm1.968-8.296v.736c0 .235-.141.379-.424.432l-.736.136c.112.283.168.592.168.928a2.414 2.414 0 0 1-.92 1.936c-.288.23-.629.408-1.024.536a4.17 4.17 0 0 1-1.264.184c-.16 0-.314-.008-.464-.024a5.807 5.807 0 0 1-.44-.064c-.256.155-.384.328-.384.52 0 .166.075.288.224.368.155.075.358.128.608.16.251.032.536.054.856.064.32.006.648.022.984.048.336.027.664.075.984.144.32.064.606.168.856.312.251.144.451.342.6.592.155.246.232.563.232.952 0 .363-.09.715-.272 1.056a2.773 2.773 0 0 1-.776.912c-.336.267-.752.48-1.248.64-.49.166-1.05.248-1.68.248-.618 0-1.157-.061-1.616-.184-.458-.117-.84-.277-1.144-.48a2.037 2.037 0 0 1-.68-.688 1.623 1.623 0 0 1-.224-.816c0-.384.115-.704.344-.96.235-.261.555-.469.96-.624a1.377 1.377 0 0 1-.52-.448c-.128-.186-.192-.432-.192-.736 0-.122.022-.248.064-.376.048-.133.115-.264.2-.392.091-.128.203-.248.336-.36a2.2 2.2 0 0 1 .472-.312 2.621 2.621 0 0 1-.984-.896c-.234-.373-.352-.81-.352-1.312 0-.405.08-.77.24-1.096.166-.33.392-.61.68-.84a3.11 3.11 0 0 1 1.032-.536c.4-.122.835-.184 1.304-.184.352 0 .683.038.992.112.31.07.592.174.848.312h2.36Z"
|
|
8098
8116
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8099
|
-
|
|
8100
|
-
|
|
8101
|
-
|
|
8117
|
+
fill: "#21242C",
|
|
8118
|
+
fillRule: "evenodd",
|
|
8119
|
+
d: "M32 26a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1h-6Zm5 2h-4v4h4v-4Z",
|
|
8120
|
+
clipRule: "evenodd"
|
|
8121
|
+
}));
|
|
8102
8122
|
case "PERCENT":
|
|
8103
8123
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8104
8124
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8105
|
-
width: "
|
|
8106
|
-
height: "
|
|
8125
|
+
width: "40",
|
|
8126
|
+
height: "40",
|
|
8127
|
+
fill: "none",
|
|
8128
|
+
viewBox: "0 0 40 40"
|
|
8129
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8107
8130
|
fill: "currentColor",
|
|
8108
|
-
|
|
8131
|
+
fillRule: "evenodd",
|
|
8132
|
+
d: "M24.447 11.106a1 1 0 0 1 .447 1.341l-8 16a1 1 0 1 1-1.788-.894l8-16a1 1 0 0 1 1.341-.447ZM15 13a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4 2a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm12 10a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z",
|
|
8133
|
+
clipRule: "evenodd"
|
|
8134
|
+
}));
|
|
8135
|
+
case "PI":
|
|
8136
|
+
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8137
|
+
width: "40",
|
|
8138
|
+
height: "40",
|
|
8139
|
+
viewBox: "0 0 40 40",
|
|
8140
|
+
fill: "none",
|
|
8141
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8109
8142
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8110
|
-
d: "
|
|
8143
|
+
d: "M23.7918 25.0379c0 .2947-.13.572-.39.832-.2426.26-.546.39-.91.39-.26 0-.442-.0346-.546-.104-.0866-.0693-.182-.208-.286-.416-.3293-.7626-.494-1.7246-.494-2.886 0-.624.0087-1.04.026-1.248.1214-1.196.39-2.6433.806-4.342.0867-.3466.13-.5373.13-.572h-2.548l-.026.104c0 .0174-.0173.0954-.052.234-.0346.1214-.0866.312-.156.572-.052.2427-.104.468-.156.676-1.144 4.4547-1.8286 6.8814-2.054 7.28-.208.4854-.5806.728-1.118.728-.3986 0-.676-.1473-.832-.442-.0346-.0866-.052-.2253-.052-.416v-.286l.338-.728c1.3-2.7386 2.2447-5.1046 2.834-7.098l.208-.624h-.832c-.6933 0-1.1786.026-1.456.078-.26.052-.5806.2167-.962.494-.416.26-.78.6154-1.092 1.066-.0866.1387-.156.2254-.208.26-.052.0174-.182.026-.39.026-.3293 0-.494-.0866-.494-.26 0-.0693.0867-.2426.26-.52 1.196-1.82 2.366-2.8166 3.51-2.99.1214-.0346 2.0714-.052 5.85-.052 2.7734 0 4.1947.0087 4.264.026.3467.1214.52.364.52.728 0 .5374-.2773.9014-.832 1.092-.104.0347-.702.052-1.794.052h-1.664l-.078.442c-.208 1.248-.312 2.2794-.312 3.094 0 1.5427.2687 2.938.806 4.186.1214.312.182.52.182.624z",
|
|
8144
|
+
fill: "#21242C"
|
|
8111
8145
|
}));
|
|
8112
|
-
case "
|
|
8146
|
+
case "THETA":
|
|
8113
8147
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8114
8148
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8115
|
-
width: "
|
|
8116
|
-
height: "
|
|
8117
|
-
fill: "
|
|
8118
|
-
viewBox: "0 0
|
|
8149
|
+
width: "40",
|
|
8150
|
+
height: "40",
|
|
8151
|
+
fill: "none",
|
|
8152
|
+
viewBox: "0 0 40 40"
|
|
8119
8153
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8120
|
-
|
|
8154
|
+
fill: "#21242C",
|
|
8155
|
+
d: "M22.2 10.696h.208a2.26 2.26 0 0 1 .312-.026c.936.087 1.664.511 2.184 1.274.676 1.023 1.014 2.418 1.014 4.186 0 .468-.017.84-.052 1.118-.225 2.305-.823 4.463-1.794 6.474-.59 1.23-1.282 2.305-2.08 3.224-.78.919-1.551 1.569-2.314 1.95-.537.243-1.005.364-1.404.364h-.182c-.762 0-1.395-.269-1.898-.806-.918-.97-1.378-2.522-1.378-4.654 0-.832.087-1.707.26-2.626.641-3.467 1.95-6.3 3.926-8.502 1.058-1.161 2.123-1.82 3.198-1.976Zm1.664 3.588c0-1.768-.46-2.652-1.378-2.652-.572 0-1.161.373-1.768 1.118-.866 1.092-1.603 2.652-2.21 4.68-.346 1.092-.52 1.733-.52 1.924.85.017 1.69.026 2.522.026l2.522-.026c.087-.087.243-.763.468-2.028.243-1.265.364-2.28.364-3.042Zm-1.248 6.734.13-.442h-5.07l-.026.182c-.537 2.15-.806 3.753-.806 4.81 0 1.179.208 1.993.624 2.444.19.208.442.312.754.312.694 0 1.421-.563 2.184-1.69.815-1.196 1.552-3.068 2.21-5.616Z"
|
|
8121
8156
|
}));
|
|
8122
|
-
case "
|
|
8157
|
+
case "x":
|
|
8123
8158
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8124
|
-
|
|
8125
|
-
|
|
8126
|
-
|
|
8127
|
-
fill: "
|
|
8128
|
-
|
|
8159
|
+
width: "40",
|
|
8160
|
+
height: "40",
|
|
8161
|
+
viewBox: "0 0 40 40",
|
|
8162
|
+
fill: "none",
|
|
8163
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8129
8164
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8130
|
-
d: "
|
|
8165
|
+
d: "M14.0685 18.7718c-.104-.104-.156-.1993-.156-.286.0693-.468.338-1.066.806-1.794.8146-1.2307 1.8373-1.9413 3.068-2.132.2426-.0347.4246-.052.546-.052.6066 0 1.1613.156 1.664.468.52.312.8926.702 1.118 1.17.2253-.2947.364-.4767.416-.546.6413-.728 1.378-1.092 2.21-1.092.7106 0 1.2826.208 1.716.624.4506.3987.676.8927.676 1.482 0 .5373-.156.988-.468 1.352-.2947.364-.6934.546-1.196.546-.3294 0-.598-.0953-.806-.286-.208-.1907-.312-.442-.312-.754 0-.7973.4333-1.3433 1.3-1.638 0-.0173-.0954-.078-.286-.182-.1734-.104-.4247-.156-.754-.156-.2254 0-.39.0173-.494.052-.6587.2773-1.144.8493-1.456 1.716-.052.1387-.3034 1.1093-.754 2.912-.4507 1.7853-.6934 2.7907-.728 3.016-.052.26-.078.52-.078.78 0 .416.1213.7453.364.988.2426.2427.5633.364.962.364.728 0 1.3866-.3033 1.976-.91.5893-.624.988-1.3087 1.196-2.054.052-.1733.104-.2687.156-.286.052-.0347.1906-.052.416-.052.3293 0 .494.0693.494.208 0 .0173-.0174.1127-.052.286-.2947 1.0747-.9014 2.0107-1.82 2.808-.8147.6413-1.6727.962-2.574.962-1.2134 0-2.132-.546-2.756-1.638-.5027.78-1.144 1.3-1.924 1.56-.156.0347-.3814.052-.676.052-1.0054 0-1.716-.3553-2.132-1.066-.1734-.2947-.26-.6413-.26-1.04 0-.52.156-.962.468-1.326.312-.364.7106-.546 1.196-.546.7453 0 1.118.364 1.118 1.092 0 .6413-.3034 1.1093-.91 1.404-.0347.0173-.078.0433-.13.078-.052.0173-.0954.0347-.13.052-.0347.0173-.0607.026-.078.026l-.078.026c0 .052.13.13.39.234.208.0867.4333.13.676.13.624 0 1.1613-.39 1.612-1.17.1906-.312.5286-1.4387 1.014-3.38.104-.3987.2166-.8407.338-1.326.1213-.4853.208-.858.26-1.118.0693-.26.1126-.416.13-.468.0866-.468.13-.806.13-1.014 0-.416-.1127-.7453-.338-.988-.2254-.2427-.5374-.364-.936-.364-.78 0-1.456.3033-2.028.91-.572.5893-.9707 1.274-1.196 2.054-.0347.156-.078.2513-.13.286-.0347.0173-.1734.026-.416.026h-.364z",
|
|
8166
|
+
fill: "#21242C"
|
|
8131
8167
|
}));
|
|
8132
|
-
case "
|
|
8168
|
+
case "y":
|
|
8133
8169
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8134
8170
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8135
|
-
width: "
|
|
8136
|
-
height: "
|
|
8137
|
-
|
|
8171
|
+
width: "40",
|
|
8172
|
+
height: "40",
|
|
8173
|
+
fill: "none",
|
|
8174
|
+
viewBox: "0 0 40 40"
|
|
8138
8175
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8139
|
-
|
|
8176
|
+
fill: "#21242C",
|
|
8177
|
+
d: "M25.166 11.786c.243 0 .45.07.624.208.173.121.26.295.26.52 0 .225-.425 2.045-1.274 5.46-.85 3.415-1.335 5.287-1.456 5.616a6.657 6.657 0 0 1-1.352 2.34 6.756 6.756 0 0 1-2.132 1.716c-.936.45-1.811.676-2.626.676-1.317 0-2.21-.416-2.678-1.248-.173-.243-.26-.59-.26-1.04 0-.59.165-1.049.494-1.378.364-.33.745-.494 1.144-.494.763 0 1.144.364 1.144 1.092 0 .641-.303 1.11-.91 1.404a1.01 1.01 0 0 1-.13.052c-.052.035-.095.06-.13.078a.2.2 0 0 1-.078.026l-.078.026c.052.104.234.217.546.338.277.104.555.156.832.156h.208c.295 0 .52-.017.676-.052.659-.19 1.283-.633 1.872-1.326.59-.693 1.04-1.525 1.352-2.496.19-.572.286-.91.286-1.014 0-.017-.017-.009-.052.026a1.168 1.168 0 0 0-.156.104 3.534 3.534 0 0 1-2.132.702c-.884 0-1.612-.208-2.184-.624-.572-.416-.945-1.014-1.118-1.794a7.464 7.464 0 0 1-.026-.806c0-.416.017-.737.052-.962.121-.745.52-2.02 1.196-3.822.381-1.023.572-1.733.572-2.132 0-.243-.026-.407-.078-.494-.035-.104-.13-.156-.286-.156h-.13c-.399 0-.78.182-1.144.546-.555.555-.98 1.387-1.274 2.496a.427.427 0 0 1-.026.104.304.304 0 0 1-.052.078l-.026.026c-.017.017-.052.026-.104.026h-.676c-.104-.104-.156-.182-.156-.234 0-.052.026-.173.078-.364.364-1.213.91-2.158 1.638-2.834.59-.555 1.205-.832 1.846-.832.728 0 1.309.2 1.742.598.433.399.65.953.65 1.664-.035.33-.06.511-.078.546 0 .104-.13.477-.39 1.118-.71 1.924-1.135 3.337-1.274 4.238a5.157 5.157 0 0 0-.026.598c0 .659.104 1.161.312 1.508.208.347.59.52 1.144.52.399 0 .771-.104 1.118-.312.364-.208.633-.407.806-.598.19-.208.425-.485.702-.832 0-.017.043-.19.13-.52.087-.347.208-.858.364-1.534l.494-1.924c.659-2.6 1.023-3.96 1.092-4.082.225-.468.598-.702 1.118-.702Z"
|
|
8140
8178
|
}));
|
|
8141
|
-
case "
|
|
8179
|
+
case "JUMP_OUT_PARENTHESES":
|
|
8142
8180
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8143
|
-
|
|
8144
|
-
|
|
8145
|
-
|
|
8146
|
-
|
|
8181
|
+
width: "40",
|
|
8182
|
+
height: "40",
|
|
8183
|
+
viewBox: "0 0 40 40",
|
|
8184
|
+
fill: "none",
|
|
8185
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8147
8186
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8148
|
-
|
|
8187
|
+
fillRule: "evenodd",
|
|
8188
|
+
clipRule: "evenodd",
|
|
8189
|
+
d: "M12.9571 13.2929c.3905.3905.3905 1.0237 0 1.4142C11.6871 15.9771 11 17.9485 11 20c0 2.0515.6871 4.0229 1.9571 5.2929.3905.3905.3905 1.0237 0 1.4142-.3905.3905-1.0237.3905-1.4142 0C9.81292 24.9771 9 22.4485 9 20c0-2.4485.81292-4.9771 2.5429-6.7071.3905-.3905 1.0237-.3905 1.4142 0zm4.5858 0c.3905-.3905 1.0237-.3905 1.4142 0C20.6871 15.0229 21.5 17.5515 21.5 20c0 2.4485-.8129 4.9771-2.5429 6.7071-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142C18.8129 24.0229 19.5 22.0515 19.5 20c0-2.0515-.6871-4.0229-1.9571-5.2929-.3905-.3905-.3905-1.0237 0-1.4142z",
|
|
8190
|
+
fill: "#21242C"
|
|
8191
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8192
|
+
fillRule: "evenodd",
|
|
8193
|
+
clipRule: "evenodd",
|
|
8194
|
+
d: "M25.5429 16.2929c.3905-.3905 1.0237-.3905 1.4142 0l3 3c.3905.3905.3905 1.0237 0 1.4142l-3 3c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L26.8358 21H16.25c-.5523 0-1-.4477-1-1s.4477-1 1-1h10.5858l-1.2929-1.2929c-.3905-.3905-.3905-1.0237 0-1.4142z",
|
|
8195
|
+
fill: "#1865F2"
|
|
8149
8196
|
}));
|
|
8150
|
-
case "
|
|
8197
|
+
case "JUMP_OUT_EXPONENT":
|
|
8151
8198
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8152
|
-
|
|
8153
|
-
|
|
8154
|
-
|
|
8155
|
-
|
|
8199
|
+
width: "40",
|
|
8200
|
+
height: "40",
|
|
8201
|
+
viewBox: "0 0 40 40",
|
|
8202
|
+
fill: "none",
|
|
8203
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8156
8204
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8157
|
-
|
|
8205
|
+
fillRule: "evenodd",
|
|
8206
|
+
clipRule: "evenodd",
|
|
8207
|
+
d: "M18.2929 15.2929c.3905-.3905 1.0237-.3905 1.4142 0L26 21.5858V20c0-.5523.4477-1 1-1s1 .4477 1 1v4.003c-.0004.1345-.0273.2627-.0759.3798-.0477.1152-.1178.2234-.2105.3177a.809004.809004 0 01-.0131.0131c-.1797.1765-.4259.2856-.6975.2864H23c-.5523 0-1-.4477-1-1s.4477-1 1-1h1.5858l-6.2929-6.2929c-.3905-.3905-.3905-1.0237 0-1.4142zM31 33c-.5523 0-1-.4477-1-1V16c0-.5523.4477-1 1-1s1 .4477 1 1v16c0 .5523-.4477 1-1 1z",
|
|
8208
|
+
fill: "#1865F2"
|
|
8209
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8210
|
+
fillRule: "evenodd",
|
|
8211
|
+
clipRule: "evenodd",
|
|
8212
|
+
d: "M9 9c-.55228 0-1 .44772-1 1v6c0 .5523.44772 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1H9zm5 2h-4v4h4v-4z",
|
|
8213
|
+
fill: "#21242C"
|
|
8158
8214
|
}));
|
|
8159
|
-
case "
|
|
8160
|
-
// MATHEMATICAL ITALIC SMALL CHI
|
|
8161
|
-
// https://en.wikipedia.org/wiki/Chi_(letter)#Mathematical_chi
|
|
8215
|
+
case "JUMP_OUT_BASE":
|
|
8162
8216
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8163
|
-
|
|
8164
|
-
|
|
8165
|
-
|
|
8166
|
-
fill: "
|
|
8167
|
-
|
|
8168
|
-
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
|
|
8173
|
-
|
|
8174
|
-
|
|
8175
|
-
|
|
8176
|
-
|
|
8177
|
-
|
|
8217
|
+
width: "40",
|
|
8218
|
+
height: "40",
|
|
8219
|
+
viewBox: "0 0 40 40",
|
|
8220
|
+
fill: "none",
|
|
8221
|
+
style: {
|
|
8222
|
+
display: "block",
|
|
8223
|
+
transform: "scale(1,-1)"
|
|
8224
|
+
},
|
|
8225
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8226
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8227
|
+
fillRule: "evenodd",
|
|
8228
|
+
clipRule: "evenodd",
|
|
8229
|
+
d: "M18.2929 15.2929c.3905-.3905 1.0237-.3905 1.4142 0L26 21.5858V20c0-.5523.4477-1 1-1s1 .4477 1 1v4.003c-.0004.1345-.0273.2627-.0759.3798-.0477.1152-.1178.2234-.2105.3177a.809004.809004 0 01-.0131.0131c-.1797.1765-.4259.2856-.6975.2864H23c-.5523 0-1-.4477-1-1s.4477-1 1-1h1.5858l-6.2929-6.2929c-.3905-.3905-.3905-1.0237 0-1.4142zM31 33c-.5523 0-1-.4477-1-1V16c0-.5523.4477-1 1-1s1 .4477 1 1v16c0 .5523-.4477 1-1 1z",
|
|
8230
|
+
fill: "#1865F2"
|
|
8231
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8232
|
+
fillRule: "evenodd",
|
|
8233
|
+
clipRule: "evenodd",
|
|
8234
|
+
d: "M9 9c-.55228 0-1 .44772-1 1v6c0 .5523.44772 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1H9zm5 2h-4v4h4v-4z",
|
|
8235
|
+
fill: "#21242C"
|
|
8236
|
+
}));
|
|
8237
|
+
case "JUMP_INTO_NUMERATOR":
|
|
8178
8238
|
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8179
|
-
|
|
8180
|
-
|
|
8181
|
-
|
|
8182
|
-
fill: "
|
|
8183
|
-
|
|
8184
|
-
}, /*#__PURE__*/React__namespace.createElement("
|
|
8185
|
-
|
|
8186
|
-
|
|
8187
|
-
|
|
8188
|
-
|
|
8189
|
-
|
|
8190
|
-
|
|
8239
|
+
width: "40",
|
|
8240
|
+
height: "40",
|
|
8241
|
+
viewBox: "0 0 40 40",
|
|
8242
|
+
fill: "none",
|
|
8243
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8244
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8245
|
+
fillRule: "evenodd",
|
|
8246
|
+
clipRule: "evenodd",
|
|
8247
|
+
d: "M9 11c.55228 0 1 .4477 1 1v16c0 .5523-.44772 1-1 1s-1-.4477-1-1V12c0-.5523.44772-1 1-1zm5 1c0-.5523.4477-1 1-1h3.9998c.0001 0 0 0 0 0 .1356 0 .2651.027.383.0759.1171.0484.2268.1201.3222.2149l.0042.0042c.1931.1942.29.448.2908.702V16c0 .5523-.4477 1-1 1s-1-.4477-1-1v-1.5858l-4.2929 4.2929c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L16.5858 13H15c-.5523 0-1-.4477-1-1z",
|
|
8248
|
+
fill: "#1865F2"
|
|
8249
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8250
|
+
fillRule: "evenodd",
|
|
8251
|
+
clipRule: "evenodd",
|
|
8252
|
+
d: "M23 23c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
8253
|
+
fill: "#21242C"
|
|
8254
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
8255
|
+
clipPath: "url(#clip0_874_41680)"
|
|
8256
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8257
|
+
fillRule: "evenodd",
|
|
8258
|
+
clipRule: "evenodd",
|
|
8259
|
+
d: "M20 20c0-.5523.4477-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H21c-.5523 0-1-.4477-1-1z",
|
|
8260
|
+
fill: "#21242C"
|
|
8261
|
+
})), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8262
|
+
fillRule: "evenodd",
|
|
8263
|
+
clipRule: "evenodd",
|
|
8264
|
+
d: "M23 9c-.5523 0-1 .44772-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
8265
|
+
fill: "#1865F2"
|
|
8266
|
+
}), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
8267
|
+
id: "clip0_874_41680"
|
|
8268
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8269
|
+
fill: "#fff",
|
|
8270
|
+
transform: "translate(20 19)",
|
|
8271
|
+
d: "M0 0h12v2H0z"
|
|
8272
|
+
}))));
|
|
8273
|
+
case "JUMP_OUT_NUMERATOR":
|
|
8274
|
+
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8275
|
+
width: "40",
|
|
8276
|
+
height: "40",
|
|
8277
|
+
viewBox: "0 0 40 40",
|
|
8278
|
+
fill: "none",
|
|
8279
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8280
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8281
|
+
fillRule: "evenodd",
|
|
8282
|
+
clipRule: "evenodd",
|
|
8283
|
+
d: "M26 13c.5523 0 1 .4477 1 1v11.5858l1.2929-1.2929c.3905-.3905 1.0237-.3905 1.4142 0 .3905.3905.3905 1.0237 0 1.4142l-3 3c-.3905.3905-1.0237.3905-1.4142 0l-3-3c-.3905-.3905-.3905-1.0237 0-1.4142.3905-.3905 1.0237-.3905 1.4142 0L25 25.5858V14c0-.5523.4477-1 1-1zM13 23c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
8284
|
+
fill: "#1865F2"
|
|
8285
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
8286
|
+
clipPath: "url(#clip0_874_41686)"
|
|
8287
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8288
|
+
fillRule: "evenodd",
|
|
8289
|
+
clipRule: "evenodd",
|
|
8290
|
+
d: "M10 20c0-.5523.4477-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H11c-.5523 0-1-.4477-1-1z",
|
|
8291
|
+
fill: "#21242C"
|
|
8292
|
+
})), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8293
|
+
fillRule: "evenodd",
|
|
8294
|
+
clipRule: "evenodd",
|
|
8295
|
+
d: "M13 9c-.5523 0-1 .44772-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
8296
|
+
fill: "#21242C"
|
|
8297
|
+
}), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
8298
|
+
id: "clip0_874_41686"
|
|
8299
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8300
|
+
fill: "#fff",
|
|
8301
|
+
transform: "translate(10 19)",
|
|
8302
|
+
d: "M0 0h12v2H0z"
|
|
8303
|
+
}))));
|
|
8304
|
+
case "JUMP_OUT_DENOMINATOR":
|
|
8305
|
+
return /*#__PURE__*/React__namespace.createElement("svg", {
|
|
8306
|
+
width: "40",
|
|
8307
|
+
height: "40",
|
|
8308
|
+
viewBox: "0 0 40 40",
|
|
8309
|
+
fill: "none",
|
|
8310
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8311
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8312
|
+
fillRule: "evenodd",
|
|
8313
|
+
clipRule: "evenodd",
|
|
8314
|
+
d: "M31 11c.5523 0 1 .4477 1 1v16c0 .5523-.4477 1-1 1s-1-.4477-1-1V12c0-.5523.4477-1 1-1zm-9 9c0-.5523.4477-1 1-1h4c.5523 0 1 .4477 1 1v4c0 .5523-.4477 1-1 1s-1-.4477-1-1v-1.5858l-4.2929 4.2929c-.3905.3905-1.0237.3905-1.4142 0-.3905-.3905-.3905-1.0237 0-1.4142L24.5858 21H23c-.5523 0-1-.4477-1-1z",
|
|
8315
|
+
fill: "#1865F2"
|
|
8316
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8317
|
+
fillRule: "evenodd",
|
|
8318
|
+
clipRule: "evenodd",
|
|
8319
|
+
d: "M11 23c-.5523 0-1 .4477-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.5523-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
8320
|
+
fill: "#21242C"
|
|
8321
|
+
}), /*#__PURE__*/React__namespace.createElement("g", {
|
|
8322
|
+
clipPath: "url(#clip0_874_41692)"
|
|
8323
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8324
|
+
fillRule: "evenodd",
|
|
8325
|
+
clipRule: "evenodd",
|
|
8326
|
+
d: "M8 20c0-.5523.44772-1 1-1h10c.5523 0 1 .4477 1 1s-.4477 1-1 1H9c-.55228 0-1-.4477-1-1z",
|
|
8327
|
+
fill: "#21242C"
|
|
8328
|
+
})), /*#__PURE__*/React__namespace.createElement("path", {
|
|
8329
|
+
fillRule: "evenodd",
|
|
8330
|
+
clipRule: "evenodd",
|
|
8331
|
+
d: "M11 9c-.5523 0-1 .44772-1 1v6c0 .5523.4477 1 1 1h6c.5523 0 1-.4477 1-1v-6c0-.55228-.4477-1-1-1h-6zm5 2h-4v4h4v-4z",
|
|
8332
|
+
fill: "#21242C"
|
|
8333
|
+
}), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
8334
|
+
id: "clip0_874_41692"
|
|
8335
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
8336
|
+
fill: "#fff",
|
|
8337
|
+
transform: "translate(8 19)",
|
|
8338
|
+
d: "M0 0h12v2H0z"
|
|
8339
|
+
}))));
|
|
8191
8340
|
|
|
8192
8341
|
/**
|
|
8193
8342
|
* ANYTHING BELOW IS NOT YET HANDLED
|
|
8194
8343
|
*/
|
|
8195
8344
|
case "MANY":
|
|
8196
|
-
case "FRAC_EXCLUSIVE":
|
|
8197
|
-
case "THETA":
|
|
8198
8345
|
case "NOOP":
|
|
8199
8346
|
case "UP":
|
|
8200
8347
|
case "DOWN":
|
|
8201
8348
|
case "LEFT":
|
|
8202
8349
|
case "RIGHT":
|
|
8203
|
-
case "JUMP_OUT_PARENTHESES":
|
|
8204
|
-
case "JUMP_OUT_EXPONENT":
|
|
8205
|
-
case "JUMP_OUT_BASE":
|
|
8206
|
-
case "JUMP_INTO_NUMERATOR":
|
|
8207
|
-
case "JUMP_OUT_NUMERATOR":
|
|
8208
|
-
case "JUMP_OUT_DENOMINATOR":
|
|
8209
8350
|
case "PHI":
|
|
8210
8351
|
case "NTHROOT3":
|
|
8211
8352
|
case "POW":
|
|
8212
8353
|
case "LOG_B":
|
|
8354
|
+
case "a":
|
|
8355
|
+
case "b":
|
|
8356
|
+
case "c":
|
|
8213
8357
|
case "d":
|
|
8214
8358
|
case "e":
|
|
8215
8359
|
case "f":
|
|
@@ -8230,7 +8374,6 @@ function ButtonAsset(_ref) {
|
|
|
8230
8374
|
case "u":
|
|
8231
8375
|
case "v":
|
|
8232
8376
|
case "w":
|
|
8233
|
-
case "y":
|
|
8234
8377
|
case "z":
|
|
8235
8378
|
case "A":
|
|
8236
8379
|
case "B":
|
|
@@ -8255,6 +8398,7 @@ function ButtonAsset(_ref) {
|
|
|
8255
8398
|
case "U":
|
|
8256
8399
|
case "V":
|
|
8257
8400
|
case "W":
|
|
8401
|
+
case "X":
|
|
8258
8402
|
case "Y":
|
|
8259
8403
|
case "Z":
|
|
8260
8404
|
// placeholder
|
|
@@ -8371,7 +8515,7 @@ const styles$1 = aphrodite.StyleSheet.create({
|
|
|
8371
8515
|
}
|
|
8372
8516
|
});
|
|
8373
8517
|
|
|
8374
|
-
const columns =
|
|
8518
|
+
const columns = 3;
|
|
8375
8519
|
function ExtrasPage(props) {
|
|
8376
8520
|
const {
|
|
8377
8521
|
extraKeys,
|
|
@@ -8413,18 +8557,21 @@ function NumbersPage(props) {
|
|
|
8413
8557
|
const {
|
|
8414
8558
|
onClickKey
|
|
8415
8559
|
} = props;
|
|
8560
|
+
// These keys are arranged sequentially so that tabbing follows numerical order. This
|
|
8561
|
+
// allows us to visually mimic a keypad without affecting a11y. The visual order of the
|
|
8562
|
+
// keys in the keypad is determined by their coordinates, not their order in the DOM.
|
|
8416
8563
|
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8417
|
-
keyConfig: KeyConfigs.
|
|
8564
|
+
keyConfig: KeyConfigs.NUM_1,
|
|
8418
8565
|
onClickKey: onClickKey,
|
|
8419
|
-
coord: [0,
|
|
8566
|
+
coord: [0, 2]
|
|
8420
8567
|
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8421
|
-
keyConfig: KeyConfigs.
|
|
8568
|
+
keyConfig: KeyConfigs.NUM_2,
|
|
8422
8569
|
onClickKey: onClickKey,
|
|
8423
|
-
coord: [1,
|
|
8570
|
+
coord: [1, 2]
|
|
8424
8571
|
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8425
|
-
keyConfig: KeyConfigs.
|
|
8572
|
+
keyConfig: KeyConfigs.NUM_3,
|
|
8426
8573
|
onClickKey: onClickKey,
|
|
8427
|
-
coord: [2,
|
|
8574
|
+
coord: [2, 2]
|
|
8428
8575
|
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8429
8576
|
keyConfig: KeyConfigs.NUM_4,
|
|
8430
8577
|
onClickKey: onClickKey,
|
|
@@ -8438,17 +8585,17 @@ function NumbersPage(props) {
|
|
|
8438
8585
|
onClickKey: onClickKey,
|
|
8439
8586
|
coord: [2, 1]
|
|
8440
8587
|
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8441
|
-
keyConfig: KeyConfigs.
|
|
8588
|
+
keyConfig: KeyConfigs.NUM_7,
|
|
8442
8589
|
onClickKey: onClickKey,
|
|
8443
|
-
coord: [0,
|
|
8590
|
+
coord: [0, 0]
|
|
8444
8591
|
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8445
|
-
keyConfig: KeyConfigs.
|
|
8592
|
+
keyConfig: KeyConfigs.NUM_8,
|
|
8446
8593
|
onClickKey: onClickKey,
|
|
8447
|
-
coord: [1,
|
|
8594
|
+
coord: [1, 0]
|
|
8448
8595
|
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8449
|
-
keyConfig: KeyConfigs.
|
|
8596
|
+
keyConfig: KeyConfigs.NUM_9,
|
|
8450
8597
|
onClickKey: onClickKey,
|
|
8451
|
-
coord: [2,
|
|
8598
|
+
coord: [2, 0]
|
|
8452
8599
|
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8453
8600
|
keyConfig: KeyConfigs.NUM_0,
|
|
8454
8601
|
onClickKey: onClickKey,
|
|
@@ -8461,6 +8608,11 @@ function NumbersPage(props) {
|
|
|
8461
8608
|
keyConfig: KeyConfigs.NEGATIVE,
|
|
8462
8609
|
onClickKey: onClickKey,
|
|
8463
8610
|
coord: [2, 3]
|
|
8611
|
+
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8612
|
+
keyConfig: KeyConfigs.PERCENT,
|
|
8613
|
+
onClickKey: onClickKey,
|
|
8614
|
+
coord: [3, 0],
|
|
8615
|
+
secondary: true
|
|
8464
8616
|
}));
|
|
8465
8617
|
}
|
|
8466
8618
|
|
|
@@ -8527,12 +8679,39 @@ function OperatorsPage(props) {
|
|
|
8527
8679
|
})));
|
|
8528
8680
|
}
|
|
8529
8681
|
|
|
8682
|
+
function getCursorContextConfig(cursorContext) {
|
|
8683
|
+
if (!cursorContext) {
|
|
8684
|
+
return null;
|
|
8685
|
+
}
|
|
8686
|
+
switch (cursorContext) {
|
|
8687
|
+
case CursorContext.NONE:
|
|
8688
|
+
return null;
|
|
8689
|
+
case CursorContext.IN_PARENS:
|
|
8690
|
+
return KeyConfigs.JUMP_OUT_PARENTHESES;
|
|
8691
|
+
case CursorContext.IN_SUPER_SCRIPT:
|
|
8692
|
+
return KeyConfigs.JUMP_OUT_EXPONENT;
|
|
8693
|
+
case CursorContext.IN_SUB_SCRIPT:
|
|
8694
|
+
return KeyConfigs.JUMP_OUT_BASE;
|
|
8695
|
+
case CursorContext.IN_NUMERATOR:
|
|
8696
|
+
return KeyConfigs.JUMP_OUT_NUMERATOR;
|
|
8697
|
+
case CursorContext.IN_DENOMINATOR:
|
|
8698
|
+
return KeyConfigs.JUMP_OUT_DENOMINATOR;
|
|
8699
|
+
case CursorContext.BEFORE_FRACTION:
|
|
8700
|
+
return KeyConfigs.JUMP_INTO_NUMERATOR;
|
|
8701
|
+
}
|
|
8702
|
+
}
|
|
8530
8703
|
function SharedKeys(props) {
|
|
8531
8704
|
const {
|
|
8532
8705
|
onClickKey,
|
|
8706
|
+
cursorContext,
|
|
8533
8707
|
divisionKey,
|
|
8534
|
-
multiplicationDot
|
|
8708
|
+
multiplicationDot,
|
|
8709
|
+
selectedPage
|
|
8535
8710
|
} = props;
|
|
8711
|
+
const cursorKeyConfig = getCursorContextConfig(cursorContext);
|
|
8712
|
+
|
|
8713
|
+
// Fraction position depends on the page
|
|
8714
|
+
const fractionCoord = selectedPage === "Numbers" || selectedPage === "Operators" ? [3, 1] : [3, 0];
|
|
8536
8715
|
return /*#__PURE__*/React__namespace.createElement(React__namespace.Fragment, null, /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8537
8716
|
keyConfig: KeyConfigs.PLUS,
|
|
8538
8717
|
onClickKey: onClickKey,
|
|
@@ -8543,6 +8722,11 @@ function SharedKeys(props) {
|
|
|
8543
8722
|
onClickKey: onClickKey,
|
|
8544
8723
|
coord: [5, 0],
|
|
8545
8724
|
secondary: true
|
|
8725
|
+
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8726
|
+
keyConfig: KeyConfigs.FRAC_INCLUSIVE,
|
|
8727
|
+
onClickKey: onClickKey,
|
|
8728
|
+
coord: fractionCoord,
|
|
8729
|
+
secondary: true
|
|
8546
8730
|
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8547
8731
|
keyConfig: multiplicationDot ? KeyConfigs.CDOT : KeyConfigs.TIMES,
|
|
8548
8732
|
onClickKey: onClickKey,
|
|
@@ -8563,8 +8747,8 @@ function SharedKeys(props) {
|
|
|
8563
8747
|
onClickKey: onClickKey,
|
|
8564
8748
|
coord: [5, 2],
|
|
8565
8749
|
secondary: true
|
|
8566
|
-
}), /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8567
|
-
keyConfig:
|
|
8750
|
+
}), cursorKeyConfig && /*#__PURE__*/React__namespace.createElement(KeypadButton, {
|
|
8751
|
+
keyConfig: cursorKeyConfig,
|
|
8568
8752
|
onClickKey: onClickKey,
|
|
8569
8753
|
coord: [4, 3],
|
|
8570
8754
|
secondary: true
|
|
@@ -8576,6 +8760,9 @@ function SharedKeys(props) {
|
|
|
8576
8760
|
}));
|
|
8577
8761
|
}
|
|
8578
8762
|
|
|
8763
|
+
const defaultProps = {
|
|
8764
|
+
extraKeys: []
|
|
8765
|
+
};
|
|
8579
8766
|
function allPages(props) {
|
|
8580
8767
|
var _props$extraKeys;
|
|
8581
8768
|
const pages = ["Numbers"];
|
|
@@ -8592,12 +8779,16 @@ function allPages(props) {
|
|
|
8592
8779
|
}
|
|
8593
8780
|
return pages;
|
|
8594
8781
|
}
|
|
8782
|
+
|
|
8783
|
+
// The main (v2) Keypad. Use this component to present an accessible, onscreen
|
|
8784
|
+
// keypad to learners for entering math expressions.
|
|
8595
8785
|
function Keypad(props) {
|
|
8596
8786
|
const [selectedPage, setSelectedPage] = React__namespace.useState("Numbers");
|
|
8597
8787
|
const availablePages = allPages(props);
|
|
8598
8788
|
const {
|
|
8599
8789
|
onClickKey,
|
|
8600
|
-
|
|
8790
|
+
cursorContext,
|
|
8791
|
+
extraKeys,
|
|
8601
8792
|
multiplicationDot,
|
|
8602
8793
|
divisionKey,
|
|
8603
8794
|
preAlgebra,
|
|
@@ -8611,9 +8802,13 @@ function Keypad(props) {
|
|
|
8611
8802
|
onSelectItem: tabbarItem => {
|
|
8612
8803
|
setSelectedPage(tabbarItem);
|
|
8613
8804
|
},
|
|
8614
|
-
style: styles.tabbar
|
|
8805
|
+
style: styles.tabbar,
|
|
8806
|
+
onClickClose: () => onClickKey("DISMISS")
|
|
8615
8807
|
}), /*#__PURE__*/React__namespace.createElement(wonderBlocksCore.View, {
|
|
8616
|
-
style: styles.grid
|
|
8808
|
+
style: styles.grid,
|
|
8809
|
+
role: "grid",
|
|
8810
|
+
tabIndex: 0,
|
|
8811
|
+
"aria-label": "Keypad"
|
|
8617
8812
|
}, selectedPage === "Numbers" && /*#__PURE__*/React__namespace.createElement(NumbersPage, {
|
|
8618
8813
|
onClickKey: onClickKey
|
|
8619
8814
|
}), selectedPage === "Extras" && /*#__PURE__*/React__namespace.createElement(ExtrasPage, {
|
|
@@ -8629,10 +8824,13 @@ function Keypad(props) {
|
|
|
8629
8824
|
onClickKey: onClickKey
|
|
8630
8825
|
}), /*#__PURE__*/React__namespace.createElement(SharedKeys, {
|
|
8631
8826
|
onClickKey: onClickKey,
|
|
8827
|
+
cursorContext: cursorContext,
|
|
8632
8828
|
multiplicationDot: multiplicationDot,
|
|
8633
|
-
divisionKey: divisionKey
|
|
8829
|
+
divisionKey: divisionKey,
|
|
8830
|
+
selectedPage: selectedPage
|
|
8634
8831
|
})));
|
|
8635
8832
|
}
|
|
8833
|
+
Keypad.defaultProps = defaultProps;
|
|
8636
8834
|
const styles = aphrodite.StyleSheet.create({
|
|
8637
8835
|
tabbar: {
|
|
8638
8836
|
background: Color__default["default"].white
|