@pie-element/likert 2.3.4-next.3 → 3.0.0-beta.0
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/configure/lib/choiceGenerator.js +78 -105
- package/configure/lib/choiceGenerator.js.map +1 -1
- package/configure/lib/defaults.js +2 -4
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/index.js +84 -149
- package/configure/lib/index.js.map +1 -1
- package/configure/lib/likertEntities.js +3 -6
- package/configure/lib/likertEntities.js.map +1 -1
- package/configure/lib/main.js +279 -390
- package/configure/lib/main.js.map +1 -1
- package/configure/package.json +10 -7
- package/controller/lib/defaults.js +2 -3
- package/controller/lib/defaults.js.map +1 -1
- package/controller/lib/index.js +39 -84
- package/controller/lib/index.js.map +1 -1
- package/controller/package.json +1 -1
- package/lib/choice-input.js +68 -144
- package/lib/choice-input.js.map +1 -1
- package/lib/index.js +48 -91
- package/lib/index.js.map +1 -1
- package/lib/likert.js +75 -132
- package/lib/likert.js.map +1 -1
- package/lib/likertEntities.js +1 -2
- package/lib/likertEntities.js.map +1 -1
- package/lib/main.js +24 -69
- package/lib/main.js.map +1 -1
- package/lib/session-updater.js +0 -2
- package/lib/session-updater.js.map +1 -1
- package/package.json +11 -8
- package/esm/configure.js +0 -17471
- package/esm/configure.js.map +0 -1
- package/esm/controller.js +0 -96
- package/esm/controller.js.map +0 -1
- package/esm/element.js +0 -13272
- package/esm/element.js.map +0 -1
- package/esm/package.json +0 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"session-updater.js","names":["updateSessionValue","session","data","value","selected"],"sources":["../src/session-updater.js"],"sourcesContent":["export function updateSessionValue(session, data) {\n session.value = session.value || [];\n if (data.selected) {\n session.value = [data.value];\n } else {\n session.value = [];\n }\n}\n"],"mappings":";;;;;;AAAO,SAASA,kBAAkBA,CAACC,OAAO,EAAEC,IAAI,EAAE;EAChDD,OAAO,CAACE,KAAK,GAAGF,OAAO,CAACE,KAAK,IAAI,EAAE;EACnC,IAAID,IAAI,CAACE,QAAQ,EAAE;IACjBH,OAAO,CAACE,KAAK,GAAG,CAACD,IAAI,CAACC,KAAK,CAAC;EAC9B,CAAC,MAAM;IACLF,OAAO,CAACE,KAAK,GAAG,EAAE;EACpB;AACF","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -4,28 +4,31 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"repository": "pie-framework/pie-elements",
|
|
7
|
-
"version": "
|
|
7
|
+
"version": "3.0.0-beta.0",
|
|
8
8
|
"description": "",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@
|
|
13
|
+
"@emotion/react": "^11.14.0",
|
|
14
|
+
"@emotion/style": "^0.8.0",
|
|
15
|
+
"@mui/icons-material": "^7.3.4",
|
|
16
|
+
"@mui/material": "^7.3.4",
|
|
14
17
|
"@pie-framework/pie-player-events": "^0.1.0",
|
|
15
|
-
"@pie-lib/math-rendering": "3.22.
|
|
16
|
-
"@pie-lib/render-ui": "4.35.
|
|
18
|
+
"@pie-lib/math-rendering": "3.22.3-next.0",
|
|
19
|
+
"@pie-lib/render-ui": "4.35.4-next.0",
|
|
17
20
|
"classnames": "^2.2.5",
|
|
18
21
|
"debug": "^4.1.1",
|
|
19
22
|
"lodash": "^4.17.10",
|
|
20
23
|
"prop-types": "^15.6.1",
|
|
21
|
-
"react": "
|
|
22
|
-
"react-dom": "
|
|
23
|
-
"react-test-renderer": "
|
|
24
|
+
"react": "18.2.0",
|
|
25
|
+
"react-dom": "18.2.0",
|
|
26
|
+
"react-test-renderer": "18.2.0",
|
|
24
27
|
"react-transition-group": "^2.3.1"
|
|
25
28
|
},
|
|
26
29
|
"author": "",
|
|
27
30
|
"license": "ISC",
|
|
28
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "028605f2d7b2b3b7e5b8840078c0d2c5d9a562e0",
|
|
29
32
|
"main": "lib/index.js",
|
|
30
33
|
"module": "src/index.js"
|
|
31
34
|
}
|