@pie-element/fraction-model 5.2.0-next.2 → 5.2.0-next.4
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,6 +3,18 @@
|
|
|
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
|
+
# [5.2.0-next.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/fraction-model@5.2.0-next.3...@pie-element/fraction-model@5.2.0-next.4) (2026-04-08)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- bump shared modules and libs PIE-53, PIE-48, PIE-114, PIE-74, PIE-35, PIE-40, PIE-27 ([3e6682d](https://github.com/pie-framework/pie-elements/commit/3e6682db1eb23414f3a4222abe13d2dd8ae5378e))
|
|
11
|
+
|
|
12
|
+
# [5.2.0-next.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/fraction-model@5.2.0-next.2...@pie-element/fraction-model@5.2.0-next.3) (2026-04-08)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **fraction-model:** adjust padding for number input field PIE-21 ([7e94919](https://github.com/pie-framework/pie-elements/commit/7e949193559c5af3dc14ef410bdf47784b607fd8))
|
|
17
|
+
|
|
6
18
|
# [5.2.0-next.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/fraction-model@5.2.0-next.1...@pie-element/fraction-model@5.2.0-next.2) (2026-04-03)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @pie-element/fraction-model
|
package/configure/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
# [4.2.0-next.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/fraction-model-configure@4.2.0-next.3...@pie-element/fraction-model-configure@4.2.0-next.4) (2026-04-08)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- bump shared modules and libs PIE-53, PIE-48, PIE-114, PIE-74, PIE-35, PIE-40, PIE-27 ([3e6682d](https://github.com/pie-framework/pie-elements/commit/3e6682db1eb23414f3a4222abe13d2dd8ae5378e))
|
|
11
|
+
|
|
12
|
+
# [4.2.0-next.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/fraction-model-configure@4.2.0-next.2...@pie-element/fraction-model-configure@4.2.0-next.3) (2026-04-08)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **fraction-model:** adjust padding for number input field PIE-21 ([7e94919](https://github.com/pie-framework/pie-elements/commit/7e949193559c5af3dc14ef410bdf47784b607fd8))
|
|
17
|
+
|
|
6
18
|
# [4.2.0-next.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/fraction-model-configure@4.2.0-next.1...@pie-element/fraction-model-configure@4.2.0-next.2) (2026-04-03)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @pie-element/fraction-model-configure
|
|
@@ -22,6 +22,9 @@ const MiniStyledNTF = (0, _styles.styled)(_configUi.NumberTextField)({
|
|
|
22
22
|
'& [class^="MuiInputBase-root"]': {
|
|
23
23
|
height: 40,
|
|
24
24
|
fontSize: '14px'
|
|
25
|
+
},
|
|
26
|
+
'& [class^="MuiInputBase-input"]': {
|
|
27
|
+
padding: '18.5px 14px'
|
|
25
28
|
}
|
|
26
29
|
});
|
|
27
30
|
class NumberTextField extends _react.default.Component {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"number-text-field.js","names":["_configUi","require","_react","_interopRequireDefault","_styles","StyledNTF","styled","NTF","theme","marginLeft","spacing","MiniStyledNTF","maxWidth","width","marginTop","height","fontSize","NumberTextField","React","Component","render","props","default","createElement","_extends2","variant","exports","_defineProperty2","MiniField","forwardRef","ref","_default"],"sources":["../src/number-text-field.jsx"],"sourcesContent":["import { NumberTextField as NTF } from '@pie-lib/config-ui';\nimport React from 'react';\nimport { styled } from '@mui/material/styles';\n\nconst StyledNTF = styled(NTF)(({ theme }) => ({\n marginLeft: theme.spacing(1),\n}));\n\nconst MiniStyledNTF = styled(NTF)({\n maxWidth: '120px',\n width: '120px',\n marginTop: '0',\n '& [class^=\"MuiInputBase-root\"]': {\n height: 40,\n fontSize: '14px',\n },\n});\n\nexport class NumberTextField extends React.Component {\n static propTypes = {};\n\n render() {\n const props = { ...this.props };\n return <StyledNTF {...props} variant=\"outlined\" />;\n }\n}\n\nexport const MiniField = React.forwardRef((props, ref) => (\n <MiniStyledNTF {...props} ref={ref} variant=\"outlined\" />\n));\n\nexport default NumberTextField;\n"],"mappings":";;;;;;;;;AAAA,IAAAA,SAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,OAAA,GAAAH,OAAA;AAEA,MAAMI,SAAS,GAAG,IAAAC,cAAM,EAACC,yBAAG,CAAC,CAAC,CAAC;EAAEC;AAAM,CAAC,MAAM;EAC5CC,UAAU,EAAED,KAAK,CAACE,OAAO,CAAC,CAAC;AAC7B,CAAC,CAAC,CAAC;AAEH,MAAMC,aAAa,GAAG,IAAAL,cAAM,EAACC,yBAAG,CAAC,CAAC;EAChCK,QAAQ,EAAE,OAAO;EACjBC,KAAK,EAAE,OAAO;EACdC,SAAS,EAAE,GAAG;EACd,gCAAgC,EAAE;IAChCC,MAAM,EAAE,EAAE;IACVC,QAAQ,EAAE;EACZ;AACF,CAAC,CAAC;AAEK,MAAMC,eAAe,SAASC,cAAK,CAACC,SAAS,CAAC;EAGnDC,MAAMA,CAAA,EAAG;IACP,MAAMC,KAAK,GAAG;MAAE,GAAG,IAAI,CAACA;IAAM,CAAC;IAC/B,
|
|
1
|
+
{"version":3,"file":"number-text-field.js","names":["_configUi","require","_react","_interopRequireDefault","_styles","StyledNTF","styled","NTF","theme","marginLeft","spacing","MiniStyledNTF","maxWidth","width","marginTop","height","fontSize","padding","NumberTextField","React","Component","render","props","default","createElement","_extends2","variant","exports","_defineProperty2","MiniField","forwardRef","ref","_default"],"sources":["../src/number-text-field.jsx"],"sourcesContent":["import { NumberTextField as NTF } from '@pie-lib/config-ui';\nimport React from 'react';\nimport { styled } from '@mui/material/styles';\n\nconst StyledNTF = styled(NTF)(({ theme }) => ({\n marginLeft: theme.spacing(1),\n}));\n\nconst MiniStyledNTF = styled(NTF)({\n maxWidth: '120px',\n width: '120px',\n marginTop: '0',\n '& [class^=\"MuiInputBase-root\"]': {\n height: 40,\n fontSize: '14px',\n },\n '& [class^=\"MuiInputBase-input\"]': {\n padding: '18.5px 14px'\n }\n});\n\nexport class NumberTextField extends React.Component {\n static propTypes = {};\n\n render() {\n const props = { ...this.props };\n return <StyledNTF {...props} variant=\"outlined\" />;\n }\n}\n\nexport const MiniField = React.forwardRef((props, ref) => (\n <MiniStyledNTF {...props} ref={ref} variant=\"outlined\" />\n));\n\nexport default NumberTextField;\n"],"mappings":";;;;;;;;;AAAA,IAAAA,SAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,OAAA,GAAAH,OAAA;AAEA,MAAMI,SAAS,GAAG,IAAAC,cAAM,EAACC,yBAAG,CAAC,CAAC,CAAC;EAAEC;AAAM,CAAC,MAAM;EAC5CC,UAAU,EAAED,KAAK,CAACE,OAAO,CAAC,CAAC;AAC7B,CAAC,CAAC,CAAC;AAEH,MAAMC,aAAa,GAAG,IAAAL,cAAM,EAACC,yBAAG,CAAC,CAAC;EAChCK,QAAQ,EAAE,OAAO;EACjBC,KAAK,EAAE,OAAO;EACdC,SAAS,EAAE,GAAG;EACd,gCAAgC,EAAE;IAChCC,MAAM,EAAE,EAAE;IACVC,QAAQ,EAAE;EACZ,CAAC;EACD,iCAAiC,EAAE;IACjCC,OAAO,EAAE;EACX;AACF,CAAC,CAAC;AAEK,MAAMC,eAAe,SAASC,cAAK,CAACC,SAAS,CAAC;EAGnDC,MAAMA,CAAA,EAAG;IACP,MAAMC,KAAK,GAAG;MAAE,GAAG,IAAI,CAACA;IAAM,CAAC;IAC/B,oBAAOpB,MAAA,CAAAqB,OAAA,CAAAC,aAAA,CAACnB,SAAS,MAAAoB,SAAA,CAAAF,OAAA,MAAKD,KAAK;MAAEI,OAAO,EAAC;IAAU,EAAE,CAAC;EACpD;AACF;AAACC,OAAA,CAAAT,eAAA,GAAAA,eAAA;AAAA,IAAAU,gBAAA,CAAAL,OAAA,EAPYL,eAAe,eACP,CAAC,CAAC;AAQhB,MAAMW,SAAS,GAAAF,OAAA,CAAAE,SAAA,gBAAGV,cAAK,CAACW,UAAU,CAAC,CAACR,KAAK,EAAES,GAAG,kBACnD7B,MAAA,CAAAqB,OAAA,CAAAC,aAAA,CAACb,aAAa,MAAAc,SAAA,CAAAF,OAAA,MAAKD,KAAK;EAAES,GAAG,EAAEA,GAAI;EAACL,OAAO,EAAC;AAAU,EAAE,CACzD,CAAC;AAAC,IAAAM,QAAA,GAAAL,OAAA,CAAAJ,OAAA,GAEYL,eAAe","ignoreList":[]}
|
package/configure/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-element/fraction-model-configure",
|
|
3
3
|
"private": true,
|
|
4
|
-
"version": "4.2.0-next.
|
|
4
|
+
"version": "4.2.0-next.4",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"module": "src/index.js",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@mui/icons-material": "^7.3.4",
|
|
12
12
|
"@mui/material": "^7.3.4",
|
|
13
13
|
"@pie-framework/pie-configure-events": "^1.3.0",
|
|
14
|
-
"@pie-lib/config-ui": "12.2.0-next.
|
|
15
|
-
"@pie-lib/editable-html-tip-tap": "1.2.0-next.
|
|
14
|
+
"@pie-lib/config-ui": "12.2.0-next.26",
|
|
15
|
+
"@pie-lib/editable-html-tip-tap": "1.2.0-next.25",
|
|
16
16
|
"debug": "^4.1.1",
|
|
17
17
|
"lodash-es": "^4.17.23",
|
|
18
18
|
"prop-types": "^15.8.1",
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "5.2.0-next.
|
|
7
|
+
"version": "5.2.0-next.4",
|
|
8
8
|
"description": "",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@emotion/react": "^11.14.0",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@mui/icons-material": "^7.3.4",
|
|
13
13
|
"@mui/material": "^7.3.4",
|
|
14
14
|
"@pie-framework/pie-player-events": "^0.1.0",
|
|
15
|
-
"@pie-lib/config-ui": "12.2.0-next.
|
|
15
|
+
"@pie-lib/config-ui": "12.2.0-next.26",
|
|
16
16
|
"@pie-lib/correct-answer-toggle": "3.2.0-next.7",
|
|
17
17
|
"@pie-lib/math-rendering": "4.2.0-next.3",
|
|
18
18
|
"@pie-lib/render-ui": "5.2.0-next.7",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"author": "",
|
|
26
26
|
"license": "ISC",
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "e64146f576cd82e78e57d0e77b1c1fe3d1c74e53",
|
|
28
28
|
"scripts": {
|
|
29
29
|
"postpublish": "../../scripts/postpublish"
|
|
30
30
|
},
|