@pie-lib/math-toolbar 1.27.3-next.12 → 1.28.0-mui-update.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 +4 -24
- package/lib/done-button.js +34 -51
- package/lib/done-button.js.map +1 -1
- package/lib/editor-and-pad.js +265 -330
- package/lib/editor-and-pad.js.map +1 -1
- package/lib/index.js +64 -109
- package/lib/index.js.map +1 -1
- package/lib/math-preview.js +138 -185
- package/lib/math-preview.js.map +1 -1
- package/lib/utils.js +1 -5
- package/lib/utils.js.map +1 -1
- package/package.json +11 -9
- package/src/done-button.jsx +27 -33
- package/src/editor-and-pad.jsx +215 -229
- package/src/index.jsx +11 -14
- package/src/math-preview.jsx +124 -139
package/CHANGELOG.md
CHANGED
|
@@ -3,33 +3,13 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# [1.
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @pie-lib/math-toolbar
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [1.30.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.27.0...@pie-lib/math-toolbar@1.30.0) (2025-10-16)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @pie-lib/math-toolbar
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
# [1.28.0-mui-update.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.27.2...@pie-lib/math-toolbar@1.28.0-mui-update.0) (2025-10-31)
|
|
19
7
|
|
|
20
8
|
|
|
9
|
+
### Features
|
|
21
10
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @pie-lib/math-toolbar
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# [1.28.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.27.0...@pie-lib/math-toolbar@1.28.0) (2025-10-16)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @pie-lib/math-toolbar
|
|
11
|
+
* bump react and react-dom ([01dc19e](https://github.com/pie-framework/pie-lib/commit/01dc19e88bbc8d372c561d1511df1a82937d45af))
|
|
12
|
+
* packages/math-toolbar & packages/icons mui update PD-5268 ([8a18bc1](https://github.com/pie-framework/pie-lib/commit/8a18bc1a79cd3ca3baa7ff7a94b050ec20371649))
|
|
33
13
|
|
|
34
14
|
|
|
35
15
|
|
package/lib/done-button.js
CHANGED
|
@@ -1,68 +1,51 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
7
|
exports.RawDoneButton = exports.DoneButton = void 0;
|
|
9
|
-
|
|
10
8
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
|
-
|
|
12
9
|
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
|
|
14
|
-
var
|
|
15
|
-
|
|
16
|
-
var _Check = _interopRequireDefault(require("@material-ui/icons/Check"));
|
|
17
|
-
|
|
18
|
-
var _styles = require("@material-ui/core/styles");
|
|
19
|
-
|
|
10
|
+
var _IconButton = _interopRequireDefault(require("@mui/material/IconButton"));
|
|
11
|
+
var _Check = _interopRequireDefault(require("@mui/icons-material/Check"));
|
|
12
|
+
var _styles = require("@mui/material/styles");
|
|
20
13
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
21
|
-
|
|
22
|
-
var
|
|
23
|
-
|
|
24
|
-
var
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
14
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
15
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
16
|
+
var StyledIconButton = (0, _styles.styled)(_IconButton["default"])(function (_ref) {
|
|
17
|
+
var theme = _ref.theme,
|
|
18
|
+
hideBackground = _ref.hideBackground;
|
|
19
|
+
return _objectSpread(_objectSpread({
|
|
20
|
+
verticalAlign: 'top',
|
|
21
|
+
width: '28px',
|
|
22
|
+
height: '28px',
|
|
23
|
+
color: '#00bb00'
|
|
24
|
+
}, hideBackground && {
|
|
25
|
+
backgroundColor: theme.palette.common.white,
|
|
26
|
+
'&:hover': {
|
|
27
|
+
backgroundColor: theme.palette.grey[200]
|
|
28
|
+
}
|
|
29
|
+
}), {}, {
|
|
30
|
+
'& .MuiIconButton-label': {
|
|
31
|
+
position: 'absolute',
|
|
32
|
+
top: '2px'
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
var RawDoneButton = exports.RawDoneButton = function RawDoneButton(_ref2) {
|
|
37
|
+
var onClick = _ref2.onClick,
|
|
38
|
+
hideBackground = _ref2.hideBackground;
|
|
39
|
+
return /*#__PURE__*/_react["default"].createElement(StyledIconButton, {
|
|
29
40
|
"aria-label": "Done",
|
|
30
|
-
className: classes.iconRoot,
|
|
31
41
|
onClick: onClick,
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
root: (0, _classnames["default"])(classes.iconRoot, (0, _defineProperty2["default"])({}, classes.hideBackground, hideBackground))
|
|
35
|
-
}
|
|
42
|
+
hideBackground: hideBackground,
|
|
43
|
+
size: "large"
|
|
36
44
|
}, /*#__PURE__*/_react["default"].createElement(_Check["default"], null));
|
|
37
45
|
};
|
|
38
|
-
|
|
39
|
-
exports.RawDoneButton = RawDoneButton;
|
|
40
46
|
RawDoneButton.propTypes = {
|
|
41
|
-
|
|
42
|
-
|
|
47
|
+
onClick: _propTypes["default"].func,
|
|
48
|
+
hideBackground: _propTypes["default"].bool
|
|
43
49
|
};
|
|
44
|
-
|
|
45
|
-
var styles = function styles(theme) {
|
|
46
|
-
return {
|
|
47
|
-
iconRoot: {
|
|
48
|
-
verticalAlign: 'top',
|
|
49
|
-
width: '28px',
|
|
50
|
-
height: '28px',
|
|
51
|
-
color: '#00bb00'
|
|
52
|
-
},
|
|
53
|
-
hideBackground: {
|
|
54
|
-
backgroundColor: theme.palette.common.white,
|
|
55
|
-
'&:hover': {
|
|
56
|
-
backgroundColor: theme.palette.grey[200]
|
|
57
|
-
}
|
|
58
|
-
},
|
|
59
|
-
label: {
|
|
60
|
-
position: 'absolute',
|
|
61
|
-
top: '2px'
|
|
62
|
-
}
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
var DoneButton = (0, _styles.withStyles)(styles)(RawDoneButton);
|
|
67
|
-
exports.DoneButton = DoneButton;
|
|
50
|
+
var DoneButton = exports.DoneButton = RawDoneButton;
|
|
68
51
|
//# sourceMappingURL=done-button.js.map
|
package/lib/done-button.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"done-button.js","names":["_react","_interopRequireDefault","require","_IconButton","_Check","_styles","_propTypes","ownKeys","e","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty2","getOwnPropertyDescriptors","defineProperties","defineProperty","StyledIconButton","styled","IconButton","_ref","theme","hideBackground","verticalAlign","width","height","color","backgroundColor","palette","common","white","grey","position","top","RawDoneButton","exports","_ref2","onClick","createElement","size","propTypes","PropTypes","func","bool","DoneButton"],"sources":["../src/done-button.jsx"],"sourcesContent":["import React from 'react';\n\nimport IconButton from '@mui/material/IconButton';\nimport Check from '@mui/icons-material/Check';\nimport { styled } from '@mui/material/styles';\nimport PropTypes from 'prop-types';\n\nconst StyledIconButton = styled(IconButton)(({ theme, hideBackground }) => ({\n verticalAlign: 'top',\n width: '28px',\n height: '28px',\n color: '#00bb00',\n ...(hideBackground && {\n backgroundColor: theme.palette.common.white,\n '&:hover': {\n backgroundColor: theme.palette.grey[200],\n },\n }),\n '& .MuiIconButton-label': {\n position: 'absolute',\n top: '2px',\n },\n}));\n\nexport const RawDoneButton = ({ onClick, hideBackground }) => (\n <StyledIconButton\n aria-label=\"Done\"\n onClick={onClick}\n hideBackground={hideBackground}\n size=\"large\"\n >\n <Check />\n </StyledIconButton>\n);\n\nRawDoneButton.propTypes = {\n onClick: PropTypes.func,\n hideBackground: PropTypes.bool,\n};\n\nexport const DoneButton = RawDoneButton;\n"],"mappings":"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","ignoreList":[]}
|