@onivoro/server-html 0.0.1 → 0.0.3
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/package.json +2 -6
- package/src/index.d.ts +7 -1
- package/src/index.js +7 -1
- package/src/index.js.map +1 -1
- package/src/lib/email-body.function.d.ts +1 -0
- package/src/lib/email-body.function.js +35 -0
- package/src/lib/email-body.function.js.map +1 -0
- package/src/lib/format-attributes.function.d.ts +1 -0
- package/src/lib/format-attributes.function.js +10 -0
- package/src/lib/format-attributes.function.js.map +1 -0
- package/src/lib/html-element-renderer.type.d.ts +1 -0
- package/src/lib/html-element-renderer.type.js +3 -0
- package/src/lib/html-element-renderer.type.js.map +1 -0
- package/src/lib/{style.function.js → inline-style.function.js} +1 -1
- package/src/lib/inline-style.function.js.map +1 -0
- package/src/lib/self-closing-html-element-renderer.type.d.ts +1 -0
- package/src/lib/self-closing-html-element-renderer.type.js +3 -0
- package/src/lib/self-closing-html-element-renderer.type.js.map +1 -0
- package/src/lib/self-closing-tag.function.d.ts +1 -0
- package/src/lib/self-closing-tag.function.js +9 -0
- package/src/lib/self-closing-tag.function.js.map +1 -0
- package/src/lib/tag.function.d.ts +1 -0
- package/src/lib/tag.function.js +13 -0
- package/src/lib/tag.function.js.map +1 -0
- package/src/lib/tags.d.ts +17 -13
- package/src/lib/tags.js +25 -32
- package/src/lib/tags.js.map +1 -1
- package/src/lib/style.function.js.map +0 -1
- /package/src/lib/{style.function.d.ts → inline-style.function.d.ts} +0 -0
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
export * from './lib/a.function';
|
|
2
|
+
export * from './lib/email-body.function';
|
|
3
|
+
export * from './lib/format-attributes.function';
|
|
4
|
+
export * from './lib/html-element-renderer.type';
|
|
2
5
|
export * from './lib/html.function';
|
|
6
|
+
export * from './lib/inline-style.function';
|
|
3
7
|
export * from './lib/login-button.function';
|
|
4
|
-
export * from './lib/
|
|
8
|
+
export * from './lib/self-closing-html-element-renderer.type';
|
|
9
|
+
export * from './lib/self-closing-tag.function';
|
|
5
10
|
export * from './lib/table.function';
|
|
11
|
+
export * from './lib/tag.function';
|
|
6
12
|
export * from './lib/tags';
|
package/src/index.js
CHANGED
|
@@ -2,9 +2,15 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
tslib_1.__exportStar(require("./lib/a.function"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./lib/email-body.function"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./lib/format-attributes.function"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./lib/html-element-renderer.type"), exports);
|
|
5
8
|
tslib_1.__exportStar(require("./lib/html.function"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./lib/inline-style.function"), exports);
|
|
6
10
|
tslib_1.__exportStar(require("./lib/login-button.function"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./lib/
|
|
11
|
+
tslib_1.__exportStar(require("./lib/self-closing-html-element-renderer.type"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./lib/self-closing-tag.function"), exports);
|
|
8
13
|
tslib_1.__exportStar(require("./lib/table.function"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./lib/tag.function"), exports);
|
|
9
15
|
tslib_1.__exportStar(require("./lib/tags"), exports);
|
|
10
16
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/server-html/src/index.ts"],"names":[],"mappings":";;;AAAA,2DAAiC;AACjC,8DAAoC;AACpC,sEAA4C;AAC5C
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/server-html/src/index.ts"],"names":[],"mappings":";;;AAAA,2DAAiC;AACjC,oEAA0C;AAC1C,2EAAiD;AACjD,2EAAiD;AACjD,8DAAoC;AACpC,sEAA4C;AAC5C,sEAA4C;AAC5C,wFAA8D;AAC9D,0EAAgD;AAChD,+DAAqC;AACrC,6DAAmC;AACnC,qDAA2B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function emailBody(title: string, subtitle: string, markup: Array<string | number>, logoUrl?: string, extraStyles?: string[]): string;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.emailBody = void 0;
|
|
4
|
+
const tags_1 = require("./tags");
|
|
5
|
+
function emailBody(title, subtitle, markup, logoUrl, extraStyles = []) {
|
|
6
|
+
const bodyClass = 'onivoro-email-body';
|
|
7
|
+
return (0, tags_1.div)([
|
|
8
|
+
(0, tags_1.div)([
|
|
9
|
+
(0, tags_1.style)([
|
|
10
|
+
`.${bodyClass} {`,
|
|
11
|
+
`font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;`,
|
|
12
|
+
`font-size: 1rem;`,
|
|
13
|
+
`-webkit-font-smoothing: antialiased;`,
|
|
14
|
+
`-moz-osx-font-smoothing: grayscale;`,
|
|
15
|
+
'color: rgba(0, 0, 0, 0.6) !important;',
|
|
16
|
+
...extraStyles,
|
|
17
|
+
'}',
|
|
18
|
+
]),
|
|
19
|
+
]),
|
|
20
|
+
(0, tags_1.div)([
|
|
21
|
+
(0, tags_1.div)([
|
|
22
|
+
(0, tags_1.div)([
|
|
23
|
+
logoUrl
|
|
24
|
+
? `<img height="64" width="auto" src="${logoUrl}" />`
|
|
25
|
+
: undefined,
|
|
26
|
+
title ? (0, tags_1.h1)([title]) : undefined,
|
|
27
|
+
subtitle ? (0, tags_1.h2)([subtitle]) : undefined,
|
|
28
|
+
].filter(Boolean)),
|
|
29
|
+
(0, tags_1.main)(markup),
|
|
30
|
+
], bodyClass),
|
|
31
|
+
]),
|
|
32
|
+
]);
|
|
33
|
+
}
|
|
34
|
+
exports.emailBody = emailBody;
|
|
35
|
+
//# sourceMappingURL=email-body.function.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"email-body.function.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/email-body.function.ts"],"names":[],"mappings":";;;AAAA,iCAAkD;AAElD,SAAgB,SAAS,CACvB,KAAa,EACb,QAAgB,EAChB,MAA8B,EAC9B,OAAgB,EAChB,cAAwB,EAAE;IAE1B,MAAM,SAAS,GAAG,oBAAoB,CAAC;IACvC,OAAO,IAAA,UAAG,EAAC;QACT,IAAA,UAAG,EAAC;YACF,IAAA,YAAK,EAAC;gBACJ,IAAI,SAAS,IAAI;gBACjB,wKAAwK;gBACxK,kBAAkB;gBAClB,sCAAsC;gBACtC,qCAAqC;gBACrC,uCAAuC;gBACvC,GAAG,WAAW;gBACd,GAAG;aACJ,CAAC;SACH,CAAC;QACF,IAAA,UAAG,EAAC;YACF,IAAA,UAAG,EAAC;gBACF,IAAA,UAAG,EACD;oBACE,OAAO;wBACL,CAAC,CAAC,sCAAsC,OAAO,MAAM;wBACrD,CAAC,CAAC,SAAS;oBACb,KAAK,CAAC,CAAC,CAAC,IAAA,SAAE,EAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS;oBAC/B,QAAQ,CAAC,CAAC,CAAC,IAAA,SAAE,EAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS;iBACtC,CAAC,MAAM,CAAC,OAAO,CAAC,CAClB;gBACD,IAAA,WAAI,EAAC,MAAM,CAAC;aACb,EAAE,SAAS,CAAC;SACd,CAAC;KACH,CAAC,CAAC;AACL,CAAC;AApCD,8BAoCC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function formatAttributes(attributes: Record<string, any>): string;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.formatAttributes = void 0;
|
|
4
|
+
function formatAttributes(attributes) {
|
|
5
|
+
return Object.entries(attributes)
|
|
6
|
+
.map(([k, v]) => `${k}="${v}"`)
|
|
7
|
+
.join(' ');
|
|
8
|
+
}
|
|
9
|
+
exports.formatAttributes = formatAttributes;
|
|
10
|
+
//# sourceMappingURL=format-attributes.function.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"format-attributes.function.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/format-attributes.function.ts"],"names":[],"mappings":";;;AAAA,SAAgB,gBAAgB,CAAC,UAA+B;IAC5D,OAAO,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC;SAC5B,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC;SAC9B,IAAI,CAAC,GAAG,CAAC,CAAC;AACnB,CAAC;AAJD,4CAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type THtmlElementRenderer = (content: Array<string | number>, cssClass?: string, attributes?: Record<string, any>, styles?: Record<string, string>) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"html-element-renderer.type.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/html-element-renderer.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inline-style.function.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/inline-style.function.ts"],"names":[],"mappings":";;;AAAA,SAAgB,WAAW,CAAC,MAA8B;IACxD,MAAM,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC;SACjC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC;SAC9B,IAAI,CAAC,GAAG,CAAC,CAAC;IACb,OAAO,UAAU,KAAK,GAAG,CAAC;AAC5B,CAAC;AALD,kCAKC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type TSelfClosingHtmlElementRenderer = (cssClass?: string, attributes?: Record<string, any>, styles?: Record<string, string>) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"self-closing-html-element-renderer.type.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/self-closing-html-element-renderer.type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function selfClosingTag(tag: string, cssClass?: string, attributes?: Record<string, any>, styles?: Record<string, string>): string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.selfClosingTag = void 0;
|
|
4
|
+
const tag_function_1 = require("./tag.function");
|
|
5
|
+
function selfClosingTag(tag, cssClass, attributes, styles) {
|
|
6
|
+
return (0, tag_function_1.tag)(tag, [], cssClass, attributes, styles).replace(`></${tag}>`, '/>');
|
|
7
|
+
}
|
|
8
|
+
exports.selfClosingTag = selfClosingTag;
|
|
9
|
+
//# sourceMappingURL=self-closing-tag.function.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"self-closing-tag.function.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/self-closing-tag.function.ts"],"names":[],"mappings":";;;AAAA,iDAAoD;AAEpD,SAAgB,cAAc,CAC1B,GAAW,EACX,QAAiB,EACjB,UAAgC,EAChC,MAA+B;IAE/B,OAAO,IAAA,kBAAW,EACd,GAAG,EACH,EAAE,EACF,QAAQ,EACR,UAAU,EACV,MAAM,CACT,CAAC,OAAO,CAAC,MAAM,GAAG,GAAG,EAAE,IAAI,CAAC,CAAA;AACjC,CAAC;AAbD,wCAaC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function tag(tag: string, content: Array<string | number>, cssClass?: string, attributes?: Record<string, any>, styles?: Record<string, string>): string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.tag = void 0;
|
|
4
|
+
const format_attributes_function_1 = require("./format-attributes.function");
|
|
5
|
+
const inline_style_function_1 = require("./inline-style.function");
|
|
6
|
+
function tag(tag, content, cssClass, attributes, styles) {
|
|
7
|
+
const classExp = cssClass ? ` class="${cssClass}"` : '';
|
|
8
|
+
const attributesExp = attributes ? ` ${(0, format_attributes_function_1.formatAttributes)(attributes)}` : '';
|
|
9
|
+
const styleExp = styles ? ` ${(0, inline_style_function_1.inlineStyle)(styles)}` : '';
|
|
10
|
+
return `<${tag}${classExp}${attributesExp}${styleExp}>${content.join?.('')}</${tag}>`;
|
|
11
|
+
}
|
|
12
|
+
exports.tag = tag;
|
|
13
|
+
//# sourceMappingURL=tag.function.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tag.function.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/tag.function.ts"],"names":[],"mappings":";;;AAAA,6EAAgE;AAChE,mEAAsD;AAEtD,SAAgB,GAAG,CACf,GAAW,EACX,OAA+B,EAC/B,QAAiB,EACjB,UAAgC,EAChC,MAA+B;IAE/B,MAAM,QAAQ,GAAG,QAAQ,CAAC,CAAC,CAAC,WAAW,QAAQ,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC;IACxD,MAAM,aAAa,GAAG,UAAU,CAAC,CAAC,CAAC,IAAI,IAAA,6CAAgB,EAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IAC3E,MAAM,QAAQ,GAAG,MAAM,CAAC,CAAC,CAAC,IAAI,IAAA,mCAAW,EAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;IAEzD,OAAO,IAAI,GAAG,GAAG,QAAQ,GAAG,aAAa,GAAG,QAAQ,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,KAAK,GAAG,GAAG,CAAC;AAC1F,CAAC;AAZD,kBAYC"}
|
package/src/lib/tags.d.ts
CHANGED
|
@@ -1,20 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export declare
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const pre: THtmlElementRenderer;
|
|
6
|
-
export declare const td: THtmlElementRenderer;
|
|
1
|
+
import { THtmlElementRenderer } from "./html-element-renderer.type";
|
|
2
|
+
import { TSelfClosingHtmlElementRenderer } from "./self-closing-html-element-renderer.type";
|
|
3
|
+
export declare const body: THtmlElementRenderer;
|
|
4
|
+
export declare const div: THtmlElementRenderer;
|
|
7
5
|
export declare const h1: THtmlElementRenderer;
|
|
8
6
|
export declare const h2: THtmlElementRenderer;
|
|
9
7
|
export declare const h3: THtmlElementRenderer;
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const tbody: THtmlElementRenderer;
|
|
14
|
-
export declare const tab: THtmlElementRenderer;
|
|
15
|
-
export declare const htm: THtmlElementRenderer;
|
|
8
|
+
export declare const h4: THtmlElementRenderer;
|
|
9
|
+
export declare const h5: THtmlElementRenderer;
|
|
10
|
+
export declare const h6: THtmlElementRenderer;
|
|
16
11
|
export declare const head: THtmlElementRenderer;
|
|
17
12
|
export declare const header: THtmlElementRenderer;
|
|
13
|
+
export declare const htm: THtmlElementRenderer;
|
|
14
|
+
export declare const img: TSelfClosingHtmlElementRenderer;
|
|
18
15
|
export declare const main: THtmlElementRenderer;
|
|
19
|
-
export declare const
|
|
16
|
+
export declare const p: THtmlElementRenderer;
|
|
17
|
+
export declare const pre: THtmlElementRenderer;
|
|
18
|
+
export declare const tab: THtmlElementRenderer;
|
|
19
|
+
export declare const tbody: THtmlElementRenderer;
|
|
20
|
+
export declare const td: THtmlElementRenderer;
|
|
21
|
+
export declare const th: THtmlElementRenderer;
|
|
22
|
+
export declare const thead: THtmlElementRenderer;
|
|
23
|
+
export declare const tr: THtmlElementRenderer;
|
|
20
24
|
export declare const style: any;
|
package/src/lib/tags.js
CHANGED
|
@@ -1,35 +1,28 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.style = exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
exports.
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
exports.
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.
|
|
23
|
-
exports.
|
|
24
|
-
exports.
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.tab = tag.bind(null, 'table');
|
|
29
|
-
exports.htm = tag.bind(null, 'html');
|
|
30
|
-
exports.head = tag.bind(null, 'head');
|
|
31
|
-
exports.header = tag.bind(null, 'header');
|
|
32
|
-
exports.main = tag.bind(null, 'main');
|
|
33
|
-
exports.body = tag.bind(null, 'body');
|
|
34
|
-
exports.style = tag.bind(null, 'style');
|
|
3
|
+
exports.style = exports.tr = exports.thead = exports.th = exports.td = exports.tbody = exports.tab = exports.pre = exports.p = exports.main = exports.img = exports.htm = exports.header = exports.head = exports.h6 = exports.h5 = exports.h4 = exports.h3 = exports.h2 = exports.h1 = exports.div = exports.body = void 0;
|
|
4
|
+
const self_closing_tag_function_1 = require("./self-closing-tag.function");
|
|
5
|
+
const tag_function_1 = require("./tag.function");
|
|
6
|
+
exports.body = tag_function_1.tag.bind(null, 'body');
|
|
7
|
+
exports.div = tag_function_1.tag.bind(null, 'div');
|
|
8
|
+
exports.h1 = tag_function_1.tag.bind(null, 'h1');
|
|
9
|
+
exports.h2 = tag_function_1.tag.bind(null, 'h2');
|
|
10
|
+
exports.h3 = tag_function_1.tag.bind(null, 'h3');
|
|
11
|
+
exports.h4 = tag_function_1.tag.bind(null, 'h4');
|
|
12
|
+
exports.h5 = tag_function_1.tag.bind(null, 'h5');
|
|
13
|
+
exports.h6 = tag_function_1.tag.bind(null, 'h6');
|
|
14
|
+
exports.head = tag_function_1.tag.bind(null, 'head');
|
|
15
|
+
exports.header = tag_function_1.tag.bind(null, 'header');
|
|
16
|
+
exports.htm = tag_function_1.tag.bind(null, 'html');
|
|
17
|
+
exports.img = self_closing_tag_function_1.selfClosingTag.bind(null, 'img');
|
|
18
|
+
exports.main = tag_function_1.tag.bind(null, 'main');
|
|
19
|
+
exports.p = tag_function_1.tag.bind(null, 'p');
|
|
20
|
+
exports.pre = tag_function_1.tag.bind(null, 'pre');
|
|
21
|
+
exports.tab = tag_function_1.tag.bind(null, 'table');
|
|
22
|
+
exports.tbody = tag_function_1.tag.bind(null, 'tbody');
|
|
23
|
+
exports.td = tag_function_1.tag.bind(null, 'td');
|
|
24
|
+
exports.th = tag_function_1.tag.bind(null, 'th');
|
|
25
|
+
exports.thead = tag_function_1.tag.bind(null, 'thead');
|
|
26
|
+
exports.tr = tag_function_1.tag.bind(null, 'tr');
|
|
27
|
+
exports.style = tag_function_1.tag.bind(null, 'style');
|
|
35
28
|
//# sourceMappingURL=tags.js.map
|
package/src/lib/tags.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tags.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/tags.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"tags.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/tags.ts"],"names":[],"mappings":";;;AAEA,2EAA6D;AAC7D,iDAAqC;AAExB,QAAA,IAAI,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;AACpD,QAAA,GAAG,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClD,QAAA,EAAE,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,QAAA,EAAE,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,QAAA,EAAE,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,QAAA,EAAE,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,QAAA,EAAE,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,QAAA,EAAE,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,QAAA,IAAI,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;AACpD,QAAA,MAAM,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;AACxD,QAAA,GAAG,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;AACnD,QAAA,GAAG,GAAoC,0CAAc,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxE,QAAA,IAAI,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;AACpD,QAAA,CAAC,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;AAC9C,QAAA,GAAG,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClD,QAAA,GAAG,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AACpD,QAAA,KAAK,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AACtD,QAAA,EAAE,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,QAAA,EAAE,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAChD,QAAA,KAAK,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AACtD,QAAA,EAAE,GAAyB,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;AAEhD,QAAA,KAAK,GAAG,kBAAG,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"style.function.js","sourceRoot":"","sources":["../../../../../libs/server-html/src/lib/style.function.ts"],"names":[],"mappings":";;;AAAA,SAAgB,WAAW,CAAC,MAA8B;IACxD,MAAM,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC;SACjC,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC;SAC9B,IAAI,CAAC,GAAG,CAAC,CAAC;IACb,OAAO,UAAU,KAAK,GAAG,CAAC;AAC5B,CAAC;AALD,kCAKC"}
|
|
File without changes
|