@pie-element/multi-trait-rubric 8.1.2-next.1 → 8.1.2
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.json +1 -0
- package/CHANGELOG.md +1590 -0
- package/LICENSE.md +5 -0
- package/README.md +55 -0
- package/configure/CHANGELOG.json +1 -0
- package/configure/CHANGELOG.md +1485 -0
- package/configure/lib/common.js +424 -0
- package/configure/lib/common.js.map +1 -0
- package/configure/lib/defaults.js +184 -0
- package/configure/lib/defaults.js.map +1 -0
- package/configure/lib/index.js +157 -0
- package/configure/lib/index.js.map +1 -0
- package/configure/lib/main.js +454 -0
- package/configure/lib/main.js.map +1 -0
- package/configure/lib/modals.js +206 -0
- package/configure/lib/modals.js.map +1 -0
- package/configure/lib/scale.js +478 -0
- package/configure/lib/scale.js.map +1 -0
- package/configure/lib/trait.js +275 -0
- package/configure/lib/trait.js.map +1 -0
- package/configure/lib/traitsHeader.js +235 -0
- package/configure/lib/traitsHeader.js.map +1 -0
- package/configure/lib/utils.js +87 -0
- package/configure/lib/utils.js.map +1 -0
- package/configure/package.json +24 -0
- package/controller/CHANGELOG.json +1 -0
- package/controller/CHANGELOG.md +911 -0
- package/controller/lib/defaults.js +18 -0
- package/controller/lib/defaults.js.map +1 -0
- package/controller/lib/index.js +158 -0
- package/controller/lib/index.js.map +1 -0
- package/controller/lib/utils.js +11 -0
- package/controller/lib/utils.js.map +1 -0
- package/controller/package.json +14 -0
- package/docs/config-schema.json +1628 -0
- package/docs/config-schema.json.md +1202 -0
- package/docs/demo/config.js +8 -0
- package/docs/demo/generate.js +117 -0
- package/docs/demo/index.html +1 -0
- package/docs/demo/session.js +6 -0
- package/docs/pie-schema.json +861 -0
- package/docs/pie-schema.json.md +614 -0
- package/lib/index.js +54 -0
- package/lib/index.js.map +1 -0
- package/lib/main.js +123 -0
- package/lib/main.js.map +1 -0
- package/lib/scale.js +248 -0
- package/lib/scale.js.map +1 -0
- package/lib/trait.js +83 -0
- package/lib/trait.js.map +1 -0
- package/package.json +15 -85
- package/configure.js +0 -2
- package/controller.js +0 -1
- package/dist/author/common.d.ts +0 -90
- package/dist/author/common.js +0 -275
- package/dist/author/defaults.d.ts +0 -153
- package/dist/author/defaults.js +0 -113
- package/dist/author/index.d.ts +0 -22
- package/dist/author/index.js +0 -89
- package/dist/author/main.d.ts +0 -43
- package/dist/author/main.js +0 -247
- package/dist/author/modals.d.ts +0 -94
- package/dist/author/modals.js +0 -171
- package/dist/author/scale.d.ts +0 -46
- package/dist/author/scale.js +0 -280
- package/dist/author/trait.d.ts +0 -70
- package/dist/author/trait.js +0 -202
- package/dist/author/traitsHeader.d.ts +0 -28
- package/dist/author/traitsHeader.js +0 -172
- package/dist/author/utils.d.ts +0 -10
- package/dist/author/utils.js +0 -41
- package/dist/browser/Typography-CdgSBeUZ.js +0 -8993
- package/dist/browser/Typography-CdgSBeUZ.js.map +0 -1
- package/dist/browser/author/index.js +0 -41731
- package/dist/browser/author/index.js.map +0 -1
- package/dist/browser/controller/index.js +0 -70
- package/dist/browser/controller/index.js.map +0 -1
- package/dist/browser/delivery/index.js +0 -523
- package/dist/browser/delivery/index.js.map +0 -1
- package/dist/browser/multi-trait-rubric.css +0 -2
- package/dist/controller/defaults.d.ts +0 -20
- package/dist/controller/defaults.js +0 -14
- package/dist/controller/index.d.ts +0 -26
- package/dist/controller/index.js +0 -57
- package/dist/controller/utils.d.ts +0 -9
- package/dist/controller/utils.js +0 -4
- package/dist/delivery/index.d.ts +0 -17
- package/dist/delivery/index.js +0 -37
- package/dist/delivery/main.d.ts +0 -15
- package/dist/delivery/main.js +0 -95
- package/dist/delivery/scale.d.ts +0 -17
- package/dist/delivery/scale.js +0 -175
- package/dist/delivery/trait.d.ts +0 -27
- package/dist/delivery/trait.js +0 -44
- package/dist/index.d.ts +0 -1
- package/dist/index.iife.d.ts +0 -8
- package/dist/index.iife.js +0 -145
- package/dist/index.js +0 -2
- package/dist/runtime-support.d.ts +0 -12
- package/dist/runtime-support.js +0 -12
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.filteredDefaultPlugins = exports.addOrRemoveScaleColumn = void 0;
|
|
7
|
+
var _editableHtmlTipTap = require("@pie-lib/editable-html-tip-tap");
|
|
8
|
+
var _modals = require("./modals");
|
|
9
|
+
const filteredDefaultPlugins = exports.filteredDefaultPlugins = (_editableHtmlTipTap.DEFAULT_PLUGINS || []).filter(p => p !== 'table' && p !== 'bulleted-list' && p !== 'numbered-list');
|
|
10
|
+
const addOrRemoveScaleColumn = (scales, excludeZeroType) => {
|
|
11
|
+
if (!scales || !scales.length) {
|
|
12
|
+
return [];
|
|
13
|
+
}
|
|
14
|
+
return scales.reduce((acc, scale) => {
|
|
15
|
+
let {
|
|
16
|
+
scorePointsLabels,
|
|
17
|
+
traits
|
|
18
|
+
} = scale || {};
|
|
19
|
+
if (scorePointsLabels.length < 1) {
|
|
20
|
+
return acc;
|
|
21
|
+
}
|
|
22
|
+
switch (excludeZeroType) {
|
|
23
|
+
case _modals.excludeZeroTypes.remove0:
|
|
24
|
+
{
|
|
25
|
+
// removes column 0
|
|
26
|
+
scorePointsLabels = scorePointsLabels.slice(1);
|
|
27
|
+
traits = traits.map(({
|
|
28
|
+
scorePointsDescriptors,
|
|
29
|
+
...trait
|
|
30
|
+
}) => ({
|
|
31
|
+
...trait,
|
|
32
|
+
scorePointsDescriptors: scorePointsDescriptors.slice(1)
|
|
33
|
+
}));
|
|
34
|
+
break;
|
|
35
|
+
}
|
|
36
|
+
case _modals.excludeZeroTypes.add0:
|
|
37
|
+
{
|
|
38
|
+
// adds empty column at start
|
|
39
|
+
scorePointsLabels = ['', ...scorePointsLabels];
|
|
40
|
+
traits = traits.map(({
|
|
41
|
+
scorePointsDescriptors,
|
|
42
|
+
...trait
|
|
43
|
+
}) => ({
|
|
44
|
+
...trait,
|
|
45
|
+
scorePointsDescriptors: ['', ...scorePointsDescriptors]
|
|
46
|
+
}));
|
|
47
|
+
break;
|
|
48
|
+
}
|
|
49
|
+
case _modals.excludeZeroTypes.shiftLeft:
|
|
50
|
+
{
|
|
51
|
+
// removes last column
|
|
52
|
+
scorePointsLabels = scorePointsLabels.slice(0, -1);
|
|
53
|
+
traits = traits.map(({
|
|
54
|
+
scorePointsDescriptors,
|
|
55
|
+
...trait
|
|
56
|
+
}) => ({
|
|
57
|
+
...trait,
|
|
58
|
+
scorePointsDescriptors: scorePointsDescriptors.slice(0, -1)
|
|
59
|
+
}));
|
|
60
|
+
break;
|
|
61
|
+
}
|
|
62
|
+
case _modals.excludeZeroTypes.shiftRight:
|
|
63
|
+
{
|
|
64
|
+
// adds empty column at end
|
|
65
|
+
scorePointsLabels = [...scorePointsLabels, ''];
|
|
66
|
+
traits = traits.map(({
|
|
67
|
+
scorePointsDescriptors,
|
|
68
|
+
...trait
|
|
69
|
+
}) => ({
|
|
70
|
+
...trait,
|
|
71
|
+
scorePointsDescriptors: [...scorePointsDescriptors, '']
|
|
72
|
+
}));
|
|
73
|
+
break;
|
|
74
|
+
}
|
|
75
|
+
default:
|
|
76
|
+
break;
|
|
77
|
+
}
|
|
78
|
+
acc.push({
|
|
79
|
+
...scale,
|
|
80
|
+
scorePointsLabels,
|
|
81
|
+
traits
|
|
82
|
+
});
|
|
83
|
+
return acc;
|
|
84
|
+
}, []);
|
|
85
|
+
};
|
|
86
|
+
exports.addOrRemoveScaleColumn = addOrRemoveScaleColumn;
|
|
87
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","names":["_editableHtmlTipTap","require","_modals","filteredDefaultPlugins","exports","DEFAULT_PLUGINS","filter","p","addOrRemoveScaleColumn","scales","excludeZeroType","length","reduce","acc","scale","scorePointsLabels","traits","excludeZeroTypes","remove0","slice","map","scorePointsDescriptors","trait","add0","shiftLeft","shiftRight","push"],"sources":["../src/utils.js"],"sourcesContent":["import { DEFAULT_PLUGINS } from '@pie-lib/editable-html-tip-tap';\nimport { excludeZeroTypes } from './modals';\n\nexport const filteredDefaultPlugins = (DEFAULT_PLUGINS || []).filter(\n (p) => p !== 'table' && p !== 'bulleted-list' && p !== 'numbered-list',\n);\n\nexport const addOrRemoveScaleColumn = (scales, excludeZeroType) => {\n if (!scales || !scales.length) {\n return [];\n }\n\n return scales.reduce((acc, scale) => {\n let { scorePointsLabels, traits } = scale || {};\n\n if (scorePointsLabels.length < 1) {\n return acc;\n }\n\n switch (excludeZeroType) {\n case excludeZeroTypes.remove0: {\n // removes column 0\n scorePointsLabels = scorePointsLabels.slice(1);\n traits = traits.map(({ scorePointsDescriptors, ...trait }) => ({\n ...trait,\n scorePointsDescriptors: scorePointsDescriptors.slice(1),\n }));\n\n break;\n }\n\n case excludeZeroTypes.add0: {\n // adds empty column at start\n scorePointsLabels = ['', ...scorePointsLabels];\n traits = traits.map(({ scorePointsDescriptors, ...trait }) => ({\n ...trait,\n scorePointsDescriptors: ['', ...scorePointsDescriptors],\n }));\n\n break;\n }\n\n case excludeZeroTypes.shiftLeft: {\n // removes last column\n scorePointsLabels = scorePointsLabels.slice(0, -1);\n traits = traits.map(({ scorePointsDescriptors, ...trait }) => ({\n ...trait,\n scorePointsDescriptors: scorePointsDescriptors.slice(0, -1),\n }));\n\n break;\n }\n\n case excludeZeroTypes.shiftRight: {\n // adds empty column at end\n scorePointsLabels = [...scorePointsLabels, ''];\n traits = traits.map(({ scorePointsDescriptors, ...trait }) => ({\n ...trait,\n scorePointsDescriptors: [...scorePointsDescriptors, ''],\n }));\n\n break;\n }\n\n default:\n break;\n }\n\n acc.push({ ...scale, scorePointsLabels, traits });\n\n return acc;\n }, []);\n};\n"],"mappings":";;;;;;AAAA,IAAAA,mBAAA,GAAAC,OAAA;AACA,IAAAC,OAAA,GAAAD,OAAA;AAEO,MAAME,sBAAsB,GAAAC,OAAA,CAAAD,sBAAA,GAAG,CAACE,mCAAe,IAAI,EAAE,EAAEC,MAAM,CACjEC,CAAC,IAAKA,CAAC,KAAK,OAAO,IAAIA,CAAC,KAAK,eAAe,IAAIA,CAAC,KAAK,eACzD,CAAC;AAEM,MAAMC,sBAAsB,GAAGA,CAACC,MAAM,EAAEC,eAAe,KAAK;EACjE,IAAI,CAACD,MAAM,IAAI,CAACA,MAAM,CAACE,MAAM,EAAE;IAC7B,OAAO,EAAE;EACX;EAEA,OAAOF,MAAM,CAACG,MAAM,CAAC,CAACC,GAAG,EAAEC,KAAK,KAAK;IACnC,IAAI;MAAEC,iBAAiB;MAAEC;IAAO,CAAC,GAAGF,KAAK,IAAI,CAAC,CAAC;IAE/C,IAAIC,iBAAiB,CAACJ,MAAM,GAAG,CAAC,EAAE;MAChC,OAAOE,GAAG;IACZ;IAEA,QAAQH,eAAe;MACrB,KAAKO,wBAAgB,CAACC,OAAO;QAAE;UAC7B;UACAH,iBAAiB,GAAGA,iBAAiB,CAACI,KAAK,CAAC,CAAC,CAAC;UAC9CH,MAAM,GAAGA,MAAM,CAACI,GAAG,CAAC,CAAC;YAAEC,sBAAsB;YAAE,GAAGC;UAAM,CAAC,MAAM;YAC7D,GAAGA,KAAK;YACRD,sBAAsB,EAAEA,sBAAsB,CAACF,KAAK,CAAC,CAAC;UACxD,CAAC,CAAC,CAAC;UAEH;QACF;MAEA,KAAKF,wBAAgB,CAACM,IAAI;QAAE;UAC1B;UACAR,iBAAiB,GAAG,CAAC,EAAE,EAAE,GAAGA,iBAAiB,CAAC;UAC9CC,MAAM,GAAGA,MAAM,CAACI,GAAG,CAAC,CAAC;YAAEC,sBAAsB;YAAE,GAAGC;UAAM,CAAC,MAAM;YAC7D,GAAGA,KAAK;YACRD,sBAAsB,EAAE,CAAC,EAAE,EAAE,GAAGA,sBAAsB;UACxD,CAAC,CAAC,CAAC;UAEH;QACF;MAEA,KAAKJ,wBAAgB,CAACO,SAAS;QAAE;UAC/B;UACAT,iBAAiB,GAAGA,iBAAiB,CAACI,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;UAClDH,MAAM,GAAGA,MAAM,CAACI,GAAG,CAAC,CAAC;YAAEC,sBAAsB;YAAE,GAAGC;UAAM,CAAC,MAAM;YAC7D,GAAGA,KAAK;YACRD,sBAAsB,EAAEA,sBAAsB,CAACF,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;UAC5D,CAAC,CAAC,CAAC;UAEH;QACF;MAEA,KAAKF,wBAAgB,CAACQ,UAAU;QAAE;UAChC;UACAV,iBAAiB,GAAG,CAAC,GAAGA,iBAAiB,EAAE,EAAE,CAAC;UAC9CC,MAAM,GAAGA,MAAM,CAACI,GAAG,CAAC,CAAC;YAAEC,sBAAsB;YAAE,GAAGC;UAAM,CAAC,MAAM;YAC7D,GAAGA,KAAK;YACRD,sBAAsB,EAAE,CAAC,GAAGA,sBAAsB,EAAE,EAAE;UACxD,CAAC,CAAC,CAAC;UAEH;QACF;MAEA;QACE;IACJ;IAEAR,GAAG,CAACa,IAAI,CAAC;MAAE,GAAGZ,KAAK;MAAEC,iBAAiB;MAAEC;IAAO,CAAC,CAAC;IAEjD,OAAOH,GAAG;EACZ,CAAC,EAAE,EAAE,CAAC;AACR,CAAC;AAACT,OAAA,CAAAI,sBAAA,GAAAA,sBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pie-element/multi-trait-rubric-configure",
|
|
3
|
+
"version": "7.1.2",
|
|
4
|
+
"private": true,
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"module": "src/index.js",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@dnd-kit/core": "6.3.1",
|
|
9
|
+
"@emotion/react": "^11.14.0",
|
|
10
|
+
"@emotion/style": "^0.8.0",
|
|
11
|
+
"@mui/icons-material": "^7.3.4",
|
|
12
|
+
"@mui/material": "^7.3.4",
|
|
13
|
+
"@pie-framework/pie-configure-events": "^1.3.0",
|
|
14
|
+
"@pie-lib/config-ui": "13.0.6",
|
|
15
|
+
"@pie-lib/drag": "4.0.3",
|
|
16
|
+
"@pie-lib/editable-html-tip-tap": "2.1.4",
|
|
17
|
+
"@pie-lib/render-ui": "6.1.1",
|
|
18
|
+
"debug": "^4.1.1",
|
|
19
|
+
"lodash-es": "^4.17.23",
|
|
20
|
+
"prop-types": "^15.8.1",
|
|
21
|
+
"react": "18.3.1",
|
|
22
|
+
"react-dom": "18.3.1"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|