@oat-sa/tao-core-ui 3.8.0 → 3.8.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/dist/figure/FigureStateActive.js +1 -0
- package/dist/mediaEditor/plugins/mediaAlignment/helper.js +5 -2
- package/package.json +2 -3
- package/scss/inc/_tooltip.scss +0 -0
- package/src/feedback/feedback.tpl +0 -0
- package/src/feedback.js +0 -0
- package/src/figure/FigureStateActive.js +1 -0
- package/src/mediaEditor/plugins/mediaAlignment/helper.js +5 -2
- package/src/resourcemgr/fileBrowser.js +0 -0
- package/src/resourcemgr/filePreview.js +0 -0
- package/src/resourcemgr/fileSelector.js +0 -0
- package/src/resourcemgr/scss/resourcemgr.scss +0 -0
- package/src/resourcemgr/tpl/fileSelect.tpl +0 -0
- package/src/resourcemgr/tpl/layout.tpl +0 -0
- package/src/validator/Report.js +0 -0
- package/src/validator/Validator.js +0 -0
- package/src/validator/validators.js +0 -0
|
@@ -514,6 +514,7 @@ define(['jquery', 'nouislider', 'ui/resourcemgr', 'ui/tooltip', 'lodash', 'i18n'
|
|
|
514
514
|
const figurelem = this.widget.element;
|
|
515
515
|
const $texarea = this.widget.$form.find('textarea#figcaption');
|
|
516
516
|
texareaHTMLElem = $texarea[0];
|
|
517
|
+
texareaHTMLElem.style.minHeight = '2em';
|
|
517
518
|
function outputsize() {
|
|
518
519
|
figurelem.data('heigthCaptionInput', $texarea.height());
|
|
519
520
|
}
|
|
@@ -78,13 +78,16 @@ define(['exports', 'context', 'lodash'], function (exports, context, _) { 'use s
|
|
|
78
78
|
if (!context.featureFlags['FEATURE_FLAG_DISABLE_FIGURE_WIDGET'] && prevClassName !== className) {
|
|
79
79
|
// Re-build Figure widget to toggle between inline/block
|
|
80
80
|
const parent = searchRecurse(widget.element.bdy.rootElement.bdy, widget.serial);
|
|
81
|
-
//
|
|
82
|
-
if (parent.contentModel
|
|
81
|
+
// If Figure is not in A-block (Prompt, TextReader PCI)
|
|
82
|
+
if (parent.contentModel === 'inlineStatic' || widget.$container.closest('.qti-customInteraction').length) {
|
|
83
83
|
_.defer(() => {
|
|
84
84
|
widget.element.data('widget').refresh();
|
|
85
85
|
});
|
|
86
86
|
return;
|
|
87
87
|
}
|
|
88
|
+
// If Figure is in A-block, text is inside '<p>'. When'<figure>' is added inside, this '<p>' tag gets split and a linebreak appears.
|
|
89
|
+
// here we change state to sleep-active so that the user will see that reflected in UI immediately.
|
|
90
|
+
// otherwise, he will see this linebreak only if he focuses text in this A-block again, or reopens the item.
|
|
88
91
|
widget.element.data('widget').changeState('sleep');
|
|
89
92
|
_.defer(() => {
|
|
90
93
|
if (parent && parent.data('widget')) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oat-sa/tao-core-ui",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.1",
|
|
4
4
|
"displayName": "TAO Core UI",
|
|
5
5
|
"description": "UI libraries of TAO",
|
|
6
6
|
"scripts": {
|
|
@@ -19,8 +19,7 @@
|
|
|
19
19
|
"build:scss": "node ./build/scss.js",
|
|
20
20
|
"lint:src": "eslint -c .eslintrc.js src",
|
|
21
21
|
"lint:test": "eslint -c test/.eslintrc.js test",
|
|
22
|
-
"lint:report": "eslint -c .eslintrc.js --output-file eslint_report.json --format json src | true"
|
|
23
|
-
"prepare": "npm run build:all"
|
|
22
|
+
"lint:report": "eslint -c .eslintrc.js --output-file eslint_report.json --format json src | true"
|
|
24
23
|
},
|
|
25
24
|
"keywords": [
|
|
26
25
|
"tao",
|
package/scss/inc/_tooltip.scss
CHANGED
|
File without changes
|
|
File without changes
|
package/src/feedback.js
CHANGED
|
File without changes
|
|
@@ -169,6 +169,7 @@ export default function ({ stateFactory, ActiveState, formTpl, formElement, inli
|
|
|
169
169
|
const figurelem = this.widget.element;
|
|
170
170
|
const $texarea = this.widget.$form.find('textarea#figcaption');
|
|
171
171
|
texareaHTMLElem = $texarea[0];
|
|
172
|
+
texareaHTMLElem.style.minHeight = '2em';
|
|
172
173
|
function outputsize() {
|
|
173
174
|
figurelem.data('heigthCaptionInput', $texarea.height());
|
|
174
175
|
}
|
|
@@ -82,13 +82,16 @@ export const positionFloat = function positionFloat(widget, position) {
|
|
|
82
82
|
if (!context.featureFlags['FEATURE_FLAG_DISABLE_FIGURE_WIDGET'] && prevClassName !== className) {
|
|
83
83
|
// Re-build Figure widget to toggle between inline/block
|
|
84
84
|
const parent = searchRecurse(widget.element.bdy.rootElement.bdy, widget.serial);
|
|
85
|
-
//
|
|
86
|
-
if (parent.contentModel
|
|
85
|
+
// If Figure is not in A-block (Prompt, TextReader PCI)
|
|
86
|
+
if (parent.contentModel === 'inlineStatic' || widget.$container.closest('.qti-customInteraction').length) {
|
|
87
87
|
_.defer(() => {
|
|
88
88
|
widget.element.data('widget').refresh();
|
|
89
89
|
});
|
|
90
90
|
return;
|
|
91
91
|
}
|
|
92
|
+
// If Figure is in A-block, text is inside '<p>'. When'<figure>' is added inside, this '<p>' tag gets split and a linebreak appears.
|
|
93
|
+
// here we change state to sleep-active so that the user will see that reflected in UI immediately.
|
|
94
|
+
// otherwise, he will see this linebreak only if he focuses text in this A-block again, or reopens the item.
|
|
92
95
|
widget.element.data('widget').changeState('sleep');
|
|
93
96
|
_.defer(() => {
|
|
94
97
|
if (parent && parent.data('widget')) {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/src/validator/Report.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|