From 73b622d996f1e2e21091f3cf80f819856049fe90 Mon Sep 17 00:00:00 2001 From: carlacostea Date: Thu, 14 May 2026 13:29:34 +0300 Subject: [PATCH 1/4] fix(multiple-choice): decouple radio group name from partLabel to keep EBSR parts in separate radio groups regardless of partLabels setting PIE-174 --- packages/ebsr/configure/src/defaults.js | 2 +- packages/ebsr/docs/demo/generate.js | 4 ++-- packages/multiple-choice/src/choice-input.jsx | 8 +++++++ .../multiple-choice/src/multiple-choice.jsx | 24 ++++++++++++++++++- 4 files changed, 34 insertions(+), 4 deletions(-) diff --git a/packages/ebsr/configure/src/defaults.js b/packages/ebsr/configure/src/defaults.js index 63b00f76a8..0015ed8ec5 100644 --- a/packages/ebsr/configure/src/defaults.js +++ b/packages/ebsr/configure/src/defaults.js @@ -126,7 +126,7 @@ const partModel = (base) => ({ export default { model: { - partLabels: true, + partLabels: false, partLabelType: 'Letters', // partialScoring: false, partA: partModel(), diff --git a/packages/ebsr/docs/demo/generate.js b/packages/ebsr/docs/demo/generate.js index 01ddb25694..f9e51878b3 100644 --- a/packages/ebsr/docs/demo/generate.js +++ b/packages/ebsr/docs/demo/generate.js @@ -2,7 +2,7 @@ exports.model = (id, element) => ({ id, element, partA: { - choiceMode: 'checkbox', + choiceMode: 'radio', choices: [ { value: 'yellow', @@ -24,7 +24,7 @@ exports.model = (id, element) => ({ promptEnabled: true, }, partB: { - choiceMode: 'checkbox', + choiceMode: 'radio', choices: [ { value: 'orange', diff --git a/packages/multiple-choice/src/choice-input.jsx b/packages/multiple-choice/src/choice-input.jsx index b305daa387..f8877a2c11 100644 --- a/packages/multiple-choice/src/choice-input.jsx +++ b/packages/multiple-choice/src/choice-input.jsx @@ -337,6 +337,14 @@ export class ChoiceInput extends React.Component { ...(screenReaderLabel ? { 'aria-describedby': this.descId } : {}), }; + // eslint-disable-next-line no-console + console.log('[ChoiceInput render]', { + tagName, + value, + choiceMode, + autoFocusRefAttached: !!this.props.autoFocusRef, + }); + const control = isSelectionButtonBelow ? ( {screenReaderLabel} diff --git a/packages/multiple-choice/src/multiple-choice.jsx b/packages/multiple-choice/src/multiple-choice.jsx index 7e9fd8443a..376741f23d 100644 --- a/packages/multiple-choice/src/multiple-choice.jsx +++ b/packages/multiple-choice/src/multiple-choice.jsx @@ -71,6 +71,12 @@ const ErrorText = styled('div')(({ theme }) => ({ paddingTop: theme.spacing(1), })); +// Module-scoped counter used to give each MultipleChoice instance a unique +// radio `name` attribute. This keeps separate instances (e.g. Part A and +// Part B inside an EBSR item) in distinct radio groups regardless of any +// label-related model settings. +let groupNameCounter = 0; + export class MultipleChoice extends React.Component { static propTypes = { className: PropTypes.string, @@ -121,6 +127,9 @@ export class MultipleChoice extends React.Component { this.onToggle = this.onToggle.bind(this); this.firstInputRef = React.createRef(); + + groupNameCounter += 1; + this.groupName = `mc-group-${groupNameCounter}`; } isSelected(value) { @@ -256,6 +265,14 @@ export class MultipleChoice extends React.Component { const fieldset = e.currentTarget; const activeEl = document.activeElement; + // eslint-disable-next-line no-console + console.log('[MC handleGroupFocus]', { + partLabel: this.props.partLabel, + activeEl, + relatedTarget: e.relatedTarget, + firstInputRefCurrent: this.firstInputRef?.current, + }); + if (fieldset.contains(activeEl) && activeEl !== fieldset) { return; } @@ -263,7 +280,12 @@ export class MultipleChoice extends React.Component { // Only focus the first input if user is tabbing forward if (!e.relatedTarget || fieldset.compareDocumentPosition(e.relatedTarget) & Node.DOCUMENT_POSITION_PRECEDING) { if (this.firstInputRef?.current) { + // eslint-disable-next-line no-console + console.log('[MC handleGroupFocus] focusing first input', this.firstInputRef.current); this.firstInputRef.current.focus(); + } else { + // eslint-disable-next-line no-console + console.warn('[MC handleGroupFocus] firstInputRef.current is null — autoFocusRef did not attach'); } } }; @@ -409,7 +431,7 @@ export class MultipleChoice extends React.Component { isEvaluateMode={isEvaluateMode} choiceMode={choiceMode} disabled={disabled} - tagName={partLabel ? `group-${partLabel}` : 'group'} + tagName={this.groupName} onChoiceChanged={this.handleChange} hideTick={choice.hideTick} checked={this.getChecked(choice)} From 9ed65f5904e23f035f07594ddcb5ea5a6ff0a5aa Mon Sep 17 00:00:00 2001 From: carlacostea Date: Fri, 15 May 2026 09:14:14 +0300 Subject: [PATCH 2/4] fix(multiple-choice): forward autoFocusRef via inputRef so Tab lands on the first radio in a group, use a unique random radio group name per instance so EBSR parts stay independent regardless of partLabels PIE-174 --- packages/multiple-choice/src/choice-input.jsx | 12 ++------- .../multiple-choice/src/multiple-choice.jsx | 26 ++++--------------- 2 files changed, 7 insertions(+), 31 deletions(-) diff --git a/packages/multiple-choice/src/choice-input.jsx b/packages/multiple-choice/src/choice-input.jsx index f8877a2c11..85ef875691 100644 --- a/packages/multiple-choice/src/choice-input.jsx +++ b/packages/multiple-choice/src/choice-input.jsx @@ -337,24 +337,16 @@ export class ChoiceInput extends React.Component { ...(screenReaderLabel ? { 'aria-describedby': this.descId } : {}), }; - // eslint-disable-next-line no-console - console.log('[ChoiceInput render]', { - tagName, - value, - choiceMode, - autoFocusRefAttached: !!this.props.autoFocusRef, - }); - const control = isSelectionButtonBelow ? ( {screenReaderLabel} - + ) : ( <> {screenReaderLabel} - + ); diff --git a/packages/multiple-choice/src/multiple-choice.jsx b/packages/multiple-choice/src/multiple-choice.jsx index 376741f23d..434e0a4fb8 100644 --- a/packages/multiple-choice/src/multiple-choice.jsx +++ b/packages/multiple-choice/src/multiple-choice.jsx @@ -71,12 +71,6 @@ const ErrorText = styled('div')(({ theme }) => ({ paddingTop: theme.spacing(1), })); -// Module-scoped counter used to give each MultipleChoice instance a unique -// radio `name` attribute. This keeps separate instances (e.g. Part A and -// Part B inside an EBSR item) in distinct radio groups regardless of any -// label-related model settings. -let groupNameCounter = 0; - export class MultipleChoice extends React.Component { static propTypes = { className: PropTypes.string, @@ -128,8 +122,11 @@ export class MultipleChoice extends React.Component { this.onToggle = this.onToggle.bind(this); this.firstInputRef = React.createRef(); - groupNameCounter += 1; - this.groupName = `mc-group-${groupNameCounter}`; + // Unique radio `name` attribute per instance, so separate MultipleChoice + // instances (e.g. Part A and Part B inside EBSR, or two EBSRs on the same + // page) are always treated as independent radio groups by the browser, + // regardless of any label-related model settings or bundle deduplication. + this.groupName = `mc-group-${Math.random().toString(36).slice(2, 10)}`; } isSelected(value) { @@ -265,14 +262,6 @@ export class MultipleChoice extends React.Component { const fieldset = e.currentTarget; const activeEl = document.activeElement; - // eslint-disable-next-line no-console - console.log('[MC handleGroupFocus]', { - partLabel: this.props.partLabel, - activeEl, - relatedTarget: e.relatedTarget, - firstInputRefCurrent: this.firstInputRef?.current, - }); - if (fieldset.contains(activeEl) && activeEl !== fieldset) { return; } @@ -280,12 +269,7 @@ export class MultipleChoice extends React.Component { // Only focus the first input if user is tabbing forward if (!e.relatedTarget || fieldset.compareDocumentPosition(e.relatedTarget) & Node.DOCUMENT_POSITION_PRECEDING) { if (this.firstInputRef?.current) { - // eslint-disable-next-line no-console - console.log('[MC handleGroupFocus] focusing first input', this.firstInputRef.current); this.firstInputRef.current.focus(); - } else { - // eslint-disable-next-line no-console - console.warn('[MC handleGroupFocus] firstInputRef.current is null — autoFocusRef did not attach'); } } }; From c27347f02e1c5395ab46d3792ef89c9ad0044303 Mon Sep 17 00:00:00 2001 From: carlacostea Date: Fri, 15 May 2026 13:02:54 +0300 Subject: [PATCH 3/4] refactor(multiple-choice): rely on native radiogroup tab semantics, drop fieldset tabIndex workaround PIE-174 --- packages/multiple-choice/src/choice-input.jsx | 4 +-- packages/multiple-choice/src/choice.jsx | 4 +-- packages/multiple-choice/src/index.js | 2 -- .../multiple-choice/src/multiple-choice.jsx | 27 +------------------ 4 files changed, 4 insertions(+), 33 deletions(-) diff --git a/packages/multiple-choice/src/choice-input.jsx b/packages/multiple-choice/src/choice-input.jsx index 85ef875691..6b78a59078 100644 --- a/packages/multiple-choice/src/choice-input.jsx +++ b/packages/multiple-choice/src/choice-input.jsx @@ -340,13 +340,13 @@ export class ChoiceInput extends React.Component { const control = isSelectionButtonBelow ? ( {screenReaderLabel} - + ) : ( <> {screenReaderLabel} - + ); diff --git a/packages/multiple-choice/src/choice.jsx b/packages/multiple-choice/src/choice.jsx index 847f157536..c5f3941743 100644 --- a/packages/multiple-choice/src/choice.jsx +++ b/packages/multiple-choice/src/choice.jsx @@ -69,7 +69,6 @@ export class Choice extends React.Component { hoverAnswerBackgroundColor, hoverAnswerStrokeColor, hoverAnswerStrokeWidth, - autoFocusRef, tagName } = this.props; @@ -158,7 +157,7 @@ export class Choice extends React.Component { noBorder={noBorder} horizontalLayout={horizontalLayout} > - + ); @@ -187,7 +186,6 @@ Choice.propTypes = { hoverAnswerStrokeWidth: PropTypes.string, tagName: PropTypes.string, isSelectionButtonBelow: PropTypes.bool, - autoFocusRef: PropTypes.object, }; export default Choice; diff --git a/packages/multiple-choice/src/index.js b/packages/multiple-choice/src/index.js index 1feca27c6e..0935bf7d4c 100644 --- a/packages/multiple-choice/src/index.js +++ b/packages/multiple-choice/src/index.js @@ -73,7 +73,6 @@ function getPlayerAttributes(element) { const srRaw = getRaw('includeSrHeading', 'include-sr-heading', 'includesrheading'); const includeSrHeading = srRaw == null ? true : srRaw !== false && srRaw !== 'false'; - console.log('getPlayerAttributes', { baseHeadingLevel, includeSrHeading }); return { baseHeadingLevel, includeSrHeading }; } @@ -82,7 +81,6 @@ function getPlayerAttributes(element) { function resolveHeadingProps(element) { const fromPlayer = getPlayerAttributes(element); - console.log('element._baseHeadingLevel', element._baseHeadingLevel, 'element._includeSrHeading', element._includeSrHeading); return { baseHeadingLevel: element._baseHeadingLevel !== undefined ? element._baseHeadingLevel : fromPlayer.baseHeadingLevel, includeSrHeading: element._includeSrHeading !== undefined ? element._includeSrHeading : fromPlayer.includeSrHeading, diff --git a/packages/multiple-choice/src/multiple-choice.jsx b/packages/multiple-choice/src/multiple-choice.jsx index 434e0a4fb8..1423a35f27 100644 --- a/packages/multiple-choice/src/multiple-choice.jsx +++ b/packages/multiple-choice/src/multiple-choice.jsx @@ -51,9 +51,6 @@ const StyledFieldset = styled('fieldset')({ padding: '0.01em 0 0 0', margin: '0px', minWidth: '0px', - '&:focus': { - outline: 'none', - }, }); const SrOnly = styled('h3')({ @@ -120,7 +117,6 @@ export class MultipleChoice extends React.Component { }; this.onToggle = this.onToggle.bind(this); - this.firstInputRef = React.createRef(); // Unique radio `name` attribute per instance, so separate MultipleChoice // instances (e.g. Part A and Part B inside EBSR, or two EBSRs on the same @@ -258,22 +254,6 @@ export class MultipleChoice extends React.Component { return {label}; } - handleGroupFocus = (e) => { - const fieldset = e.currentTarget; - const activeEl = document.activeElement; - - if (fieldset.contains(activeEl) && activeEl !== fieldset) { - return; - } - - // Only focus the first input if user is tabbing forward - if (!e.relatedTarget || fieldset.compareDocumentPosition(e.relatedTarget) & Node.DOCUMENT_POSITION_PRECEDING) { - if (this.firstInputRef?.current) { - this.firstInputRef.current.focus(); - } - } - }; - render() { const { mode, @@ -372,11 +352,7 @@ export class MultipleChoice extends React.Component { )} - + {choices.map((choice, index) => ( Date: Fri, 15 May 2026 14:44:50 +0300 Subject: [PATCH 4/4] fix: bump pie-libs PIE-434, PIE-437, PIE-452, PIE-510, PIE-451 --- package.json | 58 +-- .../configure/package.json | 6 +- packages/boilerplate-item-type/package.json | 4 +- packages/calculator/configure/package.json | 2 +- packages/categorize/configure/package.json | 14 +- packages/categorize/controller/package.json | 8 +- packages/categorize/package.json | 14 +- packages/charting/configure/package.json | 10 +- packages/charting/controller/package.json | 2 +- packages/charting/package.json | 8 +- .../complex-rubric/configure/package.json | 6 +- packages/complex-rubric/package.json | 2 +- .../drag-in-the-blank/configure/package.json | 8 +- .../drag-in-the-blank/controller/package.json | 2 +- packages/drag-in-the-blank/package.json | 10 +- .../drawing-response/configure/package.json | 4 +- packages/drawing-response/package.json | 6 +- packages/ebsr/configure/package.json | 2 +- packages/ebsr/controller/package.json | 4 +- packages/ebsr/package.json | 2 +- .../configure/package.json | 4 +- .../controller/package.json | 4 +- .../package.json | 10 +- .../configure/package.json | 4 +- .../controller/package.json | 2 +- packages/extended-text-entry/package.json | 8 +- .../fraction-model/configure/package.json | 4 +- .../fraction-model/controller/package.json | 2 +- packages/fraction-model/package.json | 10 +- .../configure/package.json | 8 +- packages/graphing-solution-set/package.json | 10 +- packages/graphing/configure/package.json | 8 +- packages/graphing/controller/package.json | 4 +- packages/graphing/package.json | 8 +- packages/hotspot/configure/package.json | 4 +- packages/hotspot/controller/package.json | 2 +- packages/hotspot/package.json | 8 +- .../configure/package.json | 4 +- .../controller/package.json | 2 +- packages/image-cloze-association/package.json | 10 +- .../inline-dropdown/configure/package.json | 8 +- .../inline-dropdown/controller/package.json | 2 +- packages/inline-dropdown/package.json | 8 +- packages/likert/configure/package.json | 6 +- packages/likert/package.json | 4 +- packages/match-list/controller/package.json | 4 +- packages/match-list/package.json | 8 +- packages/match/configure/package.json | 10 +- packages/match/controller/package.json | 4 +- packages/match/package.json | 8 +- packages/math-inline/configure/package.json | 14 +- packages/math-inline/controller/package.json | 4 +- packages/math-inline/package.json | 12 +- .../math-templated/configure/package.json | 8 +- .../math-templated/controller/package.json | 4 +- packages/math-templated/package.json | 10 +- packages/matrix/configure/package.json | 6 +- packages/matrix/package.json | 4 +- .../multi-trait-rubric/configure/package.json | 8 +- packages/multi-trait-rubric/package.json | 4 +- .../multiple-choice/configure/package.json | 6 +- .../multiple-choice/controller/package.json | 2 +- packages/multiple-choice/package.json | 8 +- packages/number-line/configure/package.json | 6 +- packages/number-line/controller/package.json | 4 +- packages/number-line/package.json | 10 +- packages/passage/configure/package.json | 4 +- packages/passage/package.json | 4 +- .../placement-ordering/configure/package.json | 8 +- .../controller/package.json | 6 +- packages/placement-ordering/package.json | 10 +- packages/protractor/package.json | 2 +- packages/rubric/configure/package.json | 8 +- packages/rubric/package.json | 4 +- packages/ruler/configure/package.json | 2 +- packages/ruler/package.json | 2 +- packages/select-text/configure/package.json | 6 +- packages/select-text/controller/package.json | 4 +- packages/select-text/package.json | 8 +- pslb/pslb.config.js | 10 +- yarn.lock | 359 ++++++++---------- 81 files changed, 436 insertions(+), 461 deletions(-) diff --git a/package.json b/package.json index 5834075071..dd22948469 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "@babel/preset-react": "^7.28.5", "@pie-framework/build-helper": "^5.2.11", "@pie-framework/pie-code-health": "https://github.com/pie-framework/pie-code-health.git#main", - "@pie-lib/test-utils": "2.0.2-next.0", + "@pie-lib/test-utils": "2.0.2-next.1", "@pslb/pslb": "4.4.2-beta.0", "@rollup/plugin-commonjs": "^20.0.0", "@testing-library/dom": "^10.4.1", @@ -88,34 +88,34 @@ "d3-selection": "3.0.0", "@jest/test-sequencer": "29.7.0", "@types/d3-array": "3.0.3", - "@pie-lib/categorize": "2.0.2-next.0", - "@pie-lib/charting": "7.0.2-next.2", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/editable-html": "13.0.2-next.1", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/feedback": "2.0.2-next.0", - "@pie-lib/graphing-solution-set": "4.0.2-next.2", - "@pie-lib/graphing-utils": "3.0.2-next.0", - "@pie-lib/graphing": "4.0.3-next.2", - "@pie-lib/icons": "4.0.2-next.0", - "@pie-lib/mask-markup": "3.0.2-next.2", - "@pie-lib/math-evaluator": "4.0.2-next.0", - "@pie-lib/math-input": "8.1.0-next.0", - "@pie-lib/math-rendering-accessible": "5.0.2-next.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/math-toolbar": "3.0.2-next.1", - "@pie-lib/plot": "4.0.2-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/rubric": "2.0.2-next.2", - "@pie-lib/scoring-config": "5.0.2-next.0", - "@pie-lib/style-utils": "2.0.2-next.0", - "@pie-lib/test-utils": "2.0.2-next.0", - "@pie-lib/text-select": "3.0.2-next.1", - "@pie-lib/tools": "2.0.2-next.0", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/categorize": "2.0.2-next.1", + "@pie-lib/charting": "7.0.3", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/editable-html": "13.0.3-next.1", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/feedback": "2.0.2-next.1", + "@pie-lib/graphing-solution-set": "4.0.3", + "@pie-lib/graphing-utils": "3.0.2-next.1", + "@pie-lib/graphing": "4.0.4", + "@pie-lib/icons": "4.0.2-next.1", + "@pie-lib/mask-markup": "3.0.3", + "@pie-lib/math-evaluator": "4.0.3-next.1", + "@pie-lib/math-input": "8.1.0-next.1", + "@pie-lib/math-rendering-accessible": "5.0.3-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/math-toolbar": "3.0.2-next.2", + "@pie-lib/plot": "4.0.3", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/rubric": "2.0.3", + "@pie-lib/scoring-config": "5.0.3-next.1", + "@pie-lib/style-utils": "2.0.3-next.1", + "@pie-lib/test-utils": "2.0.2-next.1", + "@pie-lib/text-select": "3.0.2-next.2", + "@pie-lib/tools": "2.0.2-next.1", + "@pie-lib/translator": "4.0.2-next.1", "@pie-framework/mathquill": "1.2.1-beta.1" }, "browserslist": [ diff --git a/packages/boilerplate-item-type/configure/package.json b/packages/boilerplate-item-type/configure/package.json index 460b911e66..153e0b0f51 100644 --- a/packages/boilerplate-item-type/configure/package.json +++ b/packages/boilerplate-item-type/configure/package.json @@ -11,9 +11,9 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.6.2", diff --git a/packages/boilerplate-item-type/package.json b/packages/boilerplate-item-type/package.json index 785188824b..dbbbc48d1d 100644 --- a/packages/boilerplate-item-type/package.json +++ b/packages/boilerplate-item-type/package.json @@ -12,8 +12,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "prop-types": "^15.6.1", "react": "18.3.1", "react-dom": "18.3.1" diff --git a/packages/calculator/configure/package.json b/packages/calculator/configure/package.json index 0be531c756..0c651bb056 100644 --- a/packages/calculator/configure/package.json +++ b/packages/calculator/configure/package.json @@ -11,7 +11,7 @@ "@mui/material": "^7.3.4", "@pie-framework/material-ui-calculator": "4.0.0", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", + "@pie-lib/config-ui": "13.0.3", "react": "18.3.1", "react-dom": "18.3.1" }, diff --git a/packages/categorize/configure/package.json b/packages/categorize/configure/package.json index 8cc67b8aaa..921b0b3f5e 100644 --- a/packages/categorize/configure/package.json +++ b/packages/categorize/configure/package.json @@ -15,13 +15,13 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/categorize": "2.0.2-next.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/categorize": "2.0.2-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/translator": "4.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.6.2", diff --git a/packages/categorize/controller/package.json b/packages/categorize/controller/package.json index 05c8fe1e43..555b223c90 100644 --- a/packages/categorize/controller/package.json +++ b/packages/categorize/controller/package.json @@ -2,10 +2,10 @@ "name": "@pie-element/categorize-controller", "private": true, "dependencies": { - "@pie-lib/categorize": "2.0.2-next.0", - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/feedback": "2.0.2-next.0", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/categorize": "2.0.2-next.1", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/feedback": "2.0.2-next.1", + "@pie-lib/translator": "4.0.2-next.1", "lodash-es": "^4.17.23" }, "version": "10.1.0-next.1", diff --git a/packages/categorize/package.json b/packages/categorize/package.json index 6e74c93448..7297b0f94d 100644 --- a/packages/categorize/package.json +++ b/packages/categorize/package.json @@ -15,13 +15,13 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/categorize": "2.0.2-next.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/categorize": "2.0.2-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/translator": "4.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.6.1", diff --git a/packages/charting/configure/package.json b/packages/charting/configure/package.json index 0070998ab0..862f6a66e0 100644 --- a/packages/charting/configure/package.json +++ b/packages/charting/configure/package.json @@ -12,11 +12,11 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/charting": "7.0.2-next.2", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/charting": "7.0.3", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "prop-types": "^15.8.1", "react": "18.3.1", diff --git a/packages/charting/controller/package.json b/packages/charting/controller/package.json index fb4f0ed3ba..a8e302aed9 100644 --- a/packages/charting/controller/package.json +++ b/packages/charting/controller/package.json @@ -9,7 +9,7 @@ "test": "./node_modules/.bin/jest" }, "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23" }, diff --git a/packages/charting/package.json b/packages/charting/package.json index 3150365be9..863d1637cd 100644 --- a/packages/charting/package.json +++ b/packages/charting/package.json @@ -15,10 +15,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/charting": "7.0.2-next.2", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/charting": "7.0.3", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "lodash-es": "^4.17.23", "react": "18.3.1", diff --git a/packages/complex-rubric/configure/package.json b/packages/complex-rubric/configure/package.json index b32a34d0a1..e0132e7615 100644 --- a/packages/complex-rubric/configure/package.json +++ b/packages/complex-rubric/configure/package.json @@ -14,9 +14,9 @@ "@pie-element/multi-trait-rubric": "^8.1.0-next.1", "@pie-element/rubric": "^8.1.0-next.1", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/rubric": "2.0.2-next.2", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/rubric": "2.0.3", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.6.2", diff --git a/packages/complex-rubric/package.json b/packages/complex-rubric/package.json index ca648b293f..a241ad4010 100644 --- a/packages/complex-rubric/package.json +++ b/packages/complex-rubric/package.json @@ -13,7 +13,7 @@ "@pie-element/multi-trait-rubric": "^8.1.0-next.1", "@pie-element/rubric": "^8.1.0-next.1", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/rubric": "2.0.2-next.2", + "@pie-lib/rubric": "2.0.3", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash-es": "^4.17.23", diff --git a/packages/drag-in-the-blank/configure/package.json b/packages/drag-in-the-blank/configure/package.json index efd0e49286..f69d86de7a 100644 --- a/packages/drag-in-the-blank/configure/package.json +++ b/packages/drag-in-the-blank/configure/package.json @@ -12,10 +12,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/math-rendering": "5.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.6.2", diff --git a/packages/drag-in-the-blank/controller/package.json b/packages/drag-in-the-blank/controller/package.json index 9a7d91fc2d..0015534160 100644 --- a/packages/drag-in-the-blank/controller/package.json +++ b/packages/drag-in-the-blank/controller/package.json @@ -8,7 +8,7 @@ "author": "", "license": "ISC", "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23", "type-of": "^2.0.1" diff --git a/packages/drag-in-the-blank/package.json b/packages/drag-in-the-blank/package.json index 25735667a9..6767410d89 100644 --- a/packages/drag-in-the-blank/package.json +++ b/packages/drag-in-the-blank/package.json @@ -15,11 +15,11 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/mask-markup": "3.0.2-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/mask-markup": "3.0.3", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "lodash-es": "^4.17.23", "prop-types": "^15.6.1", "react": "18.3.1", diff --git a/packages/drawing-response/configure/package.json b/packages/drawing-response/configure/package.json index 5c22ae4dfd..afd300c84d 100644 --- a/packages/drawing-response/configure/package.json +++ b/packages/drawing-response/configure/package.json @@ -12,8 +12,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.7.2", diff --git a/packages/drawing-response/package.json b/packages/drawing-response/package.json index c4ac30f156..70d46724ab 100644 --- a/packages/drawing-response/package.json +++ b/packages/drawing-response/package.json @@ -14,9 +14,9 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/translator": "4.0.2-next.1", "konva": "8.3.0", "lodash-es": "^4.17.23", "prop-types": "^15.6.1", diff --git a/packages/ebsr/configure/package.json b/packages/ebsr/configure/package.json index 9edae8591e..681c544095 100644 --- a/packages/ebsr/configure/package.json +++ b/packages/ebsr/configure/package.json @@ -13,7 +13,7 @@ "@mui/material": "^7.3.4", "@pie-element/multiple-choice": "^13.2.0-next.1", "@pie-framework/pie-configure-events": "^1.2.0", - "@pie-lib/config-ui": "13.0.2-next.2", + "@pie-lib/config-ui": "13.0.3", "lodash-es": "^4.17.23", "prop-types": "^15.8.1", "react": "18.3.1", diff --git a/packages/ebsr/controller/package.json b/packages/ebsr/controller/package.json index 5eef477c4a..e20f241fef 100644 --- a/packages/ebsr/controller/package.json +++ b/packages/ebsr/controller/package.json @@ -7,8 +7,8 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/translator": "4.0.2-next.1", "lodash-es": "^4.17.23" }, "author": "", diff --git a/packages/ebsr/package.json b/packages/ebsr/package.json index 086787f50a..ba33cf3e58 100644 --- a/packages/ebsr/package.json +++ b/packages/ebsr/package.json @@ -9,7 +9,7 @@ "dependencies": { "@pie-element/multiple-choice": "^13.2.0-next.1", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/translator": "4.0.2-next.1", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash-es": "^4.17.23" diff --git a/packages/explicit-constructed-response/configure/package.json b/packages/explicit-constructed-response/configure/package.json index c8a6adf895..dac1c28755 100644 --- a/packages/explicit-constructed-response/configure/package.json +++ b/packages/explicit-constructed-response/configure/package.json @@ -10,8 +10,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", "classnames": "^2.2.6", "debug": "^4.1.1", "lodash-es": "^4.17.23", diff --git a/packages/explicit-constructed-response/controller/package.json b/packages/explicit-constructed-response/controller/package.json index e30e2026ea..9b1a59c84a 100644 --- a/packages/explicit-constructed-response/controller/package.json +++ b/packages/explicit-constructed-response/controller/package.json @@ -8,8 +8,8 @@ "author": "", "license": "ISC", "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/translator": "4.0.2-next.1", "debug": "^4.1.1", "he": "^1.2.0", "lodash-es": "^4.17.23", diff --git a/packages/explicit-constructed-response/package.json b/packages/explicit-constructed-response/package.json index 8670feb99f..0b8650857f 100644 --- a/packages/explicit-constructed-response/package.json +++ b/packages/explicit-constructed-response/package.json @@ -15,11 +15,11 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/mask-markup": "3.0.2-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/mask-markup": "3.0.3", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/translator": "4.0.2-next.1", "classnames": "^2.2.5", "he": "^1.2.0", "lodash-es": "^4.17.23", diff --git a/packages/extended-text-entry/configure/package.json b/packages/extended-text-entry/configure/package.json index fe114b1e8a..7c5f843ecd 100644 --- a/packages/extended-text-entry/configure/package.json +++ b/packages/extended-text-entry/configure/package.json @@ -13,8 +13,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.6.2", "react": "18.3.1", diff --git a/packages/extended-text-entry/controller/package.json b/packages/extended-text-entry/controller/package.json index bf2b310178..84ec99b487 100644 --- a/packages/extended-text-entry/controller/package.json +++ b/packages/extended-text-entry/controller/package.json @@ -6,7 +6,7 @@ "main": "lib/index.js", "module": "src/index.js", "dependencies": { - "@pie-lib/feedback": "2.0.2-next.0" + "@pie-lib/feedback": "2.0.2-next.1" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" diff --git a/packages/extended-text-entry/package.json b/packages/extended-text-entry/package.json index 2ba6dad214..0c7d277423 100644 --- a/packages/extended-text-entry/package.json +++ b/packages/extended-text-entry/package.json @@ -14,10 +14,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash.throttle": "^4.1.1", diff --git a/packages/fraction-model/configure/package.json b/packages/fraction-model/configure/package.json index 9dff40aa46..98d2d0e26c 100644 --- a/packages/fraction-model/configure/package.json +++ b/packages/fraction-model/configure/package.json @@ -11,8 +11,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.8.1", diff --git a/packages/fraction-model/controller/package.json b/packages/fraction-model/controller/package.json index f0d9030e95..a635693e28 100644 --- a/packages/fraction-model/controller/package.json +++ b/packages/fraction-model/controller/package.json @@ -6,7 +6,7 @@ "main": "lib/index.js", "module": "src/index.js", "dependencies": { - "@pie-lib/text-select": "3.0.2-next.1", + "@pie-lib/text-select": "3.0.2-next.2", "debug": "^4.1.1", "lodash-es": "^4.17.23" }, diff --git a/packages/fraction-model/package.json b/packages/fraction-model/package.json index 2bc03a62b1..68ec6df042 100644 --- a/packages/fraction-model/package.json +++ b/packages/fraction-model/package.json @@ -12,11 +12,11 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/test-utils": "2.0.2-next.0", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/test-utils": "2.0.2-next.1", "prop-types": "^15.8.1", "react": "18.3.1", "react-dom": "18.3.1", diff --git a/packages/graphing-solution-set/configure/package.json b/packages/graphing-solution-set/configure/package.json index b5e244dbab..a3b8cfa898 100644 --- a/packages/graphing-solution-set/configure/package.json +++ b/packages/graphing-solution-set/configure/package.json @@ -12,10 +12,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/graphing-solution-set": "4.0.2-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/graphing-solution-set": "4.0.3", + "@pie-lib/math-rendering": "5.0.2-next.1", "classnames": "^2.2.5", "debug": "^4.1.1", "prop-types": "^15.6.2", diff --git a/packages/graphing-solution-set/package.json b/packages/graphing-solution-set/package.json index 966dcc10c4..d17c331254 100644 --- a/packages/graphing-solution-set/package.json +++ b/packages/graphing-solution-set/package.json @@ -16,11 +16,11 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/graphing-solution-set": "4.0.2-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/graphing-solution-set": "4.0.3", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "classnames": "^2.2.5", "debug": "^4.1.1", "react": "18.3.1", diff --git a/packages/graphing/configure/package.json b/packages/graphing/configure/package.json index 90db97c5b8..17769cea3e 100644 --- a/packages/graphing/configure/package.json +++ b/packages/graphing/configure/package.json @@ -12,10 +12,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/graphing": "4.0.3-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/graphing": "4.0.4", + "@pie-lib/math-rendering": "5.0.2-next.1", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash-es": "^4.17.23", diff --git a/packages/graphing/controller/package.json b/packages/graphing/controller/package.json index 0ac724c784..d66d2a2de1 100644 --- a/packages/graphing/controller/package.json +++ b/packages/graphing/controller/package.json @@ -9,8 +9,8 @@ "test": "./node_modules/.bin/jest" }, "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/graphing-utils": "3.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/graphing-utils": "3.0.2-next.1", "debug": "^4.1.1" }, "devDependencies": { diff --git a/packages/graphing/package.json b/packages/graphing/package.json index 79f60d85af..5630419c22 100644 --- a/packages/graphing/package.json +++ b/packages/graphing/package.json @@ -15,10 +15,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/graphing": "4.0.3-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/graphing": "4.0.4", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "classnames": "^2.2.5", "debug": "^4.1.1", "react": "18.3.1", diff --git a/packages/hotspot/configure/package.json b/packages/hotspot/configure/package.json index beda616155..b540df1952 100644 --- a/packages/hotspot/configure/package.json +++ b/packages/hotspot/configure/package.json @@ -12,8 +12,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", "debug": "^4.1.1", "konva": "8.3.0", "lodash-es": "^4.17.23", diff --git a/packages/hotspot/controller/package.json b/packages/hotspot/controller/package.json index 138b53a9ec..a447ee7934 100644 --- a/packages/hotspot/controller/package.json +++ b/packages/hotspot/controller/package.json @@ -11,7 +11,7 @@ "main": "lib/index.js", "module": "src/index.js", "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23" } diff --git a/packages/hotspot/package.json b/packages/hotspot/package.json index 2702697253..6e310cd65d 100644 --- a/packages/hotspot/package.json +++ b/packages/hotspot/package.json @@ -12,10 +12,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/test-utils": "2.0.2-next.0", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/test-utils": "2.0.2-next.1", "konva": "8.3.0", "prop-types": "^15.8.1", "react": "18.3.1", diff --git a/packages/image-cloze-association/configure/package.json b/packages/image-cloze-association/configure/package.json index c27470bf43..fcef37ded5 100644 --- a/packages/image-cloze-association/configure/package.json +++ b/packages/image-cloze-association/configure/package.json @@ -12,8 +12,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", "debug": "^4.1.1", "prop-types": "^15.8.1", "react": "18.3.1", diff --git a/packages/image-cloze-association/controller/package.json b/packages/image-cloze-association/controller/package.json index 642e2cd216..0ba23bdd41 100644 --- a/packages/image-cloze-association/controller/package.json +++ b/packages/image-cloze-association/controller/package.json @@ -11,7 +11,7 @@ "main": "lib/index.js", "module": "src/index.js", "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", "debug": "^4.1.1", "humps": "^2.0.1", "lodash-es": "^4.17.23" diff --git a/packages/image-cloze-association/package.json b/packages/image-cloze-association/package.json index 0778dc85e0..b9f9a19812 100644 --- a/packages/image-cloze-association/package.json +++ b/packages/image-cloze-association/package.json @@ -13,11 +13,11 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/translator": "4.0.2-next.1", "classnames": "^2.2.6", "humps": "^2.0.1", "prop-types": "^15.8.1", diff --git a/packages/inline-dropdown/configure/package.json b/packages/inline-dropdown/configure/package.json index 34da9e32bc..51485d02b7 100644 --- a/packages/inline-dropdown/configure/package.json +++ b/packages/inline-dropdown/configure/package.json @@ -10,10 +10,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "classnames": "^2.2.6", "debug": "^4.1.1", "lodash-es": "^4.17.23", diff --git a/packages/inline-dropdown/controller/package.json b/packages/inline-dropdown/controller/package.json index 5fe6d26d2e..b9b64dd6a3 100644 --- a/packages/inline-dropdown/controller/package.json +++ b/packages/inline-dropdown/controller/package.json @@ -8,7 +8,7 @@ "author": "", "license": "ISC", "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23", "type-of": "^2.0.1" diff --git a/packages/inline-dropdown/package.json b/packages/inline-dropdown/package.json index 660567d15b..dadbc25888 100644 --- a/packages/inline-dropdown/package.json +++ b/packages/inline-dropdown/package.json @@ -15,10 +15,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/mask-markup": "3.0.2-next.2", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/mask-markup": "3.0.3", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "lodash-es": "^4.17.23", "prop-types": "^15.8.1", "react": "18.3.1", diff --git a/packages/likert/configure/package.json b/packages/likert/configure/package.json index 8953471377..2653770f9e 100644 --- a/packages/likert/configure/package.json +++ b/packages/likert/configure/package.json @@ -12,9 +12,9 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "prop-types": "^15.8.1", "react": "18.3.1", diff --git a/packages/likert/package.json b/packages/likert/package.json index fe0ed0b4bb..b7f30c675f 100644 --- a/packages/likert/package.json +++ b/packages/likert/package.json @@ -15,8 +15,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash-es": "^4.17.23", diff --git a/packages/match-list/controller/package.json b/packages/match-list/controller/package.json index 6e08402d90..521e1aed30 100644 --- a/packages/match-list/controller/package.json +++ b/packages/match-list/controller/package.json @@ -9,8 +9,8 @@ "test": "./node_modules/.bin/jest" }, "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/feedback": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/feedback": "2.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23" }, diff --git a/packages/match-list/package.json b/packages/match-list/package.json index a1f206d617..a489f47ef9 100644 --- a/packages/match-list/package.json +++ b/packages/match-list/package.json @@ -18,10 +18,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.8.1", diff --git a/packages/match/configure/package.json b/packages/match/configure/package.json index f13d5408a8..9fe6935601 100644 --- a/packages/match/configure/package.json +++ b/packages/match/configure/package.json @@ -13,11 +13,11 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/test-utils": "2.0.2-next.0", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/test-utils": "2.0.2-next.1", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash-es": "^4.17.23", diff --git a/packages/match/controller/package.json b/packages/match/controller/package.json index 19ac014c91..c25a300d78 100644 --- a/packages/match/controller/package.json +++ b/packages/match/controller/package.json @@ -9,8 +9,8 @@ "test": "./node_modules/.bin/jest" }, "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/feedback": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/feedback": "2.0.2-next.1", "debug": "^4.1.1" }, "devDependencies": { diff --git a/packages/match/package.json b/packages/match/package.json index cea45f93eb..adfd75e559 100644 --- a/packages/match/package.json +++ b/packages/match/package.json @@ -16,10 +16,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/test-utils": "2.0.2-next.0", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/test-utils": "2.0.2-next.1", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash-es": "^4.17.23", diff --git a/packages/math-inline/configure/package.json b/packages/math-inline/configure/package.json index c114f81cdc..4659be7a92 100644 --- a/packages/math-inline/configure/package.json +++ b/packages/math-inline/configure/package.json @@ -12,13 +12,13 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/math-input": "8.1.0-next.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/math-toolbar": "3.0.2-next.1", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/test-utils": "2.0.2-next.0", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/math-input": "8.1.0-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/math-toolbar": "3.0.2-next.2", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/test-utils": "2.0.2-next.1", "classnames": "^2.2.5", "debug": "^4.1.1", "prop-types": "^15.6.2", diff --git a/packages/math-inline/controller/package.json b/packages/math-inline/controller/package.json index cc9b1c397b..c7118d5a45 100644 --- a/packages/math-inline/controller/package.json +++ b/packages/math-inline/controller/package.json @@ -10,8 +10,8 @@ }, "dependencies": { "@pie-framework/math-validation": "^1.4.2", - "@pie-lib/feedback": "2.0.2-next.0", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/feedback": "2.0.2-next.1", + "@pie-lib/translator": "4.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23" }, diff --git a/packages/math-inline/package.json b/packages/math-inline/package.json index 7f2715dc89..480d19f636 100644 --- a/packages/math-inline/package.json +++ b/packages/math-inline/package.json @@ -16,12 +16,12 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/math-input": "8.1.0-next.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/math-toolbar": "3.0.2-next.1", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/math-input": "8.1.0-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/math-toolbar": "3.0.2-next.2", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/translator": "4.0.2-next.1", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash-es": "^4.17.23", diff --git a/packages/math-templated/configure/package.json b/packages/math-templated/configure/package.json index c51bc974c8..d63e596d63 100644 --- a/packages/math-templated/configure/package.json +++ b/packages/math-templated/configure/package.json @@ -11,10 +11,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/math-toolbar": "3.0.2-next.1", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/math-toolbar": "3.0.2-next.2", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.8.1", diff --git a/packages/math-templated/controller/package.json b/packages/math-templated/controller/package.json index f7b2843ee5..99d13dabcc 100644 --- a/packages/math-templated/controller/package.json +++ b/packages/math-templated/controller/package.json @@ -7,8 +7,8 @@ "module": "src/index.js", "dependencies": { "@pie-framework/math-validation": "^1.4.2", - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/translator": "4.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23" }, diff --git a/packages/math-templated/package.json b/packages/math-templated/package.json index 548f22e4f0..1e4af73ad7 100644 --- a/packages/math-templated/package.json +++ b/packages/math-templated/package.json @@ -12,11 +12,11 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/mask-markup": "3.0.2-next.2", - "@pie-lib/math-input": "8.1.0-next.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/mask-markup": "3.0.3", + "@pie-lib/math-input": "8.1.0-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "prop-types": "^15.8.1", "react": "18.3.1", "react-dom": "18.3.1" diff --git a/packages/matrix/configure/package.json b/packages/matrix/configure/package.json index ed4d0890e9..ab19551ba1 100644 --- a/packages/matrix/configure/package.json +++ b/packages/matrix/configure/package.json @@ -12,9 +12,9 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "prop-types": "^15.8.1", "react": "18.3.1", diff --git a/packages/matrix/package.json b/packages/matrix/package.json index fed22b2329..61cfe3ba20 100644 --- a/packages/matrix/package.json +++ b/packages/matrix/package.json @@ -15,8 +15,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "prop-types": "^15.8.1", "react": "18.3.1", diff --git a/packages/multi-trait-rubric/configure/package.json b/packages/multi-trait-rubric/configure/package.json index 18e0634b36..f85efce300 100644 --- a/packages/multi-trait-rubric/configure/package.json +++ b/packages/multi-trait-rubric/configure/package.json @@ -11,10 +11,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.6.2", diff --git a/packages/multi-trait-rubric/package.json b/packages/multi-trait-rubric/package.json index e4fe37f1b5..58384e127e 100644 --- a/packages/multi-trait-rubric/package.json +++ b/packages/multi-trait-rubric/package.json @@ -11,8 +11,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "clsx": "^1.1.1", "prop-types": "^15.6.1", "react": "18.3.1", diff --git a/packages/multiple-choice/configure/package.json b/packages/multiple-choice/configure/package.json index d2478213ea..014b06e53a 100644 --- a/packages/multiple-choice/configure/package.json +++ b/packages/multiple-choice/configure/package.json @@ -10,9 +10,9 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.8.1", diff --git a/packages/multiple-choice/controller/package.json b/packages/multiple-choice/controller/package.json index 1c47e2f3bb..94907c83e4 100644 --- a/packages/multiple-choice/controller/package.json +++ b/packages/multiple-choice/controller/package.json @@ -8,7 +8,7 @@ "author": "", "license": "ISC", "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23" } diff --git a/packages/multiple-choice/package.json b/packages/multiple-choice/package.json index 00a241e27f..ec4da91baa 100644 --- a/packages/multiple-choice/package.json +++ b/packages/multiple-choice/package.json @@ -11,10 +11,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/translator": "4.0.2-next.1", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash-es": "^4.17.23", diff --git a/packages/number-line/configure/package.json b/packages/number-line/configure/package.json index 1737dce76e..4678308c33 100644 --- a/packages/number-line/configure/package.json +++ b/packages/number-line/configure/package.json @@ -10,9 +10,9 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/render-ui": "6.1.0-next.2", "lodash-es": "^4.17.23", "react": "18.3.1", "react-dom": "18.3.1" diff --git a/packages/number-line/controller/package.json b/packages/number-line/controller/package.json index f30ec09797..86c728aebc 100644 --- a/packages/number-line/controller/package.json +++ b/packages/number-line/controller/package.json @@ -10,8 +10,8 @@ "main": "lib/index.js", "module": "src/index.js", "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/feedback": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/feedback": "2.0.2-next.1", "lodash-es": "^4.17.23", "mathjs": "^7.5.1" }, diff --git a/packages/number-line/package.json b/packages/number-line/package.json index a0ddef16f8..3eca19cb3c 100644 --- a/packages/number-line/package.json +++ b/packages/number-line/package.json @@ -12,11 +12,11 @@ "@emotion/style": "^0.8.0", "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/icons": "4.0.2-next.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/icons": "4.0.2-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/translator": "4.0.2-next.1", "classnames": "^2.2.5", "d3-scale": "^4.0.2", "d3-selection": "^3.0.0", diff --git a/packages/passage/configure/package.json b/packages/passage/configure/package.json index 32af333fc7..70c3f908c8 100644 --- a/packages/passage/configure/package.json +++ b/packages/passage/configure/package.json @@ -13,8 +13,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.8.1", "react": "18.3.1", diff --git a/packages/passage/package.json b/packages/passage/package.json index 9aaac09202..6e074e799e 100644 --- a/packages/passage/package.json +++ b/packages/passage/package.json @@ -14,8 +14,8 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "prop-types": "^15.8.1", "react": "18.3.1", "react-dom": "18.3.1" diff --git a/packages/placement-ordering/configure/package.json b/packages/placement-ordering/configure/package.json index 6023cfd59e..7f60ee5e71 100644 --- a/packages/placement-ordering/configure/package.json +++ b/packages/placement-ordering/configure/package.json @@ -11,10 +11,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/render-ui": "6.1.0-next.2", "debug": "^4.1.1", "lodash-es": "^4.17.23", "nested-property": "^0.0.7", diff --git a/packages/placement-ordering/controller/package.json b/packages/placement-ordering/controller/package.json index 464fe626a6..73b2448bfa 100644 --- a/packages/placement-ordering/controller/package.json +++ b/packages/placement-ordering/controller/package.json @@ -5,9 +5,9 @@ "main": "lib/index.js", "module": "src/index.js", "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/feedback": "2.0.2-next.0", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/feedback": "2.0.2-next.1", + "@pie-lib/translator": "4.0.2-next.1", "debug": "^4.1.1", "js-combinatorics": "^0.5.4", "lodash-es": "^4.17.23" diff --git a/packages/placement-ordering/package.json b/packages/placement-ordering/package.json index 444fbeb1e7..1fdd11ab95 100644 --- a/packages/placement-ordering/package.json +++ b/packages/placement-ordering/package.json @@ -13,11 +13,11 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/drag": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/translator": "4.0.2-next.0", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/drag": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/translator": "4.0.2-next.1", "debug": "^4.1.1", "decimal.js": "^10.0.0", "lodash-es": "^4.17.23", diff --git a/packages/protractor/package.json b/packages/protractor/package.json index 1d996b6895..88fe2cf06a 100644 --- a/packages/protractor/package.json +++ b/packages/protractor/package.json @@ -13,7 +13,7 @@ "@emotion/style": "^0.8.0", "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", - "@pie-lib/tools": "2.0.2-next.0", + "@pie-lib/tools": "2.0.2-next.1", "react": "18.3.1", "react-dom": "18.3.1" }, diff --git a/packages/rubric/configure/package.json b/packages/rubric/configure/package.json index 836eb6af43..4f1ced6bb9 100644 --- a/packages/rubric/configure/package.json +++ b/packages/rubric/configure/package.json @@ -11,10 +11,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/rubric": "2.0.2-next.2", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/rubric": "2.0.3", "debug": "^4.1.1", "react": "18.3.1", "react-dom": "18.3.1" diff --git a/packages/rubric/package.json b/packages/rubric/package.json index d4d9ca6822..282139c063 100644 --- a/packages/rubric/package.json +++ b/packages/rubric/package.json @@ -24,8 +24,8 @@ "@emotion/style": "^0.8.0", "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", "prop-types": "^15.8.1" }, "author": "pie framework developers", diff --git a/packages/ruler/configure/package.json b/packages/ruler/configure/package.json index b016b084f3..e2eb53104c 100644 --- a/packages/ruler/configure/package.json +++ b/packages/ruler/configure/package.json @@ -10,7 +10,7 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2" + "@pie-lib/config-ui": "13.0.3" }, "author": "", "license": "ISC" diff --git a/packages/ruler/package.json b/packages/ruler/package.json index 007b7ea3d0..5d9e0bdec5 100644 --- a/packages/ruler/package.json +++ b/packages/ruler/package.json @@ -14,7 +14,7 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/tools": "2.0.2-next.0", + "@pie-lib/tools": "2.0.2-next.1", "prop-types": "^15.8.1", "react": "18.3.1", "react-dom": "18.3.1" diff --git a/packages/select-text/configure/package.json b/packages/select-text/configure/package.json index 33d6bcf988..b5c20e1767 100644 --- a/packages/select-text/configure/package.json +++ b/packages/select-text/configure/package.json @@ -11,9 +11,9 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "13.0.2-next.2", - "@pie-lib/editable-html-tip-tap": "2.1.0-next.2", - "@pie-lib/text-select": "3.0.2-next.1", + "@pie-lib/config-ui": "13.0.3", + "@pie-lib/editable-html-tip-tap": "2.1.1", + "@pie-lib/text-select": "3.0.2-next.2", "debug": "^4.1.1", "lodash-es": "^4.17.23", "prop-types": "^15.8.1", diff --git a/packages/select-text/controller/package.json b/packages/select-text/controller/package.json index 3561ec9048..ba13b54285 100644 --- a/packages/select-text/controller/package.json +++ b/packages/select-text/controller/package.json @@ -6,8 +6,8 @@ "main": "lib/index.js", "module": "src/index.js", "dependencies": { - "@pie-lib/controller-utils": "2.0.2-next.0", - "@pie-lib/feedback": "2.0.2-next.0", + "@pie-lib/controller-utils": "2.0.2-next.1", + "@pie-lib/feedback": "2.0.2-next.1", "debug": "^4.1.1", "lodash-es": "^4.17.23" }, diff --git a/packages/select-text/package.json b/packages/select-text/package.json index f7d086fc6b..2e753329aa 100644 --- a/packages/select-text/package.json +++ b/packages/select-text/package.json @@ -12,10 +12,10 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "4.0.2-next.1", - "@pie-lib/math-rendering": "5.0.2-next.0", - "@pie-lib/render-ui": "6.1.0-next.1", - "@pie-lib/text-select": "3.0.2-next.1", + "@pie-lib/correct-answer-toggle": "4.0.2-next.2", + "@pie-lib/math-rendering": "5.0.2-next.1", + "@pie-lib/render-ui": "6.1.0-next.2", + "@pie-lib/text-select": "3.0.2-next.2", "prop-types": "^15.8.1", "react": "18.3.1", "react-dom": "18.3.1" diff --git a/pslb/pslb.config.js b/pslb/pslb.config.js index 002e726afa..71686ad299 100644 --- a/pslb/pslb.config.js +++ b/pslb/pslb.config.js @@ -44,12 +44,12 @@ module.exports = { libs: { repository: 'pie-framework/pie-elements', packages: [ - { name: '@pie-lib/drag-module', version: '^4.0.4' }, + { name: '@pie-lib/drag-module', version: '^4.0.5' }, { name: '@pie-lib/math-rendering-module', version: '^5.0.4' }, - { name: '@pie-lib/math-edit-module', version: '^4.1.1' }, - { name: '@pie-lib/shared-module', version: '^5.1.1' }, - { name: '@pie-lib/editable-html-module', version: '^7.1.1' }, - { name: '@pie-lib/config-module', version: '^4.0.4' }, + { name: '@pie-lib/math-edit-module', version: '^4.2.0' }, + { name: '@pie-lib/shared-module', version: '^5.2.0' }, + { name: '@pie-lib/editable-html-module', version: '^7.1.2' }, + { name: '@pie-lib/config-module', version: '^4.0.5' }, ], }, }; diff --git a/yarn.lock b/yarn.lock index 44d320643b..05d72435af 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2825,28 +2825,28 @@ resolved "https://registry.yarnpkg.com/@pie-framework/pie-player-events/-/pie-player-events-0.1.0.tgz#0150904118fd604559982ab658967811c053ffe3" integrity sha512-6H1tlRGmcZ3Wt+8HMqu5KugVcwwyNrMylfI5rIpvOSt0T82QDmjRj+2sPgQG5zos/w6MtwUqn/QZ+8Rq2EXSOA== -"@pie-lib/categorize@2.0.2-next.0": - version "2.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/categorize/-/categorize-2.0.2-next.0.tgz#ea896ce08fdfab487bc138991e660d34fde83282" - integrity sha512-2BvqXM84W+74oHgFy5MV2Qyc8iwUklppSbDha6afmH7jdck/7FZvUY4vfOyMDLKIyn5ItI2CTmPkRmaaTxcXsw== +"@pie-lib/categorize@2.0.2-next.1": + version "2.0.2-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/categorize/-/categorize-2.0.2-next.1.tgz#5e96fb4440c52f0d310d049821329124b286af11" + integrity sha512-Ze5OLjR6SGopHPEWMQUyWRRB45DUtxCtUii8gg5/w0GHrEjTdQ2oyfPJYi+5QBl/d/dkEcttzrB3+MRSkEBIog== dependencies: debug "^4.1.1" lodash-es "^4.17.23" -"@pie-lib/charting@7.0.2-next.2": - version "7.0.2-next.2" - resolved "https://registry.yarnpkg.com/@pie-lib/charting/-/charting-7.0.2-next.2.tgz#2c3169b333b23763ec771c886b7f572be8e7b80b" - integrity sha512-ZfBK10g99ifjwMtb0IZOGAKBJsa0ZdqpSd6PB0ays67mcOlKxWcSEqd8u9iNZipWKQlASMGmV2gnnogmsvqNZA== +"@pie-lib/charting@7.0.3": + version "7.0.3" + resolved "https://registry.yarnpkg.com/@pie-lib/charting/-/charting-7.0.3.tgz#ec453b3f2aa8f6996d1ae60adb40202a66bde077" + integrity sha512-4l8+3CsrkGYzpLfcjIzFQTSOSQ1mz0ecQb17YvvzJCILjgmW5owYJ7H3X/8QNXGnMJdpZWLZn5EsO9lAA9Xkwg== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@mapbox/point-geometry" "^1.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/math-rendering" "^5.0.2-next.0" - "@pie-lib/plot" "^4.0.2-next.2" - "@pie-lib/render-ui" "^6.1.0-next.1" - "@pie-lib/translator" "^4.0.2-next.0" + "@pie-lib/math-rendering" "^5.0.2" + "@pie-lib/plot" "^4.0.3" + "@pie-lib/render-ui" "^6.1.0" + "@pie-lib/translator" "^4.0.2" "@visx/axis" "^3.0.0" "@visx/event" "^3.0.0" "@visx/grid" "^3.0.0" @@ -2864,18 +2864,18 @@ react-draggable "^3.3.0" react-input-autosize "^2.2.1" -"@pie-lib/config-ui@13.0.2-next.2": - version "13.0.2-next.2" - resolved "https://registry.yarnpkg.com/@pie-lib/config-ui/-/config-ui-13.0.2-next.2.tgz#6f033654e5e0542532eab001e8a2f1c55bfeef66" - integrity sha512-gmgxUKkCqQPdZAM3w5DayR6/wl+M9TAZlYLw0qzIh6YBlyawgns/judnbDBihC1Y2O+PpG9nU1liQskhye21cQ== +"@pie-lib/config-ui@13.0.3": + version "13.0.3" + resolved "https://registry.yarnpkg.com/@pie-lib/config-ui/-/config-ui-13.0.3.tgz#1cf273fff80bf6b9eec48185b9a557bf9eb3d38a" + integrity sha512-poPDVh4+hs/5ztbf+0Jch1k3f5z17cWgc2Dqe14cHumbU7SFCkHLtfIo3ljEb31l3O6kROY0xmxovRTupbDsLQ== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/editable-html-tip-tap" "^2.1.0-next.2" - "@pie-lib/icons" "^4.0.2-next.0" - "@pie-lib/render-ui" "^6.1.0-next.1" + "@pie-lib/editable-html-tip-tap" "^2.1.1" + "@pie-lib/icons" "^4.0.2" + "@pie-lib/render-ui" "^6.1.0" assert "^1.4.1" debug "^4.1.1" lodash-es "^4.17.23" @@ -2883,34 +2883,34 @@ prop-types "^15.6.2" react-measure "^2.2.2" -"@pie-lib/controller-utils@2.0.2-next.0": - version "2.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/controller-utils/-/controller-utils-2.0.2-next.0.tgz#5ff8560a875d62d4e5dc663cfa3e90adb9e95be2" - integrity sha512-BniSgXtN4s5Pq2LltpwksdhO4GAOxrhCTyeXUVCsA0cqAdoNkP/rKEHT//eSokjhkBq+Kr0w1VE0/MGI/jSbNw== +"@pie-lib/controller-utils@2.0.2-next.1": + version "2.0.2-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/controller-utils/-/controller-utils-2.0.2-next.1.tgz#5fcc3f04b31a4571cd58444919760c2f1ff175b1" + integrity sha512-1FTYWDn2zJfJ9x8cfh455AvrWr5i1VAz4KRNUGfN8f85BS8clWCCFp77Au37bwGCs/VfGAIAT5k5pb2TMmD1aw== dependencies: debug "^4.1.1" lodash-es "^4.17.23" -"@pie-lib/correct-answer-toggle@4.0.2-next.1": - version "4.0.2-next.1" - resolved "https://registry.yarnpkg.com/@pie-lib/correct-answer-toggle/-/correct-answer-toggle-4.0.2-next.1.tgz#b3a1165ea4548ba0054eb77466b1bcaba58e3a84" - integrity sha512-bx+X0sbgfwPtHkMiyNsI+6dmRUqDe0yfh0ge/7nfBwVkyO5IbyW9Ii1ZZTJXXgWg6PaFxLuWhSAkam5S3YlfMQ== +"@pie-lib/correct-answer-toggle@4.0.2-next.2": + version "4.0.2-next.2" + resolved "https://registry.yarnpkg.com/@pie-lib/correct-answer-toggle/-/correct-answer-toggle-4.0.2-next.2.tgz#d5980a5cedb30a65b560dd5390fe2f124d8bf86f" + integrity sha512-u97cLOS/4AVsrmR5GRK6MUK8QgvuPPTe95tdGJhmIl3ydiTJJ5dsQoQJrCfhKh9y+RYKgNT9x9TZu+XnIDyWlg== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/icons" "^4.0.2-next.0" - "@pie-lib/render-ui" "^6.1.0-next.1" - "@pie-lib/translator" "^4.0.2-next.0" + "@pie-lib/icons" "^4.0.2-next.1" + "@pie-lib/render-ui" "^6.1.0-next.2" + "@pie-lib/translator" "^4.0.2-next.1" lodash-es "^4.17.23" prop-types "^15.6.2" react-transition-group "^4.4.5" -"@pie-lib/drag@4.0.2-next.1", "@pie-lib/drag@^4.0.2-next.1": - version "4.0.2-next.1" - resolved "https://registry.yarnpkg.com/@pie-lib/drag/-/drag-4.0.2-next.1.tgz#88965f273af128c5143f7611285ffb881fd02616" - integrity sha512-urTkrF2XPHKRJb9PpT3YKkwzyOSt1b/Qc86nTUMbW2ERM0Aw+xKDff9FIKyCbOfiB/xclG134KL0Hpgx1J2JDQ== +"@pie-lib/drag@4.0.2-next.2", "@pie-lib/drag@^4.0.2", "@pie-lib/drag@^4.0.3-next.1+83827e0fa": + version "4.0.2-next.2" + resolved "https://registry.yarnpkg.com/@pie-lib/drag/-/drag-4.0.2-next.2.tgz#e43684bd080a0f7d370783009782e08034b4ed67" + integrity sha512-UuozlVSi5mlivb5tZRZHgRAuIuTL+2lFDgBNoF3e3SV7meFKfSvT3b0UOyjTuoifOkGBclKgDpCwIVilWVKkgQ== dependencies: "@dnd-kit/core" "6.3.1" "@dnd-kit/sortable" "10.0.0" @@ -2919,28 +2919,28 @@ "@emotion/style" "^0.8.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/math-rendering" "^5.0.2-next.0" - "@pie-lib/render-ui" "^6.1.0-next.1" + "@pie-lib/math-rendering" "^5.0.2-next.1" + "@pie-lib/render-ui" "^6.1.0-next.2" classnames "^2.2.6" lodash-es "^4.17.23" prop-types "^15.7.2" react "^18.2.0" -"@pie-lib/editable-html-tip-tap@2.1.0-next.2", "@pie-lib/editable-html-tip-tap@^2.1.0-next.2": - version "2.1.0-next.2" - resolved "https://registry.yarnpkg.com/@pie-lib/editable-html-tip-tap/-/editable-html-tip-tap-2.1.0-next.2.tgz#b7bf503e5ff8750e34ad13f75ce4b5b2ff86b9ff" - integrity sha512-HcfQCgqdPFb54NmdZMdVGJPxeoJmd8Xw+BAabpN7ICTCM4C0rZkSPU7KoCTRKdvjWrWfSgVczeQcPNogIAUtyQ== +"@pie-lib/editable-html-tip-tap@2.1.1", "@pie-lib/editable-html-tip-tap@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@pie-lib/editable-html-tip-tap/-/editable-html-tip-tap-2.1.1.tgz#1141c8e39913453898480cc4c434756d58e859f5" + integrity sha512-znaTRUK97dwElRgjWSZV8Z+6DBEaOGPTuMqU+Fghk/k6XiHBGzSvEo5uLD96WQTLqFyJQfZwzy4COoKhCGaISQ== dependencies: "@dnd-kit/core" "6.3.1" "@dnd-kit/modifiers" "9.0.0" "@dnd-kit/utilities" "3.2.2" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/drag" "^4.0.2-next.1" - "@pie-lib/math-input" "^8.1.0-next.0" - "@pie-lib/math-rendering" "^5.0.2-next.0" - "@pie-lib/math-toolbar" "^3.0.2-next.1" - "@pie-lib/render-ui" "^6.1.0-next.1" + "@pie-lib/drag" "^4.0.2" + "@pie-lib/math-input" "^8.1.0" + "@pie-lib/math-rendering" "^5.0.2" + "@pie-lib/math-toolbar" "^3.0.2" + "@pie-lib/render-ui" "^6.1.0" "@tiptap/core" "3.0.9" "@tiptap/extension-character-count" "3.0.9" "@tiptap/extension-color" "3.0.9" @@ -2971,10 +2971,10 @@ tippy.js latest to-style "^1.3.3" -"@pie-lib/editable-html@13.0.2-next.1": - version "13.0.2-next.1" - resolved "https://registry.yarnpkg.com/@pie-lib/editable-html/-/editable-html-13.0.2-next.1.tgz#90ebf0f8cb1e15fb73e39ec44f0d636234f59058" - integrity sha512-Sj/S75x6fNy3WM3F8bR/lyExQrmf2MO5FQylkhpaFwTVznSbsUtfeHfBfEH+WksmOhpbl8dqk01Lr3mlACor4Q== +"@pie-lib/editable-html@13.0.3-next.1": + version "13.0.3-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/editable-html/-/editable-html-13.0.3-next.1.tgz#716063725a9e307d1f5f86e9611fd03b0ebf1ca1" + integrity sha512-HT5Q0HgmO2TVFC27BQhVBR6Jn0TevhKJ4Kpgy7FKlsv2fMpIpKy9zMVWHIzIJlx5Y8WwOEzcLNYTXFFzNzLXDw== dependencies: "@dnd-kit/core" "6.3.1" "@dnd-kit/modifiers" "9.0.0" @@ -2983,11 +2983,11 @@ "@emotion/style" "^0.8.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/drag" "^4.0.2-next.1" - "@pie-lib/math-input" "^8.1.0-next.0" - "@pie-lib/math-rendering" "^5.0.2-next.0" - "@pie-lib/math-toolbar" "^3.0.2-next.1" - "@pie-lib/render-ui" "^6.1.0-next.1" + "@pie-lib/drag" "^4.0.3-next.1+83827e0fa" + "@pie-lib/math-input" "^8.1.1-next.1+83827e0fa" + "@pie-lib/math-rendering" "^5.0.3-next.1+83827e0fa" + "@pie-lib/math-toolbar" "^3.0.3-next.1+83827e0fa" + "@pie-lib/render-ui" "^6.1.1-next.1+83827e0fa" change-case "^3.0.2" classnames "^2.2.6" debug "^4.1.1" @@ -3008,15 +3008,15 @@ slate-soft-break "^0.8.1" to-style "^1.3.3" -"@pie-lib/feedback@2.0.2-next.0": - version "2.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/feedback/-/feedback-2.0.2-next.0.tgz#738cd2f41da073789fa7d52bc69594ad793d352e" - integrity sha512-+1sFFmiGzBnqIcHTdZEA6ZUhalv1ZUiKI5gAfK/N2aynM75rERLFw93oYiLB5ZV/oN+NhAeb/7lpERATFuAeSA== +"@pie-lib/feedback@2.0.2-next.1": + version "2.0.2-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/feedback/-/feedback-2.0.2-next.1.tgz#aa6553430eca5a819a40ba790694832da06dbb8c" + integrity sha512-CdHH6j33AjmSuRIGhip0FmwFv9waCoqx+T1ViJvny4WUPIc7T8O4ZYafRjkSuZNRJdFHpoExfWhZ2cFlnziDog== -"@pie-lib/graphing-solution-set@4.0.2-next.2": - version "4.0.2-next.2" - resolved "https://registry.yarnpkg.com/@pie-lib/graphing-solution-set/-/graphing-solution-set-4.0.2-next.2.tgz#34aa0350452b2c2d6bf11eb5457501c9e352fd0a" - integrity sha512-VwDy4f6KF0aR+/H7kgiPbbr5r/np1HtFK+eZTj/otuerTla6Ae+GzSdGvceGNlCVfjVYe8KvI3cCLEUo7SDnUw== +"@pie-lib/graphing-solution-set@4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@pie-lib/graphing-solution-set/-/graphing-solution-set-4.0.3.tgz#f0145e31a70ab9fcebeb0e81a99c32cd0d9dbcff" + integrity sha512-BDvt1xQE0jD9BtHIaCHxd/JzO0MlMPnNdVKTcz/GQPdBw8lgiha0UoQ4l1u3fDICm8colp0GfuvjVjQ7q6miZg== dependencies: "@dnd-kit/sortable" "10.0.0" "@emotion/react" "^11.14.0" @@ -3024,13 +3024,13 @@ "@mapbox/point-geometry" "^1.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/drag" "^4.0.2-next.1" - "@pie-lib/editable-html-tip-tap" "^2.1.0-next.2" - "@pie-lib/graphing-utils" "^3.0.2-next.0" - "@pie-lib/plot" "^4.0.2-next.2" - "@pie-lib/render-ui" "^6.1.0-next.1" - "@pie-lib/tools" "^2.0.2-next.0" - "@pie-lib/translator" "^4.0.2-next.0" + "@pie-lib/drag" "^4.0.2" + "@pie-lib/editable-html-tip-tap" "^2.1.1" + "@pie-lib/graphing-utils" "^3.0.2" + "@pie-lib/plot" "^4.0.3" + "@pie-lib/render-ui" "^6.1.0" + "@pie-lib/tools" "^2.0.2" + "@pie-lib/translator" "^4.0.2" "@visx/axis" "^3.0.0" "@visx/clip-path" "^3.0.0" "@visx/curve" "^3.0.0" @@ -3054,19 +3054,19 @@ redux "^4.0.1" redux-undo "^1.1.0" -"@pie-lib/graphing-utils@3.0.2-next.0", "@pie-lib/graphing-utils@^3.0.2-next.0": - version "3.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/graphing-utils/-/graphing-utils-3.0.2-next.0.tgz#1aee9c0197fab7a06cfb91f86679f1732d48cec2" - integrity sha512-IIdtCvwTHRzCURGYKM1ARJeGfWoD4taLAPD/X6+yl+ExlTa2da9SYTkpGD980EedijUPJff03HMkZGrtB/C++Q== +"@pie-lib/graphing-utils@3.0.2-next.1", "@pie-lib/graphing-utils@^3.0.2": + version "3.0.2-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/graphing-utils/-/graphing-utils-3.0.2-next.1.tgz#dfb07215d8f88d582c20a1b12ceb2d2e84695ef7" + integrity sha512-U6bfxzIt9c8xzN4yFUR+PynvJRNsJo9zV3OnKnFtXIBU/b32QUlE10OvnjLeJdej6X0aiCN0uzRXIHRId02Eww== dependencies: "@mapbox/point-geometry" "^1.1.0" debug "^4.1.1" lodash-es "^4.17.23" -"@pie-lib/graphing@4.0.3-next.2": - version "4.0.3-next.2" - resolved "https://registry.yarnpkg.com/@pie-lib/graphing/-/graphing-4.0.3-next.2.tgz#1c485b7043b9d1ceae33211dcc1105c4e2aadbb5" - integrity sha512-G+bhCrAUXeuPVphRtP8H4MQOOEvbzRxwAoaeUyUhVpOKrzyRyovlSqF9XMNgkqC7IgQ+k2ZVH5OENx7CS7WI4Q== +"@pie-lib/graphing@4.0.4": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@pie-lib/graphing/-/graphing-4.0.4.tgz#87c9aa93bb564dfef4424068ac4dc6c0c94409b0" + integrity sha512-DFvEi5Mpv4bOzBJmXYcVXppRYGbZdLRLbqnSfmoL/RvU7mjOMLbQkL0sqzo9R9M4v8qGScFwOiaTLe2KyVAGbA== dependencies: "@dnd-kit/sortable" "10.0.0" "@emotion/react" "^11.14.0" @@ -3074,12 +3074,12 @@ "@mapbox/point-geometry" "^1.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/drag" "^4.0.2-next.1" - "@pie-lib/editable-html-tip-tap" "^2.1.0-next.2" - "@pie-lib/graphing-utils" "^3.0.2-next.0" - "@pie-lib/plot" "^4.0.2-next.2" - "@pie-lib/render-ui" "^6.1.0-next.1" - "@pie-lib/translator" "^4.0.2-next.0" + "@pie-lib/drag" "^4.0.2" + "@pie-lib/editable-html-tip-tap" "^2.1.1" + "@pie-lib/graphing-utils" "^3.0.2" + "@pie-lib/plot" "^4.0.3" + "@pie-lib/render-ui" "^6.1.0" + "@pie-lib/translator" "^4.0.2" "@visx/axis" "^3.0.0" "@visx/clip-path" "^3.0.0" "@visx/curve" "^3.0.0" @@ -3103,10 +3103,10 @@ redux "^4.0.1" redux-undo "^1.1.0" -"@pie-lib/icons@4.0.2-next.0", "@pie-lib/icons@^4.0.2-next.0": - version "4.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/icons/-/icons-4.0.2-next.0.tgz#6a932291ada57a2cf25c8dfb5a550e708b89c788" - integrity sha512-NhuhBOWyI3+ed7iOBednFUulVC2amHF6F6Wh5PzEsx1NdFDNgGxyqYxgITXrO3X1z+hueYpAL4STdPfs1Pm4TQ== +"@pie-lib/icons@4.0.2-next.1", "@pie-lib/icons@^4.0.2", "@pie-lib/icons@^4.0.2-next.1": + version "4.0.2-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/icons/-/icons-4.0.2-next.1.tgz#469c3cef1f224344f85795709616c95e74811f54" + integrity sha512-Umuz34wyNj4kftPeGSlSAgmHQcUn7MADTnVXE9eopwLbAD6gB5O5zNv9Dgc7UQc6o6W618vZeea7bTRPgUtVyg== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" @@ -3114,19 +3114,19 @@ "@mui/material" "^7.3.4" prop-types "^15.6.2" -"@pie-lib/mask-markup@3.0.2-next.2": - version "3.0.2-next.2" - resolved "https://registry.yarnpkg.com/@pie-lib/mask-markup/-/mask-markup-3.0.2-next.2.tgz#e8171fe5b8e1bf893c3080798960c9e876b296a6" - integrity sha512-2qAE7RxMKfKZhLsy34FpBY1RoTxIb/EMA4Bba6jymnG3qrBjx9ekpih93kX74gI3N+fubqa0lBaj30it2HlHPw== +"@pie-lib/mask-markup@3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@pie-lib/mask-markup/-/mask-markup-3.0.3.tgz#b6617a161ac1841528f408a27e80fbbfbbd96fb2" + integrity sha512-VTQNCXFTU85pziz7cq3ZxiVPrkHj6fofy8sSx4v1HPXRZV2NUjkY80IXixTj7XHOQiUYVLK7eaDTh5vBWCBHew== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/drag" "^4.0.2-next.1" - "@pie-lib/editable-html-tip-tap" "^2.1.0-next.2" - "@pie-lib/math-rendering" "^5.0.2-next.0" - "@pie-lib/render-ui" "^6.1.0-next.1" + "@pie-lib/drag" "^4.0.2" + "@pie-lib/editable-html-tip-tap" "^2.1.1" + "@pie-lib/math-rendering" "^5.0.2" + "@pie-lib/render-ui" "^6.1.0" classnames "^2.2.6" debug "^4.1.1" lodash-es "^4.17.23" @@ -3135,20 +3135,20 @@ react-dom "^18.2.0" to-style "^1.3.3" -"@pie-lib/math-evaluator@4.0.2-next.0": - version "4.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/math-evaluator/-/math-evaluator-4.0.2-next.0.tgz#33774615baa4adc86aecb40786d1b426be4f0ced" - integrity sha512-YFp1iS91W/dtq0J16verGDIZnvZzesRBDeGINgljWTzW2oYE5VoPfzDVUFdzZDyh9vuV1nN07ujsReKXhlD9ww== +"@pie-lib/math-evaluator@4.0.3-next.1": + version "4.0.3-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/math-evaluator/-/math-evaluator-4.0.3-next.1.tgz#3b63363f2ed6e80d7fe93d9e9465a2031cd660ee" + integrity sha512-m8znKYag4UIpJnoqBNCm9Ua17+5Eenb8vNXi36/S5JMmBf3roDqGKofvfhqphY1m5k8Y8OiLjnxSKBVRcW1mmA== dependencies: "@pie-framework/math-expressions" "^3.0.0" jsesc "^2.5.2" lodash-es "^4.17.23" mathjs "^7.0.1" -"@pie-lib/math-input@8.1.0-next.0", "@pie-lib/math-input@^8.1.0-next.0": - version "8.1.0-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/math-input/-/math-input-8.1.0-next.0.tgz#77e3015596fb73bb8138ed1d2be4409cff28f1ae" - integrity sha512-9U1JzlWcpx9vYdh3FgD/5n7tX1G5UDY0hCiGBnWSI6TULIZON+zcfoYdctdCmRu9dxNKAlvdr6rNsEeDt54CHQ== +"@pie-lib/math-input@8.1.0-next.1", "@pie-lib/math-input@^8.1.0", "@pie-lib/math-input@^8.1.0-next.1", "@pie-lib/math-input@^8.1.1-next.1+83827e0fa": + version "8.1.0-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/math-input/-/math-input-8.1.0-next.1.tgz#f473b398b35290adbab683e9060e690795905a53" + integrity sha512-W27ywum4yH1563zesHtUXClXfhu7ZRp6d9hJOGzdlQ2D7SqTds0Ifd1qHhRTuUI1jW3Mqc7shJ/Zr8ikznj6Ng== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" @@ -3159,23 +3159,23 @@ lodash-es "^4.17.23" prop-types "^15.7.2" -"@pie-lib/math-rendering-accessible@5.0.2-next.0": - version "5.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/math-rendering-accessible/-/math-rendering-accessible-5.0.2-next.0.tgz#69175fd802b02e02f5d153da009f7c6a02e4103b" - integrity sha512-lCPgr7f2ov1D/wlVbY+lnKSuoEetiKaE0PAB0b2mZW4kUfBfQrNgZVRxTc7hQnt3VVvnx0+uIdc231glWjEbxg== +"@pie-lib/math-rendering-accessible@5.0.3-next.1": + version "5.0.3-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/math-rendering-accessible/-/math-rendering-accessible-5.0.3-next.1.tgz#6037c80acb8107274162b886ee6bb8d95b981633" + integrity sha512-0WdtnA62a+4eOp8L5ep/S9aHli6cvhKHlS2uDhCDeRUAVJ6q+Viwdusaf0ZnfJXCX+EDlMnxuvwwX1da5CLcOQ== dependencies: "@pie-framework/mathml-to-latex" "1.4.4" - "@pie-lib/math-rendering" "^5.0.2-next.0" + "@pie-lib/math-rendering" "^5.0.3-next.1+83827e0fa" debug "^4.1.1" lodash-es "^4.17.23" mathjax-full "3.2.2" mathml-to-latex "1.2.0" react "^18.2.0" -"@pie-lib/math-rendering@5.0.2-next.0", "@pie-lib/math-rendering@^5.0.2-next.0": - version "5.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/math-rendering/-/math-rendering-5.0.2-next.0.tgz#296fe16daa34a33530180c752e6a5f025d22b224" - integrity sha512-+zHdfOYE0pC0YkZQiHi9EAKWFC6wfWCIPtl+kl8YJ8QVpzNVGpCWDiy5GKeyxZjT01foO8csdeXM8qULESawYQ== +"@pie-lib/math-rendering@5.0.2-next.1", "@pie-lib/math-rendering@^5.0.2", "@pie-lib/math-rendering@^5.0.2-next.1", "@pie-lib/math-rendering@^5.0.3-next.1+83827e0fa": + version "5.0.2-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/math-rendering/-/math-rendering-5.0.2-next.1.tgz#a0d3f90288a472f3724c716ee7403ca3ac217bd5" + integrity sha512-74cMRgiI/rSaJVU9eVKM5ModggbzZTKD/5aA9olN9oOElXQrD70IaCwn/wQpthejP4eLu8I9XztOrOrsxDHXFQ== dependencies: "@pie-framework/mathml-to-latex" "1.4.4" debug "^4.1.1" @@ -3183,33 +3183,33 @@ mathjax-full "3.2.2" react "^18.2.0" -"@pie-lib/math-toolbar@3.0.2-next.1", "@pie-lib/math-toolbar@^3.0.2-next.1": - version "3.0.2-next.1" - resolved "https://registry.yarnpkg.com/@pie-lib/math-toolbar/-/math-toolbar-3.0.2-next.1.tgz#00973f83a1fdecb83051b38f20ec0d5e9b3bd90c" - integrity sha512-hPZ7hZaeTlu1zVUwsHeisNRXyxgukSqLnHxu9r63A+HKNS4Cc80I18e9XqpCHHQhlzaU0WjhUhrp4gSMcClT0w== +"@pie-lib/math-toolbar@3.0.2-next.2", "@pie-lib/math-toolbar@^3.0.2", "@pie-lib/math-toolbar@^3.0.3-next.1+83827e0fa": + version "3.0.2-next.2" + resolved "https://registry.yarnpkg.com/@pie-lib/math-toolbar/-/math-toolbar-3.0.2-next.2.tgz#62f0f323d28d5eb91ee2d903276661b4710bff5b" + integrity sha512-q4xtEAas3c1rDvXFMJytz3pqxnkuEgGxWAnzgEHDIp08nHGkNmQAXvg39WyqpwjrEi+ex1CZJNLj4+nSKVNGng== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/math-input" "^8.1.0-next.0" - "@pie-lib/render-ui" "^6.1.0-next.1" + "@pie-lib/math-input" "^8.1.0-next.1" + "@pie-lib/render-ui" "^6.1.0-next.2" debug "^4.1.1" lodash-es "^4.17.23" prop-types "^15.7.2" -"@pie-lib/plot@4.0.2-next.2", "@pie-lib/plot@^4.0.2-next.2": - version "4.0.2-next.2" - resolved "https://registry.yarnpkg.com/@pie-lib/plot/-/plot-4.0.2-next.2.tgz#9197cd1f8de66a77e8e4b37c870cb6e4281e80b8" - integrity sha512-/8vklL6m/YRCz4qHvi8RT6WRDVsRZU+RAJAyEMgFNFh+UsVbeQ+NdCWo+2R2PIw/iKJmXbarOwms6zaP+Kcn8A== +"@pie-lib/plot@4.0.3", "@pie-lib/plot@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@pie-lib/plot/-/plot-4.0.3.tgz#3052608975ef744cfa216fe991d20430cf045c7c" + integrity sha512-xUkpTP8YYCTRRPevd5DGuSIo78EwMZs9y4iU3cLAkRjlC86sFqOC/Uwzq5EPQJX1G3tkBDNNg4TzcPmlgMWobg== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@mapbox/point-geometry" "^1.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/editable-html-tip-tap" "^2.1.0-next.2" - "@pie-lib/render-ui" "^6.1.0-next.1" + "@pie-lib/editable-html-tip-tap" "^2.1.1" + "@pie-lib/render-ui" "^6.1.0" assert "^1.4.1" d3-scale "^4.0.2" d3-selection "^3.0.0" @@ -3222,44 +3222,44 @@ react-redux "^6.0.0" redux "^4.0.1" -"@pie-lib/render-ui@6.1.0-next.1", "@pie-lib/render-ui@^6.1.0-next.1": - version "6.1.0-next.1" - resolved "https://registry.yarnpkg.com/@pie-lib/render-ui/-/render-ui-6.1.0-next.1.tgz#68882896ad09bd55d3317c05184b2484f8830830" - integrity sha512-IFAjiPpCviGauQCry3mv32jgB5StyI8oAKa+kANByGx9sU0un8Pkf9Tk8UgvF2u4w/2HX3C9q66pUHyvoGnOMQ== +"@pie-lib/render-ui@6.1.0-next.2", "@pie-lib/render-ui@^6.1.0", "@pie-lib/render-ui@^6.1.0-next.2", "@pie-lib/render-ui@^6.1.1-next.1+83827e0fa": + version "6.1.0-next.2" + resolved "https://registry.yarnpkg.com/@pie-lib/render-ui/-/render-ui-6.1.0-next.2.tgz#5f0a3026ff283c960400f9fef98cb298eed89f81" + integrity sha512-v9JXSyCqthwDscb6noTzVFxlkFuxJfIxCBcIXDfEZEU/rAKRGYQy7pRzY1tTNARrKmKH398NX4yKJbFYwU6qKQ== dependencies: "@emotion/react" "^11.14.0" "@emotion/styled" "^11.14.1" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/icons" "^4.0.2-next.0" - "@pie-lib/math-rendering" "^5.0.2-next.0" - "@pie-lib/test-utils" "^2.0.2-next.0" + "@pie-lib/icons" "^4.0.2-next.1" + "@pie-lib/math-rendering" "^5.0.2-next.1" + "@pie-lib/test-utils" "^2.0.2-next.1" debug "^4.1.1" lodash-es "^4.17.23" prop-types "^15.7.2" react-transition-group "^4.4.5" -"@pie-lib/rubric@2.0.2-next.2": - version "2.0.2-next.2" - resolved "https://registry.yarnpkg.com/@pie-lib/rubric/-/rubric-2.0.2-next.2.tgz#ec6f911bdf165b05c2ccdf66d42216b063c40d1d" - integrity sha512-sbnYCtJcDayZUpey8jG8tqJNiukDiY1IpesEf1PhdAI1KXMU+8V+0Kmcwh/VpEE/MCFcLsdsrjTDz6BSU+IP+Q== +"@pie-lib/rubric@2.0.3": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@pie-lib/rubric/-/rubric-2.0.3.tgz#08e0e89e18cefdd2c519bd9365a4bf129784ae0d" + integrity sha512-TaMFpp/sKmzuJL/swAa4zQ+IGI09k1KwTte2UtvJrS7HGbqLCk3Z2O2JJ0Ww52xcy2wKcqASVRQMqHIu+Qj81g== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@hello-pangea/dnd" "^18.0.1" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/editable-html-tip-tap" "^2.1.0-next.2" + "@pie-lib/editable-html-tip-tap" "^2.1.1" debug "^4.1.1" lodash-es "^4.17.23" prop-types "^15.7.2" react "^18.2.0" react-dom "^18.2.0" -"@pie-lib/scoring-config@5.0.2-next.0": - version "5.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/scoring-config/-/scoring-config-5.0.2-next.0.tgz#b2cdf90ac48f33fc11e0000843169f2a6fa7352f" - integrity sha512-abveOZGoWEdgEqK6aMJPMQK652ahX2jEDYGX2Y6jhjCiGdtAbHfBU3/f6tWtCURX91c20t3HkDe0Mvqj8Y/+zw== +"@pie-lib/scoring-config@5.0.3-next.1": + version "5.0.3-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/scoring-config/-/scoring-config-5.0.3-next.1.tgz#64988387359c3053e5808d09dd4fd0111743193f" + integrity sha512-NshI2eiBVFr1k3OII2ZRHRChA9qr1sgtTqfJf3bgGKseV8evnnSVlaCxNxo2MhFOg26ugM2P7sGHSWjVyfmewA== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" @@ -3269,50 +3269,50 @@ lodash-es "^4.17.23" prop-types "^15.7.2" -"@pie-lib/style-utils@2.0.2-next.0", "@pie-lib/style-utils@^2.0.2-next.0": - version "2.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/style-utils/-/style-utils-2.0.2-next.0.tgz#cf88ebb5398c4dc494cb2505e0d2f6e2b650cb04" - integrity sha512-Bu7aC/Sj0Pll/vFIrZ8ZF94eQ1VpVMs3hcvqVSZMPzcts8vvBbkrkgA2X77YNFBmIHz3F/u/iM89C//6jUKRWA== +"@pie-lib/style-utils@2.0.3-next.1", "@pie-lib/style-utils@^2.0.2-next.1": + version "2.0.3-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/style-utils/-/style-utils-2.0.3-next.1.tgz#8c8482673450e2b915de1ae7a7af968d814db9d3" + integrity sha512-y5VnfbCtl87FJ+TAhuFFH94I/SovZEAGQpdaP6ugs5pFylK2hkgBjY41u++yMWh2dAz4c5gLKRHLRuM9nzuDcg== -"@pie-lib/test-utils@2.0.2-next.0", "@pie-lib/test-utils@^2.0.2-next.0": - version "2.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/test-utils/-/test-utils-2.0.2-next.0.tgz#4a81c0ffd3b01f745a916a8c269ec2052d9e4eea" - integrity sha512-vvOsJYTBGVaXhqpsIaNBwZkRijWJzpU4pslEoOMOhBTOKNpuNgPcBTgN3uuhqEZtWr6dSFeeqXOh2KnZnEsk0A== +"@pie-lib/test-utils@2.0.2-next.1", "@pie-lib/test-utils@^2.0.2-next.1": + version "2.0.2-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/test-utils/-/test-utils-2.0.2-next.1.tgz#751e3aaff150c2684607e322d08b7792fec77657" + integrity sha512-9eBQpEjiU9ItRGTVEjw/PTJc5iQiUoRg5RiB8ycWjCDt8+hepvgtYhCMyPx9YO+fwMkjtJzFMpIFJYHD05pP2w== dependencies: "@emotion/react" "^11.14.0" "@emotion/styled" "^11.11.0" "@testing-library/jest-dom" "^5.16.5" "@testing-library/user-event" "^14.5.2" -"@pie-lib/text-select@3.0.2-next.1": - version "3.0.2-next.1" - resolved "https://registry.yarnpkg.com/@pie-lib/text-select/-/text-select-3.0.2-next.1.tgz#c12458f54060a9ea85ff31375d31de42dc58d923" - integrity sha512-Qmr7Vwn7FJxfgCzhtMHWm3AHG65Dpl0JQPRpw/hbVgzvaQ5GhKGkhgEYqRZcBlX0blkfG8ETt+NQ8HjF7zISPw== +"@pie-lib/text-select@3.0.2-next.2": + version "3.0.2-next.2" + resolved "https://registry.yarnpkg.com/@pie-lib/text-select/-/text-select-3.0.2-next.2.tgz#f5ae154eb850e7fa8a8bdd94c0432c183cd2fbab" + integrity sha512-HCkiLGaTOpemAO+hyPVDW1UPvTddiKtkh4ehdwhmGFzWCAwuarUagf3dndkNlQpmnRVv3eAtE6geXcFnRe7CEg== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" "@pie-framework/parse-english" "^1.0.0" - "@pie-lib/render-ui" "^6.1.0-next.1" - "@pie-lib/style-utils" "^2.0.2-next.0" - "@pie-lib/translator" "^4.0.2-next.0" + "@pie-lib/render-ui" "^6.1.0-next.2" + "@pie-lib/style-utils" "^2.0.2-next.1" + "@pie-lib/translator" "^4.0.2-next.1" classnames "^2.2.6" debug "^4.1.1" lodash-es "^4.17.23" prop-types "^15.6.2" -"@pie-lib/tools@2.0.2-next.0", "@pie-lib/tools@^2.0.2-next.0": - version "2.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/tools/-/tools-2.0.2-next.0.tgz#9155afc98214f6b7ead64a9b8502fac95dc7d905" - integrity sha512-F5+1cJYGKWiUY8HvNzbQ9CRjqhLnrFBIl4P4uI43e2BfaUfBA9lms23/uve3ghCplOGNmL6l8sZQ6zqTOuiP3g== +"@pie-lib/tools@2.0.2-next.1", "@pie-lib/tools@^2.0.2": + version "2.0.2-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/tools/-/tools-2.0.2-next.1.tgz#84eaf16522c67226b55a3ad4c7093326ccfe24b0" + integrity sha512-knc9CVTowuZx0ZPIm/e2gATsi3OM2Y3p/zfI4BLdd0OhRwbJyGyBoV97nix0ehcVtag7Ch0EO4ga/eG9zkFoMQ== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@mapbox/point-geometry" "^1.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/style-utils" "^2.0.2-next.0" + "@pie-lib/style-utils" "^2.0.2-next.1" assert "^1.4.1" debug "^4.1.1" lodash-es "^4.17.23" @@ -3320,10 +3320,10 @@ react-portal "^4.2.0" trigonometry-calculator "^2.0.0" -"@pie-lib/translator@4.0.2-next.0", "@pie-lib/translator@^4.0.2-next.0": - version "4.0.2-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/translator/-/translator-4.0.2-next.0.tgz#5c9a71f0cc6de465122aa57e04b22c61a130a3ec" - integrity sha512-GemvoZUQj2FzVqiRWnjxen1/bGvkZb8NZM9p8J1GKyUR+/yjqcQ2YPrKjsYohSqMy8mT5ivKU9XhMNEJu+kphg== +"@pie-lib/translator@4.0.2-next.1", "@pie-lib/translator@^4.0.2", "@pie-lib/translator@^4.0.2-next.1": + version "4.0.2-next.1" + resolved "https://registry.yarnpkg.com/@pie-lib/translator/-/translator-4.0.2-next.1.tgz#e3eaaca829c1e1d9bd51ee9922a78ac1b48581ed" + integrity sha512-FoN+5/jDuR941ycdTaq1BfoaD6U5Kd2WMJ2SA2SELqKdiIIPdzkcrE5aROkl/mhwDaGspPyQSBJWzvir0UYLsA== dependencies: debug "^4.1.1" i18next "^25.7.0" @@ -15200,7 +15200,7 @@ string-length@^4.0.1: char-regex "^1.0.2" strip-ansi "^6.0.0" -"string-width-cjs@npm:string-width@^4.2.0": +"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -15218,15 +15218,6 @@ string-width@^1.0.1: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - string-width@^2.0.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" @@ -15326,7 +15317,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -15347,13 +15338,6 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.2" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz#132875abde678c7ea8d691533f2e7e22bb744dba" @@ -16519,7 +16503,7 @@ wordwrap@^1.0.0: resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -16545,15 +16529,6 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"