ep-lib-ts 1.0.57 → 1.0.59
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/LICENSE +0 -0
- package/README.md +0 -0
- package/dist/Glossary.d.ts +10 -0
- package/dist/components/basics/EpBadge.vue.js +2 -20
- package/dist/components/basics/EpBadge.vue2.js +20 -2
- package/dist/components/basics/EpText.vue.js +86 -60
- package/dist/components/educationals/EpResource.vue.js +1 -1
- package/dist/components/forms/EpCheckbox.vue.js +2 -39
- package/dist/components/forms/EpCheckbox.vue2.js +39 -2
- package/dist/components/forms/EpInput.vue.js +2 -60
- package/dist/components/forms/EpInput.vue2.js +60 -2
- package/dist/components/forms/EpRadio.vue.js +2 -39
- package/dist/components/forms/EpRadio.vue2.js +39 -2
- package/dist/components/forms/EpRadioSummative.vue.js +2 -35
- package/dist/components/forms/EpRadioSummative.vue2.js +35 -2
- package/dist/components/forms/EpSelect.vue.js +2 -31
- package/dist/components/forms/EpSelect.vue2.js +31 -2
- package/dist/components/forms/EpSwitch.vue.js +2 -46
- package/dist/components/forms/EpSwitch.vue2.js +46 -2
- package/dist/components/forms/EpTextarea.vue.js +2 -33
- package/dist/components/forms/EpTextarea.vue2.js +33 -2
- package/dist/components/forms/EpToggle.vue.js +2 -36
- package/dist/components/forms/EpToggle.vue2.js +36 -2
- package/dist/components/interactions/Ep360Image.vue.js +2 -8
- package/dist/components/interactions/Ep360Image.vue2.js +8 -2
- package/dist/components/interactions/Ep360Video.vue.js +2 -8
- package/dist/components/interactions/Ep360Video.vue2.js +8 -2
- package/dist/components/interactions/EpContentSlider.vue.js +6 -6
- package/dist/components/interactions/{EpHotsPot.vue.js → EpHotSpot.vue.js} +7 -7
- package/dist/components/interactions/EpHotSpot.vue2.js +4 -0
- package/dist/components/interactions/EpQuestion.vue.js +12 -12
- package/dist/components/interactions/EpSummativeTable.vue.js +1 -1
- package/dist/components/medias/EpAudio.vue.js +1 -1
- package/dist/components/medias/EpHierarchy.vue2.js +1 -1
- package/dist/components/medias/EpSensibleImage.vue.js +1 -1
- package/dist/components/medias/EpSensibleImage.vue2.js +23 -21
- package/dist/components/tools/BgAudio.vue.js +2 -57
- package/dist/components/tools/BgAudio.vue2.js +57 -2
- package/dist/components/tools/TextMedia.vue2.js +5 -5
- package/dist/components/tools/TwoColsMedia.vue2.js +6 -6
- package/dist/ep-lib-ts.css +1 -1
- package/dist/interactions/{EpHotsPot.d.ts → EpHotSpot.d.ts} +1 -1
- package/dist/interactions/EpHotSpot.js +4 -0
- package/dist/medias/EpSensibleImage.d.ts +2 -0
- package/dist/testImg.jpg +0 -0
- package/dist/testMaria.jpg +0 -0
- package/dist/vite.svg +0 -0
- package/package.json +11 -13
- package/dist/basics/EpAvatar.js +0 -4
- package/dist/basics/EpBadge.js +0 -4
- package/dist/components/interactions/EpHotsPot.vue2.js +0 -4
- package/dist/forms/EpCheckbox.js +0 -4
- package/dist/forms/EpInput.js +0 -4
- package/dist/forms/EpRadio.js +0 -4
- package/dist/forms/EpRadioSummative.js +0 -4
- package/dist/forms/EpSelect.js +0 -4
- package/dist/forms/EpSwitch.js +0 -4
- package/dist/forms/EpTextarea.js +0 -4
- package/dist/forms/EpToggle.js +0 -4
- package/dist/interactions/Ep360Image.js +0 -4
- package/dist/interactions/Ep360Video.js +0 -4
- package/dist/interactions/EpHotsPot.js +0 -4
package/dist/testImg.jpg
CHANGED
|
File without changes
|
package/dist/testMaria.jpg
CHANGED
|
File without changes
|
package/dist/vite.svg
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ep-lib-ts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.59",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -8,36 +8,33 @@
|
|
|
8
8
|
"exports": {
|
|
9
9
|
"./entry/basics/*": {
|
|
10
10
|
"types": "./dist/entry/basics/*.d.ts",
|
|
11
|
-
"
|
|
11
|
+
"import": "./dist/basics/*.js"
|
|
12
12
|
},
|
|
13
13
|
"./entry/signages/*": {
|
|
14
14
|
"types": "./dist/entry/signages/*.d.ts",
|
|
15
|
-
"
|
|
15
|
+
"import": "./dist/signages/*.js"
|
|
16
16
|
},
|
|
17
17
|
"./entry/charts/*": {
|
|
18
18
|
"types": "./dist/entry/charts/*.d.ts",
|
|
19
|
-
"
|
|
20
|
-
},
|
|
21
|
-
"./entry/forms/*": {
|
|
22
|
-
"types": "./dist/entry/forms/*.d.ts",
|
|
23
|
-
"default": "./dist/forms/*.js"
|
|
19
|
+
"import": "./dist/charts/*.js"
|
|
24
20
|
},
|
|
25
21
|
"./entry/interactions/*": {
|
|
26
22
|
"types": "./dist/entry/interactions/*.d.ts",
|
|
27
|
-
"
|
|
23
|
+
"import": "./dist/interactions/*.js"
|
|
28
24
|
},
|
|
29
25
|
"./entry/educationals/*": {
|
|
30
26
|
"types": "./dist/entry/educationals/*.d.ts",
|
|
31
|
-
"
|
|
27
|
+
"import": "./dist/educationals/*.js"
|
|
32
28
|
},
|
|
33
29
|
"./entry/medias/*": {
|
|
34
30
|
"types": "./dist/entry/medias/*.d.ts",
|
|
35
|
-
"
|
|
31
|
+
"import": "./dist/medias/*.js"
|
|
36
32
|
}
|
|
37
33
|
},
|
|
34
|
+
"sideEffects": false,
|
|
38
35
|
"typesVersions": {
|
|
39
36
|
"*": {
|
|
40
|
-
"
|
|
37
|
+
"entry/*": [
|
|
41
38
|
"dist/entry/*"
|
|
42
39
|
]
|
|
43
40
|
}
|
|
@@ -82,6 +79,7 @@
|
|
|
82
79
|
"@types/markdown-it": "14.1.2",
|
|
83
80
|
"@types/node": "24.3.0",
|
|
84
81
|
"@types/three": "0.179.0",
|
|
82
|
+
"@types/vue": "^2.0.0",
|
|
85
83
|
"@vitejs/plugin-vue": "6.0.1",
|
|
86
84
|
"autoprefixer": "10.4.21",
|
|
87
85
|
"postcss": "8.5.6",
|
|
@@ -98,5 +96,5 @@
|
|
|
98
96
|
"node": "20.19.0"
|
|
99
97
|
},
|
|
100
98
|
"license": "MIT",
|
|
101
|
-
"packageManager": "yarn@
|
|
99
|
+
"packageManager": "yarn@1.22.22"
|
|
102
100
|
}
|
package/dist/basics/EpAvatar.js
DELETED
package/dist/basics/EpBadge.js
DELETED
package/dist/forms/EpCheckbox.js
DELETED
package/dist/forms/EpInput.js
DELETED
package/dist/forms/EpRadio.js
DELETED
package/dist/forms/EpSelect.js
DELETED
package/dist/forms/EpSwitch.js
DELETED
package/dist/forms/EpTextarea.js
DELETED
package/dist/forms/EpToggle.js
DELETED