@social-mail/social-mail-client 1.8.260 → 1.8.262
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/site-editor/editor/IEditableAttribute.d.ts +1 -1
- package/dist/site-editor/editor/IEditableAttribute.d.ts.map +1 -1
- package/dist/site-editor/properties/groups/AttributeEditor.d.ts.map +1 -1
- package/dist/site-editor/properties/groups/AttributeEditor.js +1 -0
- package/dist/site-editor/properties/groups/AttributeEditor.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +1 -0
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/site-editor/editor/IEditableAttribute.ts +1 -1
- package/src/site-editor/properties/groups/AttributeEditor.tsx +1 -0
- package/styler-lite/styler.css +1 -1
- package/styler-lite/styler.css.map +1 -1
- package/styler-lite/styles/animations/animations.css +22 -13
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
body:not([editing]) {
|
|
2
2
|
|
|
3
|
-
& :not(animated-text)[styler-on-enter]:not([styler-entered]),
|
|
3
|
+
& :not(animated-text, image-slices)[styler-on-enter]:not([styler-entered]),
|
|
4
4
|
& animated-text[styler-on-enter]:not([styler-entered]) > * {
|
|
5
5
|
opacity: 0;
|
|
6
6
|
}
|
|
7
|
+
& image-slices[styler-on-enter]:not([styler-entered]) > * {
|
|
8
|
+
opacity: 0;
|
|
9
|
+
}
|
|
7
10
|
}
|
|
8
11
|
|
|
9
|
-
:not(animated-text)[styler-on-enter][styler-entered],
|
|
10
|
-
animated-text[styler-on-enter][styler-entered] >
|
|
12
|
+
:not(animated-text, image-slices)[styler-on-enter][styler-entered],
|
|
13
|
+
animated-text[styler-on-enter][styler-entered] > *,
|
|
14
|
+
image-slices[styler-on-enter][styler-entered] > * {
|
|
11
15
|
|
|
12
16
|
animation-name: var(--styler-on-enter, none),
|
|
13
17
|
var(--styler-on-enter-effect-1, none),
|
|
@@ -35,8 +39,9 @@ animated-text[styler-on-enter][styler-entered] > * {
|
|
|
35
39
|
|
|
36
40
|
|
|
37
41
|
|
|
38
|
-
:not(animated-text)[styler-on-hover]:hover,
|
|
39
|
-
animated-text[styler-on-hover]:hover >
|
|
42
|
+
:not(animated-text, image-slices)[styler-on-hover]:hover,
|
|
43
|
+
animated-text[styler-on-hover]:hover > *,
|
|
44
|
+
image-slices[styler-on-hover]:hover > * {
|
|
40
45
|
|
|
41
46
|
animation-name: var(--styler-on-hover, none),
|
|
42
47
|
var(--styler-on-hover-effect-1, none),
|
|
@@ -61,8 +66,9 @@ animated-text[styler-on-hover]:hover > * {
|
|
|
61
66
|
|
|
62
67
|
|
|
63
68
|
|
|
64
|
-
:not(animated-text)[styler-on-leave][styler-entered],
|
|
65
|
-
animated-text[styler-on-leave][styler-entered] >
|
|
69
|
+
:not(animated-text, image-slices)[styler-on-leave][styler-entered],
|
|
70
|
+
animated-text[styler-on-leave][styler-entered] > *,
|
|
71
|
+
image-slices[styler-on-leave][styler-entered] > * {
|
|
66
72
|
|
|
67
73
|
animation-name: var(--styler-on-leave, none),
|
|
68
74
|
var(--styler-on-leave-effect-1, none),
|
|
@@ -117,8 +123,9 @@ animated-text[styler-on-leave][styler-entered] > * {
|
|
|
117
123
|
}
|
|
118
124
|
|
|
119
125
|
|
|
120
|
-
:not(animated-text)[styler-on-scroll],
|
|
121
|
-
animated-text[styler-on-scroll] >
|
|
126
|
+
:not(animated-text, image-slices)[styler-on-scroll],
|
|
127
|
+
animated-text[styler-on-scroll] > *,
|
|
128
|
+
image-slices[styler-on-scroll] > * {
|
|
122
129
|
|
|
123
130
|
animation-name: var(--styler-on-scroll, none),
|
|
124
131
|
var(--styler-on-scroll-effect-1, none),
|
|
@@ -140,8 +147,9 @@ animated-text[styler-on-scroll] > * {
|
|
|
140
147
|
var(--styler-on-scroll-effect-2-range, 0% 50%);
|
|
141
148
|
}
|
|
142
149
|
|
|
143
|
-
:not(animated-text)[styler-on-scroll-above],
|
|
144
|
-
animated-text[styler-on-scroll-above] >
|
|
150
|
+
:not(animated-text, image-slices)[styler-on-scroll-above],
|
|
151
|
+
animated-text[styler-on-scroll-above] > *,
|
|
152
|
+
image-slices[styler-on-scroll-above] > * {
|
|
145
153
|
|
|
146
154
|
animation-name: var(--styler-on-scroll-above, none),
|
|
147
155
|
var(--styler-on-scroll-above-effect-1, none),
|
|
@@ -164,8 +172,9 @@ animated-text[styler-on-scroll-above] > * {
|
|
|
164
172
|
}
|
|
165
173
|
|
|
166
174
|
|
|
167
|
-
:not(animated-text)[styler-on-scroll-top-half],
|
|
168
|
-
animated-text[styler-on-scroll-top-half] >
|
|
175
|
+
:not(animated-text, image-slices)[styler-on-scroll-top-half],
|
|
176
|
+
animated-text[styler-on-scroll-top-half] > *,
|
|
177
|
+
image-slices[styler-on-scroll-top-half] > * {
|
|
169
178
|
|
|
170
179
|
animation-name: var(--styler-on-scroll-top-half, none),
|
|
171
180
|
var(--styler-on-scroll-top-half-effect-1, none),
|