@pie-element/image-cloze-association 9.0.0-beta.0 → 9.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,17 +3,6 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [8.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@8.3.2...@pie-element/image-cloze-association@8.3.3) (2025-11-27)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * bump libs PD-5274, PD-5211, PD-5248 ([7610b25](https://github.com/pie-framework/pie-elements/commit/7610b25423956b6492f33322513b3430051fca77))
12
-
13
-
14
-
15
-
16
-
17
6
  ## [8.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@8.3.1...@pie-element/image-cloze-association@8.3.2) (2025-10-22)
18
7
 
19
8
 
@@ -3,17 +3,6 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [7.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association-configure@7.3.2...@pie-element/image-cloze-association-configure@7.3.3) (2025-11-27)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * bump libs PD-5274, PD-5211, PD-5248 ([7610b25](https://github.com/pie-framework/pie-elements/commit/7610b25423956b6492f33322513b3430051fca77))
12
-
13
-
14
-
15
-
16
-
17
6
  ## [7.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association-configure@7.3.1...@pie-element/image-cloze-association-configure@7.3.2) (2025-10-22)
18
7
 
19
8
 
@@ -9,7 +9,7 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
9
9
  var _react = _interopRequireDefault(require("react"));
10
10
  var _propTypes = _interopRequireDefault(require("prop-types"));
11
11
  var _configUi = require("@pie-lib/config-ui");
12
- var _editableHtml = _interopRequireDefault(require("@pie-lib/editable-html"));
12
+ var _editableHtmlTipTap = _interopRequireDefault(require("@pie-lib/editable-html-tip-tap"));
13
13
  var _styles = require("@mui/material/styles");
14
14
  const {
15
15
  Panel,
@@ -96,7 +96,7 @@ class Root extends _react.default.Component {
96
96
  })
97
97
  }, model && model.teacherInstructionsEnabled && /*#__PURE__*/_react.default.createElement(StyledInputContainer, {
98
98
  label: teacherInstructions.label
99
- }, /*#__PURE__*/_react.default.createElement(_editableHtml.default, {
99
+ }, /*#__PURE__*/_react.default.createElement(_editableHtmlTipTap.default, {
100
100
  markup: model.teacherInstructions || '',
101
101
  onChange: this.onTeacherInstructionsChanged,
102
102
  imageSupport: imageSupport,
@@ -1 +1 @@
1
- {"version":3,"file":"root.js","names":["_react","_interopRequireDefault","require","_propTypes","_configUi","_editableHtml","_styles","Panel","toggle","dropdown","settings","StyledInputContainer","styled","InputContainer","theme","width","paddingTop","spacing","marginBottom","ErrorText","fontSize","typography","color","palette","error","main","Root","React","Component","constructor","args","_defineProperty2","default","teacherInstructions","props","onModelChanged","model","render","configuration","onConfigurationChanged","imageSupport","uploadSoundSupport","baseInputConfiguration","contentDimensions","maxImageWidth","maxImageHeight","settingsPanelDisabled","spellCheck","withRubric","mathMlOptions","language","languageChoices","errors","extraCSSRules","spellCheckEnabled","teacherInstructionsError","panelProperties","teacherInstructionsEnabled","label","rubricEnabled","enabled","options","getPluginProps","createElement","layout","ConfigLayout","dimensions","hideSettings","onChangeModel","onChangeConfiguration","config","groups","Properties","markup","onChange","onTeacherInstructionsChanged","nonEmpty","pluginProps","inputConfiguration","languageCharactersProps","exports","propTypes","PropTypes","func","object","isRequired","shape","add","delete","_default"],"sources":["../src/root.jsx"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport { settings, layout, InputContainer } from '@pie-lib/config-ui';\nimport EditableHtml from '@pie-lib/editable-html';\nimport { styled } from '@mui/material/styles';\n\nconst { Panel, toggle, dropdown } = settings;\n\nconst StyledInputContainer = styled(InputContainer)(({ theme }) => ({\n width: '100%',\n paddingTop: theme.spacing(2),\n marginBottom: theme.spacing(2),\n}));\n\nconst ErrorText = styled('div')(({ theme }) => ({\n fontSize: theme.typography.fontSize - 2,\n color: theme.palette.error.main,\n paddingTop: theme.spacing(1),\n}));\n\nexport class Root extends React.Component {\n onTeacherInstructionsChanged = (teacherInstructions) => {\n this.props.onModelChanged({ ...this.props.model, teacherInstructions });\n };\n\n render() {\n const { model, configuration, onModelChanged, onConfigurationChanged, imageSupport, uploadSoundSupport } =\n this.props;\n const {\n baseInputConfiguration = {},\n contentDimensions = {},\n maxImageWidth = {},\n maxImageHeight = {},\n settingsPanelDisabled,\n spellCheck = {},\n teacherInstructions = {},\n withRubric = {},\n mathMlOptions = {},\n language = {},\n languageChoices = {},\n } = configuration || {};\n const { errors = {}, extraCSSRules, spellCheckEnabled } = model || {};\n const { teacherInstructions: teacherInstructionsError } = errors;\n\n const panelProperties = {\n teacherInstructionsEnabled: teacherInstructions.settings && toggle(teacherInstructions.label),\n spellCheckEnabled: spellCheck.settings && toggle(spellCheck.label),\n rubricEnabled: withRubric?.settings && toggle(withRubric?.label),\n 'language.enabled': language.settings && toggle(language.label, true),\n language: language.settings && language.enabled && dropdown(languageChoices.label, languageChoices.options),\n };\n\n const getPluginProps = (props = {}) => ({\n ...baseInputConfiguration,\n ...props,\n });\n\n return (\n <layout.ConfigLayout\n extraCSSRules={extraCSSRules}\n dimensions={contentDimensions}\n hideSettings={settingsPanelDisabled}\n settings={\n <Panel\n model={model}\n configuration={configuration}\n onChangeModel={(model) => onModelChanged(model)}\n onChangeConfiguration={(config) => onConfigurationChanged(config)}\n groups={{\n Properties: panelProperties,\n }}\n />\n }\n >\n {model && model.teacherInstructionsEnabled && (\n <StyledInputContainer label={teacherInstructions.label}>\n <EditableHtml\n markup={model.teacherInstructions || ''}\n onChange={this.onTeacherInstructionsChanged}\n imageSupport={imageSupport}\n nonEmpty={false}\n error={teacherInstructionsError}\n spellCheck={spellCheckEnabled}\n pluginProps={getPluginProps(teacherInstructions?.inputConfiguration)}\n maxImageWidth={maxImageWidth && maxImageWidth.teacherInstructions}\n maxImageHeight={maxImageHeight && maxImageHeight.teacherInstructions}\n uploadSoundSupport={uploadSoundSupport}\n languageCharactersProps={[{ language: 'spanish' }, { language: 'special' }]}\n mathMlOptions={mathMlOptions}\n />\n {teacherInstructionsError && <ErrorText>{teacherInstructionsError}</ErrorText>}\n </StyledInputContainer>\n )}\n\n <div>Image cloze association</div>\n </layout.ConfigLayout>\n );\n }\n}\n\nRoot.propTypes = {\n onModelChanged: PropTypes.func,\n onConfigurationChanged: PropTypes.func,\n model: PropTypes.object.isRequired,\n configuration: PropTypes.object.isRequired,\n imageSupport: PropTypes.shape({\n add: PropTypes.func.isRequired,\n delete: PropTypes.func.isRequired,\n }),\n uploadSoundSupport: PropTypes.shape({\n add: PropTypes.func.isRequired,\n delete: PropTypes.func.isRequired,\n }),\n};\n\nexport default Root;\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"root.js","names":["_react","_interopRequireDefault","require","_propTypes","_configUi","_editableHtmlTipTap","_styles","Panel","toggle","dropdown","settings","StyledInputContainer","styled","InputContainer","theme","width","paddingTop","spacing","marginBottom","ErrorText","fontSize","typography","color","palette","error","main","Root","React","Component","constructor","args","_defineProperty2","default","teacherInstructions","props","onModelChanged","model","render","configuration","onConfigurationChanged","imageSupport","uploadSoundSupport","baseInputConfiguration","contentDimensions","maxImageWidth","maxImageHeight","settingsPanelDisabled","spellCheck","withRubric","mathMlOptions","language","languageChoices","errors","extraCSSRules","spellCheckEnabled","teacherInstructionsError","panelProperties","teacherInstructionsEnabled","label","rubricEnabled","enabled","options","getPluginProps","createElement","layout","ConfigLayout","dimensions","hideSettings","onChangeModel","onChangeConfiguration","config","groups","Properties","markup","onChange","onTeacherInstructionsChanged","nonEmpty","pluginProps","inputConfiguration","languageCharactersProps","exports","propTypes","PropTypes","func","object","isRequired","shape","add","delete","_default"],"sources":["../src/root.jsx"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport { settings, layout, InputContainer } from '@pie-lib/config-ui';\nimport EditableHtml from '@pie-lib/editable-html-tip-tap';\nimport { styled } from '@mui/material/styles';\n\nconst { Panel, toggle, dropdown } = settings;\n\nconst StyledInputContainer = styled(InputContainer)(({ theme }) => ({\n width: '100%',\n paddingTop: theme.spacing(2),\n marginBottom: theme.spacing(2),\n}));\n\nconst ErrorText = styled('div')(({ theme }) => ({\n fontSize: theme.typography.fontSize - 2,\n color: theme.palette.error.main,\n paddingTop: theme.spacing(1),\n}));\n\nexport class Root extends React.Component {\n onTeacherInstructionsChanged = (teacherInstructions) => {\n this.props.onModelChanged({ ...this.props.model, teacherInstructions });\n };\n\n render() {\n const { model, configuration, onModelChanged, onConfigurationChanged, imageSupport, uploadSoundSupport } =\n this.props;\n const {\n baseInputConfiguration = {},\n contentDimensions = {},\n maxImageWidth = {},\n maxImageHeight = {},\n settingsPanelDisabled,\n spellCheck = {},\n teacherInstructions = {},\n withRubric = {},\n mathMlOptions = {},\n language = {},\n languageChoices = {},\n } = configuration || {};\n const { errors = {}, extraCSSRules, spellCheckEnabled } = model || {};\n const { teacherInstructions: teacherInstructionsError } = errors;\n\n const panelProperties = {\n teacherInstructionsEnabled: teacherInstructions.settings && toggle(teacherInstructions.label),\n spellCheckEnabled: spellCheck.settings && toggle(spellCheck.label),\n rubricEnabled: withRubric?.settings && toggle(withRubric?.label),\n 'language.enabled': language.settings && toggle(language.label, true),\n language: language.settings && language.enabled && dropdown(languageChoices.label, languageChoices.options),\n };\n\n const getPluginProps = (props = {}) => ({\n ...baseInputConfiguration,\n ...props,\n });\n\n return (\n <layout.ConfigLayout\n extraCSSRules={extraCSSRules}\n dimensions={contentDimensions}\n hideSettings={settingsPanelDisabled}\n settings={\n <Panel\n model={model}\n configuration={configuration}\n onChangeModel={(model) => onModelChanged(model)}\n onChangeConfiguration={(config) => onConfigurationChanged(config)}\n groups={{\n Properties: panelProperties,\n }}\n />\n }\n >\n {model && model.teacherInstructionsEnabled && (\n <StyledInputContainer label={teacherInstructions.label}>\n <EditableHtml\n markup={model.teacherInstructions || ''}\n onChange={this.onTeacherInstructionsChanged}\n imageSupport={imageSupport}\n nonEmpty={false}\n error={teacherInstructionsError}\n spellCheck={spellCheckEnabled}\n pluginProps={getPluginProps(teacherInstructions?.inputConfiguration)}\n maxImageWidth={maxImageWidth && maxImageWidth.teacherInstructions}\n maxImageHeight={maxImageHeight && maxImageHeight.teacherInstructions}\n uploadSoundSupport={uploadSoundSupport}\n languageCharactersProps={[{ language: 'spanish' }, { language: 'special' }]}\n mathMlOptions={mathMlOptions}\n />\n {teacherInstructionsError && <ErrorText>{teacherInstructionsError}</ErrorText>}\n </StyledInputContainer>\n )}\n\n <div>Image cloze association</div>\n </layout.ConfigLayout>\n );\n }\n}\n\nRoot.propTypes = {\n onModelChanged: PropTypes.func,\n onConfigurationChanged: PropTypes.func,\n model: PropTypes.object.isRequired,\n configuration: PropTypes.object.isRequired,\n imageSupport: PropTypes.shape({\n add: PropTypes.func.isRequired,\n delete: PropTypes.func.isRequired,\n }),\n uploadSoundSupport: PropTypes.shape({\n add: PropTypes.func.isRequired,\n delete: PropTypes.func.isRequired,\n }),\n};\n\nexport default Root;\n"],"mappings":"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","ignoreList":[]}
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pie-element/image-cloze-association-configure",
3
3
  "private": true,
4
- "version": "8.0.0-beta.0",
4
+ "version": "8.0.0-beta.1",
5
5
  "description": "",
6
6
  "main": "lib/index.js",
7
7
  "module": "src/index.js",
@@ -12,8 +12,8 @@
12
12
  "@mui/icons-material": "^7.3.4",
13
13
  "@mui/material": "^7.3.4",
14
14
  "@pie-framework/pie-configure-events": "^1.3.0",
15
- "@pie-lib/config-ui": "11.30.4-next.0",
16
- "@pie-lib/editable-html": "11.21.4-next.0",
15
+ "@pie-lib/config-ui": "12.1.0-next.5",
16
+ "@pie-lib/editable-html-tip-tap": "1.1.0-next.5",
17
17
  "debug": "^3.1.0",
18
18
  "prop-types": "^15.7.2",
19
19
  "react": "18.2.0",
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import PropTypes from 'prop-types';
3
3
  import { settings, layout, InputContainer } from '@pie-lib/config-ui';
4
- import EditableHtml from '@pie-lib/editable-html';
4
+ import EditableHtml from '@pie-lib/editable-html-tip-tap';
5
5
  import { styled } from '@mui/material/styles';
6
6
 
7
7
  const { Panel, toggle, dropdown } = settings;
@@ -3,17 +3,6 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [6.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association-controller@6.3.2...@pie-element/image-cloze-association-controller@6.3.3) (2025-11-27)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * bump libs PD-5274, PD-5211, PD-5248 ([7610b25](https://github.com/pie-framework/pie-elements/commit/7610b25423956b6492f33322513b3430051fca77))
12
-
13
-
14
-
15
-
16
-
17
6
  ## [6.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association-controller@6.3.1...@pie-element/image-cloze-association-controller@6.3.2) (2025-10-22)
18
7
 
19
8
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pie-element/image-cloze-association-controller",
3
3
  "private": true,
4
- "version": "7.0.0-beta.0",
4
+ "version": "7.0.0-beta.1",
5
5
  "description": "",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -11,7 +11,7 @@
11
11
  "main": "lib/index.js",
12
12
  "module": "src/index.js",
13
13
  "dependencies": {
14
- "@pie-lib/controller-utils": "0.22.4-next.0",
14
+ "@pie-lib/controller-utils": "1.1.0-next.4",
15
15
  "debug": "^4.1.1",
16
16
  "humps": "^2.0.1",
17
17
  "lodash": "^4.17.15"
package/package.json CHANGED
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "name": "@pie-element/image-cloze-association",
3
- "version": "9.0.0-beta.0",
3
+ "version": "9.0.0-beta.1",
4
4
  "description": "",
5
5
  "repository": "pie-framework/pie-elements",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
9
  "dependencies": {
10
- "@dnd-kit/core": "6.1.0",
10
+ "@dnd-kit/core": "6.3.1",
11
11
  "@emotion/react": "^11.14.0",
12
12
  "@emotion/style": "^0.8.0",
13
13
  "@mui/icons-material": "^7.3.4",
14
14
  "@mui/material": "^7.3.4",
15
15
  "@pie-framework/pie-player-events": "^0.1.0",
16
- "@pie-lib/correct-answer-toggle": "2.25.4-next.0",
17
- "@pie-lib/drag": "2.22.4-next.0",
18
- "@pie-lib/math-rendering": "3.22.3-next.0",
19
- "@pie-lib/render-ui": "4.35.4-next.0",
20
- "@pie-lib/translator": "2.23.3-next.0",
16
+ "@pie-lib/correct-answer-toggle": "3.1.0-next.5",
17
+ "@pie-lib/drag": "3.1.0-next.5",
18
+ "@pie-lib/math-rendering": "4.1.0-next.4",
19
+ "@pie-lib/render-ui": "5.1.0-next.5",
20
+ "@pie-lib/translator": "3.1.0-next.4",
21
21
  "classnames": "^2.2.6",
22
22
  "humps": "^2.0.1",
23
23
  "prop-types": "^15.6.1",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "author": "pie framework developers",
28
28
  "license": "ISC",
29
- "gitHead": "7879a67078db250e4b7e8fdc869638024600411d",
29
+ "gitHead": "a15dd0ea81626703eb753bc0ab4c81bb2a96d58d",
30
30
  "scripts": {
31
31
  "postpublish": "../../scripts/postpublish"
32
32
  },