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.
Files changed (55) hide show
  1. package/dist/components/basics/EpAvatar.vue.js +55 -1
  2. package/dist/components/basics/EpAvatar.vue.js.map +1 -1
  3. package/dist/components/basics/EpAvatar.vue2.js +1 -55
  4. package/dist/components/basics/EpAvatar.vue2.js.map +1 -1
  5. package/dist/components/basics/EpStackedList.vue.js +1 -1
  6. package/dist/components/educationals/EpBranchingScenario.vue2.js +2 -2
  7. package/dist/components/educationals/EpConclusion.vue.js +1 -1
  8. package/dist/components/educationals/EpDescription.vue.js +1 -1
  9. package/dist/components/educationals/EpInstructions.vue.js +6 -4
  10. package/dist/components/educationals/EpInstructions.vue.js.map +1 -1
  11. package/dist/components/educationals/EpIntroduction.vue.js +1 -1
  12. package/dist/components/educationals/EpObjective.vue.js +5 -3
  13. package/dist/components/educationals/EpObjective.vue.js.map +1 -1
  14. package/dist/components/educationals/EpResource.vue.js +1 -1
  15. package/dist/components/educationals/EpResource.vue.js.map +1 -1
  16. package/dist/components/educationals/EpSpecificObjective.vue.js +1 -1
  17. package/dist/components/interactions/EpAccordeon.vue.js +1 -1
  18. package/dist/components/interactions/EpAccordeon.vue2.js +10 -7
  19. package/dist/components/interactions/EpAccordeon.vue2.js.map +1 -1
  20. package/dist/components/interactions/EpAssociation.vue.js +1 -1
  21. package/dist/components/interactions/EpContentSlider.vue.js +2 -2
  22. package/dist/components/interactions/EpContentSlider.vue.js.map +1 -1
  23. package/dist/components/interactions/EpModal.vue.js +4 -1
  24. package/dist/components/interactions/EpModal.vue.js.map +1 -1
  25. package/dist/components/interactions/EpQuestion.vue.js +1 -1
  26. package/dist/components/interactions/EpQuestion.vue.js.map +1 -1
  27. package/dist/components/medias/EpHierarchy.vue2.js +1 -1
  28. package/dist/components/medias/EpHierarchy.vue2.js.map +1 -1
  29. package/dist/components/signages/EpAlert.vue2.js +1 -1
  30. package/dist/components/signages/EpQuote.vue.js +1 -1
  31. package/dist/components/tools/AssociationNode.vue.js +82 -1
  32. package/dist/components/tools/AssociationNode.vue.js.map +1 -1
  33. package/dist/components/tools/AssociationNode.vue2.js +1 -82
  34. package/dist/components/tools/AssociationNode.vue2.js.map +1 -1
  35. package/dist/components/tools/Details.vue.js +56 -1
  36. package/dist/components/tools/Details.vue.js.map +1 -1
  37. package/dist/components/tools/Details.vue2.js +1 -56
  38. package/dist/components/tools/Details.vue2.js.map +1 -1
  39. package/dist/components/tools/RenderTextNode.vue.js +19 -1
  40. package/dist/components/tools/RenderTextNode.vue.js.map +1 -1
  41. package/dist/components/tools/RenderTextNode.vue2.js +1 -19
  42. package/dist/components/tools/RenderTextNode.vue2.js.map +1 -1
  43. package/dist/components/tools/SegmentedBox.vue.js +1 -1
  44. package/dist/components/tools/TextMedia.vue.js +50 -1
  45. package/dist/components/tools/TextMedia.vue.js.map +1 -1
  46. package/dist/components/tools/TextMedia.vue2.js +1 -50
  47. package/dist/components/tools/TextMedia.vue2.js.map +1 -1
  48. package/dist/components/tools/TimelineItem.vue2.js +1 -1
  49. package/dist/components/tools/TwoColsMedia.vue2.js +2 -2
  50. package/dist/components/tools/TwoColsMedia.vue2.js.map +1 -1
  51. package/dist/style.css +80 -80
  52. package/dist/types/educationals/EpInstructions.d.ts +2 -1
  53. package/dist/types/educationals/EpObjective.d.ts +1 -1
  54. package/dist/types/interactions/EpAccordeon.d.ts +1 -0
  55. package/package.json +2 -2
package/dist/style.css CHANGED
@@ -1,10 +1,61 @@
1
1
 
2
- .ep-accordeon-content[data-v-e6a01f3c] {
3
- transition: max-height 0.2s ease-out;
4
- overflow: hidden;
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
- .perspective-1000[data-v-edc221ae] { perspective: 1000px
48
- }
49
- .preserve-3d[data-v-edc221ae] { transform-style: preserve-3d
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
- pre {
64
- white-space: break-spaces;
104
+ .ep-sensible-content[data-v-0098bf11] {
105
+ position: relative;
65
106
  }
66
107
  /*$vite$:1*/
67
108
 
68
- @keyframes fade-6f6eb558 {
69
- 0% {
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-sensible-content[data-v-0098bf11] {
110
- position: relative;
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
- .katex[data-v-a9b6227c] {
121
- font-size: 1.6em;
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-tree-wrapper[data-v-482cff9d] {
137
- overflow: auto;
138
- border: 1px solid #ddd;
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
+ };
@@ -1,5 +1,5 @@
1
1
  export interface EpObjectiveProps {
2
2
  nameApproach?: string | null;
3
3
  title?: string | null;
4
- color?: `border-${string}`;
4
+ color?: `border-${string}`;
5
5
  }
@@ -7,4 +7,5 @@ export interface EpAccordeonProps {
7
7
  title?: string | null;
8
8
  subtitle?: string | null;
9
9
  small?: boolean;
10
+ noContent?: boolean;
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ep-lib-ts",
3
- "version": "1.1.18",
3
+ "version": "1.1.20",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -86,4 +86,4 @@
86
86
  "publishConfig": {
87
87
  "access": "public"
88
88
  }
89
- }
89
+ }