@pie-lib/math-toolbar 1.18.0 → 1.19.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 CHANGED
@@ -3,7 +3,7 @@
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.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.11.30...@pie-lib/math-toolbar@1.18.0) (2025-07-31)
6
+ # [1.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.11.30...@pie-lib/math-toolbar@1.19.0) (2025-07-31)
7
7
 
8
8
  **Note:** Version bump only for package @pie-lib/math-toolbar
9
9
 
@@ -11,38 +11,26 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
- # [1.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.11.30...@pie-lib/math-toolbar@1.17.0) (2025-07-31)
14
+ # [1.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.11.30...@pie-lib/math-toolbar@1.18.0) (2025-07-31)
15
15
 
16
16
  **Note:** Version bump only for package @pie-lib/math-toolbar
17
17
 
18
+ # [1.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.11.30...@pie-lib/math-toolbar@1.17.0) (2025-07-31)
18
19
 
19
-
20
-
20
+ **Note:** Version bump only for package @pie-lib/math-toolbar
21
21
 
22
22
  # [1.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.11.30...@pie-lib/math-toolbar@1.16.0) (2025-07-31)
23
23
 
24
24
  **Note:** Version bump only for package @pie-lib/math-toolbar
25
25
 
26
-
27
-
28
-
29
-
30
26
  # [1.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.11.30...@pie-lib/math-toolbar@1.15.0) (2025-07-31)
31
27
 
32
28
  **Note:** Version bump only for package @pie-lib/math-toolbar
33
29
 
34
-
35
-
36
-
37
-
38
30
  # [1.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.11.30...@pie-lib/math-toolbar@1.14.0) (2025-07-31)
39
31
 
40
32
  **Note:** Version bump only for package @pie-lib/math-toolbar
41
33
 
42
-
43
-
44
-
45
-
46
34
  # [1.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-toolbar@1.11.30...@pie-lib/math-toolbar@1.16.0) (2025-07-31)
47
35
 
