ep-lib-ts 1.1.18 → 1.1.20
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/dist/components/basics/EpAvatar.vue.js +55 -1
- package/dist/components/basics/EpAvatar.vue.js.map +1 -1
- package/dist/components/basics/EpAvatar.vue2.js +1 -55
- package/dist/components/basics/EpAvatar.vue2.js.map +1 -1
- package/dist/components/basics/EpStackedList.vue.js +1 -1
- package/dist/components/educationals/EpBranchingScenario.vue2.js +2 -2
- package/dist/components/educationals/EpConclusion.vue.js +1 -1
- package/dist/components/educationals/EpDescription.vue.js +1 -1
- package/dist/components/educationals/EpInstructions.vue.js +6 -4
- package/dist/components/educationals/EpInstructions.vue.js.map +1 -1
- package/dist/components/educationals/EpIntroduction.vue.js +1 -1
- package/dist/components/educationals/EpObjective.vue.js +5 -3
- package/dist/components/educationals/EpObjective.vue.js.map +1 -1
- package/dist/components/educationals/EpResource.vue.js +1 -1
- package/dist/components/educationals/EpResource.vue.js.map +1 -1
- package/dist/components/educationals/EpSpecificObjective.vue.js +1 -1
- package/dist/components/interactions/EpAccordeon.vue.js +1 -1
- package/dist/components/interactions/EpAccordeon.vue2.js +10 -7
- package/dist/components/interactions/EpAccordeon.vue2.js.map +1 -1
- package/dist/components/interactions/EpAssociation.vue.js +1 -1
- package/dist/components/interactions/EpContentSlider.vue.js +2 -2
- package/dist/components/interactions/EpContentSlider.vue.js.map +1 -1
- package/dist/components/interactions/EpModal.vue.js +4 -1
- package/dist/components/interactions/EpModal.vue.js.map +1 -1
- package/dist/components/interactions/EpQuestion.vue.js +1 -1
- package/dist/components/interactions/EpQuestion.vue.js.map +1 -1
- package/dist/components/medias/EpHierarchy.vue2.js +1 -1
- package/dist/components/medias/EpHierarchy.vue2.js.map +1 -1
- package/dist/components/signages/EpAlert.vue2.js +1 -1
- package/dist/components/signages/EpQuote.vue.js +1 -1
- package/dist/components/tools/AssociationNode.vue.js +82 -1
- package/dist/components/tools/AssociationNode.vue.js.map +1 -1
- package/dist/components/tools/AssociationNode.vue2.js +1 -82
- package/dist/components/tools/AssociationNode.vue2.js.map +1 -1
- package/dist/components/tools/Details.vue.js +56 -1
- package/dist/components/tools/Details.vue.js.map +1 -1
- package/dist/components/tools/Details.vue2.js +1 -56
- package/dist/components/tools/Details.vue2.js.map +1 -1
- package/dist/components/tools/RenderTextNode.vue.js +19 -1
- package/dist/components/tools/RenderTextNode.vue.js.map +1 -1
- package/dist/components/tools/RenderTextNode.vue2.js +1 -19
- package/dist/components/tools/RenderTextNode.vue2.js.map +1 -1
- package/dist/components/tools/SegmentedBox.vue.js +1 -1
- package/dist/components/tools/TextMedia.vue.js +50 -1
- package/dist/components/tools/TextMedia.vue.js.map +1 -1
- package/dist/components/tools/TextMedia.vue2.js +1 -50
- package/dist/components/tools/TextMedia.vue2.js.map +1 -1
- package/dist/components/tools/TimelineItem.vue2.js +1 -1
- package/dist/components/tools/TwoColsMedia.vue2.js +2 -2
- package/dist/components/tools/TwoColsMedia.vue2.js.map +1 -1
- package/dist/style.css +80 -80
- package/dist/types/educationals/EpInstructions.d.ts +2 -1
- package/dist/types/educationals/EpObjective.d.ts +1 -1
- package/dist/types/interactions/EpAccordeon.d.ts +1 -0
- package/package.json +2 -2
package/dist/style.css
CHANGED
|
@@ -1,10 +1,61 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
@keyframes fade-6f6eb558 {
|
|
3
|
+
0% {
|
|
4
|
+
opacity: 0;
|
|
5
|
+
}
|
|
6
|
+
100% {
|
|
7
|
+
opacity: 1;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
@keyframes scale-6f6eb558 {
|
|
11
|
+
0% {
|
|
12
|
+
transform: scale(0.5);
|
|
13
|
+
opacity: 0;
|
|
14
|
+
}
|
|
15
|
+
100% {
|
|
16
|
+
transform: scale(1);
|
|
17
|
+
opacity: 1;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
@keyframes slideY-6f6eb558 {
|
|
21
|
+
0% {
|
|
22
|
+
transform: translateY(-100%);
|
|
23
|
+
opacity: 0;
|
|
24
|
+
}
|
|
25
|
+
100% {
|
|
26
|
+
transform: translateY(0);
|
|
27
|
+
opacity: 1;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* Transition animation */
|
|
32
|
+
.fade[data-v-6f6eb558] {
|
|
33
|
+
animation: fade-6f6eb558 1s;
|
|
34
|
+
}
|
|
35
|
+
.scale[data-v-6f6eb558] {
|
|
36
|
+
animation: scale-6f6eb558 1s;
|
|
37
|
+
}
|
|
38
|
+
.slideY[data-v-6f6eb558] {
|
|
39
|
+
animation: slideY-6f6eb558 1s;
|
|
5
40
|
}
|
|
6
41
|
|
|
7
42
|
|
|
43
|
+
.perspective-1000[data-v-edc221ae] { perspective: 1000px
|
|
44
|
+
}
|
|
45
|
+
.preserve-3d[data-v-edc221ae] { transform-style: preserve-3d
|
|
46
|
+
}
|
|
47
|
+
.backface-hidden[data-v-edc221ae] { backface-visibility: hidden
|
|
48
|
+
}
|
|
49
|
+
.rotate-y-180[data-v-edc221ae] { transform: rotateY(180deg)
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* simple fade for the helper badge */
|
|
53
|
+
.fade-enter-active[data-v-edc221ae], .fade-leave-active[data-v-edc221ae] { transition: opacity .3s
|
|
54
|
+
}
|
|
55
|
+
.fade-enter-from[data-v-edc221ae], .fade-leave-to[data-v-edc221ae] { opacity: 0
|
|
56
|
+
}
|
|
57
|
+
/*$vite$:1*/
|
|
58
|
+
|
|
8
59
|
.ep-modal-mask {
|
|
9
60
|
position: fixed;
|
|
10
61
|
z-index: 6998;
|
|
@@ -44,70 +95,29 @@
|
|
|
44
95
|
}
|
|
45
96
|
/*$vite$:1*/
|
|
46
97
|
|
|
47
|
-
.
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
.backface-hidden[data-v-edc221ae] { backface-visibility: hidden
|
|
52
|
-
}
|
|
53
|
-
.rotate-y-180[data-v-edc221ae] { transform: rotateY(180deg)
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
/* simple fade for the helper badge */
|
|
57
|
-
.fade-enter-active[data-v-edc221ae], .fade-leave-active[data-v-edc221ae] { transition: opacity .3s
|
|
58
|
-
}
|
|
59
|
-
.fade-enter-from[data-v-edc221ae], .fade-leave-to[data-v-edc221ae] { opacity: 0
|
|
98
|
+
.ep-accordeon-content[data-v-e93025d7] {
|
|
99
|
+
transition: max-height 0.2s ease-out;
|
|
100
|
+
overflow: hidden;
|
|
60
101
|
}
|
|
61
102
|
/*$vite$:1*/
|
|
62
103
|
|
|
63
|
-
|
|
64
|
-
|
|
104
|
+
.ep-sensible-content[data-v-0098bf11] {
|
|
105
|
+
position: relative;
|
|
65
106
|
}
|
|
66
107
|
/*$vite$:1*/
|
|
67
108
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
opacity: 0;
|
|
71
|
-
}
|
|
72
|
-
100% {
|
|
73
|
-
opacity: 1;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
@keyframes scale-6f6eb558 {
|
|
77
|
-
0% {
|
|
78
|
-
transform: scale(0.5);
|
|
79
|
-
opacity: 0;
|
|
80
|
-
}
|
|
81
|
-
100% {
|
|
82
|
-
transform: scale(1);
|
|
83
|
-
opacity: 1;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
@keyframes slideY-6f6eb558 {
|
|
87
|
-
0% {
|
|
88
|
-
transform: translateY(-100%);
|
|
89
|
-
opacity: 0;
|
|
90
|
-
}
|
|
91
|
-
100% {
|
|
92
|
-
transform: translateY(0);
|
|
93
|
-
opacity: 1;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
/* Transition animation */
|
|
98
|
-
.fade[data-v-6f6eb558] {
|
|
99
|
-
animation: fade-6f6eb558 1s;
|
|
100
|
-
}
|
|
101
|
-
.scale[data-v-6f6eb558] {
|
|
102
|
-
animation: scale-6f6eb558 1s;
|
|
103
|
-
}
|
|
104
|
-
.slideY[data-v-6f6eb558] {
|
|
105
|
-
animation: slideY-6f6eb558 1s;
|
|
109
|
+
.katex[data-v-a9b6227c] {
|
|
110
|
+
font-size: 1.6em;
|
|
106
111
|
}
|
|
107
112
|
/*$vite$:1*/
|
|
108
113
|
|
|
109
|
-
.ep-
|
|
110
|
-
|
|
114
|
+
.ep-tree-wrapper[data-v-482cff9d] {
|
|
115
|
+
overflow: auto;
|
|
116
|
+
border: 1px solid #ddd;
|
|
117
|
+
}
|
|
118
|
+
.ep-tree-container[data-v-482cff9d] {
|
|
119
|
+
width: 100%;
|
|
120
|
+
overflow-x: auto;
|
|
111
121
|
}
|
|
112
122
|
/*$vite$:1*/
|
|
113
123
|
|
|
@@ -117,8 +127,14 @@ pre {
|
|
|
117
127
|
}
|
|
118
128
|
/*$vite$:1*/
|
|
119
129
|
|
|
120
|
-
.
|
|
121
|
-
|
|
130
|
+
.shape[data-v-4a99873e] {
|
|
131
|
+
height: var(--e4ec2c0a);
|
|
132
|
+
width: var(--3f346a72);
|
|
133
|
+
}
|
|
134
|
+
/*$vite$:1*/
|
|
135
|
+
|
|
136
|
+
pre {
|
|
137
|
+
white-space: break-spaces;
|
|
122
138
|
}
|
|
123
139
|
/*$vite$:1*/
|
|
124
140
|
|
|
@@ -133,19 +149,10 @@ pre {
|
|
|
133
149
|
}
|
|
134
150
|
/*$vite$:1*/
|
|
135
151
|
|
|
136
|
-
.ep-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
.ep-tree-container[data-v-482cff9d] {
|
|
141
|
-
width: 100%;
|
|
142
|
-
overflow-x: auto;
|
|
143
|
-
}
|
|
144
|
-
/*$vite$:1*/
|
|
145
|
-
|
|
146
|
-
.shape[data-v-4a99873e] {
|
|
147
|
-
height: var(--e4ec2c0a);
|
|
148
|
-
width: var(--3f346a72);
|
|
152
|
+
.ep-display-box[data-v-4e1d2bd1] {
|
|
153
|
+
z-index: 9999;
|
|
154
|
+
position: absolute;
|
|
155
|
+
right: 12rem;
|
|
149
156
|
}
|
|
150
157
|
/*$vite$:1*/
|
|
151
158
|
|
|
@@ -160,13 +167,6 @@ pre {
|
|
|
160
167
|
}
|
|
161
168
|
/*$vite$:1*/
|
|
162
169
|
|
|
163
|
-
.ep-display-box[data-v-4e1d2bd1] {
|
|
164
|
-
z-index: 9999;
|
|
165
|
-
position: absolute;
|
|
166
|
-
right: 12rem;
|
|
167
|
-
}
|
|
168
|
-
/*$vite$:1*/
|
|
169
|
-
|
|
170
170
|
.ep-content-timeline-item[data-v-6a472392] {
|
|
171
171
|
max-height: 0;
|
|
172
172
|
overflow: hidden;
|
|
@@ -3,6 +3,7 @@ export interface EpInstructionsProps {
|
|
|
3
3
|
title?: string | null;
|
|
4
4
|
subtitle?: string | null;
|
|
5
5
|
instructions: Instructions[];
|
|
6
|
+
noDeployAtNoContent?: boolean;
|
|
6
7
|
}
|
|
7
8
|
|
|
8
9
|
type Instructions = {
|
|
@@ -12,4 +13,4 @@ type Instructions = {
|
|
|
12
13
|
src?: string;
|
|
13
14
|
open?: boolean;
|
|
14
15
|
cols?: string | number;
|
|
15
|
-
};
|
|
16
|
+
};
|