@social-mail/social-mail-client 1.8.433 → 1.8.434
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/HtmlPageEditor.global.css +1 -1
- package/dist/site-editor/editor/HtmlPageEditor.global.css.map +1 -1
- package/dist/site-editor/editor/SelectedElement.js +2 -2
- package/dist/site-editor/editor/SelectedElement.js.map +1 -1
- package/dist/site-editor/editor/ui/SelectionUI.d.ts.map +1 -1
- package/dist/site-editor/editor/ui/SelectionUI.global.css +1 -1
- package/dist/site-editor/editor/ui/SelectionUI.global.css.map +1 -1
- package/dist/site-editor/editor/ui/SelectionUI.js +10 -4
- package/dist/site-editor/editor/ui/SelectionUI.js.map +1 -1
- package/dist/site-editor/editor/ui/SnapGuides.d.ts +22 -0
- package/dist/site-editor/editor/ui/SnapGuides.d.ts.map +1 -0
- package/dist/site-editor/editor/ui/SnapGuides.js +54 -0
- package/dist/site-editor/editor/ui/SnapGuides.js.map +1 -0
- package/dist/site-editor-app/SiteEditorApp.pack.global.css +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.global.css.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +70 -7
- 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/dist/web/AppIndex.pack.local.css +1 -1
- package/dist/web/AppIndex.pack.local.css.map +1 -1
- package/dist/web/drawer/AppDrawer.local.css +1 -1
- package/dist/web/drawer/AppDrawer.local.css.map +1 -1
- package/package.json +1 -1
- package/src/site-editor/editor/HtmlPageEditor.global.css +8 -0
- package/src/site-editor/editor/SelectedElement.tsx +2 -2
- package/src/site-editor/editor/ui/SelectionUI.global.css +2 -1
- package/src/site-editor/editor/ui/SelectionUI.tsx +14 -2
- package/src/site-editor/editor/ui/SnapGuides.ts +69 -0
- package/src/web/drawer/AppDrawer.local.css +1 -0
- package/styler-lite/styler.css +1 -1
- package/styler-lite/styler.css.map +1 -1
- package/styler-lite/styles/properties/size/size.css +24 -24
|
@@ -23,27 +23,27 @@
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
[styler-child-width] >
|
|
26
|
+
[styler-child-width] > *:not([styler-width]) {
|
|
27
27
|
width: var(--styler-child-width);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
[styler-child-min-width] >
|
|
30
|
+
[styler-child-min-width] > *:not([styler-min-width]) {
|
|
31
31
|
min-width: var(--styler-child-min-width);
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
[styler-child-max-width] >
|
|
34
|
+
[styler-child-max-width] > *:not([styler-max-width]) {
|
|
35
35
|
max-width: var(--styler-child-max-width);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
[styler-child-height] >
|
|
38
|
+
[styler-child-height] > *:not([styler-height]) {
|
|
39
39
|
height: var(--styler-child-height);
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
[styler-child-min-height] >
|
|
42
|
+
[styler-child-min-height] > *:not([styler-min-height]) {
|
|
43
43
|
min-height: var(--styler-child-min-height);
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
[styler-child-max-height] >
|
|
46
|
+
[styler-child-max-height] > *:not([styler-max-height]) {
|
|
47
47
|
max-height: var(--styler-child-max-height);
|
|
48
48
|
}
|
|
49
49
|
|
|
@@ -72,27 +72,27 @@
|
|
|
72
72
|
max-height: var(--styler-mobile-max-height);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
[styler-mobile-child-width] >
|
|
75
|
+
[styler-mobile-child-width] > *:not([styler-mobile-width]) {
|
|
76
76
|
width: var(--styler-mobile-child-width);
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
[styler-mobile-child-min-width] >
|
|
79
|
+
[styler-mobile-child-min-width] > *:not([styler-mobile-min-width]) {
|
|
80
80
|
min-width: var(--styler-mobile-child-min-width);
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
[styler-mobile-child-max-width] >
|
|
83
|
+
[styler-mobile-child-max-width] > *:not([styler-mobile-max-width]) {
|
|
84
84
|
max-width: var(--styler-mobile-child-max-width);
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
[styler-mobile-child-height] >
|
|
87
|
+
[styler-mobile-child-height] > *:not([styler-mobile-height]) {
|
|
88
88
|
height: var(--styler-mobile-child-height);
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
[styler-mobile-child-min-height] >
|
|
91
|
+
[styler-mobile-child-min-height] > *:not([styler-mobile-min-height]) {
|
|
92
92
|
min-height: var(--styler-mobile-child-min-height);
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
[styler-mobile-child-max-height] >
|
|
95
|
+
[styler-mobile-child-max-height] > *:not([styler-mobile-max-height]) {
|
|
96
96
|
max-height: var(--styler-mobile-child-max-height);
|
|
97
97
|
}
|
|
98
98
|
|
|
@@ -126,27 +126,27 @@
|
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
|
|
129
|
-
[styler-tablet-child-width] >
|
|
129
|
+
[styler-tablet-child-width] > *:not([styler-tablet-width]) {
|
|
130
130
|
width: var(--styler-tablet-child-width);
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
-
[styler-tablet-child-min-width] >
|
|
133
|
+
[styler-tablet-child-min-width] > *:not([styler-tablet-min-width]) {
|
|
134
134
|
min-width: var(--styler-tablet-child-min-width);
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
-
[styler-tablet-child-max-width] >
|
|
137
|
+
[styler-tablet-child-max-width] > *:not([styler-tablet-max-width]) {
|
|
138
138
|
max-width: var(--styler-tablet-child-max-width);
|
|
139
139
|
}
|
|
140
140
|
|
|
141
|
-
[styler-tablet-child-height] >
|
|
141
|
+
[styler-tablet-child-height] > *:not([styler-tablet-height]) {
|
|
142
142
|
height: var(--styler-tablet-child-height);
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
[styler-tablet-child-min-height] >
|
|
145
|
+
[styler-tablet-child-min-height] > *:not([styler-tablet-min-height]) {
|
|
146
146
|
min-height: var(--styler-tablet-child-min-height);
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
-
[styler-tablet-child-max-height] >
|
|
149
|
+
[styler-tablet-child-max-height] > *:not([styler-tablet-max-height]) {
|
|
150
150
|
max-height: var(--styler-tablet-child-max-height);
|
|
151
151
|
}
|
|
152
152
|
|
|
@@ -179,27 +179,27 @@
|
|
|
179
179
|
max-height: var(--styler-desktop-max-height);
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
[styler-desktop-child-width] >
|
|
182
|
+
[styler-desktop-child-width] > *:not([styler-desktop-width]) {
|
|
183
183
|
width: var(--styler-desktop-child-width);
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
-
[styler-desktop-child-min-width] >
|
|
186
|
+
[styler-desktop-child-min-width] > *:not([styler-desktop-min-width]) {
|
|
187
187
|
min-width: var(--styler-desktop-child-min-width);
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
-
[styler-desktop-child-max-width] >
|
|
190
|
+
[styler-desktop-child-max-width] > *:not([styler-desktop-max-width]) {
|
|
191
191
|
max-width: var(--styler-desktop-child-max-width);
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
[styler-desktop-child-height] >
|
|
194
|
+
[styler-desktop-child-height] > *:not([styler-desktop-height]) {
|
|
195
195
|
height: var(--styler-desktop-child-height);
|
|
196
196
|
}
|
|
197
197
|
|
|
198
|
-
[styler-desktop-child-min-height] >
|
|
198
|
+
[styler-desktop-child-min-height] > *:not([styler-desktop-min-height]) {
|
|
199
199
|
min-height: var(--styler-desktop-child-min-height);
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
-
[styler-desktop-child-max-height] >
|
|
202
|
+
[styler-desktop-child-max-height] > *:not([styler-desktop-max-height]) {
|
|
203
203
|
max-height: var(--styler-desktop-child-max-height);
|
|
204
204
|
}
|
|
205
205
|
|