From 9a7a97e80b48ad4c6e2073d44ff2d456a8436ccb Mon Sep 17 00:00:00 2001 From: arimieandreea Date: Tue, 20 Jan 2026 17:00:44 +0200 Subject: [PATCH 1/4] feat(number-line): upgrade d libraries and update code to match new version --- package.json | 2 + packages/number-line/package.json | 4 +- .../src/number-line/graph/index.jsx | 10 +- yarn.lock | 204 ++---------------- 4 files changed, 23 insertions(+), 197 deletions(-) diff --git a/package.json b/package.json index 35d0c6e0ea..83e559d894 100644 --- a/package.json +++ b/package.json @@ -79,6 +79,8 @@ "resolutions": { "jest": "29.7.0", "jest-config": "29.7.0", + "d3-scale": "4.0.2", + "d3-selection": "3.0.0", "@jest/test-sequencer": "29.7.0", "@types/d3-array": "3.0.3", "@pie-lib/categorize": "0.28.3-next.0", diff --git a/packages/number-line/package.json b/packages/number-line/package.json index 92fa8ade76..a52c2400dd 100644 --- a/packages/number-line/package.json +++ b/packages/number-line/package.json @@ -18,8 +18,8 @@ "@pie-lib/render-ui": "4.35.4-next.0", "@pie-lib/translator": "2.23.3-next.0", "classnames": "^2.2.5", - "d3-scale": "^3.2.1", - "d3-selection": "^1.4.1", + "d3-scale": "^4.0.2", + "d3-selection": "^3.0.0", "lodash": "^4.17.10", "mathjs": "^7.5.1", "prop-types": "^15.6.1", diff --git a/packages/number-line/src/number-line/graph/index.jsx b/packages/number-line/src/number-line/graph/index.jsx index 207a59440a..fbc88823b9 100644 --- a/packages/number-line/src/number-line/graph/index.jsx +++ b/packages/number-line/src/number-line/graph/index.jsx @@ -1,6 +1,6 @@ import React from 'react'; import { scaleLinear } from 'd3-scale'; -import { select, mouse } from 'd3-selection'; +import { select, pointer } from 'd3-selection'; import { color } from '@pie-lib/render-ui'; import { DndContext } from '@dnd-kit/core'; import Point from './elements/point'; @@ -93,10 +93,10 @@ export class NumberLineGraph extends React.Component { } /** - * Note: we use d3 click + mouse to give us domain values directly. + * Note: we use d3 click + pointer to give us domain values directly. * Saves us having to calculate them ourselves from a MouseEvent. */ - onRectClick(rect) { + onRectClick(event) { const { elements, disabled } = this.props; if (disabled) { @@ -108,7 +108,7 @@ export class NumberLineGraph extends React.Component { if (anyElementSelected) { this.props.onDeselectElements(); } else { - var coords = mouse(rect._groups[0][0]); + const coords = pointer(event, this.rect); const x = this.xScaleFn().invert(coords[0]); this.addElement(x); } @@ -116,7 +116,7 @@ export class NumberLineGraph extends React.Component { componentDidMount() { const rect = select(this.rect); - rect.on('click', this.onRectClick.bind(this, rect)); + rect.on('click', this.onRectClick.bind(this)); } addElement(x) { diff --git a/yarn.lock b/yarn.lock index 757b63490f..aa6a2537f8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2870,61 +2870,6 @@ dependencies: "@octokit/openapi-types" "^12.11.0" -"@pie-element/multi-trait-rubric@6.2.1-mui-update.1": - version "6.2.1-mui-update.1" - resolved "https://registry.yarnpkg.com/@pie-element/multi-trait-rubric/-/multi-trait-rubric-6.2.1-mui-update.1.tgz#5fd0141dcc79b94ee434232da1b9993ab56bc1c6" - integrity sha512-XPv5xspuvGkWRbwGuCmVlDznfpM4k9tIo1XIC+h1ZgijU+y+yJE8B6lGvnDLhsOKKWsplf3kiuLBANI/Di086Q== - dependencies: - "@emotion/react" "^11.14.0" - "@emotion/style" "^0.8.0" - "@mui/icons-material" "^7.3.4" - "@mui/material" "^7.3.4" - "@pie-framework/pie-player-events" "^0.1.0" - "@pie-lib/math-rendering" "3.33.1-mui-update.0" - "@pie-lib/render-ui" "4.42.1-mui-update.0" - clsx "^1.1.1" - enzyme-to-json "^3.3.5" - prop-types "^15.6.1" - react "18.2.0" - react-dom "18.2.0" - -"@pie-element/multiple-choice@11.2.0-mui-update.4": - version "11.2.0-mui-update.4" - resolved "https://registry.yarnpkg.com/@pie-element/multiple-choice/-/multiple-choice-11.2.0-mui-update.4.tgz#a926e2423d47318356af55e09ebea6b654c4b102" - integrity sha512-2L4YR+b6hht6M5l65/9Yf3ltB1xEoyeeffMxOZBCyBIQ5ZyG4u9CH7ng1aF1fkzkAcJ7y/QSzCNQkrVP7Jnl4Q== - dependencies: - "@emotion/react" "^11.14.0" - "@emotion/style" "^0.8.0" - "@mui/icons-material" "^7.3.4" - "@mui/material" "^7.3.4" - "@pie-framework/pie-player-events" "^0.1.0" - "@pie-lib/correct-answer-toggle" "2.32.1-mui-update.0" - "@pie-lib/math-rendering" "3.33.1-mui-update.0" - "@pie-lib/render-ui" "4.42.1-mui-update.0" - "@pie-lib/translator" "2.31.1-mui-update.0" - classnames "^2.2.5" - debug "^4.1.1" - enzyme-to-json "^3.3.3" - lodash "^4.17.10" - prop-types "^15.6.1" - react "18.2.0" - react-dom "18.2.0" - react-test-renderer "18.2.0" - react-transition-group "^2.3.1" - -"@pie-element/rubric@6.2.0-mui-update.2": - version "6.2.0-mui-update.2" - resolved "https://registry.yarnpkg.com/@pie-element/rubric/-/rubric-6.2.0-mui-update.2.tgz#d5e65dbb52e2a2537ffda5041e638ec0635e1b09" - integrity sha512-ZNpNkj3/S/B2PxCfXOME6XInYgCUjmG7+JTkTobM88Hveu8rW7peBKvw8J8Q4q4kUOteLBHJDyCFc08/Oq/47A== - 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-rendering" "3.33.1-mui-update.0" - "@pie-lib/render-ui" "4.42.1-mui-update.0" - prop-types "^15.7.2" - "@pie-framework/build-helper@^5.2.9": version "5.2.9" resolved "https://registry.yarnpkg.com/@pie-framework/build-helper/-/build-helper-5.2.9.tgz#1a06eb0b7c471042eefce3d5f994192c6576d311" @@ -3082,7 +3027,7 @@ debug "^4.1.1" lodash "^4.17.11" -"@pie-lib/correct-answer-toggle@2.25.4-next.0", "@pie-lib/correct-answer-toggle@2.32.1-mui-update.0": +"@pie-lib/correct-answer-toggle@2.25.4-next.0": version "2.25.4-next.0" resolved "https://registry.yarnpkg.com/@pie-lib/correct-answer-toggle/-/correct-answer-toggle-2.25.4-next.0.tgz#c2228bc8a041115569c0bc941eecf83bec8d6461" integrity sha512-0D8Ml06I34pYfBMhpoj3owdOUoKZRoF8cCeVTYYKJ0HHQa57MlvJ806Lf7UEA82Zr1LQVtTEt0APsnrESJeqrg== @@ -3325,7 +3270,7 @@ react "^18.2.0" slate "^0.36.2" -"@pie-lib/math-rendering@3.22.3-next.0", "@pie-lib/math-rendering@3.33.1-mui-update.0": +"@pie-lib/math-rendering@3.22.3-next.0": version "3.22.3-next.0" resolved "https://registry.yarnpkg.com/@pie-lib/math-rendering/-/math-rendering-3.22.3-next.0.tgz#2e95584946186b22b897af8606aa346de597d307" integrity sha512-/LVdeMXukGbI2NSNcnB5h1pcGoWtb2hESLQ/4horS914sTndYh/D+hbabtTUfU5Shlr8IvHr9kxF4ct0RBMc4A== @@ -3375,7 +3320,7 @@ react-redux "^6.0.0" redux "^4.0.1" -"@pie-lib/render-ui@4.35.4-next.0", "@pie-lib/render-ui@4.42.1-mui-update.0": +"@pie-lib/render-ui@4.35.4-next.0": version "4.35.4-next.0" resolved "https://registry.yarnpkg.com/@pie-lib/render-ui/-/render-ui-4.35.4-next.0.tgz#1032ac4516ed5beaf6254c4cd28b3126499197cf" integrity sha512-wsCfMJSZvBH+tm6mQkgnRQayt9x5ymwZZz1YCaaSKzx44ssxLh6j96m7/wZXmSFqKHa8mQl76np2eeeD7b6oew== @@ -3473,7 +3418,7 @@ react-portal "^4.2.0" trigonometry-calculator "^2.0.0" -"@pie-lib/translator@2.23.3-next.0", "@pie-lib/translator@2.31.1-mui-update.0": +"@pie-lib/translator@2.23.3-next.0": version "2.23.3-next.0" resolved "https://registry.yarnpkg.com/@pie-lib/translator/-/translator-2.23.3-next.0.tgz#36360035e3d1e394dce36ea284e258ec6bbbb04f" integrity sha512-pQ/SuWVkA0CsIQOPc42ZTDgEtbEUFGlVoWFRDVY9WnuxJXNzkmkX/uPeQ0D6H5QkyShWy2Eh8w+dkFb4qFlFaA== @@ -3752,13 +3697,6 @@ dependencies: "@babel/types" "^7.28.2" -"@types/cheerio@^0.22.22": - version "0.22.35" - resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.35.tgz#0d16dc1f24d426231c181b9c31847f673867595f" - integrity sha512-yD57BchKRvTV+JD53UZ6PD8KWY5g5rvvMLRnZR3EQBCZXiDT/HR+pKpMzFGlWNhFrXlo7VPZXtKvIEwZkAWOIA== - dependencies: - "@types/node" "*" - "@types/command-line-args@^5.0.0": version "5.2.3" resolved "https://registry.yarnpkg.com/@types/command-line-args/-/command-line-args-5.2.3.tgz#553ce2fd5acf160b448d307649b38ffc60d39639" @@ -6761,13 +6699,6 @@ cyclist@^1.0.1: resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.2.tgz#673b5f233bf34d8e602b949429f8171d9121bea3" integrity sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA== -d3-array@2, d3-array@^2.3.0: - version "2.12.1" - resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81" - integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ== - dependencies: - internmap "^1.0.0" - "d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@^3.1.6: version "3.2.4" resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5" @@ -6782,26 +6713,6 @@ d3-array@3.2.1: dependencies: internmap "1 - 2" -d3-array@^1.2.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f" - integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw== - -d3-collection@1: - version "1.0.7" - resolved "https://registry.yarnpkg.com/d3-collection/-/d3-collection-1.0.7.tgz#349bd2aa9977db071091c13144d5e4f16b5b310e" - integrity sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A== - -d3-color@1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-1.4.1.tgz#c52002bf8846ada4424d55d97982fef26eb3bc8a" - integrity sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q== - -"d3-color@1 - 2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-2.0.0.tgz#8d625cab42ed9b8f601a1760a389f7ea9189d62e" - integrity sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ== - "d3-color@1 - 3", d3-color@3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" @@ -6819,16 +6730,6 @@ d3-ease@^3.0.1: resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4" integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w== -d3-format@1: - version "1.4.5" - resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.5.tgz#374f2ba1320e3717eb74a9356c67daee17a7edb4" - integrity sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ== - -"d3-format@1 - 2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-2.0.0.tgz#a10bcc0f986c372b729ba447382413aabf5b0767" - integrity sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA== - "d3-format@1 - 3", d3-format@3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641" @@ -6841,20 +6742,6 @@ d3-geo@3.1.0: dependencies: d3-array "2.5.0 - 3" -d3-interpolate@1: - version "1.4.0" - resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-1.4.0.tgz#526e79e2d80daa383f9e0c1c1c7dcc0f0583e987" - integrity sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA== - dependencies: - d3-color "1" - -"d3-interpolate@1.2.0 - 2": - version "2.0.1" - resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-2.0.1.tgz#98be499cfb8a3b94d4ff616900501a64abc91163" - integrity sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ== - dependencies: - d3-color "1 - 2" - "d3-interpolate@1.2.0 - 3", d3-interpolate@3.0.1, d3-interpolate@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" @@ -6872,7 +6759,7 @@ d3-path@^3.1.0: resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526" integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ== -d3-scale@4.0.2, d3-scale@^4.0.2: +d3-scale@4.0.2, d3-scale@^2.1.2, d3-scale@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== @@ -6883,33 +6770,10 @@ d3-scale@4.0.2, d3-scale@^4.0.2: d3-time "2.1.1 - 3" d3-time-format "2 - 4" -d3-scale@^2.1.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-2.2.2.tgz#4e880e0b2745acaaddd3ede26a9e908a9e17b81f" - integrity sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw== - dependencies: - d3-array "^1.2.0" - d3-collection "1" - d3-format "1" - d3-interpolate "1" - d3-time "1" - d3-time-format "2" - -d3-scale@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-3.3.0.tgz#28c600b29f47e5b9cd2df9749c206727966203f3" - integrity sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ== - dependencies: - d3-array "^2.3.0" - d3-format "1 - 2" - d3-interpolate "1.2.0 - 2" - d3-time "^2.1.1" - d3-time-format "2 - 3" - -d3-selection@^1.3.2, d3-selection@^1.4.1: - version "1.4.2" - resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.4.2.tgz#dcaa49522c0dbf32d6c1858afc26b6094555bc5c" - integrity sha512-SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg== +d3-selection@3.0.0, d3-selection@^1.3.2, d3-selection@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31" + integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ== d3-shape@^1.0.6, d3-shape@^1.2.0: version "1.3.7" @@ -6925,20 +6789,6 @@ d3-shape@^3.1.0: dependencies: d3-path "^3.1.0" -d3-time-format@2: - version "2.3.0" - resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.3.0.tgz#107bdc028667788a8924ba040faf1fbccd5a7850" - integrity sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ== - dependencies: - d3-time "1" - -"d3-time-format@2 - 3": - version "3.0.0" - resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-3.0.0.tgz#df8056c83659e01f20ac5da5fdeae7c08d5f1bb6" - integrity sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag== - dependencies: - d3-time "1 - 2" - "d3-time-format@2 - 4", d3-time-format@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" @@ -6946,18 +6796,6 @@ d3-time-format@2: dependencies: d3-time "1 - 3" -d3-time@1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-1.1.0.tgz#b1e19d307dae9c900b7e5b25ffc5dcc249a8a0f1" - integrity sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA== - -"d3-time@1 - 2", d3-time@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-2.1.1.tgz#e9d8a8a88691f4548e68ca085e5ff956724a6682" - integrity sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ== - dependencies: - d3-array "2" - "d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@3.1.0, d3-time@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7" @@ -7489,15 +7327,6 @@ envinfo@^7.3.1: resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.20.0.tgz#3fd9de69fb6af3e777a017dfa033676368d67dd7" integrity sha512-+zUomDcLXsVkQ37vUqWBvQwLaLlj8eZPSi61llaEFAVBY5mhcXdaSw1pSJVl4yTYD5g/gEfpNl28YYk4IPvrrg== -enzyme-to-json@^3.3.3, enzyme-to-json@^3.3.5: - version "3.6.2" - resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.6.2.tgz#94f85c413bcae8ab67be53b0a94b69a560e27823" - integrity sha512-Ynm6Z6R6iwQ0g2g1YToz6DWhxVnt8Dy1ijR2zynRKxTyBGA8rCDXU3rs2Qc4OKvUvc2Qoe1bcFK6bnPs20TrTg== - dependencies: - "@types/cheerio" "^0.22.22" - lodash "^4.17.21" - react-is "^16.12.0" - err-code@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" @@ -9247,11 +9076,6 @@ internal-slot@^1.1.0: resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== -internmap@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95" - integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw== - invariant@^2.2.2, invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" @@ -13298,16 +13122,16 @@ react-input-autosize@^2.2.1: dependencies: prop-types "^15.5.8" -react-is@^16.12.0, react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.2: - version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== - "react-is@^16.12.0 || ^17.0.0 || ^18.0.0", react-is@^18.0.0, react-is@^18.2.0, react-is@^18.3.1: version "18.3.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== +react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.2: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + react-is@^17.0.1, react-is@^17.0.2: version "17.0.2" resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" From bf2d04463ed1b9761a93c5ed66d03f93bbbbe4c4 Mon Sep 17 00:00:00 2001 From: carlacostea Date: Thu, 29 Jan 2026 09:48:41 +0200 Subject: [PATCH 2/4] fix: update @pie-lib dependencies and fix compatibility issues, fixed tests --- jest.config.js | 2 +- package.json | 61 +- .../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 +- .../configure/src/__tests__/index.test.js | 14 + 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 | 9 +- packages/graphing-solution-set/package.json | 11 +- packages/graphing/configure/package.json | 9 +- packages/graphing/controller/package.json | 4 +- packages/graphing/package.json | 9 +- 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 | 12 +- 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 +- yarn.lock | 981 ++++++++++++++---- 82 files changed, 1080 insertions(+), 450 deletions(-) diff --git a/jest.config.js b/jest.config.js index 859291d313..428d381c6b 100644 --- a/jest.config.js +++ b/jest.config.js @@ -13,7 +13,7 @@ module.exports = { // Transform ES modules from these packages transformIgnorePatterns: [ - 'node_modules/(?!(@mui|@emotion|@testing-library|@dnd-kit|@hello-pangea|@tiptap|konva|react-konva)/)', + 'node_modules/(?!(@mui|@emotion|@testing-library|@dnd-kit|@hello-pangea|@tiptap|konva|react-konva|d3-.*|internmap|@mapbox/point-geometry)(/|$))', ], // Custom resolver to handle node: protocol imports diff --git a/package.json b/package.json index 83e559d894..15baa28b70 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "@babel/preset-env": "^7.0.0", "@babel/preset-react": "^7.0.0", "@pie-framework/build-helper": "^5.2.9", - "@pie-lib/test-utils": "0.22.3-next.0", + "@pie-lib/test-utils": "1.1.0-next.4", "@pslb/pslb": "^4.4.1", "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^5.16.5", @@ -73,43 +73,46 @@ "@babel/plugin-proposal-object-rest-spread": "^7.20.7", "@babel/plugin-proposal-optional-chaining": "^7.21.0", "@rollup/plugin-commonjs": "^20.0.0", + "core-js": "^3.40.0", "express": "^4.17.1", "rollup-plugin-analyzer": "^4.0.0" }, "resolutions": { "jest": "29.7.0", "jest-config": "29.7.0", + "core-js": "^3.40.0", "d3-scale": "4.0.2", "d3-selection": "3.0.0", "@jest/test-sequencer": "29.7.0", "@types/d3-array": "3.0.3", - "@pie-lib/categorize": "0.28.3-next.0", - "@pie-lib/charting": "5.36.4-next.0", - "@pie-lib/config-ui": "11.30.4-next.0", - "@pie-lib/controller-utils": "0.22.4-next.0", - "@pie-lib/correct-answer-toggle": "2.25.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/feedback": "0.24.3-next.0", - "@pie-lib/graphing-solution-set": "2.34.4-next.0", - "@pie-lib/graphing-utils": "1.21.3-next.0", - "@pie-lib/graphing": "2.34.4-next.0", - "@pie-lib/icons": "2.24.3-next.0", - "@pie-lib/mask-markup": "1.33.4-next.0", - "@pie-lib/math-evaluator": "2.21.3-next.0", - "@pie-lib/math-input": "6.31.3-next.0", - "@pie-lib/math-rendering-accessible": "3.22.3-next.0", - "@pie-lib/math-rendering-accessible/@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/math-toolbar": "1.31.4-next.0", - "@pie-lib/plot": "2.27.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/rubric": "0.28.4-next.0", - "@pie-lib/scoring-config": "3.26.4-next.0", - "@pie-lib/style-utils": "0.21.3-next.0", - "@pie-lib/test-utils": "0.22.3-next.0", - "@pie-lib/text-select": "1.32.4-next.0", - "@pie-lib/tools": "0.29.3-next.0", - "@pie-lib/translator": "2.23.3-next.0" + "@pie-lib/categorize": "1.1.0-next.9", + "@pie-lib/charting": "6.1.0-next.25", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", + "@pie-lib/feedback": "1.1.0-next.4", + "@pie-lib/graphing-solution-set": "3.1.0-next.25", + "@pie-lib/graphing-utils": "2.1.0-next.4", + "@pie-lib/graphing": "3.1.0-next.25", + "@pie-lib/icons": "3.1.0-next.4", + "@pie-lib/mask-markup": "2.1.0-next.5", + "@pie-lib/math-evaluator": "3.1.0-next.4", + "@pie-lib/math-input": "7.1.0-next.4", + "@pie-lib/math-rendering-accessible": "4.1.0-next.4", + "@pie-lib/math-rendering-accessible/@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/math-toolbar": "2.1.0-next.5", + "@pie-lib/plot": "3.1.0-next.25", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/rubric": "1.1.0-next.5", + "@pie-lib/scoring-config": "4.1.0-next.4", + "@pie-lib/style-utils": "1.1.0-next.4", + "@pie-lib/test-utils": "1.1.0-next.4", + "@pie-lib/text-select": "2.1.0-next.5", + "@pie-lib/tools": "1.1.0-next.4", + "@pie-lib/translator": "3.1.0-next.4" } } diff --git a/packages/boilerplate-item-type/configure/package.json b/packages/boilerplate-item-type/configure/package.json index 8328b41c70..8c59ee07e2 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/boilerplate-item-type/package.json b/packages/boilerplate-item-type/package.json index 7dc7b54e88..5713729825 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": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "prop-types": "^15.6.1", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/packages/calculator/configure/package.json b/packages/calculator/configure/package.json index 1e84cc45e6..cb34daec47 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": "11.30.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", "react": "18.2.0", "react-dom": "18.2.0" }, diff --git a/packages/categorize/configure/package.json b/packages/categorize/configure/package.json index eb7cac2571..346ed9cdd9 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": "0.28.3-next.0", - "@pie-lib/config-ui": "11.30.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/categorize": "1.1.0-next.9", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/translator": "3.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/categorize/controller/package.json b/packages/categorize/controller/package.json index 18c81eefa0..ec8bf85de8 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": "0.28.3-next.0", - "@pie-lib/controller-utils": "0.22.4-next.0", - "@pie-lib/feedback": "0.24.3-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/categorize": "1.1.0-next.9", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/feedback": "1.1.0-next.4", + "@pie-lib/translator": "3.1.0-next.4", "lodash": "^4.17.15" }, "version": "9.0.0-beta.0", diff --git a/packages/categorize/package.json b/packages/categorize/package.json index 3d06d4bc8d..0e0d0d9930 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": "0.28.3-next.0", - "@pie-lib/config-ui": "11.30.4-next.0", - "@pie-lib/correct-answer-toggle": "2.25.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/categorize": "1.1.0-next.9", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/translator": "3.1.0-next.4", "debug": "^4.1.1", "lodash": "^4.17.15", "prop-types": "^15.6.1", diff --git a/packages/charting/configure/package.json b/packages/charting/configure/package.json index 692444edb1..c1c5e22ee7 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": "5.36.4-next.0", - "@pie-lib/config-ui": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/charting": "6.1.0-next.25", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^4.1.1", "prop-types": "^15.6.2", "react": "18.2.0", diff --git a/packages/charting/controller/package.json b/packages/charting/controller/package.json index 8d2272b5cc..e763b647fb 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": "0.22.4-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", "debug": "^4.1.1", "lodash": "^4.17.15" }, diff --git a/packages/charting/package.json b/packages/charting/package.json index 84561d386e..17e7a68a2a 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": "5.36.4-next.0", - "@pie-lib/correct-answer-toggle": "2.25.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/charting": "6.1.0-next.25", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^4.1.1", "lodash": "^4.17.15", "react": "18.2.0", diff --git a/packages/complex-rubric/configure/package.json b/packages/complex-rubric/configure/package.json index 8f076786da..d5d82a809b 100644 --- a/packages/complex-rubric/configure/package.json +++ b/packages/complex-rubric/configure/package.json @@ -14,9 +14,9 @@ "@pie-element/multi-trait-rubric": "7.0.0-beta.0", "@pie-element/rubric": "7.0.0-beta.0", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "11.30.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/rubric": "0.28.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/rubric": "1.1.0-next.5", "debug": "^4.1.1", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/complex-rubric/configure/src/__tests__/index.test.js b/packages/complex-rubric/configure/src/__tests__/index.test.js index 9ea842abf8..93f57c23eb 100644 --- a/packages/complex-rubric/configure/src/__tests__/index.test.js +++ b/packages/complex-rubric/configure/src/__tests__/index.test.js @@ -13,8 +13,22 @@ jest.mock('@pie-lib/config-ui', () => ({ jest.mock('@pie-lib/render-ui', () => ({ color: { + text: jest.fn(() => '#000'), + background: jest.fn(() => '#fff'), + primaryLight: jest.fn(() => '#ccc'), + correct: jest.fn(() => '#00ff00'), + incorrect: jest.fn(() => '#ff0000'), + secondary: jest.fn(() => '#888'), tertiary: jest.fn(() => '#146EB3'), + disabled: jest.fn(() => '#999'), }, + Collapsible: (props) =>
{props.children}
, + Readable: (props) =>
{props.children}
, + Feedback: (props) =>
{props.children}
, + PreviewPrompt: (props) =>
{props.children}
, + UiLayout: (props) =>
{props.children}
, + hasText: jest.fn(), + hasMedia: jest.fn(), })); jest.mock('@pie-element/rubric/configure/lib', () => { diff --git a/packages/complex-rubric/package.json b/packages/complex-rubric/package.json index e1c5ef607d..4a28589ad8 100644 --- a/packages/complex-rubric/package.json +++ b/packages/complex-rubric/package.json @@ -13,7 +13,7 @@ "@pie-element/multi-trait-rubric": "7.0.0-beta.0", "@pie-element/rubric": "7.0.0-beta.0", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/rubric": "0.28.4-next.0", + "@pie-lib/rubric": "1.1.0-next.5", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash": "^4.17.11", diff --git a/packages/drag-in-the-blank/configure/package.json b/packages/drag-in-the-blank/configure/package.json index 63f2caac20..58565afb49 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": "11.30.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15", "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 e3ca95c0ce..a595b733eb 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": "0.22.4-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15", "type-of": "^2.0.1" diff --git a/packages/drag-in-the-blank/package.json b/packages/drag-in-the-blank/package.json index fe5ed001df..0f64a94287 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": "2.25.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/mask-markup": "1.33.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/mask-markup": "2.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "lodash": "^4.17.10", "prop-types": "^15.6.1", "react": "18.2.0", diff --git a/packages/drawing-response/configure/package.json b/packages/drawing-response/configure/package.json index 9fd64e2ba3..d6e1139729 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.7.2", diff --git a/packages/drawing-response/package.json b/packages/drawing-response/package.json index b2ee15cf9a..791d9ee62a 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": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/translator": "3.1.0-next.4", "konva": "8.3.0", "lodash": "^4.17.11", "prop-types": "^15.6.1", diff --git a/packages/ebsr/configure/package.json b/packages/ebsr/configure/package.json index 4255ab9230..0909c3f26a 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": "12.0.0-beta.0", "@pie-framework/pie-configure-events": "^1.2.0", - "@pie-lib/config-ui": "11.30.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", "lodash": "^4.17.15", "prop-types": "^15.6.2", "react": "18.2.0", diff --git a/packages/ebsr/controller/package.json b/packages/ebsr/controller/package.json index 3571f7208e..127d054bd7 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": "0.22.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/translator": "3.1.0-next.4", "lodash": "^4.17.15" }, "author": "", diff --git a/packages/ebsr/package.json b/packages/ebsr/package.json index 1cab3f3eb3..87332c13e6 100644 --- a/packages/ebsr/package.json +++ b/packages/ebsr/package.json @@ -9,7 +9,7 @@ "dependencies": { "@pie-element/multiple-choice": "12.0.0-beta.0", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/translator": "3.1.0-next.4", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash": "^4.17.11" diff --git a/packages/explicit-constructed-response/configure/package.json b/packages/explicit-constructed-response/configure/package.json index 3056d41d03..5cffe2525b 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", "classnames": "^2.2.6", "debug": "^3.1.0", "lodash": "^4.17.15", diff --git a/packages/explicit-constructed-response/controller/package.json b/packages/explicit-constructed-response/controller/package.json index 2c5b389cda..2f06a01275 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": "0.22.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/translator": "3.1.0-next.4", "debug": "^3.1.0", "he": "^1.2.0", "lodash": "^4.17.15", diff --git a/packages/explicit-constructed-response/package.json b/packages/explicit-constructed-response/package.json index 44ce58c677..37c3b3f260 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": "2.25.4-next.0", - "@pie-lib/mask-markup": "1.33.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/mask-markup": "2.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/translator": "3.1.0-next.4", "classnames": "^2.2.5", "he": "^1.2.0", "lodash": "^4.17.10", diff --git a/packages/extended-text-entry/configure/package.json b/packages/extended-text-entry/configure/package.json index 22f674df64..9065e095f4 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", "lodash": "^4.17.15", "prop-types": "^15.6.2", "react": "18.2.0", diff --git a/packages/extended-text-entry/controller/package.json b/packages/extended-text-entry/controller/package.json index 1f54e66fc8..0318412118 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": "0.24.3-next.0" + "@pie-lib/feedback": "1.1.0-next.4" }, "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 8debd7589b..c3cb88be5b 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "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 6ebfa971d9..1a413a24a2 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/fraction-model/controller/package.json b/packages/fraction-model/controller/package.json index 9de68f72f8..b57219417f 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": "1.32.4-next.0", + "@pie-lib/text-select": "2.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15" }, diff --git a/packages/fraction-model/package.json b/packages/fraction-model/package.json index e847ffe770..29c8e79d19 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": "11.30.4-next.0", - "@pie-lib/correct-answer-toggle": "2.25.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/test-utils": "0.22.3-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/test-utils": "1.1.0-next.4", "prop-types": "^15.6.1", "react": "18.2.0", "react-dom": "18.2.0", diff --git a/packages/graphing-solution-set/configure/package.json b/packages/graphing-solution-set/configure/package.json index b19ee425d1..6f478a0ea0 100644 --- a/packages/graphing-solution-set/configure/package.json +++ b/packages/graphing-solution-set/configure/package.json @@ -12,11 +12,12 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/graphing-solution-set": "2.34.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/graphing-solution-set": "3.1.0-next.25", + "@pie-lib/math-rendering": "4.1.0-next.4", "classnames": "^2.2.5", + "core-js": "^3.40.0", "debug": "^4.1.1", "prop-types": "^15.6.2", "react": "18.2.0", diff --git a/packages/graphing-solution-set/package.json b/packages/graphing-solution-set/package.json index 0dd323e4df..a60a556005 100644 --- a/packages/graphing-solution-set/package.json +++ b/packages/graphing-solution-set/package.json @@ -16,12 +16,13 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/config-ui": "11.30.4-next.0", - "@pie-lib/correct-answer-toggle": "2.25.4-next.0", - "@pie-lib/graphing-solution-set": "2.34.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/graphing-solution-set": "3.1.0-next.25", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "classnames": "^2.2.5", + "core-js": "^3.40.0", "debug": "^4.1.1", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/packages/graphing/configure/package.json b/packages/graphing/configure/package.json index 227b84fa6f..bb5ebe3a9c 100644 --- a/packages/graphing/configure/package.json +++ b/packages/graphing/configure/package.json @@ -12,11 +12,12 @@ "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/graphing": "2.34.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/graphing": "3.1.0-next.25", + "@pie-lib/math-rendering": "4.1.0-next.4", "classnames": "^2.2.5", + "core-js": "^3.40.0", "debug": "^4.1.1", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/graphing/controller/package.json b/packages/graphing/controller/package.json index 3e9ba56b68..17068110f1 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": "0.22.4-next.0", - "@pie-lib/graphing-utils": "1.21.3-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/graphing-utils": "2.1.0-next.4", "debug": "^4.1.1" }, "devDependencies": { diff --git a/packages/graphing/package.json b/packages/graphing/package.json index 642a86a958..121b6ac842 100644 --- a/packages/graphing/package.json +++ b/packages/graphing/package.json @@ -15,11 +15,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": "2.25.4-next.0", - "@pie-lib/graphing": "2.34.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/graphing": "3.1.0-next.25", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "classnames": "^2.2.5", + "core-js": "^3.40.0", "debug": "^4.1.1", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/packages/hotspot/configure/package.json b/packages/hotspot/configure/package.json index 6ad80d4f8a..5f12bccea5 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", "debug": "^3.1.0", "konva": "8.3.0", "lodash": "^4.17.15", diff --git a/packages/hotspot/controller/package.json b/packages/hotspot/controller/package.json index fa985209c3..4896246686 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": "0.22.4-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", "debug": "^4.1.1", "lodash": "^4.17.15" } diff --git a/packages/hotspot/package.json b/packages/hotspot/package.json index 446bcc5ae7..ee5b9ae57d 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": "2.25.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/test-utils": "0.22.3-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/test-utils": "1.1.0-next.4", "konva": "8.3.0", "prop-types": "^15.6.1", "react": "18.2.0", diff --git a/packages/image-cloze-association/configure/package.json b/packages/image-cloze-association/configure/package.json index 356196b06f..481db45749 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", "debug": "^3.1.0", "prop-types": "^15.7.2", "react": "18.2.0", diff --git a/packages/image-cloze-association/controller/package.json b/packages/image-cloze-association/controller/package.json index 36808849c2..06d8e2b435 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": "0.22.4-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", "debug": "^4.1.1", "humps": "^2.0.1", "lodash": "^4.17.15" diff --git a/packages/image-cloze-association/package.json b/packages/image-cloze-association/package.json index eff760e414..b8f43382cf 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": "2.25.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/translator": "3.1.0-next.4", "classnames": "^2.2.6", "humps": "^2.0.1", "prop-types": "^15.6.1", diff --git a/packages/inline-dropdown/configure/package.json b/packages/inline-dropdown/configure/package.json index a3dafb6560..3f125ef438 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "classnames": "^2.2.6", "debug": "^3.1.0", "lodash": "^4.17.15", diff --git a/packages/inline-dropdown/controller/package.json b/packages/inline-dropdown/controller/package.json index 36bcbcaf3d..cc5c8a35ef 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": "0.22.4-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15", "type-of": "^2.0.1" diff --git a/packages/inline-dropdown/package.json b/packages/inline-dropdown/package.json index 87e4ed3ad1..f6e543cf4b 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": "2.25.4-next.0", - "@pie-lib/mask-markup": "1.33.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/mask-markup": "2.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "lodash": "^4.17.10", "prop-types": "^15.6.1", "react": "18.2.0", diff --git a/packages/likert/configure/package.json b/packages/likert/configure/package.json index ac3f7d09a7..bc11e760df 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^4.1.1", "prop-types": "^15.6.2", "react": "18.2.0", diff --git a/packages/likert/package.json b/packages/likert/package.json index 1bf4ff1164..6e2bdbcefd 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": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash": "^4.17.10", diff --git a/packages/match-list/controller/package.json b/packages/match-list/controller/package.json index 1d41d46e3a..924efabcaa 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": "0.22.4-next.0", - "@pie-lib/feedback": "0.24.3-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/feedback": "1.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15" }, diff --git a/packages/match-list/package.json b/packages/match-list/package.json index 5d5faefbc5..3332a97fbd 100644 --- a/packages/match-list/package.json +++ b/packages/match-list/package.json @@ -17,10 +17,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": "2.25.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^4.1.1", "lodash": "^4.17.10", "prop-types": "^15.6.1", diff --git a/packages/match/configure/package.json b/packages/match/configure/package.json index faa48bcf4f..75f715439a 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": "11.30.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/test-utils": "0.22.3-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/test-utils": "1.1.0-next.4", "classnames": "^2.2.5", "debug": "^3.1.0", "lodash": "^4.17.15", diff --git a/packages/match/controller/package.json b/packages/match/controller/package.json index f2b664f221..73a4d2649d 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": "0.22.4-next.0", - "@pie-lib/feedback": "0.24.3-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/feedback": "1.1.0-next.4", "debug": "^3.1.0" }, "devDependencies": { diff --git a/packages/match/package.json b/packages/match/package.json index e88c183748..75d0b7dcd5 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": "2.25.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/test-utils": "0.22.3-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/test-utils": "1.1.0-next.4", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash": "^4.17.10", diff --git a/packages/math-inline/configure/package.json b/packages/math-inline/configure/package.json index f8d9703233..261466daf2 100644 --- a/packages/math-inline/configure/package.json +++ b/packages/math-inline/configure/package.json @@ -13,12 +13,12 @@ "@mui/material": "^7.3.4", "@pie-framework/mathquill": "^1.1.3", "@pie-framework/pie-configure-events": "^1.3.0", - "@pie-lib/config-ui": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/math-toolbar": "1.31.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/test-utils": "0.22.3-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/math-toolbar": "2.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/test-utils": "1.1.0-next.4", "classnames": "^2.2.5", "debug": "^3.1.0", "prop-types": "^15.6.2", diff --git a/packages/math-inline/controller/package.json b/packages/math-inline/controller/package.json index 1bdb5c03d5..6f80825c5b 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": "0.24.3-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/feedback": "1.1.0-next.4", + "@pie-lib/translator": "3.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15" }, diff --git a/packages/math-inline/package.json b/packages/math-inline/package.json index 74d0f02712..6e2abfa621 100644 --- a/packages/math-inline/package.json +++ b/packages/math-inline/package.json @@ -17,12 +17,12 @@ "@mui/material": "^7.3.4", "@pie-framework/mathquill": "^1.1.3", "@pie-framework/pie-player-events": "^0.1.0", - "@pie-lib/correct-answer-toggle": "2.25.4-next.0", - "@pie-lib/math-input": "6.31.3-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/math-toolbar": "1.31.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/math-input": "7.1.0-next.4", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/math-toolbar": "2.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/translator": "3.1.0-next.4", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash": "^4.17.10", diff --git a/packages/math-templated/configure/package.json b/packages/math-templated/configure/package.json index 0a00c3fda2..9f1ca9f0fd 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/math-toolbar": "1.31.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/math-toolbar": "2.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/math-templated/controller/package.json b/packages/math-templated/controller/package.json index 5ee57d9b0f..cd64a8986c 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": "0.22.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/translator": "3.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15" }, diff --git a/packages/math-templated/package.json b/packages/math-templated/package.json index 3748e698fe..0e0b2a94d0 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": "2.25.4-next.0", - "@pie-lib/mask-markup": "1.33.4-next.0", - "@pie-lib/math-input": "6.31.3-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/mask-markup": "2.1.0-next.5", + "@pie-lib/math-input": "7.1.0-next.4", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "prop-types": "^15.6.1", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/packages/matrix/configure/package.json b/packages/matrix/configure/package.json index 1a5d231fe0..76549a76b1 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^4.1.1", "prop-types": "^15.6.2", "react": "18.2.0", diff --git a/packages/matrix/package.json b/packages/matrix/package.json index 280d20ec97..c62db51661 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": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^4.1.1", "prop-types": "^15.6.1", "react": "18.2.0", diff --git a/packages/multi-trait-rubric/configure/package.json b/packages/multi-trait-rubric/configure/package.json index 22f4789183..d630c90478 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": "11.30.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/multi-trait-rubric/package.json b/packages/multi-trait-rubric/package.json index 3b5d6f25a3..0e82602e22 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": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "clsx": "^1.1.1", "prop-types": "^15.6.1", "react": "18.2.0", diff --git a/packages/multiple-choice/configure/package.json b/packages/multiple-choice/configure/package.json index 9d8fa63c3b..7b02a1080d 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/multiple-choice/controller/package.json b/packages/multiple-choice/controller/package.json index d64ca8ca62..24ef191531 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": "0.22.4-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15" } diff --git a/packages/multiple-choice/package.json b/packages/multiple-choice/package.json index b3ecbab002..b2a3de32ee 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": "2.25.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/translator": "3.1.0-next.4", "classnames": "^2.2.5", "debug": "^4.1.1", "lodash": "^4.17.10", diff --git a/packages/number-line/configure/package.json b/packages/number-line/configure/package.json index d3eea5e04d..00f8253dc5 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", "lodash": "^4.17.15", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/packages/number-line/controller/package.json b/packages/number-line/controller/package.json index 92485ad0b9..bcc5232258 100644 --- a/packages/number-line/controller/package.json +++ b/packages/number-line/controller/package.json @@ -14,8 +14,8 @@ "access": "public" }, "dependencies": { - "@pie-lib/controller-utils": "0.22.4-next.0", - "@pie-lib/feedback": "0.24.3-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/feedback": "1.1.0-next.4", "lodash": "^4.17.15", "mathjs": "^7.5.1" }, diff --git a/packages/number-line/package.json b/packages/number-line/package.json index a52c2400dd..c9577da98b 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": "2.25.4-next.0", - "@pie-lib/icons": "2.24.3-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/icons": "3.1.0-next.4", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/translator": "3.1.0-next.4", "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 92946b1707..13ec813ca5 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", "lodash": "^4.17.15", "prop-types": "^15.6.2", "react": "18.2.0", diff --git a/packages/passage/package.json b/packages/passage/package.json index 3278b226ac..feef2c1d2e 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": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "prop-types": "^15.6.1", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/packages/placement-ordering/configure/package.json b/packages/placement-ordering/configure/package.json index 2392d1252b..372dd49929 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": "11.30.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "nested-property": "^0.0.7", diff --git a/packages/placement-ordering/controller/package.json b/packages/placement-ordering/controller/package.json index 581b45f86d..666e9e4c85 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": "0.22.4-next.0", - "@pie-lib/feedback": "0.24.3-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/feedback": "1.1.0-next.4", + "@pie-lib/translator": "3.1.0-next.4", "debug": "^3.1.0", "js-combinatorics": "^0.5.4", "lodash": "^4.17.19" diff --git a/packages/placement-ordering/package.json b/packages/placement-ordering/package.json index 8b63df82d0..75b0dd5c0c 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": "2.25.4-next.0", - "@pie-lib/drag": "2.22.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/translator": "2.23.3-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/drag": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/translator": "3.1.0-next.4", "debug": "^4.1.1", "decimal.js": "^10.0.0", "lodash": "^4.17.10", diff --git a/packages/protractor/package.json b/packages/protractor/package.json index eaf82ea27a..f6f4540c63 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": "0.29.3-next.0", + "@pie-lib/tools": "1.1.0-next.4", "react": "18.2.0", "react-dom": "18.2.0" }, diff --git a/packages/rubric/configure/package.json b/packages/rubric/configure/package.json index ffc0139583..ce7c3c0ab3 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/rubric": "0.28.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/rubric": "1.1.0-next.5", "debug": "^4.1.1", "react": "18.2.0", "react-beautiful-dnd": "^11.0.2", diff --git a/packages/rubric/package.json b/packages/rubric/package.json index 1726d13bb5..726169c6c2 100644 --- a/packages/rubric/package.json +++ b/packages/rubric/package.json @@ -13,8 +13,8 @@ "@emotion/style": "^0.8.0", "@mui/icons-material": "^7.3.4", "@mui/material": "^7.3.4", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", "prop-types": "^15.7.2" }, "author": "pie framework developers", diff --git a/packages/ruler/configure/package.json b/packages/ruler/configure/package.json index f8bb024ee5..c823f88ab4 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": "11.30.4-next.0" + "@pie-lib/config-ui": "12.1.0-next.5" }, "author": "", "license": "ISC" diff --git a/packages/ruler/package.json b/packages/ruler/package.json index 58cdb5db2f..2b21926d1d 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": "0.29.3-next.0", + "@pie-lib/tools": "1.1.0-next.4", "prop-types": "^15.6.1", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/packages/select-text/configure/package.json b/packages/select-text/configure/package.json index 4309c38869..38731b9167 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": "11.30.4-next.0", - "@pie-lib/editable-html": "11.21.4-next.0", - "@pie-lib/text-select": "1.32.4-next.0", + "@pie-lib/config-ui": "12.1.0-next.5", + "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/text-select": "2.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/select-text/controller/package.json b/packages/select-text/controller/package.json index cbcd6fc3da..314e4e214a 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": "0.22.4-next.0", - "@pie-lib/feedback": "0.24.3-next.0", + "@pie-lib/controller-utils": "1.1.0-next.4", + "@pie-lib/feedback": "1.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15" }, diff --git a/packages/select-text/package.json b/packages/select-text/package.json index dd4fa227c5..41dd8c4d25 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": "2.25.4-next.0", - "@pie-lib/math-rendering": "3.22.3-next.0", - "@pie-lib/render-ui": "4.35.4-next.0", - "@pie-lib/text-select": "1.32.4-next.0", + "@pie-lib/correct-answer-toggle": "3.1.0-next.5", + "@pie-lib/math-rendering": "4.1.0-next.4", + "@pie-lib/render-ui": "5.1.0-next.5", + "@pie-lib/text-select": "2.1.0-next.5", "prop-types": "^15.6.1", "react": "18.2.0", "react-dom": "18.2.0" diff --git a/yarn.lock b/yarn.lock index aa6a2537f8..bfdb8ea6be 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1251,6 +1251,14 @@ "@dnd-kit/utilities" "^3.2.2" tslib "^2.0.0" +"@dnd-kit/sortable@10.0.0": + version "10.0.0" + resolved "https://registry.yarnpkg.com/@dnd-kit/sortable/-/sortable-10.0.0.tgz#1f9382b90d835cd5c65d92824fa9dafb78c4c3e8" + integrity sha512-+xqhmIIzvAYMGfBYYnbKuNicfSsk4RksY2XdmJhT+HAC01nix6fHCztU68jooFiMUB01Ky3F0FyOvhG/BZrWkg== + dependencies: + "@dnd-kit/utilities" "^3.2.2" + tslib "^2.0.0" + "@dnd-kit/sortable@8.0.0": version "8.0.0" resolved "https://registry.yarnpkg.com/@dnd-kit/sortable/-/sortable-8.0.0.tgz#086b7ac6723d4618a4ccb6f0227406d8a8862a96" @@ -1507,6 +1515,26 @@ unique-filename "^1.1.1" which "^1.3.1" +"@floating-ui/core@^1.7.4": + version "1.7.4" + resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.7.4.tgz#4a006a6e01565c0f87ba222c317b056a2cffd2f4" + integrity sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg== + dependencies: + "@floating-ui/utils" "^0.2.10" + +"@floating-ui/dom@^1.0.0": + version "1.7.5" + resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.7.5.tgz#60bfc83a4d1275b2a90db76bf42ca2a5f2c231c2" + integrity sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg== + dependencies: + "@floating-ui/core" "^1.7.4" + "@floating-ui/utils" "^0.2.10" + +"@floating-ui/utils@^0.2.10": + version "0.2.10" + resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.10.tgz#a2a1e3812d14525f725d011a73eceb41fef5bc1c" + integrity sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ== + "@gar/promisify@^1.0.1": version "1.1.3" resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" @@ -2556,6 +2584,11 @@ resolved "https://registry.yarnpkg.com/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz#8a83f9335c7860effa2eeeca254332aa0aeed8f2" integrity sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ== +"@mapbox/point-geometry@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@mapbox/point-geometry/-/point-geometry-1.1.0.tgz#3328fb54b3a1273bc619bf0a6baad8de37181749" + integrity sha512-YGcBz1cg4ATXDCM/71L9xveh4dynfGmcLDqufR+nQQy3fKwsAZsWd/x4621/6uJaeB9mwOHE6hPeDgXz9uViUQ== + "@mdi/js@^3.6.95": version "3.9.97" resolved "https://registry.yarnpkg.com/@mdi/js/-/js-3.9.97.tgz#8bf012999b9f6898692b854a32f6f17c344b125a" @@ -2961,28 +2994,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@0.28.3-next.0": - version "0.28.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/categorize/-/categorize-0.28.3-next.0.tgz#d806eeb1a4876ed2417daf97bbcf25dc6c1aaafd" - integrity sha512-+2J6OO9IAmToRknh3JKJDuIBm5/gxaFC2QeQ/mfzp1p/ByOsOwWqJ4wuryleUB5lCAsPkwBnNlU06RoUvZthdQ== +"@pie-lib/categorize@1.1.0-next.9": + version "1.1.0-next.9" + resolved "https://registry.yarnpkg.com/@pie-lib/categorize/-/categorize-1.1.0-next.9.tgz#52c4f684f305085a3f869f9611467a94f07a4fad" + integrity sha512-cuzXIGlFIlqVU2uq4QVRjvOjCvpHUrVAr0eF4tYdwduksxGfcgfUq5FZ5F8R7jEDtJbd3z7KBqx74Iuyj0FoCQ== dependencies: debug "^4.1.1" lodash "^4.17.11" -"@pie-lib/charting@5.36.4-next.0": - version "5.36.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/charting/-/charting-5.36.4-next.0.tgz#2d39bbc45d47cd31583cf7b63a4144db7ad373b5" - integrity sha512-FDzE8H6DyeJVAAs8F3TRptIupi0E5n45x642bEPOjXvsVSSI1OhuRXgUIKCCR/3f4riVA1qR2rkda/fnRy/iyg== +"@pie-lib/charting@6.1.0-next.25": + version "6.1.0-next.25" + resolved "https://registry.yarnpkg.com/@pie-lib/charting/-/charting-6.1.0-next.25.tgz#d9be0ce9aac349e68fb357a229192470ddd08b75" + integrity sha512-b7He5rxKetgwZ7XNEOSo1/uKEQq0oHtwekAVpc9aNHt+S1g3IKNwVSbEOx7Otqi+sEEPg72iCaHS8+4SdTgJ4A== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" - "@mapbox/point-geometry" "^0.1.0" + "@mapbox/point-geometry" "^1.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/math-rendering" "3.22.3-next.0" - "@pie-lib/plot" "2.27.4-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" - "@pie-lib/translator" "2.23.3-next.0" + "@pie-lib/math-rendering" "^4.1.0-next.4" + "@pie-lib/plot" "^3.1.0-next.25+f2061663" + "@pie-lib/render-ui" "^5.1.0-next.5" + "@pie-lib/translator" "^3.1.0-next.4" "@visx/axis" "^3.0.0" "@visx/event" "^3.0.0" "@visx/grid" "^3.0.0" @@ -2991,27 +3024,27 @@ "@visx/scale" "^3.0.0" "@visx/shape" "^3.0.0" classnames "^2.2.6" - d3-scale "^2.1.2" - d3-selection "^1.3.2" + d3-scale "^4.0.2" + d3-selection "^3.0.0" debug "^4.1.1" invariant "^2.2.4" lodash "^4.17.11" react "^18.2.0" - react-draggable "^3.1.1" + react-draggable "^3.3.0" react-input-autosize "^2.2.1" -"@pie-lib/config-ui@11.30.4-next.0": - version "11.30.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/config-ui/-/config-ui-11.30.4-next.0.tgz#4dcb9a597bedd55125b96d1c03df7c2da40728ce" - integrity sha512-cS+rDdhvbML4oxcxLEzwLtOlXEUqtfzHC6gEpYKX5ePsGLzOXIZaEaAGKvtqadSlWf0riNWarkl6/yTMUF3P/Q== +"@pie-lib/config-ui@12.1.0-next.5": + version "12.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/config-ui/-/config-ui-12.1.0-next.5.tgz#93ecb72ecdc9a4d5456838f469b64a7d9655a227" + integrity sha512-HAmUYpoWNpjJrhvQ9LvrDMj+lo+FScWuNid7q2foaEmo4gWysGS2zpa+Lo8VXgtARxpqJKmZkact2n4HsUQjoA== 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" "11.21.4-next.0" - "@pie-lib/icons" "2.24.3-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" + "@pie-lib/editable-html-tip-tap" "1.1.0-next.5" + "@pie-lib/icons" "3.1.0-next.4" + "@pie-lib/render-ui" "5.1.0-next.5" assert "^1.4.1" debug "^4.1.1" lodash "^4.17.11" @@ -3019,34 +3052,34 @@ prop-types "^15.6.2" react-measure "^2.2.2" -"@pie-lib/controller-utils@0.22.4-next.0": - version "0.22.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/controller-utils/-/controller-utils-0.22.4-next.0.tgz#a8b12098b32e7b095e5779dd18a7fb22042f1333" - integrity sha512-zZnS/YUriI2hP9+K43aRoDVSv0XY2Vt6BjYSAYMOLG6ZCtclTnVzxqwr1EF8BIS7lm51k1YESIkn2hMmxco+1A== +"@pie-lib/controller-utils@1.1.0-next.4": + version "1.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/controller-utils/-/controller-utils-1.1.0-next.4.tgz#4054ce03d8a86563504180226696d4a675b60a3a" + integrity sha512-U/np9xIh0MQSwA5FrIXPHIlkb+0+n9Pcbkph+tHeKvzqFBfbbex6RhbNdyrMEJAzdtgxhVAHmamtbRn70Stp+g== dependencies: debug "^4.1.1" lodash "^4.17.11" -"@pie-lib/correct-answer-toggle@2.25.4-next.0": - version "2.25.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/correct-answer-toggle/-/correct-answer-toggle-2.25.4-next.0.tgz#c2228bc8a041115569c0bc941eecf83bec8d6461" - integrity sha512-0D8Ml06I34pYfBMhpoj3owdOUoKZRoF8cCeVTYYKJ0HHQa57MlvJ806Lf7UEA82Zr1LQVtTEt0APsnrESJeqrg== +"@pie-lib/correct-answer-toggle@3.1.0-next.5": + version "3.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/correct-answer-toggle/-/correct-answer-toggle-3.1.0-next.5.tgz#fdef8d40fc2682b0abb24700ea20a9c30ef80c1a" + integrity sha512-+GodPvRvm0wnHozp3OoQu8g3t3ZeqQ1Hdb7AiPXMzztgTcBpgY3fSnt7BjHqRGEW+rK8tue6TMCh3/AsQV+U2g== 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" "2.24.3-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" - "@pie-lib/translator" "2.23.3-next.0" + "@pie-lib/icons" "3.1.0-next.4" + "@pie-lib/render-ui" "5.1.0-next.5" + "@pie-lib/translator" "3.1.0-next.4" lodash "^4.17.11" prop-types "^15.6.2" react-transition-group "^4.4.5" -"@pie-lib/drag@2.22.4-next.0": - version "2.22.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/drag/-/drag-2.22.4-next.0.tgz#4f210f47c9c9d9764ff8298dea5aff7944fb5ea1" - integrity sha512-4G5wuw9hG70i1twtgx5rG2BtWrrmQCLKP2yPhcYmqa1MC4V4o9VnVyVPBX5+xGn5PWnqnhuSZ4rTsTSC3w1rFg== +"@pie-lib/drag@3.1.0-next.5", "@pie-lib/drag@^3.1.0-next.5": + version "3.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/drag/-/drag-3.1.0-next.5.tgz#7b2fb8cbcc839f930cd99a39088af72751140869" + integrity sha512-HqULrpuQtDY2ZCBSduzXCYN5pH/XWZElBhqr2OOxUOletcjk1tAom4MgWfoGa2tGnWkJeHsFX6DEOcdG0QecSA== dependencies: "@dnd-kit/core" "6.1.0" "@dnd-kit/sortable" "8.0.0" @@ -3055,17 +3088,61 @@ "@emotion/style" "^0.8.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/math-rendering" "3.22.3-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" + "@pie-lib/math-rendering" "4.1.0-next.4" + "@pie-lib/render-ui" "5.1.0-next.5" classnames "^2.2.6" lodash "^4.17.11" prop-types "^15.7.2" react "^18.2.0" -"@pie-lib/editable-html@11.21.4-next.0": - version "11.21.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/editable-html/-/editable-html-11.21.4-next.0.tgz#9bda4910847cbd4f8d5f5cda61a52dc615fab991" - integrity sha512-aTdOu6shkgIw7tFT2tk0PJTfWNUVty3OOk9DDdAvWf8ExROl6/+vd/YvCOaja+cc/OVKA3rx1iqfXB2AyrGHhA== +"@pie-lib/editable-html-tip-tap@1.1.0-next.5", "@pie-lib/editable-html-tip-tap@^1.1.0-next.5": + version "1.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/editable-html-tip-tap/-/editable-html-tip-tap-1.1.0-next.5.tgz#5f6b7bd113418b6f71f70fc333789e4762af8e2e" + integrity sha512-OmaU94+Ee6C4PPaQcGWjoH+3F4HYJrS8OIYuYJV5tjW1BiZkilX1HPcU/pmnuNMAs5o6+YEx7M4B4BAs6ebttw== + dependencies: + "@dnd-kit/core" "6.1.0" + "@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" "3.1.0-next.5" + "@pie-lib/math-input" "7.1.0-next.4" + "@pie-lib/math-rendering" "4.1.0-next.4" + "@pie-lib/math-toolbar" "2.1.0-next.5" + "@pie-lib/render-ui" "5.1.0-next.5" + "@tiptap/core" "3.0.9" + "@tiptap/extension-character-count" "3.0.9" + "@tiptap/extension-color" "3.0.9" + "@tiptap/extension-image" "3.0.9" + "@tiptap/extension-list-item" "3.0.9" + "@tiptap/extension-subscript" "3.0.9" + "@tiptap/extension-superscript" "3.0.9" + "@tiptap/extension-table" "3.0.9" + "@tiptap/extension-table-cell" "3.0.9" + "@tiptap/extension-table-header" "3.0.9" + "@tiptap/extension-table-row" "3.0.9" + "@tiptap/extension-text-align" "3.0.9" + "@tiptap/extension-text-style" "3.0.9" + "@tiptap/pm" "3.0.9" + "@tiptap/react" "3.0.9" + "@tiptap/starter-kit" "3.0.9" + change-case "^3.0.2" + classnames "^2.2.6" + debug "^4.1.1" + immutable "^4.0.0-rc.12" + keycode "^2.2.0" + lodash "^4.17.11" + prop-types "^15.6.2" + react-attr-converter "^0.3.1" + react-jss "^8.6.1" + react-portal "^4.2.0" + tippy.js latest + to-style "^1.3.3" + +"@pie-lib/editable-html@12.1.0-next.5": + version "12.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/editable-html/-/editable-html-12.1.0-next.5.tgz#84c0309382b08ac0ab5b96132ff273d45bbee535" + integrity sha512-JG9HRwdEqYel2cd60peICyLNUx4wjdakPUYSwxmN+WCjaVTqHaEdzt8O5op9zL+ooGbzaFg0rfh10pdBSk77qQ== dependencies: "@dnd-kit/core" "6.1.0" "@dnd-kit/modifiers" "9.0.0" @@ -3074,11 +3151,11 @@ "@emotion/style" "^0.8.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/drag" "2.22.4-next.0" - "@pie-lib/math-input" "6.31.3-next.0" - "@pie-lib/math-rendering" "3.22.3-next.0" - "@pie-lib/math-toolbar" "1.31.4-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" + "@pie-lib/drag" "3.1.0-next.5" + "@pie-lib/math-input" "7.1.0-next.4" + "@pie-lib/math-rendering" "4.1.0-next.4" + "@pie-lib/math-toolbar" "2.1.0-next.5" + "@pie-lib/render-ui" "5.1.0-next.5" change-case "^3.0.2" classnames "^2.2.6" debug "^4.1.1" @@ -3101,29 +3178,29 @@ slate-soft-break "^0.8.1" to-style "^1.3.3" -"@pie-lib/feedback@0.24.3-next.0": - version "0.24.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/feedback/-/feedback-0.24.3-next.0.tgz#66bfb3f82b4e46f38bdba9fb6b469a32c5062456" - integrity sha512-0lbZpOTPc1L5MIsEwRiAziu+ZRFEmvP3ZwsQ/ShoWxas6+E7bBm7yaowe3GDU3TTeGOhnBf5IpkfWw83UZKh2Q== +"@pie-lib/feedback@1.1.0-next.4": + version "1.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/feedback/-/feedback-1.1.0-next.4.tgz#11748992d6031688ccd0cf786f64f709f092f1c0" + integrity sha512-xt7ZSFVho4L8Xcuqz4v9QyKq5eDpBdvdoAEP+oKcexffCKrVFTo1g2Yjs7h/mLjPKEoX4ONj+XG3aczzzlFz9Q== -"@pie-lib/graphing-solution-set@2.34.4-next.0": - version "2.34.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/graphing-solution-set/-/graphing-solution-set-2.34.4-next.0.tgz#bb3323766711460605c84977dab3d4c30ae95773" - integrity sha512-kUkNoO3bDTCjFAb+9DeD1dnTtIEVYHX6hQ2krvi16w0Im95XMuAJZLVbclLfqKOQbDTTaA9g8I9xwSUzN3fCQA== +"@pie-lib/graphing-solution-set@3.1.0-next.25": + version "3.1.0-next.25" + resolved "https://registry.yarnpkg.com/@pie-lib/graphing-solution-set/-/graphing-solution-set-3.1.0-next.25.tgz#2586e959c28a19af182b13df6a7b7eddf81340bf" + integrity sha512-iGthhPvlhVC/xB4sdyYS6D6zAA559XTWtwbdgIgJ3hDFXvixJMYhlxL3WorqEcyc9/qlLjFUSOj/WZo/2soKvw== dependencies: - "@dnd-kit/sortable" "8.0.0" + "@dnd-kit/sortable" "10.0.0" "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" - "@mapbox/point-geometry" "^0.1.0" + "@mapbox/point-geometry" "^1.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/drag" "2.22.4-next.0" - "@pie-lib/editable-html" "11.21.4-next.0" - "@pie-lib/graphing-utils" "1.21.3-next.0" - "@pie-lib/plot" "2.27.4-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" - "@pie-lib/tools" "0.29.3-next.0" - "@pie-lib/translator" "2.23.3-next.0" + "@pie-lib/drag" "^3.1.0-next.5" + "@pie-lib/editable-html-tip-tap" "^1.1.0-next.5" + "@pie-lib/graphing-utils" "^2.1.0-next.4" + "@pie-lib/plot" "^3.1.0-next.25+f2061663" + "@pie-lib/render-ui" "^5.1.0-next.5" + "@pie-lib/tools" "^1.1.0-next.4" + "@pie-lib/translator" "^3.1.0-next.4" "@visx/axis" "^3.0.0" "@visx/clip-path" "^3.0.0" "@visx/curve" "^3.0.0" @@ -3133,8 +3210,8 @@ "@visx/point" "^3.0.0" "@visx/shape" "^3.0.0" classnames "^2.2.6" - d3-scale "^2.1.2" - d3-selection "^1.3.2" + d3-scale "^4.0.2" + d3-selection "^3.0.0" debug "^4.1.1" invariant "^2.2.4" lodash "^4.17.11" @@ -3145,34 +3222,34 @@ react-input-autosize "^2.2.1" react-redux "^6.0.0" redux "^4.0.1" - redux-undo beta + redux-undo "^1.1.0" -"@pie-lib/graphing-utils@1.21.3-next.0": - version "1.21.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/graphing-utils/-/graphing-utils-1.21.3-next.0.tgz#a5b775f88e251402120a006c55903bb26e1cc621" - integrity sha512-KFi7zy1TH7QJZeEvOPrv3eDxrFbi0geZuA+0gSq90RVkHgHnjTsjAXxuPFxcRpjGYZFWpO1IxaxdcW8kZE+yUg== +"@pie-lib/graphing-utils@2.1.0-next.4", "@pie-lib/graphing-utils@^2.1.0-next.4": + version "2.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/graphing-utils/-/graphing-utils-2.1.0-next.4.tgz#723944412898e95647e293b9ea6691d3d06f15b9" + integrity sha512-e5fEztbB0naiVGj1P5X+o7YYg3JTpK2+WMqRdWCsXlhdB8KINl3BEqHfhB8LgoEym8ZuqTkn/sgwvin77BH05w== dependencies: "@mapbox/point-geometry" "^0.1.0" debug "^4.1.1" lodash "^4.17.11" -"@pie-lib/graphing@2.34.4-next.0": - version "2.34.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/graphing/-/graphing-2.34.4-next.0.tgz#4ca17b2061a62739d2cf3ab188543d3a5b211d53" - integrity sha512-QjizHmTXjndITebRByH4Jbs9/JWE7/b4WjNK2Y4/gGjcPjMPSFDcimQiA3i3ZzB/JIoaMkjgMD72anssH/yd/A== +"@pie-lib/graphing@3.1.0-next.25": + version "3.1.0-next.25" + resolved "https://registry.yarnpkg.com/@pie-lib/graphing/-/graphing-3.1.0-next.25.tgz#a208a5bd9742600c8e761ef97199bff722ec9f1c" + integrity sha512-uhttfs/u1934oIvrGxDz+TXKITwd+BtqVnkEguYOJ2vzedT7u0sjGMl2PI0E63gL1lrC0lwhmxc7Ihzf0XfmVA== dependencies: - "@dnd-kit/sortable" "8.0.0" + "@dnd-kit/sortable" "10.0.0" "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" - "@mapbox/point-geometry" "^0.1.0" + "@mapbox/point-geometry" "^1.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/drag" "2.22.4-next.0" - "@pie-lib/editable-html" "11.21.4-next.0" - "@pie-lib/graphing-utils" "1.21.3-next.0" - "@pie-lib/plot" "2.27.4-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" - "@pie-lib/translator" "2.23.3-next.0" + "@pie-lib/drag" "^3.1.0-next.5" + "@pie-lib/editable-html-tip-tap" "^1.1.0-next.5" + "@pie-lib/graphing-utils" "^2.1.0-next.4" + "@pie-lib/plot" "^3.1.0-next.25+f2061663" + "@pie-lib/render-ui" "^5.1.0-next.5" + "@pie-lib/translator" "^3.1.0-next.4" "@visx/axis" "^3.0.0" "@visx/clip-path" "^3.0.0" "@visx/curve" "^3.0.0" @@ -3182,8 +3259,8 @@ "@visx/point" "^3.0.0" "@visx/shape" "^3.0.0" classnames "^2.2.6" - d3-scale "^2.1.2" - d3-selection "^1.3.2" + d3-scale "^4.0.2" + d3-selection "^3.0.0" debug "^4.1.1" invariant "^2.2.4" lodash "^4.17.11" @@ -3194,12 +3271,12 @@ react-input-autosize "^2.2.1" react-redux "^6.0.0" redux "^4.0.1" - redux-undo beta + redux-undo "^1.1.0" -"@pie-lib/icons@2.24.3-next.0": - version "2.24.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/icons/-/icons-2.24.3-next.0.tgz#1fa1b69457dadf183d98e9d61c75767ac95535ac" - integrity sha512-/suesq9XpG+dgyKwTNfJyX4V+p87koFWtq1w2Zi7mCVFacCy8Ghc9jNZ/mibZdXafImhHbZi9SOixQBcLS+z6Q== +"@pie-lib/icons@3.1.0-next.4": + version "3.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/icons/-/icons-3.1.0-next.4.tgz#676d777e5baee2862db6b1af180a3da482ca8cf7" + integrity sha512-o3u4GjFxEJjYRtx4Zdo1jQi4GZcWmLUork8zwx+sjAHEvLpvVb3qz/MzQ2oVIWZhMFyk++4hTIRoXU00gs7WmA== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" @@ -3207,45 +3284,41 @@ "@mui/material" "^7.3.4" prop-types "^15.6.2" -"@pie-lib/mask-markup@1.33.4-next.0": - version "1.33.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/mask-markup/-/mask-markup-1.33.4-next.0.tgz#adbbfb1adf42f4080b96f52eafdc7e637551c896" - integrity sha512-O/S/Dq95NCEjzxsw+dHF1mtM8M/Kz1Zrj8UCQl/Std/Ux9KqRIQC8o7hr8DYdjIzAh3qNefr9OVs24dx0AURkw== +"@pie-lib/mask-markup@2.1.0-next.5": + version "2.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/mask-markup/-/mask-markup-2.1.0-next.5.tgz#48b671f4514d1dabd4327a087862d13d9582378d" + integrity sha512-LmVYpZsQqB7BfqW3MK82U0+AhOeD2CvbkwNXBbdQktbBqvD85RBXcDrZ0Yb8J4wdalauCfUmjje0q0ManKf+PQ== 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" "2.22.4-next.0" - "@pie-lib/editable-html" "11.21.4-next.0" - "@pie-lib/math-rendering" "3.22.3-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" + "@pie-lib/drag" "3.1.0-next.5" + "@pie-lib/editable-html-tip-tap" "1.1.0-next.5" + "@pie-lib/math-rendering" "4.1.0-next.4" + "@pie-lib/render-ui" "5.1.0-next.5" classnames "^2.2.6" debug "^4.1.1" lodash "^4.17.11" prop-types "^15.7.2" react "^18.2.0" react-dom "^18.2.0" - slate "^0.36.2" - slate-html-serializer "^0.6.12" - slate-prop-types "^0.4.38" - slate-react "^0.14.3" to-style "^1.3.3" -"@pie-lib/math-evaluator@2.21.3-next.0": - version "2.21.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/math-evaluator/-/math-evaluator-2.21.3-next.0.tgz#20e80106ca960728c506399bea32e8e297d3208b" - integrity sha512-LOZhuFCikPk98xgSGd/hbs68KrNmiNMmkVcl6SDN/ZKwzmNdntxieBdvnL3+BSRWkzpCAvwKl2lzqZr+H2HVVQ== +"@pie-lib/math-evaluator@3.1.0-next.4": + version "3.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/math-evaluator/-/math-evaluator-3.1.0-next.4.tgz#ad0c7fcd4fa77ed33a63af9bc75d4a3c19dd82b1" + integrity sha512-X9hkmp7Xl+8X63R0VSwgHLegIhLKdYvQcl0uJ2BJEHR1cYLP3kJi0Ap2LRzhiHM5WMRuhRS4rRO/WFzG5Bv0Jg== dependencies: "@pie-framework/math-expressions" "^3.0.0" jsesc "^2.5.2" lodash "^4.17.11" mathjs "^7.0.1" -"@pie-lib/math-input@6.31.3-next.0": - version "6.31.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/math-input/-/math-input-6.31.3-next.0.tgz#eb3a539197b058ca46ea708c3b0c0e7dbfb47c58" - integrity sha512-x14eTjt5Xzwz8VfeNKzA0z8If6iaXgrQnD8HAyFWrWVjf8ZYGF0DlstKNVCLAXXYRoINsfJ1P638t5mp71krsg== +"@pie-lib/math-input@7.1.0-next.4": + version "7.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/math-input/-/math-input-7.1.0-next.4.tgz#73517e3ad2fe28068ea8cb369aca6469a2863d87" + integrity sha512-l6AGd9idi2ekDh8hkf3wJqKasDoAjVrip3MwNjS4Efl4Jq1c29VkQ2HpRa6fMaOd6FWg0hggRbVVKUN7QVhbYw== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" @@ -3256,24 +3329,23 @@ lodash "^4.17.11" prop-types "^15.7.2" -"@pie-lib/math-rendering-accessible@3.22.3-next.0": - version "3.22.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/math-rendering-accessible/-/math-rendering-accessible-3.22.3-next.0.tgz#875a618c5ffe45feec80725472d77baf33ab5efe" - integrity sha512-qI0Xt9h/eEn2TU5q3950ogqvFUJ3jMJt2O2QW+nGE+qqU6hdHR/D/zsfRLT58oe2RPz/Oa1avWGOzxERv7u/+Q== +"@pie-lib/math-rendering-accessible@4.1.0-next.4": + version "4.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/math-rendering-accessible/-/math-rendering-accessible-4.1.0-next.4.tgz#2a79a02c398924bd062c0762e66e709a89f0b0a5" + integrity sha512-RwvvGGhb95fj5L3hRBU0TOl56/zJ9BWTn4IGcLuqJDzYji6VvUqR0MIS76Aov1zKWGuPiSxDGbyntha0q5yfFQ== dependencies: "@pie-framework/mathml-to-latex" "1.4.4" - "@pie-lib/math-rendering" "3.22.3-next.0" + "@pie-lib/math-rendering" "4.1.0-next.4" debug "^4.1.1" lodash "^4.17.11" mathjax-full "3.2.2" mathml-to-latex "1.2.0" react "^18.2.0" - slate "^0.36.2" -"@pie-lib/math-rendering@3.22.3-next.0": - version "3.22.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/math-rendering/-/math-rendering-3.22.3-next.0.tgz#2e95584946186b22b897af8606aa346de597d307" - integrity sha512-/LVdeMXukGbI2NSNcnB5h1pcGoWtb2hESLQ/4horS914sTndYh/D+hbabtTUfU5Shlr8IvHr9kxF4ct0RBMc4A== +"@pie-lib/math-rendering@4.1.0-next.4", "@pie-lib/math-rendering@^4.1.0-next.4": + version "4.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/math-rendering/-/math-rendering-4.1.0-next.4.tgz#df68e195f9b743f24387a487fc83f4780f013bc3" + integrity sha512-DEtVbMQeQ5yT6JdRDIfJXaeT83O4yTnct0K9p2KzP0QESj3sZCcnfuXG7uh4qLK6KL19I8W7tlqhpU1JqGfYQQ== dependencies: "@pie-framework/mathml-to-latex" "1.4.4" debug "^4.1.1" @@ -3281,83 +3353,83 @@ mathjax-full "3.2.2" react "^18.2.0" -"@pie-lib/math-toolbar@1.31.4-next.0": - version "1.31.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/math-toolbar/-/math-toolbar-1.31.4-next.0.tgz#76c5feca6abf4a638e6f6f83244c51f2bfd1eda2" - integrity sha512-NUtcY4zV5xBdnEH1fIVJdyJTGwTEgfk8JKJ25fUp3RoJWYf/9KrFPaECyaER135ZdGzeqxSbvCjtbfmACWhXHg== +"@pie-lib/math-toolbar@2.1.0-next.5": + version "2.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/math-toolbar/-/math-toolbar-2.1.0-next.5.tgz#8daed2c00b3b1242b7f2bf88b44aca617fd9782e" + integrity sha512-BWSKJXGy63bU8kkwvijStiAIpNv06OR7Coj/OnML1wIpxgxh/4+nmAAfkDKfeCBCHhQZd+6wVjlbZ2z5ddv3qQ== 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" "6.31.3-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" + "@pie-lib/math-input" "7.1.0-next.4" + "@pie-lib/render-ui" "5.1.0-next.5" debug "^4.1.1" lodash "^4.17.11" prop-types "^15.7.2" -"@pie-lib/plot@2.27.4-next.0": - version "2.27.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/plot/-/plot-2.27.4-next.0.tgz#07667055fb8c87175a6dcdd04dbea1361714c656" - integrity sha512-q59pzs91UOFsH5Bkk4CfkMhgT735rY46EyfxpQs0ryKxP/ajEUAr4BPvlnIA2cW2tEjrfANfHGv86jPSw1rRSg== +"@pie-lib/plot@3.1.0-next.25", "@pie-lib/plot@^3.1.0-next.25+f2061663": + version "3.1.0-next.25" + resolved "https://registry.yarnpkg.com/@pie-lib/plot/-/plot-3.1.0-next.25.tgz#a82d2a117117e164f956b938245d7aa873ae0eeb" + integrity sha512-b/aUcJWym7lTJkrmKZjbRsDQ8+Wr+s/sPV0iaaxwc0dbnKIl+SBCb0b8i3VhmVfHTqdVJxx5WmExQ+J7HlXYgg== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" - "@mapbox/point-geometry" "^0.1.0" + "@mapbox/point-geometry" "^1.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/editable-html" "11.21.4-next.0" - "@pie-lib/render-ui" "4.35.4-next.0" + "@pie-lib/editable-html-tip-tap" "^1.1.0-next.5" + "@pie-lib/render-ui" "^5.1.0-next.5" assert "^1.4.1" - d3-scale "^2.1.2" - d3-selection "^1.3.2" + d3-scale "^4.0.2" + d3-selection "^3.0.0" debug "^4.1.1" invariant "^2.2.4" lodash "^4.17.11" prop-types "^15.7.2" react "^18.2.0" - react-draggable "^3.1.1" + react-draggable "^3.3.0" react-redux "^6.0.0" redux "^4.0.1" -"@pie-lib/render-ui@4.35.4-next.0": - version "4.35.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/render-ui/-/render-ui-4.35.4-next.0.tgz#1032ac4516ed5beaf6254c4cd28b3126499197cf" - integrity sha512-wsCfMJSZvBH+tm6mQkgnRQayt9x5ymwZZz1YCaaSKzx44ssxLh6j96m7/wZXmSFqKHa8mQl76np2eeeD7b6oew== +"@pie-lib/render-ui@5.1.0-next.5", "@pie-lib/render-ui@^5.1.0-next.5": + version "5.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/render-ui/-/render-ui-5.1.0-next.5.tgz#a6b9673324d3cb16371641d17f28039c2b8a1088" + integrity sha512-mD1tKS1xn6LdCxhjGOuEJ6MO6cPJ9/azt47meX5QYjM2Dz33FUQYOziMR8HTXzGGThQsUIKZSGRil+ZOrw2hmQ== 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" "2.24.3-next.0" - "@pie-lib/math-rendering" "3.22.3-next.0" - "@pie-lib/test-utils" "0.22.3-next.0" + "@pie-lib/icons" "3.1.0-next.4" + "@pie-lib/math-rendering" "4.1.0-next.4" + "@pie-lib/test-utils" "1.1.0-next.4" debug "^4.1.1" lodash "^4.17.11" prop-types "^15.7.2" react-transition-group "^4.4.5" -"@pie-lib/rubric@0.28.4-next.0": - version "0.28.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/rubric/-/rubric-0.28.4-next.0.tgz#d6c0a8c2a76cc0f2cc05ba9d731a76c9f97e397d" - integrity sha512-JwEJv2hUGFvK5XqBNlTSBOnF9prriEbmOK+5h9WQ0j7p5vY63G39oF+GeCYCGIlZHX3vBRNvGZi6gcH1WfWe2Q== +"@pie-lib/rubric@1.1.0-next.5": + version "1.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/rubric/-/rubric-1.1.0-next.5.tgz#56f9bb4a115f18931abaa98aa940fd98676cdc9f" + integrity sha512-/kNtB4AVzm1f1u8iXq/QhzLPN7n/3coQRbA795iPCzrIXVfkjm9KUdRlM0Itzc2gyN3lrtiHfJuLeA6VljbTxQ== 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" "11.21.4-next.0" + "@pie-lib/editable-html-tip-tap" "1.1.0-next.5" debug "^4.1.1" lodash "^4.17.11" prop-types "^15.7.2" react "^18.2.0" react-dom "^18.2.0" -"@pie-lib/scoring-config@3.26.4-next.0": - version "3.26.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/scoring-config/-/scoring-config-3.26.4-next.0.tgz#d734d54fd4a1daf6fe54f9c975aaf963dbcb012f" - integrity sha512-VSgLd3KePaX/zJh5hePD1gzC0KTxJHrZvN3iXieWgz0ABFal70Z9YWF8tlu5RViiCG+RpPuYcZO4O7dV6HhlsA== +"@pie-lib/scoring-config@4.1.0-next.4": + version "4.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/scoring-config/-/scoring-config-4.1.0-next.4.tgz#247f03f06a1c2bd8d3f6d897f8895e7bbdc989e4" + integrity sha512-IbzSzE9Of7LRUtqBji2w+wul3r5cctVof9Cvrz3xx1ooVfFhkUvYbmRJUS5YtsK2C8lPYMLTOq0EXWpVw9oy3Q== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" @@ -3367,50 +3439,50 @@ lodash "^4.17.11" prop-types "^15.7.2" -"@pie-lib/style-utils@0.21.3-next.0": - version "0.21.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/style-utils/-/style-utils-0.21.3-next.0.tgz#6503754c1240a35e794ea86cd29f66f4652eaa21" - integrity sha512-p0U4wYisOT+XmNFHUgxGk3XwQsG0Pvi8jLCodSNq/OkxZoJyPFf395hrZebBEyFNn7fiCJeFIStoFNDEDKC5uw== +"@pie-lib/style-utils@1.1.0-next.4": + version "1.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/style-utils/-/style-utils-1.1.0-next.4.tgz#05629b3d4ede7d61a33a03c4429cc1222868815a" + integrity sha512-k2uv54hZgADrvd8Z4WEb/Cp+PnkxXiMk8W8M2CITlDOPATTuS3cqW2nJgeOmGeXc9cKKuAB5X5v7YgapKQHISQ== -"@pie-lib/test-utils@0.22.3-next.0": - version "0.22.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/test-utils/-/test-utils-0.22.3-next.0.tgz#c33afa1bf8196e563cf63e31e216d80a8d1e1b49" - integrity sha512-RGvyPbqdEFlQkXnqPu+ObzB5kNn/tU754Sug8VKIHa+BYe6ck46O3CdlqqBweS3s7acb/qi9UhlPKiD2T9YvmQ== +"@pie-lib/test-utils@1.1.0-next.4": + version "1.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/test-utils/-/test-utils-1.1.0-next.4.tgz#d61b0fd550b9a5ef878d790424034d1815c3155c" + integrity sha512-1EfUjreOT16L/4Ad3WQ1M0+la4+MwqPJ3SmWNUiIZaigOOmXc9JYARPtLvUKALppUehHN8QJ5XYBJCgv5bjCsw== 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@1.32.4-next.0": - version "1.32.4-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/text-select/-/text-select-1.32.4-next.0.tgz#992fc136ec0c0bca5b75d1b967db7681ae8258d2" - integrity sha512-p2Dj+2VYtZoaqVMmSs06lfP5UI4O5AtTf/f8RDCVHbMy6UGmJQ2hjqO7SB5AwIFm39K/eoP68UX2AvbAOE8ftw== +"@pie-lib/text-select@2.1.0-next.5": + version "2.1.0-next.5" + resolved "https://registry.yarnpkg.com/@pie-lib/text-select/-/text-select-2.1.0-next.5.tgz#9cc1318735a1ee3a652a74a1fb3dac4b6b82d207" + integrity sha512-HEI1ILYbkEyoy3euB07nCl14thAzm6RvL5wviuT6b11Wk3oleLLQE7BTFpHsRa3FII7BmGIDJJ1xfGWx3xfO2Q== 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" "4.35.4-next.0" - "@pie-lib/style-utils" "0.21.3-next.0" - "@pie-lib/translator" "2.23.3-next.0" + "@pie-lib/render-ui" "5.1.0-next.5" + "@pie-lib/style-utils" "1.1.0-next.4" + "@pie-lib/translator" "3.1.0-next.4" classnames "^2.2.6" debug "^4.1.1" lodash "^4.17.11" prop-types "^15.6.2" -"@pie-lib/tools@0.29.3-next.0": - version "0.29.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/tools/-/tools-0.29.3-next.0.tgz#541b20f9276597ddeba48737770475487e7f2670" - integrity sha512-Xli1yE6eb2x/NnmKfvawnx3sOCfRsZIxjAdFlKNvTbnYvw6eC+Rg27n8I6aPfBVNMXpR9kQ/CeLGSmKss4osKg== +"@pie-lib/tools@1.1.0-next.4", "@pie-lib/tools@^1.1.0-next.4": + version "1.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/tools/-/tools-1.1.0-next.4.tgz#c68c56f241084ae172cefbf0b3f3e8231e60a01d" + integrity sha512-DGqa3AsN8kUrYwdW9u1hJymOAOPooYGzZXTE4LEBnZr4oU6IlhObEQ/VbjDFNP3Wbij0rwgK5Dt3gAhhXqRrKw== dependencies: "@emotion/react" "^11.14.0" "@emotion/style" "^0.8.0" "@mapbox/point-geometry" "^0.1.0" "@mui/icons-material" "^7.3.4" "@mui/material" "^7.3.4" - "@pie-lib/style-utils" "0.21.3-next.0" + "@pie-lib/style-utils" "1.1.0-next.4" assert "^1.4.1" debug "^4.1.1" lodash "^4.17.11" @@ -3418,10 +3490,10 @@ react-portal "^4.2.0" trigonometry-calculator "^2.0.0" -"@pie-lib/translator@2.23.3-next.0": - version "2.23.3-next.0" - resolved "https://registry.yarnpkg.com/@pie-lib/translator/-/translator-2.23.3-next.0.tgz#36360035e3d1e394dce36ea284e258ec6bbbb04f" - integrity sha512-pQ/SuWVkA0CsIQOPc42ZTDgEtbEUFGlVoWFRDVY9WnuxJXNzkmkX/uPeQ0D6H5QkyShWy2Eh8w+dkFb4qFlFaA== +"@pie-lib/translator@3.1.0-next.4", "@pie-lib/translator@^3.1.0-next.4": + version "3.1.0-next.4" + resolved "https://registry.yarnpkg.com/@pie-lib/translator/-/translator-3.1.0-next.4.tgz#40ad9fba4e8c85e6314874e7cc7238334440be02" + integrity sha512-bj4Kt7LEaJgeYn1wulUyB0v4YirUw0Autfva34EdcCtU/MiKJyucthWd9eL8lFYntqanMvkBdL+/PbXpzqdbeg== dependencies: debug "^4.1.1" i18next "^22.5.0" @@ -3435,7 +3507,7 @@ resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@popperjs/core@^2.11.8": +"@popperjs/core@^2.11.8", "@popperjs/core@^2.9.0": version "2.11.8" resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== @@ -3493,6 +3565,11 @@ rollup "^2.56.2" semver "^7.3.5" +"@remirror/core-constants@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@remirror/core-constants/-/core-constants-3.0.0.tgz#96fdb89d25c62e7b6a5d08caf0ce5114370e3b8f" + integrity sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg== + "@rollup/plugin-commonjs@^20.0.0": version "20.0.0" resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-20.0.0.tgz#3246872dcbcb18a54aaa6277a8c7d7f1b155b745" @@ -3644,6 +3721,290 @@ resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.6.1.tgz#13e09a32d7a8b7060fe38304788ebf4197cd2149" integrity sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw== +"@tiptap/core@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/core/-/core-3.0.9.tgz#12fad469b195de7038f7454443c61998e65e55f6" + integrity sha512-1zdDyILerBcD3P0fu8kCtPLOFj0R5utjexCQ2CZ46pckn/Wk4V+WUBARzhG5Yz2JDkmJIUIcmLBVrL6G1rjJWg== + +"@tiptap/core@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/core/-/core-3.18.0.tgz#8c2ee7152c65d5838fcfb2a2f6c265026cd58de4" + integrity sha512-Gczd4GbK1DNgy/QUPElMVozoa0GW9mW8E31VIi7Q4a9PHHz8PcrxPmuWwtJ2q0PF8MWpOSLuBXoQTWaXZRPRnQ== + +"@tiptap/extension-blockquote@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-blockquote/-/extension-blockquote-3.18.0.tgz#05db67ab43a22ddf01cc672936527497e10538d3" + integrity sha512-1HjEoM5vZDfFnq2OodNpW13s56a9pbl7jolUv1V9FrE3X5s7n0HCfDzIVpT7z1HgTdPtlN5oSt5uVyBwuwSUfA== + +"@tiptap/extension-bold@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-bold/-/extension-bold-3.18.0.tgz#083a18fbf576bbdff3607f07b30ef83628509bdf" + integrity sha512-xUgOvHCdGXh9Lfxd7DtgsSr0T/egIwBllWHIBWDjQEQQ0b+ICn+0+i703btHMB4hjdduZtgVDrhK8jAW3U6swA== + +"@tiptap/extension-bubble-menu@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-bubble-menu/-/extension-bubble-menu-3.18.0.tgz#9f2b4ac40011fb5a5e8a428c60ead9f650bdfd2a" + integrity sha512-9kYG1fVYQcA3Kp5Bq96lrKCp9oLpQqceDsK688r7iT1yymQlBPMunaqaqb5ZLQGhnNYbhfG+8xcQsvEKjklErA== + dependencies: + "@floating-ui/dom" "^1.0.0" + +"@tiptap/extension-bullet-list@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-bullet-list/-/extension-bullet-list-3.18.0.tgz#1268d9e26d46efb4958ea42fff1dc67ef22b8cdb" + integrity sha512-8sEpY0nxAGGFDYlF+WVFPKX00X2dAAjmoi0+2eWvK990PdQqwXrQsRs7pkUbpE2mDtATV8+GlDXk9KDkK/ZXhA== + +"@tiptap/extension-character-count@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-character-count/-/extension-character-count-3.0.9.tgz#5eb88ba26e19c7720432d00c37aef545533aa778" + integrity sha512-KKtHfvMlYCNszldPvmzDzvRSV/Xukb7T/t4IMPgFp2LUDPuBK1z4TPP8HEsONTFAAKc+JgnJPPkMxfhh/tFbnQ== + +"@tiptap/extension-code-block@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-code-block/-/extension-code-block-3.18.0.tgz#812612fca9054af96466646bb176c2d772b4ed07" + integrity sha512-fCx1oT95ikGfoizw+XCjeglQxlLK4lWgUcB4Dcn5TdaCoFBQMEaZs7Q0jVajxxxULnyArkg60uarc1ac/IF2Hw== + +"@tiptap/extension-code@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-code/-/extension-code-3.18.0.tgz#2fe3bf877c5bbca6f9fcc1f58d64904931c1972a" + integrity sha512-0SU53O0NRmdtRM2Hgzm372dVoHjs2F40o/dtB7ls4kocf4W89FyWeC2R6ZsFQqcXisNh9RTzLtYfbNyizGuZIw== + +"@tiptap/extension-color@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-color/-/extension-color-3.0.9.tgz#487849ab2e3a526c8e6dc20c6f121e434c3085f5" + integrity sha512-cA68vy5lZwBVqBLMEDL6rjKIBPXRV+sUjmV+UokJcguAUTerHLK0dAHcbKRp9hJ6KF6z1KAOC7u3ZBhyjibC1w== + +"@tiptap/extension-document@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-document/-/extension-document-3.18.0.tgz#0bfbf73164909e938c895c9632e68e7ae822f844" + integrity sha512-e0hOGrjTMpCns8IC5p+c5CEiE1BBmFBFL+RpIxU/fjT2SaZ7q2xsFguBu94lQDT0cD6fdZokFRpGwEMxZNVGCg== + +"@tiptap/extension-dropcursor@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-dropcursor/-/extension-dropcursor-3.18.0.tgz#c49b2e7ed3f51b45ea1518a355d9f06bb128219a" + integrity sha512-pIW/K9fGth221dkfA5SInHcqfnCr0aG9LGkRiEh4gwM4cf6ceUBrvcD+QlemSZ4q9oktNGJmXT+sEXVOQ8QoeQ== + +"@tiptap/extension-floating-menu@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-floating-menu/-/extension-floating-menu-3.18.0.tgz#e6b4bdd43d8a9ba3b88345f960bf6299d6bdb2e2" + integrity sha512-a2cBQi0I/X0o3a9b+adwJvkdxLzQzJIkP9dc/v25qGTSCjC1+ycois5WQOn8T4T8t4g/fAH1UOXEWnkWyTxLIg== + +"@tiptap/extension-gapcursor@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-gapcursor/-/extension-gapcursor-3.18.0.tgz#5a3f9562827082dc61cf631e6be394e31a2d866f" + integrity sha512-covioXPPHX3SnlTwC/1rcHUHAc7/JFd4vN0kZQmZmvGHlxqq2dPmtrPh8D7TuDuhG0k/3Z6i8dJFP0phfRAhuA== + +"@tiptap/extension-hard-break@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-hard-break/-/extension-hard-break-3.18.0.tgz#e43eee33dd05aa0e78e2f286919feb8be68a79e5" + integrity sha512-IXLiOHEmbU2Wn1jFRZC6apMxiJQvSRWhwoiubAvRxyiPSnFTeaEgT8Qgo5DjwB39NckP+o7XX7RrgzlkwdFPQQ== + +"@tiptap/extension-heading@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-heading/-/extension-heading-3.18.0.tgz#98fc6ba68bd85319151b35ecf7f77e3856dcab15" + integrity sha512-MTamVnYsFWVndLSq5PRQ7ZmbF6AExsFS9uIvGtUAwuhzvR4of/WHh6wpvWYjA+BLXTWRrfuGHaZTl7UXBN13fg== + +"@tiptap/extension-horizontal-rule@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-horizontal-rule/-/extension-horizontal-rule-3.18.0.tgz#bcfc631fa059ff8d9deac8e04fc0c76416d87759" + integrity sha512-fEq7DwwQZ496RHNbMQypBVNqoWnhDEERbzWMBqlmfCfc/0FvJrHtsQkk3k4lgqMYqmBwym3Wp0SrRYiyKCPGTw== + +"@tiptap/extension-image@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-image/-/extension-image-3.0.9.tgz#78ac096ec02c2e08184e9780029dd51c95d99a1c" + integrity sha512-/2igN/oIF58zqX5fcg00bf6qGLcQyXHysl5I8GiurkvO95d+SQTlYbJneSRUpt6CgrUKbhRnMBPVubmapgg+Zw== + +"@tiptap/extension-italic@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-italic/-/extension-italic-3.18.0.tgz#779467935c93542acbce6c1d85ba1bf8fa998b28" + integrity sha512-1C4nB08psiRo0BPxAbpYq8peUOKnjQWtBCLPbE6B9ToTK3vmUk0AZTqLO11FvokuM1GF5l2Lg3sKrKFuC2hcjQ== + +"@tiptap/extension-link@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-link/-/extension-link-3.18.0.tgz#17d68e898078837ba9eee94354a3082025a24654" + integrity sha512-1J28C4+fKAMQi7q/UsTjAmgmKTnzjExXY98hEBneiVzFDxqF69n7+Vb7nVTNAIhmmJkZMA0DEcMhSiQC/1/u4A== + dependencies: + linkifyjs "^4.3.2" + +"@tiptap/extension-list-item@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-list-item/-/extension-list-item-3.0.9.tgz#fcda61dd666064faf5da05737e4765a5753a2b19" + integrity sha512-K+ogk1BH/eYhsK9nSTXNdIXlxQcXzty6h1QFiZNr9XmaLk+q4NZFHR5FVz3EJ7QXyw+Gv/2FQn+T2Q/GpbMxZQ== + +"@tiptap/extension-list-item@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-list-item/-/extension-list-item-3.18.0.tgz#bf674f8e13269bfa52426e1ea8f7021e1cda5d74" + integrity sha512-auTSt+NXoUnT0xofzFa+FnXsrW1TPdT1OB3U1OqQCIWkumZqL45A8OK9kpvyQsWj/xJ8fy1iZwFlKXPtxjLd2w== + +"@tiptap/extension-list-keymap@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-list-keymap/-/extension-list-keymap-3.18.0.tgz#172fa9b89f888030c1cefef2435a13026ec35444" + integrity sha512-ZzO5r/cW7G0zpL/eM69WPnMpzb0YsSjtI60CYGA0iQDRJnK9INvxu0RU0ewM2faqqwASmtjuNJac+Fjk6scdXg== + +"@tiptap/extension-list@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-list/-/extension-list-3.18.0.tgz#d4d578e252c133b20811a3e2a94099de6ba5a6d1" + integrity sha512-9lQBo45HNqIFcLEHAk+CY3W51eMMxIJjWbthm2CwEWr4PB3+922YELlvq8JcLH1nVFkBVpmBFmQe/GxgnCkzwQ== + +"@tiptap/extension-ordered-list@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-ordered-list/-/extension-ordered-list-3.18.0.tgz#973ae2682eade141fc4e0f0c03c30311f842c093" + integrity sha512-5bUAfklYLS5o6qvLLfreGyGvD1JKXqOQF0YntLyPuCGrXv7+XjPWQL2BmEf59fOn2UPT2syXLQ1WN5MHTArRzg== + +"@tiptap/extension-paragraph@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-paragraph/-/extension-paragraph-3.18.0.tgz#c96eb7c0e708cba3b6abc50519862a113a233172" + integrity sha512-uvFhdwiur4NhhUdBmDsajxjGAIlg5qga55fYag2DzOXxIQE2M7/aVMRkRpuJzb88GY4EHSh8rY34HgMK2FJt2Q== + +"@tiptap/extension-strike@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-strike/-/extension-strike-3.18.0.tgz#e60cb9fdbe3e15428040aece24cf14c77a5ad8b5" + integrity sha512-kl/fa68LZg8NWUqTkRTfgyCx+IGqozBmzJxQDc1zxurrIU+VFptDV9UuZim587sbM2KGjCi/PNPjPGk1Uu0PVg== + +"@tiptap/extension-subscript@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-subscript/-/extension-subscript-3.0.9.tgz#ba730ef665af8ac021a6a59290f393c701eeeb22" + integrity sha512-FJi6TH5VnAGtqD7c8TX0JJGkabVTC69lEoSel8RUbK9P+NHk0hh1PEyCjHSNhGinepoB6GIi6+skvXHIkJb5xw== + +"@tiptap/extension-superscript@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-superscript/-/extension-superscript-3.0.9.tgz#94a829c8f2a1b073e56bee79ed7630527cdd771a" + integrity sha512-an3ZLXkgO9eLxRDeWelxlzCSdGlVptPMfcg/d315SnjBKRhXJbBirLxQsYfb5CF/cGJ56Qj3TvewfKPITP5POw== + +"@tiptap/extension-table-cell@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-table-cell/-/extension-table-cell-3.0.9.tgz#f1c38fecc541cebbb46eda8cbf0fe200b0013c83" + integrity sha512-3prTFcDCBdZJD+nzkFWFejbEVMbfuNI73GPce+Pk3hLy4cSXFnF0QKjdG8oBoAWULMIsE4FPyY3enQJ4brI6ew== + +"@tiptap/extension-table-header@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-table-header/-/extension-table-header-3.0.9.tgz#f6bdd5d8ec595c4e61a29fcb9f59cb1f4561eecb" + integrity sha512-yPLDzw1EHM6MtuqQIMTmI1ZOAg7ReY09CdYLGtMbSdcLvrg1afg/oOc7K5qSt5qOcLYHW8TJlyykjfhz/qoQtg== + +"@tiptap/extension-table-row@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-table-row/-/extension-table-row-3.0.9.tgz#8f49969928eab2a9bf38b9dba1303a662660eff6" + integrity sha512-BfaKJqYGjWa5TjGRjNZzbYwaExp29VV1WlJsR7SjdQ74DhY70/cth1Jt70LHSpTfJeclwbYwGOGVdXZqTwUtWA== + +"@tiptap/extension-table@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-table/-/extension-table-3.0.9.tgz#be1c77a99deba37d7f2cb41e672e4399e5b517f4" + integrity sha512-jygDvj9MIwMlzs2c+4MZwXCXI6sc7LcKgPFoJ93qiCn6CZrDwaX3XzxXi0VAg7MexsUi1nVaGZQk/gv+Pf3rKw== + +"@tiptap/extension-text-align@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-text-align/-/extension-text-align-3.0.9.tgz#5d52a4c644f23b96083914950c711007907d82c0" + integrity sha512-QQBk8orIdntL3tPzGkKIqEogqArvO/x4dfvbAA2K0DqvS9uGJ3Qp4X6Twv+BIHLjeyhZl/z48vEMB+bjwvqg+w== + +"@tiptap/extension-text-style@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/extension-text-style/-/extension-text-style-3.0.9.tgz#ed520e86066eb2e7d82347a0913c96007d3bf2f5" + integrity sha512-x7SZLS537c7w789n8re0IktmkBZqz98dux/hwpFAcC4oL06YPjFG7Dy9mAiKcsKqKWI0eAyTQvMybz+TJusBbw== + +"@tiptap/extension-text@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-text/-/extension-text-3.18.0.tgz#2e20483eaee3843f2bcab8fb126b10a839ca047c" + integrity sha512-9TvctdnBCwK/zyTi9kS7nGFNl5OvGM8xE0u38ZmQw5t79JOqJHgOroyqMjw8LHK/1PWrozfNCmsZbpq4IZuKXw== + +"@tiptap/extension-underline@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-underline/-/extension-underline-3.18.0.tgz#ca0a1bf14ef4d6f4f2699e0b96d91c63d3bf51b5" + integrity sha512-009IeXURNJ/sm1pBqbj+2YQgjQaBtNlJR3dbl6xu49C+qExqCmI7klhKQuwsVVGLR7ahsYlp7d9RlftnhCXIcQ== + +"@tiptap/extensions@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/extensions/-/extensions-3.18.0.tgz#9f9a7503b84e8775f2b3a602643fd1e423cb43ec" + integrity sha512-uSRIE9HGshBN6NRFR3LX2lZqBLvX92SgU5A9AvUbJD4MqU63E+HdruJnRjsVlX3kPrmbIDowxrzXlUcg3K0USQ== + +"@tiptap/pm@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/pm/-/pm-3.0.9.tgz#d83462a740bf34b5b3664fa608fe2e92dd9a0445" + integrity sha512-cJdnpGyirRxwi6M4IkyapEK/jhcjFXdfX3uhJp/4uVH1dynNXalV0gE/YnH/yt55kzwvG9OUrwOQt+t1iXgNog== + dependencies: + prosemirror-changeset "^2.3.0" + prosemirror-collab "^1.3.1" + prosemirror-commands "^1.6.2" + prosemirror-dropcursor "^1.8.1" + prosemirror-gapcursor "^1.3.2" + prosemirror-history "^1.4.1" + prosemirror-inputrules "^1.4.0" + prosemirror-keymap "^1.2.2" + prosemirror-markdown "^1.13.1" + prosemirror-menu "^1.2.4" + prosemirror-model "^1.24.1" + prosemirror-schema-basic "^1.2.3" + prosemirror-schema-list "^1.5.0" + prosemirror-state "^1.4.3" + prosemirror-tables "^1.6.4" + prosemirror-trailing-node "^3.0.0" + prosemirror-transform "^1.10.2" + prosemirror-view "^1.38.1" + +"@tiptap/pm@^3.0.9": + version "3.18.0" + resolved "https://registry.yarnpkg.com/@tiptap/pm/-/pm-3.18.0.tgz#5fd911fbbca41687ac1dd180ba32552b54634129" + integrity sha512-8RoI5gW0xBVCsuxahpK8vx7onAw6k2/uR3hbGBBnH+HocDMaAZKot3nTyY546ij8ospIC1mnQ7k4BhVUZesZDQ== + dependencies: + prosemirror-changeset "^2.3.0" + prosemirror-collab "^1.3.1" + prosemirror-commands "^1.6.2" + prosemirror-dropcursor "^1.8.1" + prosemirror-gapcursor "^1.3.2" + prosemirror-history "^1.4.1" + prosemirror-inputrules "^1.4.0" + prosemirror-keymap "^1.2.2" + prosemirror-markdown "^1.13.1" + prosemirror-menu "^1.2.4" + prosemirror-model "^1.24.1" + prosemirror-schema-basic "^1.2.3" + prosemirror-schema-list "^1.5.0" + prosemirror-state "^1.4.3" + prosemirror-tables "^1.6.4" + prosemirror-trailing-node "^3.0.0" + prosemirror-transform "^1.10.2" + prosemirror-view "^1.38.1" + +"@tiptap/react@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/react/-/react-3.0.9.tgz#b6fdcf5ecc72e7b9852e1dfa23a4b1c7b3539864" + integrity sha512-BbvWPSgYGvd9m8fPXKI81gf9KP+1SMCPpscbtbbhPyxiW2ziY+jwo+i7MwVI73P89hWAJCy/43UnOde438HmOA== + dependencies: + "@types/use-sync-external-store" "^0.0.6" + fast-deep-equal "^3.1.3" + use-sync-external-store "^1.4.0" + optionalDependencies: + "@tiptap/extension-bubble-menu" "^3.0.9" + "@tiptap/extension-floating-menu" "^3.0.9" + +"@tiptap/starter-kit@3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@tiptap/starter-kit/-/starter-kit-3.0.9.tgz#5f7e27ecabfbfa2b4cad77b9976aea9a7ce28a90" + integrity sha512-CYg6tV5fYOvkP1gyATkJJj+nFYmwjDKLipQc/r0D/tHKypxefENrm4G7mf4B78zsB/izfk5mW3iujvyeod6EcQ== + dependencies: + "@tiptap/core" "^3.0.9" + "@tiptap/extension-blockquote" "^3.0.9" + "@tiptap/extension-bold" "^3.0.9" + "@tiptap/extension-bullet-list" "^3.0.9" + "@tiptap/extension-code" "^3.0.9" + "@tiptap/extension-code-block" "^3.0.9" + "@tiptap/extension-document" "^3.0.9" + "@tiptap/extension-dropcursor" "^3.0.9" + "@tiptap/extension-gapcursor" "^3.0.9" + "@tiptap/extension-hard-break" "^3.0.9" + "@tiptap/extension-heading" "^3.0.9" + "@tiptap/extension-horizontal-rule" "^3.0.9" + "@tiptap/extension-italic" "^3.0.9" + "@tiptap/extension-link" "^3.0.9" + "@tiptap/extension-list" "^3.0.9" + "@tiptap/extension-list-item" "^3.0.9" + "@tiptap/extension-list-keymap" "^3.0.9" + "@tiptap/extension-ordered-list" "^3.0.9" + "@tiptap/extension-paragraph" "^3.0.9" + "@tiptap/extension-strike" "^3.0.9" + "@tiptap/extension-text" "^3.0.9" + "@tiptap/extension-underline" "^3.0.9" + "@tiptap/extensions" "^3.0.9" + "@tiptap/pm" "^3.0.9" + "@tootallnate/once@1": version "1.1.2" resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" @@ -3904,6 +4265,11 @@ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== +"@types/linkify-it@^5": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@types/linkify-it/-/linkify-it-5.0.0.tgz#21413001973106cda1c3a9b91eedd4ccd5469d76" + integrity sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q== + "@types/lodash@^4.14.119": version "4.17.20" resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.20.tgz#1ca77361d7363432d29f5e55950d9ec1e1c6ea93" @@ -3914,6 +4280,19 @@ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.23.tgz#c1bb06db218acc8fc232da0447473fc2fb9d9841" integrity sha512-RDvF6wTulMPjrNdCoYRC8gNR880JNGT8uB+REUpC2Ns4pRqQJhGz90wh7rgdXDPpCczF3VGktDuFGVnz8zP7HA== +"@types/markdown-it@^14.0.0": + version "14.1.2" + resolved "https://registry.yarnpkg.com/@types/markdown-it/-/markdown-it-14.1.2.tgz#57f2532a0800067d9b934f3521429a2e8bfb4c61" + integrity sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog== + dependencies: + "@types/linkify-it" "^5" + "@types/mdurl" "^2" + +"@types/mdurl@^2": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-2.0.0.tgz#d43878b5b20222682163ae6f897b20447233bdfd" + integrity sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg== + "@types/minimatch@*": version "6.0.0" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-6.0.0.tgz#4d207b1cc941367bdcd195a3a781a7e4fc3b1e03" @@ -6465,6 +6844,11 @@ core-js@^2.4.0, core-js@^2.6.12: resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== +core-js@^3.40.0: + version "3.48.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.48.0.tgz#1f813220a47bbf0e667e3885c36cd6f0593bf14d" + integrity sha512-zpEHTy1fjTMZCKLHUZoVeylt9XrzaIN2rbPXEt0k+q7JE5CkCZdo6bNq55bn24a69CH7ErAVLKijxJja4fw+UQ== + core-util-is@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -6509,6 +6893,11 @@ create-jest@^29.7.0: jest-util "^29.7.0" prompts "^2.0.1" +crelt@^1.0.0: + version "1.0.6" + resolved "https://registry.yarnpkg.com/crelt/-/crelt-1.0.6.tgz#7cc898ea74e190fb6ef9dae57f8f81cf7302df72" + integrity sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g== + cross-spawn@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" @@ -6759,7 +7148,7 @@ d3-path@^3.1.0: resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526" integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ== -d3-scale@4.0.2, d3-scale@^2.1.2, d3-scale@^4.0.2: +d3-scale@4.0.2, d3-scale@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== @@ -6770,7 +7159,7 @@ d3-scale@4.0.2, d3-scale@^2.1.2, d3-scale@^4.0.2: d3-time "2.1.1 - 3" d3-time-format "2 - 4" -d3-selection@3.0.0, d3-selection@^1.3.2, d3-selection@^3.0.0: +d3-selection@3.0.0, d3-selection@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31" integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ== @@ -7312,6 +7701,11 @@ entities@^2.0.0: resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== +entities@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + entities@^6.0.0: version "6.0.1" resolved "https://registry.yarnpkg.com/entities/-/entities-6.0.1.tgz#c28c34a43379ca7f61d074130b2f5f7020a30694" @@ -10562,6 +10956,18 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== +linkify-it@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-5.0.0.tgz#9ef238bfa6dc70bd8e7f9572b52d369af569b421" + integrity sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ== + dependencies: + uc.micro "^2.0.0" + +linkifyjs@^4.3.2: + version "4.3.2" + resolved "https://registry.yarnpkg.com/linkifyjs/-/linkifyjs-4.3.2.tgz#d97eb45419aabf97ceb4b05a7adeb7b8c8ade2b1" + integrity sha512-NT1CJtq3hHIreOianA8aSXn6Cw0JzYOuDQbOrSPe7gqFnCpKP++MQe3ODgO3oh2GJFORkAAdqredOa60z63GbA== + load-json-file@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" @@ -10922,6 +11328,18 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" +markdown-it@^14.0.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-14.1.0.tgz#3c3c5992883c633db4714ccb4d7b5935d98b7d45" + integrity sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg== + dependencies: + argparse "^2.0.1" + entities "^4.4.0" + linkify-it "^5.0.0" + mdurl "^2.0.0" + punycode.js "^2.3.1" + uc.micro "^2.1.0" + marked@^0.3.14: version "0.3.19" resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" @@ -10997,6 +11415,11 @@ mdn-data@2.0.14: resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== +mdurl@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-2.0.0.tgz#80676ec0433025dd3e17ee983d0fe8de5a2237e0" + integrity sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w== + media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" @@ -11924,6 +12347,11 @@ optionator@^0.9.3: type-check "^0.4.0" word-wrap "^1.2.5" +orderedmap@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/orderedmap/-/orderedmap-2.1.1.tgz#61481269c44031c449915497bf5a4ad273c512d2" + integrity sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g== + os-homedir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" @@ -12871,6 +13299,160 @@ prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.8, prop-types@^15.6.0, object-assign "^4.1.1" react-is "^16.13.1" +prosemirror-changeset@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.3.1.tgz#eee3299cfabc7a027694e9abdc4e85505e9dd5e7" + integrity sha512-j0kORIBm8ayJNl3zQvD1TTPHJX3g042et6y/KQhZhnPrruO8exkTgG8X+NRpj7kIyMMEx74Xb3DyMIBtO0IKkQ== + dependencies: + prosemirror-transform "^1.0.0" + +prosemirror-collab@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/prosemirror-collab/-/prosemirror-collab-1.3.1.tgz#0e8c91e76e009b53457eb3b3051fb68dad029a33" + integrity sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ== + dependencies: + prosemirror-state "^1.0.0" + +prosemirror-commands@^1.0.0, prosemirror-commands@^1.6.2: + version "1.7.1" + resolved "https://registry.yarnpkg.com/prosemirror-commands/-/prosemirror-commands-1.7.1.tgz#d101fef85618b1be53d5b99ea17bee5600781b38" + integrity sha512-rT7qZnQtx5c0/y/KlYaGvtG411S97UaL6gdp6RIZ23DLHanMYLyfGBV5DtSnZdthQql7W+lEVbpSfwtO8T+L2w== + dependencies: + prosemirror-model "^1.0.0" + prosemirror-state "^1.0.0" + prosemirror-transform "^1.10.2" + +prosemirror-dropcursor@^1.8.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/prosemirror-dropcursor/-/prosemirror-dropcursor-1.8.2.tgz#2ed30c4796109ddeb1cf7282372b3850528b7228" + integrity sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw== + dependencies: + prosemirror-state "^1.0.0" + prosemirror-transform "^1.1.0" + prosemirror-view "^1.1.0" + +prosemirror-gapcursor@^1.3.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.4.0.tgz#e1144a83b79db7ed0ec32cd0e915a0364220af43" + integrity sha512-z00qvurSdCEWUIulij/isHaqu4uLS8r/Fi61IbjdIPJEonQgggbJsLnstW7Lgdk4zQ68/yr6B6bf7sJXowIgdQ== + dependencies: + prosemirror-keymap "^1.0.0" + prosemirror-model "^1.0.0" + prosemirror-state "^1.0.0" + prosemirror-view "^1.0.0" + +prosemirror-history@^1.0.0, prosemirror-history@^1.4.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.5.0.tgz#ee21fc5de85a1473e3e3752015ffd6d649a06859" + integrity sha512-zlzTiH01eKA55UAf1MEjtssJeHnGxO0j4K4Dpx+gnmX9n+SHNlDqI2oO1Kv1iPN5B1dm5fsljCfqKF9nFL6HRg== + dependencies: + prosemirror-state "^1.2.2" + prosemirror-transform "^1.0.0" + prosemirror-view "^1.31.0" + rope-sequence "^1.3.0" + +prosemirror-inputrules@^1.4.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/prosemirror-inputrules/-/prosemirror-inputrules-1.5.1.tgz#d2e935f6086e3801486b09222638f61dae89a570" + integrity sha512-7wj4uMjKaXWAQ1CDgxNzNtR9AlsuwzHfdFH1ygEHA2KHF2DOEaXl1CJfNPAKCg9qNEh4rum975QLaCiQPyY6Fw== + dependencies: + prosemirror-state "^1.0.0" + prosemirror-transform "^1.0.0" + +prosemirror-keymap@^1.0.0, prosemirror-keymap@^1.2.2, prosemirror-keymap@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/prosemirror-keymap/-/prosemirror-keymap-1.2.3.tgz#c0f6ab95f75c0b82c97e44eb6aaf29cbfc150472" + integrity sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw== + dependencies: + prosemirror-state "^1.0.0" + w3c-keyname "^2.2.0" + +prosemirror-markdown@^1.13.1: + version "1.13.3" + resolved "https://registry.yarnpkg.com/prosemirror-markdown/-/prosemirror-markdown-1.13.3.tgz#cf38e98f10c432b906bfcc7179c2e3ab58f49362" + integrity sha512-3E+Et6cdXIH0EgN2tGYQ+EBT7N4kMiZFsW+hzx+aPtOmADDHWCdd2uUQb7yklJrfUYUOjEEu22BiN6UFgPe4cQ== + dependencies: + "@types/markdown-it" "^14.0.0" + markdown-it "^14.0.0" + prosemirror-model "^1.25.0" + +prosemirror-menu@^1.2.4: + version "1.2.5" + resolved "https://registry.yarnpkg.com/prosemirror-menu/-/prosemirror-menu-1.2.5.tgz#dea00e7b623cea89f4d76963bee22d2ac2343250" + integrity sha512-qwXzynnpBIeg1D7BAtjOusR+81xCp53j7iWu/IargiRZqRjGIlQuu1f3jFi+ehrHhWMLoyOQTSRx/IWZJqOYtQ== + dependencies: + crelt "^1.0.0" + prosemirror-commands "^1.0.0" + prosemirror-history "^1.0.0" + prosemirror-state "^1.0.0" + +prosemirror-model@^1.0.0, prosemirror-model@^1.20.0, prosemirror-model@^1.21.0, prosemirror-model@^1.24.1, prosemirror-model@^1.25.0, prosemirror-model@^1.25.4: + version "1.25.4" + resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.25.4.tgz#8ebfbe29ecbee9e5e2e4048c4fe8e363fcd56e7c" + integrity sha512-PIM7E43PBxKce8OQeezAs9j4TP+5yDpZVbuurd1h5phUxEKIu+G2a+EUZzIC5nS1mJktDJWzbqS23n1tsAf5QA== + dependencies: + orderedmap "^2.0.0" + +prosemirror-schema-basic@^1.2.3: + version "1.2.4" + resolved "https://registry.yarnpkg.com/prosemirror-schema-basic/-/prosemirror-schema-basic-1.2.4.tgz#389ce1ec09b8a30ea9bbb92c58569cb690c2d695" + integrity sha512-ELxP4TlX3yr2v5rM7Sb70SqStq5NvI15c0j9j/gjsrO5vaw+fnnpovCLEGIcpeGfifkuqJwl4fon6b+KdrODYQ== + dependencies: + prosemirror-model "^1.25.0" + +prosemirror-schema-list@^1.5.0: + version "1.5.1" + resolved "https://registry.yarnpkg.com/prosemirror-schema-list/-/prosemirror-schema-list-1.5.1.tgz#5869c8f749e8745c394548bb11820b0feb1e32f5" + integrity sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q== + dependencies: + prosemirror-model "^1.0.0" + prosemirror-state "^1.0.0" + prosemirror-transform "^1.7.3" + +prosemirror-state@^1.0.0, prosemirror-state@^1.2.2, prosemirror-state@^1.4.3, prosemirror-state@^1.4.4: + version "1.4.4" + resolved "https://registry.yarnpkg.com/prosemirror-state/-/prosemirror-state-1.4.4.tgz#72b5e926f9e92dcee12b62a05fcc8a2de3bf5b39" + integrity sha512-6jiYHH2CIGbCfnxdHbXZ12gySFY/fz/ulZE333G6bPqIZ4F+TXo9ifiR86nAHpWnfoNjOb3o5ESi7J8Uz1jXHw== + dependencies: + prosemirror-model "^1.0.0" + prosemirror-transform "^1.0.0" + prosemirror-view "^1.27.0" + +prosemirror-tables@^1.6.4: + version "1.8.5" + resolved "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.8.5.tgz#104427012e5a5da1d2a38c122efee8d66bdd5104" + integrity sha512-V/0cDCsHKHe/tfWkeCmthNUcEp1IVO3p6vwN8XtwE9PZQLAZJigbw3QoraAdfJPir4NKJtNvOB8oYGKRl+t0Dw== + dependencies: + prosemirror-keymap "^1.2.3" + prosemirror-model "^1.25.4" + prosemirror-state "^1.4.4" + prosemirror-transform "^1.10.5" + prosemirror-view "^1.41.4" + +prosemirror-trailing-node@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/prosemirror-trailing-node/-/prosemirror-trailing-node-3.0.0.tgz#5bc223d4fc1e8d9145e4079ec77a932b54e19e04" + integrity sha512-xiun5/3q0w5eRnGYfNlW1uU9W6x5MoFKWwq/0TIRgt09lv7Hcser2QYV8t4muXbEr+Fwo0geYn79Xs4GKywrRQ== + dependencies: + "@remirror/core-constants" "3.0.0" + escape-string-regexp "^4.0.0" + +prosemirror-transform@^1.0.0, prosemirror-transform@^1.1.0, prosemirror-transform@^1.10.2, prosemirror-transform@^1.10.5, prosemirror-transform@^1.7.3: + version "1.11.0" + resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.11.0.tgz#f5c5050354423dc83c6b083f6f1959ec86a3f9ba" + integrity sha512-4I7Ce4KpygXb9bkiPS3hTEk4dSHorfRw8uI0pE8IhxlK2GXsqv5tIA7JUSxtSu7u8APVOTtbUBxTmnHIxVkIJw== + dependencies: + prosemirror-model "^1.21.0" + +prosemirror-view@^1.0.0, prosemirror-view@^1.1.0, prosemirror-view@^1.27.0, prosemirror-view@^1.31.0, prosemirror-view@^1.38.1, prosemirror-view@^1.41.4: + version "1.41.5" + resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.41.5.tgz#3e152d14af633f2f5a73aba24e6130c63f643b2b" + integrity sha512-UDQbIPnDrjE8tqUBbPmCOZgtd75htE6W3r0JCmY9bL6W1iemDM37MZEKC49d+tdQ0v/CKx4gjxLoLsfkD2NiZA== + dependencies: + prosemirror-model "^1.20.0" + prosemirror-state "^1.0.0" + prosemirror-transform "^1.1.0" + proto-list@~1.2.1: version "1.2.4" resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" @@ -12938,6 +13520,11 @@ pumpify@^1.3.3: inherits "^2.0.3" pump "^2.0.0" +punycode.js@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode.js/-/punycode.js-2.3.1.tgz#6b53e56ad75588234e79f4affa90972c7dd8cdb7" + integrity sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA== + punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" @@ -13084,7 +13671,7 @@ react-dom@^18.2.0: loose-envify "^1.1.0" scheduler "^0.23.2" -react-draggable@^3.0.5, react-draggable@^3.1.1, react-draggable@^3.3.0: +react-draggable@^3.0.5, react-draggable@^3.3.0: version "3.3.2" resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-3.3.2.tgz#966ef1d90f2387af3c2d8bd3516f601ea42ca359" integrity sha512-oaz8a6enjbPtx5qb0oDWxtDNuybOylvto1QLydsXgKmwT7e3GXC2eMVDwEMIUYJIFqVG72XpOv673UuuAq6LhA== @@ -13516,10 +14103,10 @@ reduce-function-call@^1.0.1: dependencies: balanced-match "^1.0.0" -redux-undo@beta: - version "1.0.0-beta9-9-7" - resolved "https://registry.yarnpkg.com/redux-undo/-/redux-undo-1.0.0-beta9-9-7.tgz#fe3baa1b271423d7ddbbfc3a82c71b029a2db8ba" - integrity sha512-TTo1X0rkWJaHB4NOnMWXuuyZ3XOHzqplAPUtKFfuAxsSnrLN+ft+CsQy3vuT5+/n02DKWRpkj5hpxsLgmTPPBQ== +redux-undo@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/redux-undo/-/redux-undo-1.1.0.tgz#ae28e517797b1aa5521d55da561f7214d310f8a5" + integrity sha512-zzLFh2qeF0MTIlzDhDLm9NtkfBqCllQJ3OCuIl5RKlG/ayHw6GUdIFdMhzMS9NnrnWdBX5u//ExMOHpfudGGOg== redux@^4.0.0, redux@^4.0.1: version "4.2.1" @@ -13868,6 +14455,11 @@ rollup@^2.56.2: optionalDependencies: fsevents "~2.3.2" +rope-sequence@^1.3.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.4.tgz#df85711aaecd32f1e756f76e43a415171235d425" + integrity sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ== + run-async@^2.2.0: version "2.4.1" resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" @@ -15147,6 +15739,13 @@ tiny-invariant@^1.0.4, tiny-invariant@^1.0.6, tiny-invariant@^1.3.1: resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.3.tgz#46680b7a873a0d5d10005995eb90a70d74d60127" integrity sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== +tippy.js@latest: + version "6.3.7" + resolved "https://registry.yarnpkg.com/tippy.js/-/tippy.js-6.3.7.tgz#8ccfb651d642010ed9a32ff29b0e9e19c5b8c61c" + integrity sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ== + dependencies: + "@popperjs/core" "^2.9.0" + title-case@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa" @@ -15490,6 +16089,11 @@ ua-parser-js@^0.7.30: resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.41.tgz#9f6dee58c389e8afababa62a4a2dc22edb69a452" integrity sha512-O3oYyCMPYgNNHuO7Jjk3uacJWZF8loBgwrfd/5LE/HyZ3lUIOdniQ7DNXJcIgZbwioZxk0fLfI4EVnetdiX5jg== +uc.micro@^2.0.0, uc.micro@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-2.1.0.tgz#f8d3f7d0ec4c3dea35a7e3c8efa4cb8b45c9e7ee" + integrity sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A== + uglify-js@^3.1.4: version "3.19.3" resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.19.3.tgz#82315e9bbc6f2b25888858acd1fff8441035b77f" @@ -15797,6 +16401,11 @@ victory-vendor@^36.6.8: d3-time "^3.0.0" d3-timer "^3.0.1" +w3c-keyname@^2.2.0: + version "2.2.8" + resolved "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.8.tgz#7b17c8c6883d4e8b86ac8aba79d39e880f8869c5" + integrity sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ== + w3c-xmlserializer@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" From 261fac9b1c458a62e68d8707f89c50b70b5f458d Mon Sep 17 00:00:00 2001 From: carlacostea Date: Thu, 29 Jan 2026 10:37:04 +0200 Subject: [PATCH 3/4] fix: add back removed libraries --- package.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 15baa28b70..fc060dd29c 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,11 @@ "publish:beta:minor": "lerna publish preminor --dist-tag beta --preid beta --force-publish --ignore-scripts", "publish:beta:prerelease": "lerna publish prerelease --dist-tag beta --preid beta --force-publish --ignore-scripts", "postinstall": "lerna bootstrap && git config --local include.path ../.gitconfig", - "clean-install": "git clean -xdf . && yarn install && lerna bootstrap && ./scripts/build babel" + "clean-install": "git clean -xdf . && yarn install && lerna bootstrap && ./scripts/build babel", + "check-pie-lib-updates": "lerna exec -- npm-check-updates '@pie-lib/*' --pre --target prerelease", + "update-pie-lib": "lerna exec -- npm-check-updates '@pie-lib/*' --pre --target prerelease -u", + "check-pie-lib-next": "lerna exec -- npm-check-updates '@pie-lib/*' --pre --target prerelease --preid next", + "update-pie-lib-next": "lerna exec -- npm-check-updates '@pie-lib/*' --pre --target prerelease --preid next -u" }, "devDependencies": { "@babel/cli": "^7.0.0", @@ -27,9 +31,12 @@ "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-export-default-from": "^7.0.0", "@babel/plugin-proposal-export-namespace-from": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.20.7", + "@babel/plugin-proposal-optional-chaining": "^7.21.0", "@babel/plugin-transform-runtime": "^7.0.0", "@babel/preset-env": "^7.0.0", "@babel/preset-react": "^7.0.0", + "@rollup/plugin-commonjs": "^20.0.0", "@pie-framework/build-helper": "^5.2.9", "@pie-lib/test-utils": "1.1.0-next.4", "@pslb/pslb": "^4.4.1", @@ -54,12 +61,14 @@ "jest-environment-jsdom": "^29.7.0", "lerna": "^3.13.1", "minimist": "^1.2.0", + "npm-check-updates": "^17.1.15", "pacote": "^9.5.0", "postcss": "8.4.31", - "prettier": "^2.2.1", + "prettier": "^3.0.0", "react": "18.2.0", "react-dom": "18.2.0", "rimraf": "^2.6.2", + "rollup-plugin-analyzer": "^4.0.0", "semver": "^5.6.0", "yarn": "^1.22.0" }, From 02aa2efe74b0cf2b4f6d4bcab230fff804528e19 Mon Sep 17 00:00:00 2001 From: carlacostea Date: Thu, 29 Jan 2026 11:03:45 +0200 Subject: [PATCH 4/4] fix: dependencies --- package.json | 1 - .../configure/package.json | 2 +- packages/categorize/configure/package.json | 2 +- packages/charting/configure/package.json | 2 +- .../drag-in-the-blank/configure/package.json | 2 +- .../drawing-response/configure/package.json | 2 +- .../configure/package.json | 2 +- .../configure/package.json | 2 +- packages/extended-text-entry/package.json | 2 +- .../fraction-model/configure/package.json | 2 +- .../configure/package.json | 2 +- packages/graphing/configure/package.json | 2 +- packages/hotspot/configure/package.json | 2 +- .../configure/package.json | 2 +- .../inline-dropdown/configure/package.json | 2 +- packages/likert/configure/package.json | 2 +- packages/match/configure/package.json | 2 +- packages/math-inline/configure/package.json | 2 +- .../math-templated/configure/package.json | 2 +- packages/select-text/configure/package.json | 2 +- yarn.lock | 261 +----------------- 21 files changed, 32 insertions(+), 268 deletions(-) diff --git a/package.json b/package.json index fc060dd29c..632df71b7e 100644 --- a/package.json +++ b/package.json @@ -100,7 +100,6 @@ "@pie-lib/controller-utils": "1.1.0-next.4", "@pie-lib/correct-answer-toggle": "3.1.0-next.5", "@pie-lib/drag": "3.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/feedback": "1.1.0-next.4", "@pie-lib/graphing-solution-set": "3.1.0-next.25", diff --git a/packages/boilerplate-item-type/configure/package.json b/packages/boilerplate-item-type/configure/package.json index 8c59ee07e2..4ea93331ad 100644 --- a/packages/boilerplate-item-type/configure/package.json +++ b/packages/boilerplate-item-type/configure/package.json @@ -12,7 +12,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", diff --git a/packages/categorize/configure/package.json b/packages/categorize/configure/package.json index 346ed9cdd9..eab23645fa 100644 --- a/packages/categorize/configure/package.json +++ b/packages/categorize/configure/package.json @@ -18,7 +18,7 @@ "@pie-lib/categorize": "1.1.0-next.9", "@pie-lib/config-ui": "12.1.0-next.5", "@pie-lib/drag": "3.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/math-rendering": "4.1.0-next.4", "@pie-lib/render-ui": "5.1.0-next.5", "@pie-lib/translator": "3.1.0-next.4", diff --git a/packages/charting/configure/package.json b/packages/charting/configure/package.json index c1c5e22ee7..253cdc8b94 100644 --- a/packages/charting/configure/package.json +++ b/packages/charting/configure/package.json @@ -14,7 +14,7 @@ "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/charting": "6.1.0-next.25", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/math-rendering": "4.1.0-next.4", "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^4.1.1", diff --git a/packages/drag-in-the-blank/configure/package.json b/packages/drag-in-the-blank/configure/package.json index 58565afb49..a78527b742 100644 --- a/packages/drag-in-the-blank/configure/package.json +++ b/packages/drag-in-the-blank/configure/package.json @@ -14,7 +14,7 @@ "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", "@pie-lib/drag": "3.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/math-rendering": "4.1.0-next.4", "debug": "^3.1.0", "lodash": "^4.17.15", diff --git a/packages/drawing-response/configure/package.json b/packages/drawing-response/configure/package.json index d6e1139729..2fd88ffa9e 100644 --- a/packages/drawing-response/configure/package.json +++ b/packages/drawing-response/configure/package.json @@ -13,7 +13,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.7.2", diff --git a/packages/explicit-constructed-response/configure/package.json b/packages/explicit-constructed-response/configure/package.json index 5cffe2525b..02b6af8003 100644 --- a/packages/explicit-constructed-response/configure/package.json +++ b/packages/explicit-constructed-response/configure/package.json @@ -11,7 +11,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "classnames": "^2.2.6", "debug": "^3.1.0", "lodash": "^4.17.15", diff --git a/packages/extended-text-entry/configure/package.json b/packages/extended-text-entry/configure/package.json index 9065e095f4..ed499b1f8f 100644 --- a/packages/extended-text-entry/configure/package.json +++ b/packages/extended-text-entry/configure/package.json @@ -14,7 +14,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "lodash": "^4.17.15", "prop-types": "^15.6.2", "react": "18.2.0", diff --git a/packages/extended-text-entry/package.json b/packages/extended-text-entry/package.json index c3cb88be5b..f098a78e6f 100644 --- a/packages/extended-text-entry/package.json +++ b/packages/extended-text-entry/package.json @@ -15,7 +15,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-player-events": "^0.1.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/math-rendering": "4.1.0-next.4", "@pie-lib/render-ui": "5.1.0-next.5", "classnames": "^2.2.5", diff --git a/packages/fraction-model/configure/package.json b/packages/fraction-model/configure/package.json index 1a413a24a2..f769bae339 100644 --- a/packages/fraction-model/configure/package.json +++ b/packages/fraction-model/configure/package.json @@ -12,7 +12,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", "prop-types": "^15.6.2", diff --git a/packages/graphing-solution-set/configure/package.json b/packages/graphing-solution-set/configure/package.json index 6f478a0ea0..3a001f96f3 100644 --- a/packages/graphing-solution-set/configure/package.json +++ b/packages/graphing-solution-set/configure/package.json @@ -13,7 +13,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/graphing-solution-set": "3.1.0-next.25", "@pie-lib/math-rendering": "4.1.0-next.4", "classnames": "^2.2.5", diff --git a/packages/graphing/configure/package.json b/packages/graphing/configure/package.json index bb5ebe3a9c..4a8c97924c 100644 --- a/packages/graphing/configure/package.json +++ b/packages/graphing/configure/package.json @@ -13,7 +13,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/graphing": "3.1.0-next.25", "@pie-lib/math-rendering": "4.1.0-next.4", "classnames": "^2.2.5", diff --git a/packages/hotspot/configure/package.json b/packages/hotspot/configure/package.json index 5f12bccea5..b4ec76faf0 100644 --- a/packages/hotspot/configure/package.json +++ b/packages/hotspot/configure/package.json @@ -13,7 +13,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "debug": "^3.1.0", "konva": "8.3.0", "lodash": "^4.17.15", diff --git a/packages/image-cloze-association/configure/package.json b/packages/image-cloze-association/configure/package.json index 481db45749..aa9f53a4b4 100644 --- a/packages/image-cloze-association/configure/package.json +++ b/packages/image-cloze-association/configure/package.json @@ -13,7 +13,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "debug": "^3.1.0", "prop-types": "^15.7.2", "react": "18.2.0", diff --git a/packages/inline-dropdown/configure/package.json b/packages/inline-dropdown/configure/package.json index 3f125ef438..cdf5c04f62 100644 --- a/packages/inline-dropdown/configure/package.json +++ b/packages/inline-dropdown/configure/package.json @@ -11,7 +11,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/math-rendering": "4.1.0-next.4", "@pie-lib/render-ui": "5.1.0-next.5", "classnames": "^2.2.6", diff --git a/packages/likert/configure/package.json b/packages/likert/configure/package.json index bc11e760df..0a69a05238 100644 --- a/packages/likert/configure/package.json +++ b/packages/likert/configure/package.json @@ -13,7 +13,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^4.1.1", "prop-types": "^15.6.2", diff --git a/packages/match/configure/package.json b/packages/match/configure/package.json index 75f715439a..448811cd69 100644 --- a/packages/match/configure/package.json +++ b/packages/match/configure/package.json @@ -15,7 +15,7 @@ "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", "@pie-lib/drag": "3.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/render-ui": "5.1.0-next.5", "@pie-lib/test-utils": "1.1.0-next.4", "classnames": "^2.2.5", diff --git a/packages/math-inline/configure/package.json b/packages/math-inline/configure/package.json index 261466daf2..37351cf64e 100644 --- a/packages/math-inline/configure/package.json +++ b/packages/math-inline/configure/package.json @@ -14,7 +14,7 @@ "@pie-framework/mathquill": "^1.1.3", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/math-rendering": "4.1.0-next.4", "@pie-lib/math-toolbar": "2.1.0-next.5", "@pie-lib/render-ui": "5.1.0-next.5", diff --git a/packages/math-templated/configure/package.json b/packages/math-templated/configure/package.json index 9f1ca9f0fd..53eacf969d 100644 --- a/packages/math-templated/configure/package.json +++ b/packages/math-templated/configure/package.json @@ -12,7 +12,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/math-toolbar": "2.1.0-next.5", "@pie-lib/render-ui": "5.1.0-next.5", "debug": "^3.1.0", diff --git a/packages/select-text/configure/package.json b/packages/select-text/configure/package.json index 38731b9167..99eaf00c76 100644 --- a/packages/select-text/configure/package.json +++ b/packages/select-text/configure/package.json @@ -12,7 +12,7 @@ "@mui/material": "^7.3.4", "@pie-framework/pie-configure-events": "^1.3.0", "@pie-lib/config-ui": "12.1.0-next.5", - "@pie-lib/editable-html": "12.1.0-next.5", + "@pie-lib/editable-html-tip-tap": "1.1.0-next.5", "@pie-lib/text-select": "2.1.0-next.5", "debug": "^3.1.0", "lodash": "^4.17.15", diff --git a/yarn.lock b/yarn.lock index 67d6e7109f..30ece6c2b1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3139,45 +3139,6 @@ tippy.js latest to-style "^1.3.3" -"@pie-lib/editable-html@12.1.0-next.5": - version "12.1.0-next.5" - resolved "https://registry.yarnpkg.com/@pie-lib/editable-html/-/editable-html-12.1.0-next.5.tgz#84c0309382b08ac0ab5b96132ff273d45bbee535" - integrity sha512-JG9HRwdEqYel2cd60peICyLNUx4wjdakPUYSwxmN+WCjaVTqHaEdzt8O5op9zL+ooGbzaFg0rfh10pdBSk77qQ== - dependencies: - "@dnd-kit/core" "6.1.0" - "@dnd-kit/modifiers" "9.0.0" - "@dnd-kit/utilities" "3.2.2" - "@emotion/react" "^11.14.0" - "@emotion/style" "^0.8.0" - "@mui/icons-material" "^7.3.4" - "@mui/material" "^7.3.4" - "@pie-lib/drag" "3.1.0-next.5" - "@pie-lib/math-input" "7.1.0-next.4" - "@pie-lib/math-rendering" "4.1.0-next.4" - "@pie-lib/math-toolbar" "2.1.0-next.5" - "@pie-lib/render-ui" "5.1.0-next.5" - change-case "^3.0.2" - classnames "^2.2.6" - debug "^4.1.1" - immutable "^4.0.0-rc.12" - keycode "^2.2.0" - lodash "^4.17.11" - prop-types "^15.6.2" - react-attr-converter "^0.3.1" - react-jss "^8.6.1" - react-portal "^4.2.0" - slate "^0.36.2" - slate-dev-environment "^0.2.0" - slate-edit-list "^0.11.3" - slate-edit-table "^0.17.0" - slate-html-serializer "^0.6.12" - slate-plain-serializer "^0.5.26" - slate-prop-types "^0.4.38" - slate-react "^0.14.3" - slate-schema-violations "^0.1.39" - slate-soft-break "^0.8.1" - to-style "^1.3.3" - "@pie-lib/feedback@1.1.0-next.4": version "1.1.0-next.4" resolved "https://registry.yarnpkg.com/@pie-lib/feedback/-/feedback-1.1.0-next.4.tgz#11748992d6031688ccd0cf786f64f709f092f1c0" @@ -7462,11 +7423,6 @@ dir-glob@^2.2.2: dependencies: path-type "^3.0.0" -direction@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/direction/-/direction-0.1.5.tgz#ce5d797f97e26f8be7beff53f7dc40e1c1a9ec4c" - integrity sha512-HceXsAluGbXKCz2qCVbXFUH4Vn4eNMWxY5gzydMFMnS1zKSwvDASqLwcrYLIFDpwuZ63FUAqjDLEP1eicHt8DQ== - docson@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/docson/-/docson-2.1.0.tgz#320027312ae1d87dbe513eb19df21db65de5df35" @@ -8038,11 +7994,6 @@ esrecurse@^4.3.0: dependencies: estraverse "^5.2.0" -esrever@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/esrever/-/esrever-0.2.0.tgz#96e9d28f4f1b1a76784cd5d490eaae010e7407b8" - integrity sha512-1e9YJt6yQkyekt2BUjTky7LZWWVyC2cIpgdnsTAvMcnzXIZvlW/fTMPkxBcZoYhgih4d+EC+iw+yv9GIkz7vrw== - estraverse@^4.1.1: version "4.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" @@ -8670,11 +8621,6 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-document@1: - version "1.0.0" - resolved "https://registry.yarnpkg.com/get-document/-/get-document-1.0.0.tgz#4821bce66f1c24cb0331602be6cb6b12c4f01c4b" - integrity sha512-8E7H2Xxibav+/rQTTtm6gFlSQwDoAQg667yheA+vWQr/amxEuswChzGo4MIbOJJoR0SMpDyhbUqWp3FpIfwD9A== - get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.2.7, get-intrinsic@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" @@ -8766,13 +8712,6 @@ get-value@^2.0.3, get-value@^2.0.6: resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== -get-window@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/get-window/-/get-window-1.1.2.tgz#65fbaa999fb87f86ea5d30770f4097707044f47f" - integrity sha512-yjWpFcy9fjhLQHW1dPtg9ga4pmizLY8y4ZSHdGrAQ1NU277MRhnGnnLPxe19X8W5lWVsCZz++5xEuNozWMVmTw== - dependencies: - get-document "1" - getpass@^0.1.1: version "0.1.7" resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" @@ -9617,11 +9556,6 @@ is-directory@^0.3.1: resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== -is-empty@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/is-empty/-/is-empty-1.2.0.tgz#de9bb5b278738a05a0b09a57e1fb4d4a341a9f6b" - integrity sha512-F2FnH/otLNJv0J6wc73A5Xo7oHLNnqplYqZhUu01tD54DIPvxIRSTSLkrUB/M0nHO4vo1O9PDfN4KoTxCzLh/w== - is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" @@ -9715,11 +9649,6 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" -is-hotkey@^0.1.1: - version "0.1.8" - resolved "https://registry.yarnpkg.com/is-hotkey/-/is-hotkey-0.1.8.tgz#6b1f4b2d0e5639934e20c05ed24d623a21d36d25" - integrity sha512-qs3NZ1INIS+H+yeo7cD9pDfwYV/jqRh1JG9S9zYrNudkoUQg7OL7ziXqRKu+InFjUIDoP2o6HIkLYMh1pcWgyQ== - is-in-browser@^1.0.2, is-in-browser@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835" @@ -9937,11 +9866,6 @@ is-weakset@^2.0.3: call-bound "^1.0.3" get-intrinsic "^1.2.6" -is-window@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d" - integrity sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg== - is-windows@^1.0.0, is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" @@ -9974,11 +9898,6 @@ isobject@^3.0.0, isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== -isomorphic-base64@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/isomorphic-base64/-/isomorphic-base64-1.0.2.tgz#f426aae82569ba8a4ec5ca73ad21a44ab1ee7803" - integrity sha512-pQFyLwShVPA1Qr0dE1ZPguJkbOsFGDfSq6Wzz6XaO33v74X6/iQjgYPozwkeKGQxOI1/H3Fz7+ROtnV1veyKEg== - isomorphic-fetch@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" @@ -10835,7 +10754,7 @@ jsuri@^1.3.1: object.assign "^4.1.4" object.values "^1.1.6" -keycode@^2.1.2, keycode@^2.1.7, keycode@^2.2.0: +keycode@^2.1.7, keycode@^2.2.0: version "2.2.1" resolved "https://registry.yarnpkg.com/keycode/-/keycode-2.2.1.tgz#09c23b2be0611d26117ea2501c2c391a01f39eff" integrity sha512-Rdgz9Hl9Iv4QKi8b0OlCRQEzp4AgVxyCtz5S/+VIHezDmrDhkp2N2TqBWOLz0/gbeREXOOiI9/4b8BY9uw2vFg== @@ -11109,11 +11028,6 @@ lodash.uniq@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== -lodash@^4.1.1: - version "4.17.23" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.23.tgz#f113b0378386103be4f6893388c73d0bde7f2c5a" - integrity sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w== - lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.2.1: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" @@ -12028,6 +11942,11 @@ npm-bundled@^1.0.1, npm-bundled@^1.1.1: dependencies: npm-normalize-package-bin "^1.0.1" +npm-check-updates@^17.1.15: + version "17.1.18" + resolved "https://registry.yarnpkg.com/npm-check-updates/-/npm-check-updates-17.1.18.tgz#b26e5a6bb5f2b32af5950cda7ea40aafaf92e2cc" + integrity sha512-bkUy2g4v1i+3FeUf5fXMLbxmV95eG4/sS7lYE32GrUeVgQRfQEk39gpskksFunyaxQgTIdrvYbnuNbO/pSUSqw== + npm-install-checks@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-4.0.0.tgz#a37facc763a2fde0497ef2c6d0ac7c3fbe00d7b4" @@ -13190,10 +13109,10 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -prettier@^2.2.1: - version "2.8.8" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" - integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== +prettier@^3.0.0: + version "3.8.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.8.1.tgz#edf48977cf991558f4fcbd8a3ba6015ba2a3a173" + integrity sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg== pretty-format@30.2.0, pretty-format@^30.0.0: version "30.2.0" @@ -13690,13 +13609,6 @@ react-event-listener@^0.6.0: prop-types "^15.6.0" warning "^4.0.1" -react-immutable-proptypes@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/react-immutable-proptypes/-/react-immutable-proptypes-2.2.0.tgz#cce96d68cc3c18e89617cbf3092d08e35126af4a" - integrity sha512-Vf4gBsePlwdGvSZoLSBfd4HAP93HDauMY4fDjXhreg/vg6F3Fj/MXDNyTbltPC/xZKmZc+cjLu3598DdYK6sgQ== - dependencies: - invariant "^2.2.2" - react-input-autosize@^2.2.1: version "2.2.2" resolved "https://registry.yarnpkg.com/react-input-autosize/-/react-input-autosize-2.2.2.tgz#fcaa7020568ec206bc04be36f4eb68e647c4d8c2" @@ -13758,13 +13670,6 @@ react-measure@^2.2.2: prop-types "^15.6.2" resize-observer-polyfill "^1.5.0" -react-portal@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/react-portal/-/react-portal-3.2.0.tgz#4224e19b2b05d5cbe730a7ba0e34ec7585de0043" - integrity sha512-avb1FreAZAVCvNNyS2dCpxZiPYPJnAasHYPxdVBTROgNFeI+KSb+OoMHNsC1GbDawESCriPwCX+qKua6WSPIFw== - dependencies: - prop-types "^15.5.8" - react-portal@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/react-portal/-/react-portal-4.3.0.tgz#92ca3492b1309883134f317a6aa88004534c860f" @@ -14581,11 +14486,6 @@ seedrandom@^3.0.5: resolved "https://registry.yarnpkg.com/seedrandom/-/seedrandom-3.0.5.tgz#54edc85c95222525b0c7a6f6b3543d8e0b3aa0a7" integrity sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg== -selection-is-backward@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/selection-is-backward/-/selection-is-backward-1.0.0.tgz#97a54633188a511aba6419fc5c1fa91b467e6be1" - integrity sha512-C+6PCOO55NLCfS8uQjUKV/6E5XMuUcfOVsix5m0QqCCCKi495NgeQVNfWtAaD71NKHsdmFCJoXUGfir3qWdr9A== - "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: version "5.7.2" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" @@ -14842,116 +14742,6 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slate-base64-serializer@^0.2.45: - version "0.2.115" - resolved "https://registry.yarnpkg.com/slate-base64-serializer/-/slate-base64-serializer-0.2.115.tgz#438e051959bde013b50507f3144257e74039ff7f" - integrity sha512-GnLV7bUW/UQ5j7rVIxCU5zdB6NOVsEU6YWsCp68dndIjSGTGLaQv2+WwV3NcnrGGZEYe5qgo33j2QWrPws2C1A== - dependencies: - isomorphic-base64 "^1.0.2" - -slate-dev-environment@^0.1.4: - version "0.1.6" - resolved "https://registry.yarnpkg.com/slate-dev-environment/-/slate-dev-environment-0.1.6.tgz#ff22b40ef4cc890ff7706b6b657abc276782424f" - integrity sha512-DDeNzcpBvdEtPmuLrpPtrth7vnK693fgxzwS6FACu3oMBoXjh0qcJWVBktecPJXJDxcTVkWUpt0dPhfXLMIkWQ== - dependencies: - is-in-browser "^1.1.3" - -slate-dev-environment@^0.2.0: - version "0.2.5" - resolved "https://registry.yarnpkg.com/slate-dev-environment/-/slate-dev-environment-0.2.5.tgz#481b6906fde5becc390db7c14edf97a4bb0029f2" - integrity sha512-oLD8Fclv/RqrDv6RYfN2CRzNcRXsUB99Qgcw5L/njTjxAdDPguV6edQ3DgUG9Q2pLFLhI15DwsKClzVfFzfwGQ== - dependencies: - is-in-browser "^1.1.3" - -slate-dev-logger@^0.1.42, slate-dev-logger@^0.1.43: - version "0.1.43" - resolved "https://registry.yarnpkg.com/slate-dev-logger/-/slate-dev-logger-0.1.43.tgz#77f6ca7207fcbf453a5516f3aa8b19794d1d26dc" - integrity sha512-GkcPMGzmPVm85AL+jaKnzhIA0UH9ktQDEIDM+FuQtz+TAPcpPCQiRAaZ6I2p2uD0Hq9bImhKSCtHIa0qRxiVGw== - -slate-edit-list@^0.11.3: - version "0.11.3" - resolved "https://registry.yarnpkg.com/slate-edit-list/-/slate-edit-list-0.11.3.tgz#d27ff2ff93a83bef49131a6a44b87a9558c9d44c" - integrity sha512-nqaiYYppezMmbsh+JN6vqZl2EexiUTJWwCzJVas8cv+WeRtRmuysn94LKF2VdLIxLmNAe/ZfliIkW9uC/NdO6w== - -slate-edit-table@^0.17.0: - version "0.17.0" - resolved "https://registry.yarnpkg.com/slate-edit-table/-/slate-edit-table-0.17.0.tgz#aa32177a09d7682d1d2bfa25491f63b56216e1d8" - integrity sha512-OiT3dgkC06bclUv+5RgjcYS/a9xHT9rh6q+A2Tfh3ABXjA9KGP1pvxwSYLB4uakybtAHpd4bgVr1cHINyJVUwA== - -slate-hotkeys@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/slate-hotkeys/-/slate-hotkeys-0.1.4.tgz#5b10b2a178affc60827f9284d4c0a5d7e5041ffe" - integrity sha512-jQwWYpPzzmZzTW1q8YP2KDmyjH5kVFa2TbSPX7i5lE0K5525KgTPq6jliJSqK9GPz6MyOSt/lmnnxkWo9nHn1w== - dependencies: - is-hotkey "^0.1.1" - slate-dev-environment "^0.1.4" - -slate-html-serializer@^0.6.12: - version "0.6.32" - resolved "https://registry.yarnpkg.com/slate-html-serializer/-/slate-html-serializer-0.6.32.tgz#69b0fcdb89a0bdcea28b60b6a90b944651ad3277" - integrity sha512-x1RP1R2HMaVFflk9UXiuepcbN4wMoJRv0VWtxFw8efGNFmJfNBWME4iXAy6GNFRV0rRPlG3xCuQv2wHZ/+JMYw== - dependencies: - slate-dev-logger "^0.1.43" - type-of "^2.0.1" - -slate-plain-serializer@^0.5.26: - version "0.5.41" - resolved "https://registry.yarnpkg.com/slate-plain-serializer/-/slate-plain-serializer-0.5.41.tgz#dc2d219602c2cb8dc710ac660e108f3b3cc4dc80" - integrity sha512-KPC2T5PT29JN7uxpmpg/xIGO1YjNmpTfghkGsUKBx7HHYjGe5c9jEApolTvzNy3F3w+wGQNsiT+aN6dn9m6sFA== - dependencies: - slate-dev-logger "^0.1.43" - -slate-prop-types@^0.4.38, slate-prop-types@^0.4.43: - version "0.4.67" - resolved "https://registry.yarnpkg.com/slate-prop-types/-/slate-prop-types-0.4.67.tgz#c6aa74195466546a44fcb85d1c7b15fefe36ce6b" - integrity sha512-FmdwitAw1Y69JHm326dfwP6Zd6R99jz1Im8jvKcnG2hytk72I1vIv6ct2CkNGwc3sg90+OIO/Rf18frYxxoTzw== - -slate-react@^0.14.3: - version "0.14.3" - resolved "https://registry.yarnpkg.com/slate-react/-/slate-react-0.14.3.tgz#0f91a6cb00895f5454fc2b3f92f2ad4bf9afe7ae" - integrity sha512-WbLua/t5TNCuBE5ZNXipwxp6LfqkS5wwsraXfZ3dS4R4LmfG77aNckLlRrf71s9HUoQ3khAh3JSbCnAr1FHWBg== - dependencies: - debug "^3.1.0" - get-window "^1.1.1" - is-window "^1.0.2" - keycode "^2.1.2" - lodash "^4.1.1" - prop-types "^15.5.8" - react-immutable-proptypes "^2.1.0" - react-portal "^3.1.0" - selection-is-backward "^1.0.0" - slate-base64-serializer "^0.2.45" - slate-dev-environment "^0.1.4" - slate-dev-logger "^0.1.42" - slate-hotkeys "^0.1.4" - slate-plain-serializer "^0.5.26" - slate-prop-types "^0.4.43" - -slate-schema-violations@^0.1.24, slate-schema-violations@^0.1.39: - version "0.1.39" - resolved "https://registry.yarnpkg.com/slate-schema-violations/-/slate-schema-violations-0.1.39.tgz#854ab5624136419cef4c803b1823acabe11f1c15" - integrity sha512-SNRoV9Ii5UqjNqAKcIw7aAOMwgI45zsn86ue2n8NVLNOCe3fUI35cjq6l3fdvmRYw4X/GcZqzhpQsizHD3ts6A== - -slate-soft-break@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/slate-soft-break/-/slate-soft-break-0.8.1.tgz#673d1b76799731edd7aedd5cfc5513c7b5234895" - integrity sha512-uaGdIRjAdNTtKfhaC/+doUVtTbKOPAQihwjDytlVSL3XIy2ZSXlm73J//QmsdklUziQnN4sJw1gu+SekUVc1BQ== - -slate@^0.36.2: - version "0.36.2" - resolved "https://registry.yarnpkg.com/slate/-/slate-0.36.2.tgz#63640fde050aa3b88342c2ffb665bc0e00be6239" - integrity sha512-3QZQegj4FdUsXYEgELUNdgLjCBxYC2lbuvMjFG0KAiC/aj8fMEl/jc6Qg/PJEMaUvOLHFSKIPj8NQBwUCDt6dQ== - dependencies: - debug "^3.1.0" - direction "^0.1.5" - esrever "^0.2.0" - is-empty "^1.0.0" - is-plain-object "^2.0.4" - lodash "^4.17.4" - slate-dev-logger "^0.1.42" - slate-schema-violations "^0.1.24" - type-of "^2.0.1" - slide@^1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" @@ -15275,7 +15065,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== @@ -15293,15 +15083,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.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" @@ -15401,7 +15182,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== @@ -15429,13 +15210,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.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: version "7.1.2" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz#132875abde678c7ea8d691533f2e7e22bb744dba" @@ -16643,7 +16417,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== @@ -16669,15 +16443,6 @@ wrap-ansi@^5.1.0: string-width "^3.0.0" strip-ansi "^5.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"