Skip to content

Commit 3c552a9

Browse files
authored
Merge pull request #2220 from pie-framework/develop
master
2 parents 8e4cd06 + eeec65e commit 3c552a9

78 files changed

Lines changed: 1585 additions & 446 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0 # REQUIRED for lerna version
1616
- name: Configure Git
1717
run: |
1818
git config user.name "github-actions[bot]"
1919
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
20-
- uses: actions/setup-node@v4
20+
- uses: actions/setup-node@v5
2121
with:
2222
node-version: 24
2323
cache: yarn
@@ -35,14 +35,14 @@ jobs:
3535
contents: write
3636
id-token: write # REQUIRED for npm trusted publishing
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
with:
4040
fetch-depth: 0 # REQUIRED for lerna version
4141
- name: Configure Git
4242
run: |
4343
git config user.name "github-actions[bot]"
4444
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
45-
- uses: actions/setup-node@v4
45+
- uses: actions/setup-node@v5
4646
with:
4747
node-version: 24
4848
registry-url: https://registry.npmjs.org/
@@ -61,14 +61,14 @@ jobs:
6161
contents: write
6262
id-token: write # REQUIRED for npm trusted publishing
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565
with:
6666
fetch-depth: 0 # REQUIRED for lerna version
6767
- name: Configure Git
6868
run: |
6969
git config user.name "github-actions[bot]"
7070
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
71-
- uses: actions/setup-node@v4
71+
- uses: actions/setup-node@v5
7272
with:
7373
node-version: 24
7474
registry-url: https://registry.npmjs.org/

packages/categorize/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.2-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/categorize@1.2.0-next.3...@pie-lib/categorize@2.0.2-next.0) (2026-05-06)
7+
8+
**Note:** Version bump only for package @pie-lib/categorize
9+
10+
## [2.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/categorize@2.0.0...@pie-lib/categorize@2.0.1) (2026-04-28)
11+
12+
**Note:** Version bump only for package @pie-lib/categorize
13+
614
# [1.2.0-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/categorize@1.2.0-next.1...@pie-lib/categorize@1.2.0-next.3) (2026-02-26)
715

816
**Note:** Version bump only for package @pie-lib/categorize

packages/categorize/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pie-lib/categorize",
3-
"version": "2.0.0",
3+
"version": "2.0.2-next.0",
44
"description": "",
55
"main": "lib/index.js",
66
"module": "src/index.js",