48
36
  **Note:** Version bump only for package @pie-lib/math-toolbar
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.RawDoneButton = exports.DoneButton = void 0;
9
+
10
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
11
+
12
+ var _react = _interopRequireDefault(require("react"));
13
+
14
+ var _IconButton = _interopRequireDefault(require("@material-ui/core/IconButton"));
15
+
16
+ var _Check = _interopRequireDefault(require("@material-ui/icons/Check"));
17
+
18
+ var _styles = require("@material-ui/core/styles");
19
+
20
+ var _propTypes = _interopRequireDefault(require("prop-types"));
21
+
22
+ var _classnames = _interopRequireDefault(require("classnames"));
23
+
24
+ var RawDoneButton = function RawDoneButton(_ref) {
25
+ var classes = _ref.classes,
26
+ onClick = _ref.onClick,
27
+ hideBackground = _ref.hideBackground;
28
+ return /*#__PURE__*/_react["default"].createElement(_IconButton["default"], {
29
+ "aria-label": "Done",
30
+ className: classes.iconRoot,
31
+ onClick: onClick,
32
+ classes: {
33
+ label: classes.label,
34
+ root: (0, _classnames["default"])(classes.iconRoot, (0, _defineProperty2["default"])({}, classes.hideBackground, hideBackground))
35
+ }
36
+ }, /*#__PURE__*/_react["default"].createElement(_Check["default"], null));
37
+ };
38
+
39
+ exports.RawDoneButton = RawDoneButton;
40
+ RawDoneButton.propTypes = {
41
+ classes: _propTypes["default"].object.isRequired,
42
+ onClick: _propTypes["default"].func
43
+ };
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;
68
+ //# sourceMappingURL=done-button.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/done-button.jsx"],"names":["RawDoneButton","classes","onClick","hideBackground","iconRoot","label","root","propTypes","PropTypes","object","isRequired","func","styles","theme","verticalAlign","width","height","color","backgroundColor","palette","common","white","grey","position","top","DoneButton"],"mappings":";;;;;;;;;;;AAAA;;AAEA;;AACA;;AACA;;AACA;;AACA;;AAEO,IAAMA,aAAa,GAAG,SAAhBA,aAAgB;AAAA,MAAGC,OAAH,QAAGA,OAAH;AAAA,MAAYC,OAAZ,QAAYA,OAAZ;AAAA,MAAqBC,cAArB,QAAqBA,cAArB;AAAA,sBAC3B,gCAAC,sBAAD;AACE,kBAAW,MADb;AAEE,IAAA,SAAS,EAAEF,OAAO,CAACG,QAFrB;AAGE,IAAA,OAAO,EAAEF,OAHX;AAIE,IAAA,OAAO,EAAE;AACPG,MAAAA,KAAK,EAAEJ,OAAO,CAACI,KADR;AAEPC,MAAAA,IAAI,EAAE,4BAAWL,OAAO,CAACG,QAAnB,uCAAgCH,OAAO,CAACE,cAAxC,EAAyDA,cAAzD;AAFC;AAJX,kBASE,gCAAC,iBAAD,OATF,CAD2B;AAAA,CAAtB;;;AAcPH,aAAa,CAACO,SAAd,GAA0B;AACxBN,EAAAA,OAAO,EAAEO,sBAAUC,MAAV,CAAiBC,UADF;AAExBR,EAAAA,OAAO,EAAEM,sBAAUG;AAFK,CAA1B;;AAKA,IAAMC,MAAM,GAAG,SAATA,MAAS,CAACC,KAAD;AAAA,SAAY;AACzBT,IAAAA,QAAQ,EAAE;AACRU,MAAAA,aAAa,EAAE,KADP;AAERC,MAAAA,KAAK,EAAE,MAFC;AAGRC,MAAAA,MAAM,EAAE,MAHA;AAIRC,MAAAA,KAAK,EAAE;AAJC,KADe;AAOzBd,IAAAA,cAAc,EAAE;AACde,MAAAA,eAAe,EAAEL,KAAK,CAACM,OAAN,CAAcC,MAAd,CAAqBC,KADxB;AAGd,iBAAW;AACTH,QAAAA,eAAe,EAAEL,KAAK,CAACM,OAAN,CAAcG,IAAd,CAAmB,GAAnB;AADR;AAHG,KAPS;AAczBjB,IAAAA,KAAK,EAAE;AACLkB,MAAAA,QAAQ,EAAE,UADL;AAELC,MAAAA,GAAG,EAAE;AAFA;AAdkB,GAAZ;AAAA,CAAf;;AAmBO,IAAMC,UAAU,GAAG,wBAAWb,MAAX,EAAmBZ,aAAnB,CAAnB","sourcesContent":["import React from 'react';\n\nimport IconButton from '@material-ui/core/IconButton';\nimport Check from '@material-ui/icons/Check';\nimport { withStyles } from '@material-ui/core/styles';\nimport PropTypes from 'prop-types';\nimport classNames from 'classnames';\n\nexport const RawDoneButton = ({ classes, onClick, hideBackground }) => (\n <IconButton\n aria-label=\"Done\"\n className={classes.iconRoot}\n onClick={onClick}\n classes={{\n label: classes.label,\n root: classNames(classes.iconRoot, { [classes.hideBackground]: hideBackground }),\n }}\n >\n <Check />\n </IconButton>\n);\n\nRawDoneButton.propTypes = {\n classes: PropTypes.object.isRequired,\n onClick: PropTypes.func,\n};\n\nconst styles = (theme) => ({\n iconRoot: {\n verticalAlign: 'top',\n width: '28px',\n height: '28px',\n color: '#00bb00',\n },\n hideBackground: {\n backgroundColor: theme.palette.common.white,\n\n '&:hover': {\n backgroundColor: theme.palette.grey[200],\n },\n },\n label: {\n position: 'absolute',\n top: '2px',\n },\n});\nexport const DoneButton = withStyles(styles)(RawDoneButton);\n"],"file":"done-button.js"}