jclic 2.1.13 → 2.1.16
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 +17 -0
- package/build-locales.js +2 -2
- package/dist/jclic-node.js +28673 -285
- package/dist/jclic-node.js.map +1 -1
- package/dist/jclic.components.LICENSE +2 -219
- package/dist/jclic.min.js +2 -2
- package/dist/jclic.min.js.map +1 -1
- package/package.json +14 -15
- package/src/GlobalData.js +1 -1
- package/src/JClicPlayer.js +1 -1
- package/src/Utils.js +3 -3
- package/src/activities/text/FillInBlanks.js +3 -3
- package/src/boxes/ActiveBoxContent.js +1 -1
- package/src/boxes/BoxBase.js +3 -3
- package/src/project/JClicProject.js +4 -2
- package/src/skins/Counter.js +1 -1
- package/src/skins/Skin.js +2 -2
- package/webpack.config.js +0 -2
|
@@ -11,45 +11,14 @@ https://github.com/nodeca/pako/blob/main/LICENSE
|
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
/*!
|
|
14
|
-
*
|
|
15
|
-
* Created : 01/04/2015
|
|
16
|
-
* By : Francesc Busquets <francesc@gmail.com>
|
|
17
|
-
*
|
|
18
|
-
* JClic.js
|
|
19
|
-
* An HTML5 player of JClic activities
|
|
20
|
-
* https://projectestac.github.io/jclic.js
|
|
21
|
-
*
|
|
22
|
-
* @source https://github.com/projectestac/jclic.js
|
|
23
|
-
*
|
|
24
|
-
* @license EUPL-1.2
|
|
25
|
-
* @licstart
|
|
26
|
-
* (c) 2000-2021 Educational Telematic Network of Catalonia (XTEC)
|
|
27
|
-
*
|
|
28
|
-
* Licensed under the EUPL, Version 1.1 or -as soon they will be approved by
|
|
29
|
-
* the European Commission- subsequent versions of the EUPL (the "Licence");
|
|
30
|
-
* You may not use this work except in compliance with the Licence.
|
|
31
|
-
*
|
|
32
|
-
* You may obtain a copy of the Licence at:
|
|
33
|
-
* https://joinup.ec.europa.eu/software/page/eupl
|
|
34
|
-
*
|
|
35
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
36
|
-
* distributed under the Licence is distributed on an "AS IS" basis, WITHOUT
|
|
37
|
-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
38
|
-
* Licence for the specific language governing permissions and limitations
|
|
39
|
-
* under the Licence.
|
|
40
|
-
* @licend
|
|
41
|
-
* @module
|
|
42
|
-
*/
|
|
43
|
-
|
|
44
|
-
/*!
|
|
45
|
-
* jQuery JavaScript Library v3.7.0
|
|
14
|
+
* jQuery JavaScript Library v3.7.1
|
|
46
15
|
* https://jquery.com/
|
|
47
16
|
*
|
|
48
17
|
* Copyright OpenJS Foundation and other contributors
|
|
49
18
|
* Released under the MIT license
|
|
50
19
|
* https://jquery.org/license
|
|
51
20
|
*
|
|
52
|
-
* Date: 2023-
|
|
21
|
+
* Date: 2023-08-28T13:37Z
|
|
53
22
|
*/
|
|
54
23
|
|
|
55
24
|
/**
|
|
@@ -83,37 +52,6 @@ https://github.com/nodeca/pako/blob/main/LICENSE
|
|
|
83
52
|
* @module
|
|
84
53
|
*/
|
|
85
54
|
|
|
86
|
-
/**
|
|
87
|
-
* File : Activity.js
|
|
88
|
-
* Created : 07/04/2015
|
|
89
|
-
* By : Francesc Busquets <francesc@gmail.com>
|
|
90
|
-
*
|
|
91
|
-
* JClic.js
|
|
92
|
-
* An HTML5 player of JClic activities
|
|
93
|
-
* https://projectestac.github.io/jclic.js
|
|
94
|
-
*
|
|
95
|
-
* @source https://github.com/projectestac/jclic.js
|
|
96
|
-
*
|
|
97
|
-
* @license EUPL-1.2
|
|
98
|
-
* @licstart
|
|
99
|
-
* (c) 2000-2020 Educational Telematic Network of Catalonia (XTEC)
|
|
100
|
-
*
|
|
101
|
-
* Licensed under the EUPL, Version 1.1 or -as soon they will be approved by
|
|
102
|
-
* the European Commission- subsequent versions of the EUPL (the "Licence");
|
|
103
|
-
* You may not use this work except in compliance with the Licence.
|
|
104
|
-
*
|
|
105
|
-
* You may obtain a copy of the Licence at:
|
|
106
|
-
* https://joinup.ec.europa.eu/software/page/eupl
|
|
107
|
-
*
|
|
108
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
109
|
-
* distributed under the Licence is distributed on an "AS IS" basis, WITHOUT
|
|
110
|
-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
111
|
-
* Licence for the specific language governing permissions and limitations
|
|
112
|
-
* under the Licence.
|
|
113
|
-
* @licend
|
|
114
|
-
* @module
|
|
115
|
-
*/
|
|
116
|
-
|
|
117
55
|
/**
|
|
118
56
|
* File : JClicPlayer.js
|
|
119
57
|
* Created : 28/04/2015
|
|
@@ -176,37 +114,6 @@ https://github.com/nodeca/pako/blob/main/LICENSE
|
|
|
176
114
|
* @module
|
|
177
115
|
*/
|
|
178
116
|
|
|
179
|
-
/**
|
|
180
|
-
* File : Utils.js
|
|
181
|
-
* Created : 01/04/2015
|
|
182
|
-
* By : Francesc Busquets <francesc@gmail.com>
|
|
183
|
-
*
|
|
184
|
-
* JClic.js
|
|
185
|
-
* An HTML5 player of JClic activities
|
|
186
|
-
* https://projectestac.github.io/jclic.js
|
|
187
|
-
*
|
|
188
|
-
* @source https://github.com/projectestac/jclic.js
|
|
189
|
-
*
|
|
190
|
-
* @license EUPL-1.2
|
|
191
|
-
* @licstart
|
|
192
|
-
* (c) 2000-2020 Educational Telematic Network of Catalonia (XTEC)
|
|
193
|
-
*
|
|
194
|
-
* Licensed under the EUPL, Version 1.1 or -as soon they will be approved by
|
|
195
|
-
* the European Commission- subsequent versions of the EUPL (the "Licence");
|
|
196
|
-
* You may not use this work except in compliance with the Licence.
|
|
197
|
-
*
|
|
198
|
-
* You may obtain a copy of the Licence at:
|
|
199
|
-
* https://joinup.ec.europa.eu/software/page/eupl
|
|
200
|
-
*
|
|
201
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
202
|
-
* distributed under the Licence is distributed on an "AS IS" basis, WITHOUT
|
|
203
|
-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
204
|
-
* Licence for the specific language governing permissions and limitations
|
|
205
|
-
* under the Licence.
|
|
206
|
-
* @licend
|
|
207
|
-
* @module
|
|
208
|
-
*/
|
|
209
|
-
|
|
210
117
|
/**
|
|
211
118
|
* File : activities/associations/ComplexAssociation.js
|
|
212
119
|
* Created : 03/06/2015
|
|
@@ -858,37 +765,6 @@ https://github.com/nodeca/pako/blob/main/LICENSE
|
|
|
858
765
|
* @module
|
|
859
766
|
*/
|
|
860
767
|
|
|
861
|
-
/**
|
|
862
|
-
* File : automation/arith/Arith.js
|
|
863
|
-
* Created : 28/05/2015
|
|
864
|
-
* By : Francesc Busquets <francesc@gmail.com>
|
|
865
|
-
*
|
|
866
|
-
* JClic.js
|
|
867
|
-
* An HTML5 player of JClic activities
|
|
868
|
-
* https://projectestac.github.io/jclic.js
|
|
869
|
-
*
|
|
870
|
-
* @source https://github.com/projectestac/jclic.js
|
|
871
|
-
*
|
|
872
|
-
* @license EUPL-1.2
|
|
873
|
-
* @licstart
|
|
874
|
-
* (c) 2000-2020 Educational Telematic Network of Catalonia (XTEC)
|
|
875
|
-
*
|
|
876
|
-
* Licensed under the EUPL, Version 1.1 or -as soon they will be approved by
|
|
877
|
-
* the European Commission- subsequent versions of the EUPL (the "Licence");
|
|
878
|
-
* You may not use this work except in compliance with the Licence.
|
|
879
|
-
*
|
|
880
|
-
* You may obtain a copy of the Licence at:
|
|
881
|
-
* https://joinup.ec.europa.eu/software/page/eupl
|
|
882
|
-
*
|
|
883
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
884
|
-
* distributed under the Licence is distributed on an "AS IS" basis, WITHOUT
|
|
885
|
-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
886
|
-
* Licence for the specific language governing permissions and limitations
|
|
887
|
-
* under the Licence.
|
|
888
|
-
* @licend
|
|
889
|
-
* @module
|
|
890
|
-
*/
|
|
891
|
-
|
|
892
768
|
/**
|
|
893
769
|
* File : bags/ActivitySequence.js
|
|
894
770
|
* Created : 05/04/2015
|
|
@@ -1323,99 +1199,6 @@ https://github.com/nodeca/pako/blob/main/LICENSE
|
|
|
1323
1199
|
* @module
|
|
1324
1200
|
*/
|
|
1325
1201
|
|
|
1326
|
-
/**
|
|
1327
|
-
* File : boxes/BoxBase.js
|
|
1328
|
-
* Created : 12/04/2015
|
|
1329
|
-
* By : Francesc Busquets <francesc@gmail.com>
|
|
1330
|
-
*
|
|
1331
|
-
* JClic.js
|
|
1332
|
-
* An HTML5 player of JClic activities
|
|
1333
|
-
* https://projectestac.github.io/jclic.js
|
|
1334
|
-
*
|
|
1335
|
-
* @source https://github.com/projectestac/jclic.js
|
|
1336
|
-
*
|
|
1337
|
-
* @license EUPL-1.2
|
|
1338
|
-
* @licstart
|
|
1339
|
-
* (c) 2000-2020 Catalan Educational Telematic Network (XTEC)
|
|
1340
|
-
*
|
|
1341
|
-
* Licensed under the EUPL, Version 1.1 or -as soon they will be approved by
|
|
1342
|
-
* the European Commission- subsequent versions of the EUPL (the "Licence");
|
|
1343
|
-
* You may not use this work except in compliance with the Licence.
|
|
1344
|
-
*
|
|
1345
|
-
* You may obtain a copy of the Licence at:
|
|
1346
|
-
* https://joinup.ec.europa.eu/software/page/eupl
|
|
1347
|
-
*
|
|
1348
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
1349
|
-
* distributed under the Licence is distributed on an "AS IS" basis, WITHOUT
|
|
1350
|
-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
1351
|
-
* Licence for the specific language governing permissions and limitations
|
|
1352
|
-
* under the Licence.
|
|
1353
|
-
* @licend
|
|
1354
|
-
* @module
|
|
1355
|
-
*/
|
|
1356
|
-
|
|
1357
|
-
/**
|
|
1358
|
-
* File : boxes/BoxConnector.js
|
|
1359
|
-
* Created : 26/05/2015
|
|
1360
|
-
* By : Francesc Busquets <francesc@gmail.com>
|
|
1361
|
-
*
|
|
1362
|
-
* JClic.js
|
|
1363
|
-
* An HTML5 player of JClic activities
|
|
1364
|
-
* https://projectestac.github.io/jclic.js
|
|
1365
|
-
*
|
|
1366
|
-
* @source https://github.com/projectestac/jclic.js
|
|
1367
|
-
*
|
|
1368
|
-
* @license EUPL-1.2
|
|
1369
|
-
* @licstart
|
|
1370
|
-
* (c) 2000-2020 Catalan Educational Telematic Network (XTEC)
|
|
1371
|
-
*
|
|
1372
|
-
* Licensed under the EUPL, Version 1.1 or -as soon they will be approved by
|
|
1373
|
-
* the European Commission- subsequent versions of the EUPL (the "Licence");
|
|
1374
|
-
* You may not use this work except in compliance with the Licence.
|
|
1375
|
-
*
|
|
1376
|
-
* You may obtain a copy of the Licence at:
|
|
1377
|
-
* https://joinup.ec.europa.eu/software/page/eupl
|
|
1378
|
-
*
|
|
1379
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
1380
|
-
* distributed under the Licence is distributed on an "AS IS" basis, WITHOUT
|
|
1381
|
-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
1382
|
-
* Licence for the specific language governing permissions and limitations
|
|
1383
|
-
* under the Licence.
|
|
1384
|
-
* @licend
|
|
1385
|
-
* @module
|
|
1386
|
-
*/
|
|
1387
|
-
|
|
1388
|
-
/**
|
|
1389
|
-
* File : boxes/TextGrid.js
|
|
1390
|
-
* Created : 12/06/2015
|
|
1391
|
-
* By : Francesc Busquets <francesc@gmail.com>
|
|
1392
|
-
*
|
|
1393
|
-
* JClic.js
|
|
1394
|
-
* An HTML5 player of JClic activities
|
|
1395
|
-
* https://projectestac.github.io/jclic.js
|
|
1396
|
-
*
|
|
1397
|
-
* @source https://github.com/projectestac/jclic.js
|
|
1398
|
-
*
|
|
1399
|
-
* @license EUPL-1.2
|
|
1400
|
-
* @licstart
|
|
1401
|
-
* (c) 2000-2020 Educational Telematic Network of Catalonia (XTEC)
|
|
1402
|
-
*
|
|
1403
|
-
* Licensed under the EUPL, Version 1.1 or -as soon they will be approved by
|
|
1404
|
-
* the European Commission- subsequent versions of the EUPL (the "Licence");
|
|
1405
|
-
* You may not use this work except in compliance with the Licence.
|
|
1406
|
-
*
|
|
1407
|
-
* You may obtain a copy of the Licence at:
|
|
1408
|
-
* https://joinup.ec.europa.eu/software/page/eupl
|
|
1409
|
-
*
|
|
1410
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
1411
|
-
* distributed under the Licence is distributed on an "AS IS" basis, WITHOUT
|
|
1412
|
-
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
1413
|
-
* Licence for the specific language governing permissions and limitations
|
|
1414
|
-
* under the Licence.
|
|
1415
|
-
* @licend
|
|
1416
|
-
* @module
|
|
1417
|
-
*/
|
|
1418
|
-
|
|
1419
1202
|
/**
|
|
1420
1203
|
* File : boxes/TextGridContent.js
|
|
1421
1204
|
* Created : 14/04/2015
|