packages/charting/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [7.0.2-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@7.0.2-next.1...@pie-lib/charting@7.0.2-next.2) (2026-05-06)
7+
8+
**Note:** Version bump only for package @pie-lib/charting
9+
10+
## [7.0.2-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@7.0.2-next.0...@pie-lib/charting@7.0.2-next.1) (2026-05-06)
11+
12+
**Note:** Version bump only for package @pie-lib/charting
13+
14+
## [7.0.2-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.15...@pie-lib/charting@7.0.2-next.0) (2026-05-06)
15+
16+
### Bug Fixes
17+
18+
- **charting:** enhance RawChartAxes with MathJax rendering support and improve hidden label measurement PD-5496 PD-5497 ([4644a62](https://github.com/pie-framework/pie-lib/commit/4644a62365cc22b5558ae99cfa64c78bdc21815a))
19+
- **charting:** fix math rendering race condition in fractional chart labels PD-5496 ([03d9d81](https://github.com/pie-framework/pie-lib/commit/03d9d8131872aff762866abb5c910312a7151864))
20+
21+
## [7.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@7.0.0...@pie-lib/charting@7.0.1) (2026-04-28)
22+
23+
**Note:** Version bump only for package @pie-lib/charting
24+
625
# [6.2.0-next.39](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@6.2.0-next.38...@pie-lib/charting@6.2.0-next.39) (2026-04-24)
726

827
**Note:** Version bump only for package @pie-lib/charting

packages/charting/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publishConfig": {
44
"access": "public"
55
},
6-
"version": "7.0.0",
6+
"version": "7.0.2-next.2",
77
"description": "charting",
88
"keywords": [
99
"react",
@@ -22,10 +22,10 @@
2222
"@mapbox/point-geometry": "^1.1.0",
2323
"@mui/icons-material": "^7.3.4",
2424
"@mui/material": "^7.3.4",
25-
"@pie-lib/math-rendering": "^5.0.0",
26-
"@pie-lib/plot": "^4.0.0",
27-
"@pie-lib/render-ui": "^6.0.0",
28-
"@pie-lib/translator": "^4.0.0",
25+
"@pie-lib/math-rendering": "^5.0.2-next.0",
26+
"@pie-lib/plot": "^4.0.2-next.2",
27+
"@pie-lib/render-ui": "^6.1.0-next.1",
28+
"@pie-lib/translator": "^4.0.2-next.0",
2929
"@visx/axis": "^3.0.0",
3030
"@visx/event": "^3.0.0",
3131
"@visx/grid": "^3.0.0",
@@ -47,7 +47,7 @@
4747
"react": "^18.2.0"
4848
},
4949
"devDependencies": {
50-
"@pie-lib/test-utils": "^2.0.0"
50+
"@pie-lib/test-utils": "^2.0.2-next.0"
5151
},
5252
"gitHead": "433bcb776c2975739e7417f133d31cd996164116"
5353
}

packages/config-ui/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [13.0.2-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/config-ui@13.0.2-next.1...@pie-lib/config-ui@13.0.2-next.2) (2026-05-06)
7+
8+
### Bug Fixes
9+
10+
- fix print module for mask-markup elemenets [PIE-216] ([7246d37](https://github.com/pie-framework/pie-lib/commit/7246d376600b630dd082f8d83f084086d92cac93))
11+
12+
## [13.0.2-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/config-ui@13.0.2-next.0...@pie-lib/config-ui@13.0.2-next.1) (2026-05-06)
13+
14+
**Note:** Version bump only for package @pie-lib/config-ui
15+
16+
## [13.0.2-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/config-ui@12.2.0-next.15...@pie-lib/config-ui@13.0.2-next.0) (2026-05-06)
17+
18+
### Bug Fixes
19+
20+
- **config-ui:** adjust number field padding PD-5786 ([5e80d6b](https://github.com/pie-framework/pie-lib/commit/5e80d6bdaf11a15cb93377e0518a21cd2ccb24db))
21+
- **config-ui:** enable default style for text field PIE-133 ([3e7d13c](https://github.com/pie-framework/pie-lib/commit/3e7d13c32663d10ce0d1f125a02962ce53d7f289))
22+
23+
## [13.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/config-ui@13.0.0...@pie-lib/config-ui@13.0.1) (2026-04-28)
24+
25+
**Note:** Version bump only for package @pie-lib/config-ui
26+
627
# [12.2.0-next.37](https://github.com/pie-framework/pie-lib/compare/@pie-lib/config-ui@12.2.0-next.36...@pie-lib/config-ui@12.2.0-next.37) (2026-04-23)
728

829
### Bug Fixes

packages/config-ui/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pie-lib/config-ui",
3-
"version": "13.0.0",
3+
"version": "13.0.2-next.2",
44
"main": "lib/index.js",
55
"module": "src/index.js",
66
"publishConfig": {
@@ -13,9 +13,9 @@
1313
"@emotion/style": "^0.8.0",
1414
"@mui/icons-material": "^7.3.4",
1515
"@mui/material": "^7.3.4",
16-
"@pie-lib/editable-html-tip-tap": "^2.0.0",
17-
"@pie-lib/icons": "^4.0.0",
18-
"@pie-lib/render-ui": "^6.0.0",
16+
"@pie-lib/editable-html-tip-tap": "^2.1.0-next.2",
17+
"@pie-lib/icons": "^4.0.2-next.0",
18+
"@pie-lib/render-ui": "^6.1.0-next.1",
1919
"assert": "^1.4.1",
2020
"debug": "^4.1.1",
2121
"lodash-es": "^4.17.23",

packages/config-ui/src/choice-configuration/index.jsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,10 @@ import ActionDelete from '@mui/icons-material/Delete';
66
import ArrowRight from '@mui/icons-material/SubdirectoryArrowRight';
77
import IconButton from '@mui/material/IconButton';
88
import { InputContainer } from '@pie-lib/render-ui';
9-
// import EditableHtml from '@pie-lib/editable-html-tip-tap';
9+
import EditableHtml from '@pie-lib/editable-html-tip-tap';
1010
import { InputCheckbox, InputRadio } from '../inputs';
1111
import FeedbackMenu from './feedback-menu';
1212

13-
// - mathquill error window not defined
14-
let EditableHtml;
15-
if (typeof window !== 'undefined') {
16-
EditableHtml = require('@pie-lib/editable-html-tip-tap')['default'];
17-
}
18-
1913
const StyledEditorHolder = styled('div')(({ theme }) => ({
2014
marginTop: theme.spacing(2),
2115
}));

packages/config-ui/src/feedback-config/feedback-selector.jsx

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
1-
//import EditableHTML from '@pie-lib/editable-html-tip-tap';
1+
import EditableHtml from '@pie-lib/editable-html-tip-tap';
22
import { InputContainer } from '@pie-lib/render-ui';
33
import PropTypes from 'prop-types';
44
import React from 'react';
55
import { styled } from '@mui/material/styles';
66
import Group from './group';
77

88
// - mathquill error window not defined
9-
let EditableHtml;
10-
let StyledEditableHTML;
11-
if (typeof window !== 'undefined') {
12-
EditableHtml = require('@pie-lib/editable-html-tip-tap')['default'];
13-
StyledEditableHTML = styled(EditableHtml)(({ theme }) => ({
14-
fontFamily: theme.typography.fontFamily,
15-
}));
16-
}
9+
const StyledEditableHTML = styled(EditableHtml)(({ theme }) => ({
10+
fontFamily: theme.typography.fontFamily,
11+
}));
1712

1813
const feedbackLabels = {
1914
default: 'Simple Feedback',

packages/controller-utils/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.2-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/controller-utils@1.2.0-next.3...@pie-lib/controller-utils@2.0.2-next.0) (2026-05-06)
7+
8+
**Note:** Version bump only for package @pie-lib/controller-utils
9+
10+
## [2.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/controller-utils@2.0.0...@pie-lib/controller-utils@2.0.1) (2026-04-28)
11+
12+
**Note:** Version bump only for package @pie-lib/controller-utils
13+
614
# [1.2.0-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/controller-utils@1.2.0-next.1...@pie-lib/controller-utils@1.2.0-next.3) (2026-02-26)
715

816
**Note:** Version bump only for package @pie-lib/controller-utils

0 commit comments

Comments
 (0)