qti3-item-player-vue3 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +21 -0
- package/README.md +4 -3
- package/package.json +8 -5
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Amp-up.io, LLC
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
@@ -705,6 +705,7 @@ The QTI3 Item Player 2022-2024 development roadmap includes all features and cap
|
|
705
705
|
- [x] Support for Interaction "Review" Status
|
706
706
|
- [x] Improved Audio Player
|
707
707
|
- [x] Improved Video Player
|
708
|
+
- [ ] Update Quill.js to version 2.x
|
708
709
|
|
709
710
|
<p align="right">(<a href="#top">back to top</a>)</p>
|
710
711
|
|
@@ -721,7 +722,7 @@ Distributed under the MIT License. See `LICENSE` for more information.
|
|
721
722
|
|
722
723
|
## Built With
|
723
724
|
|
724
|
-
The QTI3 Item Player is built with the Vue
|
725
|
+
The QTI3 Item Player is built with the Vue 3 (v3.4.34) framework.
|
725
726
|
|
726
727
|
* [Vue.js](https://vuejs.org/)
|
727
728
|
|
@@ -734,7 +735,7 @@ The QTI3 Item Player is built with the Vue.js (v2.6) framework.
|
|
734
735
|
|
735
736
|
Paul Grudnitski - paul.grudnitski@amp-up.io
|
736
737
|
|
737
|
-
Project Link: [https://github.com/amp-up-io/qti3-item-player](https://github.com/amp-up-io/qti3-item-player)
|
738
|
+
Project Link: [https://github.com/amp-up-io/qti3-item-player-vue3](https://github.com/amp-up-io/qti3-item-player-vue3)
|
738
739
|
|
739
740
|
<p align="right">(<a href="#top">back to top</a>)</p>
|
740
741
|
|
@@ -743,7 +744,7 @@ Project Link: [https://github.com/amp-up-io/qti3-item-player](https://github.com
|
|
743
744
|
<!-- ACKNOWLEDGMENTS -->
|
744
745
|
## Acknowledgments
|
745
746
|
|
746
|
-
This component would not be possible were it not for a fortuitous decision by the aQTI Task Force (the original name of the QTI 3 Working Group) - meeting at CITO headquarters in Arnhem, NE, January 2015 - to make the aQTI / QTI 3 specification "web component friendly".
|
747
|
+
This component would not be possible were it not for a fortuitous decision by the aQTI Task Force (the original name of the QTI 3 Working Group) - meeting at CITO headquarters in Arnhem, NE, January 2015 - to make the aQTI / QTI 3 specification "web component friendly".
|
747
748
|
|
748
749
|
<p align="right">(<a href="#top">back to top</a>)</p>
|
749
750
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "qti3-item-player-vue3",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.2",
|
4
4
|
"description": "QTI 3 Item Player implemented with Vue 3",
|
5
5
|
"author": {
|
6
6
|
"name": "Paul Grudnitski",
|
@@ -17,7 +17,9 @@
|
|
17
17
|
"Vue 3"
|
18
18
|
],
|
19
19
|
"type": "module",
|
20
|
-
"files": [
|
20
|
+
"files": [
|
21
|
+
"dist"
|
22
|
+
],
|
21
23
|
"main": "./dist/qti3-item-player-vue3.umd.js",
|
22
24
|
"module": "./dist/qti3-item-player-vue3.js",
|
23
25
|
"exports": {
|
@@ -25,7 +27,7 @@
|
|
25
27
|
"import": "./dist/qti3-item-player-vue3.js",
|
26
28
|
"require": "./dist/qti3-item-player-vue3.umd.js"
|
27
29
|
},
|
28
|
-
"./dist/
|
30
|
+
"./dist/qti3Player.css": "./dist/qti3Player.css"
|
29
31
|
},
|
30
32
|
"scripts": {
|
31
33
|
"dev": "vite",
|
@@ -41,7 +43,7 @@
|
|
41
43
|
"sortablejs": "^1.15.2",
|
42
44
|
"sweetalert2": "^11.6.13",
|
43
45
|
"tippy.js": "^6.3.7",
|
44
|
-
"vue": "^3.4.
|
46
|
+
"vue": "^3.4.34"
|
45
47
|
},
|
46
48
|
"devDependencies": {
|
47
49
|
"@vitejs/plugin-vue": "^5.0.4",
|
@@ -53,5 +55,6 @@
|
|
53
55
|
"eslint": {
|
54
56
|
"file-entry-cache": "8.x"
|
55
57
|
}
|
56
|
-
}
|
58
|
+
},
|
59
|
+
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
|
57
60
|
}
|