@social-mail/social-mail-client 1.8.75 → 1.8.76
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/suggestions/editorSuggestions.d.ts +8 -1
- package/dist/site-editor/suggestions/editorSuggestions.d.ts.map +1 -1
- package/dist/site-editor/suggestions/properties/border.d.ts +8 -1
- package/dist/site-editor/suggestions/properties/border.d.ts.map +1 -1
- package/dist/site-editor/suggestions/properties/border.js +8 -4
- package/dist/site-editor/suggestions/properties/border.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +8 -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/suggestions/properties/border.ts +21 -2
- package/styler-lite/styler.css +1 -1
- package/styler-lite/styler.css.map +1 -1
- package/styler-lite/styles/properties/border/border.css +0 -3
|
@@ -496,7 +496,14 @@ export declare const editorSuggestions: {
|
|
|
496
496
|
label: string;
|
|
497
497
|
value: string;
|
|
498
498
|
}[];
|
|
499
|
-
"styler-border": string
|
|
499
|
+
"styler-border": (string | {
|
|
500
|
+
label: string;
|
|
501
|
+
value: string;
|
|
502
|
+
})[];
|
|
503
|
+
"styler-border-style": {
|
|
504
|
+
label: string;
|
|
505
|
+
value: string;
|
|
506
|
+
}[];
|
|
500
507
|
"styler-border-width": {
|
|
501
508
|
label: string;
|
|
502
509
|
value: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"editorSuggestions.d.ts","sourceRoot":"","sources":["../../../src/site-editor/suggestions/editorSuggestions.ts"],"names":[],"mappings":"AAmBA,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"editorSuggestions.d.ts","sourceRoot":"","sources":["../../../src/site-editor/suggestions/editorSuggestions.ts"],"names":[],"mappings":"AAmBA,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoB7B,CAAC"}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
export declare const borderProperties: {
|
|
2
|
-
"styler-border": string
|
|
2
|
+
"styler-border": (string | {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
})[];
|
|
6
|
+
"styler-border-style": {
|
|
7
|
+
label: string;
|
|
8
|
+
value: string;
|
|
9
|
+
}[];
|
|
3
10
|
"styler-border-width": {
|
|
4
11
|
label: string;
|
|
5
12
|
value: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"border.d.ts","sourceRoot":"","sources":["../../../../src/site-editor/suggestions/properties/border.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"border.d.ts","sourceRoot":"","sources":["../../../../src/site-editor/suggestions/properties/border.ts"],"names":[],"mappings":"AA2BA,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;CAQ5B,CAAC"}
|
|
@@ -1,17 +1,21 @@
|
|
|
1
|
-
System.register(["./color", "./size"], function (_export, _context) {
|
|
1
|
+
System.register(["../pair", "./color", "./size"], function (_export, _context) {
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
|
-
var colors, sizes, border, borderProperties;
|
|
4
|
+
var pair, colors, sizes, border, borderStyle, borderProperties;
|
|
5
5
|
return {
|
|
6
|
-
setters: [function (
|
|
6
|
+
setters: [function (_pair) {
|
|
7
|
+
pair = _pair.default;
|
|
8
|
+
}, function (_color) {
|
|
7
9
|
colors = _color.colors;
|
|
8
10
|
}, function (_size) {
|
|
9
11
|
sizes = _size.sizes;
|
|
10
12
|
}],
|
|
11
13
|
execute: function () {
|
|
12
|
-
border = ["none", "
|
|
14
|
+
border = ["none", pair("solid", `solid var(--border-width, 1px) var(--border-color, lightgray)`)];
|
|
15
|
+
borderStyle = pair.from(["inherit", "initial", "unset", "none", "hidden", "revert", "revert-layer", "solid", "dotted", "dashed", "double", "groove", "ridge", "inset", "outset"]);
|
|
13
16
|
_export("borderProperties", borderProperties = {
|
|
14
17
|
"styler-border": border,
|
|
18
|
+
"styler-border-style": borderStyle,
|
|
15
19
|
"styler-border-width": sizes,
|
|
16
20
|
"styler-border-radius": sizes,
|
|
17
21
|
"styler-border-color": colors,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["pair","_pair","default","_color","colors","_size","sizes","execute","border","borderStyle","from","_export","borderProperties"],"sources":["../../../../src/site-editor/suggestions/properties/border.ts"],"sourcesContent":[null],"mappings":";;;;;;MAAOA,IAAI,GAAAC,KAAA,CAAAC,OAAA;IAAA,aAAAC,MAAA;MACFC,MAAM,GAAAD,MAAA,CAANC,MAAM;IAAA,aAAAC,KAAA;MACNC,KAAK,GAAAD,KAAA,CAALC,KAAK;IAAA;IAAAC,OAAA,WAAAA,CAAA;MAERC,MAAM,GAAG,CACX,MAAM,EACNR,IAAI,CAAC,OAAO,EAAE,+DAA+D,CAAC,CACjF;MAEKS,WAAW,GAAGT,IAAI,CAACU,IAAI,CAAC,CAC1B,SAAS,EACT,SAAS,EACT,OAAO,EACP,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,cAAc,EACd,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,OAAO,EACP,QAAQ,CACX,CAAC;MAAAC,OAAA,qBAEWC,gBAAgB,GAAG;QAE5B,eAAe,EAAEJ,MAAM;QACvB,qBAAqB,EAAEC,WAAW;QAClC,qBAAqB,EAAEH,KAAK;QAC5B,sBAAsB,EAAEA,KAAK;QAC7B,qBAAqB,EAAEF,MAAM;QAC7B,2BAA2B,EAAEA;OAChC;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -34970,20 +34970,24 @@ System.register(["../pair", "./color", "./size"], function (_export, _context) {
|
|
|
34970
34970
|
|
|
34971
34971
|
AmdLoader.instance.setup("@social-mail/social-mail-client/dist/site-editor/suggestions/properties/border");
|
|
34972
34972
|
|
|
34973
|
-
System.register(["./color", "./size"], function (_export, _context) {
|
|
34973
|
+
System.register(["../pair", "./color", "./size"], function (_export, _context) {
|
|
34974
34974
|
"use strict";
|
|
34975
34975
|
|
|
34976
|
-
var colors, sizes, border, borderProperties;
|
|
34976
|
+
var pair, colors, sizes, border, borderStyle, borderProperties;
|
|
34977
34977
|
return {
|
|
34978
|
-
setters: [function (
|
|
34978
|
+
setters: [function (_pair) {
|
|
34979
|
+
pair = _pair.default;
|
|
34980
|
+
}, function (_color) {
|
|
34979
34981
|
colors = _color.colors;
|
|
34980
34982
|
}, function (_size) {
|
|
34981
34983
|
sizes = _size.sizes;
|
|
34982
34984
|
}],
|
|
34983
34985
|
execute: function () {
|
|
34984
|
-
border = ["none", "
|
|
34986
|
+
border = ["none", pair("solid", `solid var(--border-width, 1px) var(--border-color, lightgray)`)];
|
|
34987
|
+
borderStyle = pair.from(["inherit", "initial", "unset", "none", "hidden", "revert", "revert-layer", "solid", "dotted", "dashed", "double", "groove", "ridge", "inset", "outset"]);
|
|
34985
34988
|
_export("borderProperties", borderProperties = {
|
|
34986
34989
|
"styler-border": border,
|
|
34990
|
+
"styler-border-style": borderStyle,
|
|
34987
34991
|
"styler-border-width": sizes,
|
|
34988
34992
|
"styler-border-radius": sizes,
|
|
34989
34993
|
"styler-border-color": colors,
|