@social-mail/social-mail-client 1.4.216 → 1.4.218
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/styler/StylerSet.d.ts +2 -0
- package/dist/site-editor/styler/StylerSet.d.ts.map +1 -1
- package/dist/site-editor/styler/properties/transform/stylerTransform.d.ts +2 -0
- package/dist/site-editor/styler/properties/transform/stylerTransform.d.ts.map +1 -1
- package/dist/site-editor/styler/properties/transform/stylerTransform.js +11 -4
- package/dist/site-editor/styler/properties/transform/stylerTransform.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +11 -4
- 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/styler/properties/transform/stylerTransform.ts +21 -4
|
@@ -21,6 +21,8 @@ export declare class StylerSet {
|
|
|
21
21
|
stylerTabletChildMaxHeight: import("./Styler").StylerProperty;
|
|
22
22
|
stylerChildMaxWidth: import("./Styler").StylerProperty;
|
|
23
23
|
stylerChildMaxHeight: import("./Styler").StylerProperty;
|
|
24
|
+
stylerTransform: import("./Styler").StylerProperty;
|
|
25
|
+
stylerTransformOrigin: import("./Styler").StylerProperty;
|
|
24
26
|
stylerDesktopTransform: import("./Styler").StylerProperty;
|
|
25
27
|
stylerDesktopTransformOrigin: import("./Styler").StylerProperty;
|
|
26
28
|
stylerTabletTransform: import("./Styler").StylerProperty;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StylerSet.d.ts","sourceRoot":"","sources":["../../../src/site-editor/styler/StylerSet.ts"],"names":[],"mappings":"AA2BA,qBAAa,SAAS;IAElB,OAAc,QAAQ,YAAmB;IAEzC,IAAI,QAAQ;IAEZ,OAAO,SAA8B;IAErC,UAAU
|
|
1
|
+
{"version":3,"file":"StylerSet.d.ts","sourceRoot":"","sources":["../../../src/site-editor/styler/StylerSet.ts"],"names":[],"mappings":"AA2BA,qBAAa,SAAS;IAElB,OAAc,QAAQ,YAAmB;IAEzC,IAAI,QAAQ;IAEZ,OAAO,SAA8B;IAErC,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAiBR;IAEF,QAAQ;CAsDX"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { StylerProperty } from "../../Styler";
|
|
2
2
|
export declare const stylerTransform: {
|
|
3
|
+
stylerTransform: StylerProperty;
|
|
4
|
+
stylerTransformOrigin: StylerProperty;
|
|
3
5
|
stylerDesktopTransform: StylerProperty;
|
|
4
6
|
stylerDesktopTransformOrigin: StylerProperty;
|
|
5
7
|
stylerTabletTransform: StylerProperty;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stylerTransform.d.ts","sourceRoot":"","sources":["../../../../../src/site-editor/styler/properties/transform/stylerTransform.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAkE,MAAM,cAAc,CAAC;AAE9G,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"stylerTransform.d.ts","sourceRoot":"","sources":["../../../../../src/site-editor/styler/properties/transform/stylerTransform.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAkE,MAAM,cAAc,CAAC;AAE9G,eAAO,MAAM,eAAe;;;;;;;CA+C3B,CAAC"}
|
|
@@ -11,14 +11,21 @@ System.register(["@web-atoms/core/dist/style/styled", "../../Styler"], function
|
|
|
11
11
|
}],
|
|
12
12
|
execute: function () {
|
|
13
13
|
_export("stylerTransform", stylerTransform = {
|
|
14
|
+
stylerTransform: new StylerProperty("styler-transform", {
|
|
15
|
+
custom: styled.css`transform: var(--styler-transform);`,
|
|
16
|
+
"translate-center": styled.css`transform: translate(50%,50%);`
|
|
17
|
+
}),
|
|
18
|
+
stylerTransformOrigin: new StylerProperty("styler-transform-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"])),
|
|
14
19
|
stylerDesktopTransform: new StylerProperty("styler-desktop-transform", {
|
|
15
|
-
custom: styled.css`transform: var(--styler-desktop-transform)
|
|
20
|
+
custom: styled.css`transform: var(--styler-desktop-transform);`,
|
|
21
|
+
"translate-center": styled.css`transform: translate(50%,50%);`
|
|
16
22
|
}, "", "", "@media (min-width:900px)"),
|
|
17
|
-
stylerDesktopTransformOrigin: new StylerProperty("styler-desktop-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"]), "", "", "@media (min-width:700px)"),
|
|
23
|
+
stylerDesktopTransformOrigin: new StylerProperty("styler-desktop-transform-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"]), "", "", "@media (min-width:700px)"),
|
|
18
24
|
stylerTabletTransform: new StylerProperty("styler-tablet-transform", {
|
|
19
|
-
custom: styled.css`transform: var(--styler-tablet-transform)
|
|
25
|
+
custom: styled.css`transform: var(--styler-tablet-transform);`,
|
|
26
|
+
"translate-center": styled.css`transform: translate(50%,50%);`
|
|
20
27
|
}, "", "", "@media (min-width:700px)"),
|
|
21
|
-
stylerTabletTransformOrigin: new StylerProperty("styler-tablet-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"]), "", "", "@media (min-width:700px)")
|
|
28
|
+
stylerTabletTransformOrigin: new StylerProperty("styler-tablet-transform-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"]), "", "", "@media (min-width:700px)")
|
|
22
29
|
});
|
|
23
30
|
}
|
|
24
31
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["styled","_webAtomsCoreDistStyleStyled","default","_Styler","StylerProperty","createSet","execute","_export","stylerTransform","
|
|
1
|
+
{"version":3,"names":["styled","_webAtomsCoreDistStyleStyled","default","_Styler","StylerProperty","createSet","execute","_export","stylerTransform","custom","css","stylerTransformOrigin","stylerDesktopTransform","stylerDesktopTransformOrigin","stylerTabletTransform","stylerTabletTransformOrigin"],"sources":["../../../../../src/site-editor/styler/properties/transform/stylerTransform.ts"],"sourcesContent":[null],"mappings":";;;;;;MAAOA,MAAM,GAAAC,4BAAA,CAAAC,OAAA;IAAA,aAAAC,OAAA;MACJC,cAAc,GAAAD,OAAA,CAAdC,cAAc;MAAgBC,SAAS,GAAAF,OAAA,CAATE,SAAS;IAAA;IAAAC,OAAA,WAAAA,CAAA;MAAAC,OAAA,oBAEnCC,eAAe,GAAG;QAE3BA,eAAe,EAAE,IAAIJ,cAAc,CAAC,kBAAkB,EAAE;UACpDK,MAAM,EAAET,MAAM,CAACU,GAAI,qCAAqC;UACxD,kBAAkB,EAAEV,MAAM,CAACU,GAAI;SAClC,CAAC;QAEFC,qBAAqB,EAAE,IAAIP,cAAc,CAAC,yBAAyB,EAC/DC,SAAS,CAAC,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EACpD,QAAQ,EAAE,KAAK,EACf,QAAQ,EACR,UAAU,EAAE,aAAa,EACzB,WAAW,EAAE,cAAc,CAC9B,CAAC,CACL;QAGDO,sBAAsB,EAAE,IAAIR,cAAc,CAAC,0BAA0B,EAAE;UACnEK,MAAM,EAAET,MAAM,CAACU,GAAI,6CAA6C;UAChE,kBAAkB,EAAEV,MAAM,CAACU,GAAI;SAClC,EAAE,EAAE,EAAE,EAAE,EAAE,0BAA0B,CAAC;QAEtCG,4BAA4B,EAAE,IAAIT,cAAc,CAAC,iCAAiC,EAC9EC,SAAS,CAAC,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EACpD,QAAQ,EAAE,KAAK,EACf,QAAQ,EACR,UAAU,EAAE,aAAa,EACzB,WAAW,EAAE,cAAc,CAC9B,CAAC,EACN,EAAE,EAAE,EAAE,EAAE,0BAA0B,CAAC;QAEnCS,qBAAqB,EAAE,IAAIV,cAAc,CAAC,yBAAyB,EAAE;UACjEK,MAAM,EAAET,MAAM,CAACU,GAAI,4CAA4C;UAC/D,kBAAkB,EAAEV,MAAM,CAACU,GAAI;SAClC,EAAE,EAAE,EAAE,EAAE,EAAE,0BAA0B,CAAC;QAEtCK,2BAA2B,EAAE,IAAIX,cAAc,CAAC,gCAAgC,EAC5EC,SAAS,CAAC,kBAAkB,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EACpD,QAAQ,EAAE,KAAK,EACf,QAAQ,EACR,UAAU,EAAE,aAAa,EACzB,WAAW,EAAE,cAAc,CAC9B,CAAC,EACN,EAAE,EAAE,EAAE,EAAE,0BAA0B;OAIrC;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -33059,14 +33059,21 @@ System.register(["@web-atoms/core/dist/style/styled", "../../Styler"], function
|
|
|
33059
33059
|
}],
|
|
33060
33060
|
execute: function () {
|
|
33061
33061
|
_export("stylerTransform", stylerTransform = {
|
|
33062
|
+
stylerTransform: new StylerProperty("styler-transform", {
|
|
33063
|
+
custom: styled.css`transform: var(--styler-transform);`,
|
|
33064
|
+
"translate-center": styled.css`transform: translate(50%,50%);`
|
|
33065
|
+
}),
|
|
33066
|
+
stylerTransformOrigin: new StylerProperty("styler-transform-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"])),
|
|
33062
33067
|
stylerDesktopTransform: new StylerProperty("styler-desktop-transform", {
|
|
33063
|
-
custom: styled.css`transform: var(--styler-desktop-transform)
|
|
33068
|
+
custom: styled.css`transform: var(--styler-desktop-transform);`,
|
|
33069
|
+
"translate-center": styled.css`transform: translate(50%,50%);`
|
|
33064
33070
|
}, "", "", "@media (min-width:900px)"),
|
|
33065
|
-
stylerDesktopTransformOrigin: new StylerProperty("styler-desktop-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"]), "", "", "@media (min-width:700px)"),
|
|
33071
|
+
stylerDesktopTransformOrigin: new StylerProperty("styler-desktop-transform-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"]), "", "", "@media (min-width:700px)"),
|
|
33066
33072
|
stylerTabletTransform: new StylerProperty("styler-tablet-transform", {
|
|
33067
|
-
custom: styled.css`transform: var(--styler-tablet-transform)
|
|
33073
|
+
custom: styled.css`transform: var(--styler-tablet-transform);`,
|
|
33074
|
+
"translate-center": styled.css`transform: translate(50%,50%);`
|
|
33068
33075
|
}, "", "", "@media (min-width:700px)"),
|
|
33069
|
-
stylerTabletTransformOrigin: new StylerProperty("styler-tablet-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"]), "", "", "@media (min-width:700px)")
|
|
33076
|
+
stylerTabletTransformOrigin: new StylerProperty("styler-tablet-transform-origin", createSet("transform-origin", ["custom", "left", "right", "center", "top", "bottom", "top left", "bottom left", "top right", "bottom right"]), "", "", "@media (min-width:700px)")
|
|
33070
33077
|
});
|
|
33071
33078
|
}
|
|
33072
33079
|
};
|