nightingale-html-formatter 11.7.1 → 12.0.1
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/.eslintrc.json +1 -1
- package/CHANGELOG.md +45 -0
- package/dist/index-browser.cjs.js +4 -4
- package/dist/index-browser.cjs.js.map +1 -1
- package/dist/index-browser.es.js +5 -6
- package/dist/index-browser.es.js.map +1 -1
- package/dist/index-browsermodern.es.js +3 -4
- package/dist/index-browsermodern.es.js.map +1 -1
- package/dist/{index-node12.cjs.js → index-node14.cjs.js} +3 -3
- package/dist/index-node14.cjs.js.map +1 -0
- package/dist/{index-node12-dev.mjs → index-node14.mjs} +4 -5
- package/dist/index-node14.mjs.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/package.json +19 -71
- package/rollup.config.mjs +3 -0
- package/src/index.test.ts +1 -1
- package/src/index.ts +5 -2
- package/dist/index-browser-dev.cjs.js +0 -27
- package/dist/index-browser-dev.cjs.js.map +0 -1
- package/dist/index-browser-dev.es.js +0 -23
- package/dist/index-browser-dev.es.js.map +0 -1
- package/dist/index-browsermodern-dev.es.js +0 -21
- package/dist/index-browsermodern-dev.es.js.map +0 -1
- package/dist/index-node12-dev.cjs.js +0 -25
- package/dist/index-node12-dev.cjs.js.map +0 -1
- package/dist/index-node12-dev.mjs.map +0 -1
- package/dist/index-node12.cjs.js.map +0 -1
- package/dist/index-node12.mjs +0 -21
- package/dist/index-node12.mjs.map +0 -1
- package/index.js +0 -6
package/.eslintrc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,51 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [12.0.1](https://github.com/christophehurpeau/nightingale/compare/v12.0.0...v12.0.1) (2021-12-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package nightingale-html-formatter
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [12.0.0](https://github.com/christophehurpeau/nightingale/compare/v11.9.0...v12.0.0) (2021-12-11)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **nightingale-html-formatter:** use html light theme ([821cc7e](https://github.com/christophehurpeau/nightingale/commit/821cc7e05050b4a8fa48b555288518d4d12abee1))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Build System
|
|
23
|
+
|
|
24
|
+
* node 14 and remove dev builds ([432ecd1](https://github.com/christophehurpeau/nightingale/commit/432ecd1faafd0419f57dea00fce560e4cccc207f))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### BREAKING CHANGES
|
|
28
|
+
|
|
29
|
+
* requires node 14
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## [11.7.4](https://github.com/christophehurpeau/nightingale/compare/v11.7.3...v11.7.4) (2021-11-27)
|
|
36
|
+
|
|
37
|
+
**Note:** Version bump only for package nightingale-html-formatter
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
## [11.7.2](https://github.com/christophehurpeau/nightingale/compare/v11.7.1...v11.7.2) (2021-11-27)
|
|
44
|
+
|
|
45
|
+
**Note:** Version bump only for package nightingale-html-formatter
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
6
51
|
## [11.7.1](https://github.com/christophehurpeau/nightingale/compare/v11.7.0...v11.7.1) (2021-06-29)
|
|
7
52
|
|
|
8
53
|
|
|
@@ -9,9 +9,9 @@ function style(styles, string) {
|
|
|
9
9
|
return string;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
return
|
|
13
|
-
return nightingaleFormatter.
|
|
14
|
-
}).join('; ')
|
|
12
|
+
return `<span style="${styles.map(function (styleName) {
|
|
13
|
+
return nightingaleFormatter.styleToHtmlStyleThemeLight[styleName].open;
|
|
14
|
+
}).join('; ')}">${string}</span>`;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* @param {Object} record
|
|
@@ -22,6 +22,6 @@ function format(record) {
|
|
|
22
22
|
return nightingaleFormatter.formatRecordToString(record, style);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
exports
|
|
25
|
+
exports["default"] = format;
|
|
26
26
|
exports.style = style;
|
|
27
27
|
//# sourceMappingURL=index-browser.cjs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-browser.cjs.js","sources":["../src/index.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"index-browser.cjs.js","sources":["../src/index.ts"],"sourcesContent":["import {\n formatRecordToString,\n styleToHtmlStyleThemeLight,\n} from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyleThemeLight","open","join","format","record","formatRecordToString"],"mappings":";;;;;;AAMO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CAChB,UAACC,SAAD;AAAA,WAAuBC,+CAA0B,CAACD,SAAD,CAA1B,CAAsCE,IAA7D;AAAA,GADgB,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,yCAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|
package/dist/index-browser.es.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { formatRecordToString,
|
|
1
|
+
import { formatRecordToString, styleToHtmlStyleThemeLight } from 'nightingale-formatter';
|
|
2
2
|
|
|
3
3
|
function style(styles, string) {
|
|
4
4
|
if (!styles || styles.length === 0 || !string) {
|
|
5
5
|
return string;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
return
|
|
9
|
-
return
|
|
10
|
-
}).join('; ')
|
|
8
|
+
return `<span style="${styles.map(function (styleName) {
|
|
9
|
+
return styleToHtmlStyleThemeLight[styleName].open;
|
|
10
|
+
}).join('; ')}">${string}</span>`;
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* @param {Object} record
|
|
@@ -18,6 +18,5 @@ function format(record) {
|
|
|
18
18
|
return formatRecordToString(record, style);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
export default
|
|
22
|
-
export { style };
|
|
21
|
+
export { format as default, style };
|
|
23
22
|
//# sourceMappingURL=index-browser.es.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-browser.es.js","sources":["../src/index.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"index-browser.es.js","sources":["../src/index.ts"],"sourcesContent":["import {\n formatRecordToString,\n styleToHtmlStyleThemeLight,\n} from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyleThemeLight","open","join","format","record","formatRecordToString"],"mappings":";;AAMO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CAChB,UAACC,SAAD;AAAA,WAAuBC,0BAA0B,CAACD,SAAD,CAA1B,CAAsCE,IAA7D;AAAA,GADgB,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,oBAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { formatRecordToString,
|
|
1
|
+
import { formatRecordToString, styleToHtmlStyleThemeLight } from 'nightingale-formatter';
|
|
2
2
|
|
|
3
3
|
function style(styles, string) {
|
|
4
4
|
if (!styles || styles.length === 0 || !string) {
|
|
5
5
|
return string;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
return `<span style="${styles.map(styleName =>
|
|
8
|
+
return `<span style="${styles.map(styleName => styleToHtmlStyleThemeLight[styleName].open).join('; ')}">${string}</span>`;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* @param {Object} record
|
|
@@ -16,6 +16,5 @@ function format(record) {
|
|
|
16
16
|
return formatRecordToString(record, style);
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
export default
|
|
20
|
-
export { style };
|
|
19
|
+
export { format as default, style };
|
|
21
20
|
//# sourceMappingURL=index-browsermodern.es.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-browsermodern.es.js","sources":["../src/index.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"index-browsermodern.es.js","sources":["../src/index.ts"],"sourcesContent":["import {\n formatRecordToString,\n styleToHtmlStyleThemeLight,\n} from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyleThemeLight","open","join","format","record","formatRecordToString"],"mappings":";;AAMO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CACfC,SAAD,IAAuBC,0BAA0B,CAACD,SAAD,CAA1B,CAAsCE,IAD7C,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,oBAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;"}
|
|
@@ -9,7 +9,7 @@ function style(styles, string) {
|
|
|
9
9
|
return string;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
return `<span style="${styles.map(styleName => nightingaleFormatter.
|
|
12
|
+
return `<span style="${styles.map(styleName => nightingaleFormatter.styleToHtmlStyleThemeLight[styleName].open).join('; ')}">${string}</span>`;
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
15
|
* @param {Object} record
|
|
@@ -20,6 +20,6 @@ function format(record) {
|
|
|
20
20
|
return nightingaleFormatter.formatRecordToString(record, style);
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
exports
|
|
23
|
+
exports["default"] = format;
|
|
24
24
|
exports.style = style;
|
|
25
|
-
//# sourceMappingURL=index-
|
|
25
|
+
//# sourceMappingURL=index-node14.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-node14.cjs.js","sources":["../src/index.ts"],"sourcesContent":["import {\n formatRecordToString,\n styleToHtmlStyleThemeLight,\n} from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyleThemeLight","open","join","format","record","formatRecordToString"],"mappings":";;;;;;AAMO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CACfC,SAAD,IAAuBC,+CAA0B,CAACD,SAAD,CAA1B,CAAsCE,IAD7C,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,yCAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { formatRecordToString,
|
|
1
|
+
import { formatRecordToString, styleToHtmlStyleThemeLight } from 'nightingale-formatter';
|
|
2
2
|
|
|
3
3
|
function style(styles, string) {
|
|
4
4
|
if (!styles || styles.length === 0 || !string) {
|
|
5
5
|
return string;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
return `<span style="${styles.map(styleName =>
|
|
8
|
+
return `<span style="${styles.map(styleName => styleToHtmlStyleThemeLight[styleName].open).join('; ')}">${string}</span>`;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* @param {Object} record
|
|
@@ -16,6 +16,5 @@ function format(record) {
|
|
|
16
16
|
return formatRecordToString(record, style);
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
export default
|
|
20
|
-
|
|
21
|
-
//# sourceMappingURL=index-node12-dev.mjs.map
|
|
19
|
+
export { format as default, style };
|
|
20
|
+
//# sourceMappingURL=index-node14.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-node14.mjs","sources":["../src/index.ts"],"sourcesContent":["import {\n formatRecordToString,\n styleToHtmlStyleThemeLight,\n} from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyleThemeLight","open","join","format","record","formatRecordToString"],"mappings":";;AAMO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CACfC,SAAD,IAAuBC,0BAA0B,CAACD,SAAD,CAA1B,CAAsCE,IAD7C,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,oBAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;"}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAErE,wBAAgB,KAAK,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAQ5D;AAED;;;GAGG;AACH,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,CAAC,SAAS,QAAQ,EAC/C,MAAM,EAAE,SAAS,CAAC,CAAC,CAAC,GACnB,MAAM,CAER"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nightingale-html-formatter",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.1",
|
|
4
4
|
"description": "Nightingale HTML formatter",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nightingale",
|
|
@@ -14,8 +14,9 @@
|
|
|
14
14
|
"directory": "packages/nightingale-html-formatter"
|
|
15
15
|
},
|
|
16
16
|
"homepage": "https://github.com/christophehurpeau/nightingale",
|
|
17
|
+
"type": "commonjs",
|
|
17
18
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
19
|
+
"node": "^14.13.1 || >=16.0.0"
|
|
19
20
|
},
|
|
20
21
|
"browserslist": [
|
|
21
22
|
"defaults",
|
|
@@ -24,52 +25,35 @@
|
|
|
24
25
|
"not safari < 10",
|
|
25
26
|
"not ios_saf < 10"
|
|
26
27
|
],
|
|
27
|
-
"main": "./index.js",
|
|
28
|
+
"main": "./dist/index-node14.cjs.js",
|
|
28
29
|
"types": "./dist/index.d.ts",
|
|
29
30
|
"module": "./dist/index-browser.es.js",
|
|
30
31
|
"browser": "./dist/index-browser.es.js",
|
|
31
32
|
"exports": {
|
|
33
|
+
"./package.json": "./package.json",
|
|
32
34
|
".": {
|
|
33
35
|
"node": {
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
"require": "./dist/index-node12-dev.cjs.js"
|
|
37
|
-
},
|
|
38
|
-
"import": "./dist/index-node12.mjs",
|
|
39
|
-
"require": "./dist/index-node12.cjs.js"
|
|
36
|
+
"import": "./dist/index-node14.mjs",
|
|
37
|
+
"require": "./dist/index-node14.cjs.js"
|
|
40
38
|
},
|
|
41
39
|
"browser": {
|
|
42
40
|
"browser:modern": {
|
|
43
|
-
"development": {
|
|
44
|
-
"import": "./dist/index-browsermodern-dev.es.js"
|
|
45
|
-
},
|
|
46
41
|
"import": "./dist/index-browsermodern.es.js"
|
|
47
42
|
},
|
|
48
|
-
"development": {
|
|
49
|
-
"import": "./dist/index-browser-dev.es.js",
|
|
50
|
-
"require": "./dist/index-browser-dev.cjs.js"
|
|
51
|
-
},
|
|
52
43
|
"import": "./dist/index-browser.es.js",
|
|
53
44
|
"require": "./dist/index-browser.cjs.js"
|
|
54
45
|
}
|
|
55
46
|
}
|
|
56
47
|
},
|
|
57
|
-
"module:node": "./dist/index-
|
|
58
|
-
"module:node-dev": "./dist/index-node12-dev.mjs",
|
|
59
|
-
"module:browser": "./dist/index-browser.es.js",
|
|
60
|
-
"module:browser-dev": "./dist/index-browser-dev.es.js",
|
|
48
|
+
"module:node": "./dist/index-node14.mjs",
|
|
61
49
|
"module:modern-browsers": "./dist/index-browsermodern.es.js",
|
|
62
|
-
"module:modern-browsers-dev": "./dist/index-browsermodern-dev.es.js",
|
|
63
50
|
"sideEffects": false,
|
|
64
51
|
"scripts": {
|
|
65
52
|
"build": "pob-build && yarn run build:definitions",
|
|
66
53
|
"build:definitions": "tsc -p tsconfig.build.json",
|
|
67
|
-
"clean": "rm -Rf
|
|
68
|
-
"generate:test-coverage": "rm -Rf docs/coverage/ ; NODE_ENV=production BABEL_ENV=test jest --coverage --coverageReporters=pob-lcov-reporter --coverageDirectory=docs/coverage/",
|
|
54
|
+
"clean": "rm -Rf dist",
|
|
69
55
|
"lint": "yarn run lint:eslint",
|
|
70
|
-
"lint:eslint": "
|
|
71
|
-
"test": "jest",
|
|
72
|
-
"test:watch": "jest",
|
|
56
|
+
"lint:eslint": "cd ../.. && yarn run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/nightingale-html-formatter",
|
|
73
57
|
"watch": "pob-watch"
|
|
74
58
|
},
|
|
75
59
|
"prettier": {
|
|
@@ -77,30 +61,11 @@
|
|
|
77
61
|
"singleQuote": true,
|
|
78
62
|
"arrowParens": "always"
|
|
79
63
|
},
|
|
80
|
-
"jest": {
|
|
81
|
-
"cacheDirectory": "./node_modules/.cache/jest",
|
|
82
|
-
"testMatch": [
|
|
83
|
-
"<rootDir>/src/**/__tests__/**/*.ts",
|
|
84
|
-
"<rootDir>/src/**/*.test.ts"
|
|
85
|
-
],
|
|
86
|
-
"collectCoverageFrom": [
|
|
87
|
-
"src/**/*.ts"
|
|
88
|
-
],
|
|
89
|
-
"moduleFileExtensions": [
|
|
90
|
-
"ts",
|
|
91
|
-
"js",
|
|
92
|
-
"json"
|
|
93
|
-
],
|
|
94
|
-
"transform": {
|
|
95
|
-
"^.+\\.ts$": "babel-jest"
|
|
96
|
-
},
|
|
97
|
-
"testEnvironment": "node"
|
|
98
|
-
},
|
|
99
64
|
"pob": {
|
|
100
65
|
"babelEnvs": [
|
|
101
66
|
{
|
|
102
67
|
"target": "node",
|
|
103
|
-
"version": "
|
|
68
|
+
"version": "14",
|
|
104
69
|
"formats": [
|
|
105
70
|
"cjs",
|
|
106
71
|
"es"
|
|
@@ -126,33 +91,16 @@
|
|
|
126
91
|
]
|
|
127
92
|
},
|
|
128
93
|
"dependencies": {
|
|
129
|
-
"nightingale-formatter": "
|
|
130
|
-
"nightingale-types": "
|
|
94
|
+
"nightingale-formatter": "12.0.1",
|
|
95
|
+
"nightingale-types": "12.0.1"
|
|
131
96
|
},
|
|
132
97
|
"devDependencies": {
|
|
133
|
-
"@babel/core": "7.
|
|
134
|
-
"@babel/preset-env": "7.
|
|
135
|
-
"@pob/eslint-config": "43.2.0",
|
|
136
|
-
"@pob/eslint-config-node": "43.2.0",
|
|
137
|
-
"@pob/eslint-config-typescript": "43.2.0",
|
|
138
|
-
"@types/jest": "26.0.23",
|
|
139
|
-
"@typescript-eslint/eslint-plugin": "4.28.1",
|
|
140
|
-
"@typescript-eslint/parser": "4.28.1",
|
|
141
|
-
"babel-jest": "26.6.3",
|
|
142
|
-
"babel-preset-latest-node": "5.5.1",
|
|
98
|
+
"@babel/core": "7.16.0",
|
|
99
|
+
"@babel/preset-env": "7.16.4",
|
|
143
100
|
"babel-preset-modern-browsers": "15.0.2",
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"eslint-plugin-node": "11.1.0",
|
|
148
|
-
"eslint-plugin-unicorn": "29.0.0",
|
|
149
|
-
"jest": "26.6.3",
|
|
150
|
-
"nightingale-levels": "^11.7.1",
|
|
151
|
-
"pob-babel": "27.0.3",
|
|
152
|
-
"pob-lcov-reporter": "4.0.1",
|
|
153
|
-
"rollup": "2.52.3",
|
|
154
|
-
"typescript": "4.3.4",
|
|
155
|
-
"xunit-file": "1.0.0"
|
|
101
|
+
"nightingale-levels": "12.0.1",
|
|
102
|
+
"pob-babel": "29.4.2",
|
|
103
|
+
"typescript": "4.5.3"
|
|
156
104
|
},
|
|
157
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "bb3da283ed9e19d2c1dcdb5e130c86b4835d8500"
|
|
158
106
|
}
|
package/src/index.test.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
formatRecordToString,
|
|
3
|
+
styleToHtmlStyleThemeLight,
|
|
4
|
+
} from 'nightingale-formatter';
|
|
2
5
|
import type { Styles, LogRecord, Metadata } from 'nightingale-types';
|
|
3
6
|
|
|
4
7
|
export function style(styles: Styles, string: string): string {
|
|
@@ -7,7 +10,7 @@ export function style(styles: Styles, string: string): string {
|
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
return `<span style="${styles
|
|
10
|
-
.map((styleName: string) =>
|
|
13
|
+
.map((styleName: string) => styleToHtmlStyleThemeLight[styleName].open)
|
|
11
14
|
.join('; ')}">${string}</span>`;
|
|
12
15
|
}
|
|
13
16
|
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var nightingaleFormatter = require('nightingale-formatter');
|
|
6
|
-
|
|
7
|
-
function style(styles, string) {
|
|
8
|
-
if (!styles || styles.length === 0 || !string) {
|
|
9
|
-
return string;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
return "<span style=\"" + styles.map(function (styleName) {
|
|
13
|
-
return nightingaleFormatter.styleToHtmlStyle[styleName].open;
|
|
14
|
-
}).join('; ') + "\">" + string + "</span>";
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* @param {Object} record
|
|
18
|
-
* @returns {string}
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
function format(record) {
|
|
22
|
-
return nightingaleFormatter.formatRecordToString(record, style);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
exports.default = format;
|
|
26
|
-
exports.style = style;
|
|
27
|
-
//# sourceMappingURL=index-browser-dev.cjs.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-browser-dev.cjs.js","sources":["../src/index.ts"],"sourcesContent":["import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyle[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyle","open","join","format","record","formatRecordToString"],"mappings":";;;;;;AAGO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,4BAAuBD,MAAM,CAC1BG,GADoB,CAChB,UAACC,SAAD;AAAA,WAAuBC,qCAAgB,CAACD,SAAD,CAAhB,CAA4BE,IAAnD;AAAA,GADgB,EAEpBC,IAFoB,CAEf,IAFe,CAAvB,WAEkBN,MAFlB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,yCAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';
|
|
2
|
-
|
|
3
|
-
function style(styles, string) {
|
|
4
|
-
if (!styles || styles.length === 0 || !string) {
|
|
5
|
-
return string;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
return "<span style=\"" + styles.map(function (styleName) {
|
|
9
|
-
return styleToHtmlStyle[styleName].open;
|
|
10
|
-
}).join('; ') + "\">" + string + "</span>";
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* @param {Object} record
|
|
14
|
-
* @returns {string}
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
function format(record) {
|
|
18
|
-
return formatRecordToString(record, style);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export default format;
|
|
22
|
-
export { style };
|
|
23
|
-
//# sourceMappingURL=index-browser-dev.es.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-browser-dev.es.js","sources":["../src/index.ts"],"sourcesContent":["import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyle[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyle","open","join","format","record","formatRecordToString"],"mappings":";;AAGO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,4BAAuBD,MAAM,CAC1BG,GADoB,CAChB,UAACC,SAAD;AAAA,WAAuBC,gBAAgB,CAACD,SAAD,CAAhB,CAA4BE,IAAnD;AAAA,GADgB,EAEpBC,IAFoB,CAEf,IAFe,CAAvB,WAEkBN,MAFlB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,oBAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';
|
|
2
|
-
|
|
3
|
-
function style(styles, string) {
|
|
4
|
-
if (!styles || styles.length === 0 || !string) {
|
|
5
|
-
return string;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
return `<span style="${styles.map(styleName => styleToHtmlStyle[styleName].open).join('; ')}">${string}</span>`;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* @param {Object} record
|
|
12
|
-
* @returns {string}
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
function format(record) {
|
|
16
|
-
return formatRecordToString(record, style);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export default format;
|
|
20
|
-
export { style };
|
|
21
|
-
//# sourceMappingURL=index-browsermodern-dev.es.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-browsermodern-dev.es.js","sources":["../src/index.ts"],"sourcesContent":["import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyle[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyle","open","join","format","record","formatRecordToString"],"mappings":";;AAGO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CACfC,SAAD,IAAuBC,gBAAgB,CAACD,SAAD,CAAhB,CAA4BE,IADnC,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,oBAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
const nightingaleFormatter = require('nightingale-formatter');
|
|
6
|
-
|
|
7
|
-
function style(styles, string) {
|
|
8
|
-
if (!styles || styles.length === 0 || !string) {
|
|
9
|
-
return string;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
return `<span style="${styles.map(styleName => nightingaleFormatter.styleToHtmlStyle[styleName].open).join('; ')}">${string}</span>`;
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* @param {Object} record
|
|
16
|
-
* @returns {string}
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
function format(record) {
|
|
20
|
-
return nightingaleFormatter.formatRecordToString(record, style);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
exports.default = format;
|
|
24
|
-
exports.style = style;
|
|
25
|
-
//# sourceMappingURL=index-node12-dev.cjs.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-node12-dev.cjs.js","sources":["../src/index.ts"],"sourcesContent":["import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyle[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyle","open","join","format","record","formatRecordToString"],"mappings":";;;;;;AAGO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CACfC,SAAD,IAAuBC,qCAAgB,CAACD,SAAD,CAAhB,CAA4BE,IADnC,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,yCAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-node12-dev.mjs","sources":["../src/index.ts"],"sourcesContent":["import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyle[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyle","open","join","format","record","formatRecordToString"],"mappings":";;AAGO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CACfC,SAAD,IAAuBC,gBAAgB,CAACD,SAAD,CAAhB,CAA4BE,IADnC,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,oBAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-node12.cjs.js","sources":["../src/index.ts"],"sourcesContent":["import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyle[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyle","open","join","format","record","formatRecordToString"],"mappings":";;;;;;AAGO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CACfC,SAAD,IAAuBC,qCAAgB,CAACD,SAAD,CAAhB,CAA4BE,IADnC,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,yCAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|
package/dist/index-node12.mjs
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';
|
|
2
|
-
|
|
3
|
-
function style(styles, string) {
|
|
4
|
-
if (!styles || styles.length === 0 || !string) {
|
|
5
|
-
return string;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
return `<span style="${styles.map(styleName => styleToHtmlStyle[styleName].open).join('; ')}">${string}</span>`;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* @param {Object} record
|
|
12
|
-
* @returns {string}
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
function format(record) {
|
|
16
|
-
return formatRecordToString(record, style);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export default format;
|
|
20
|
-
export { style };
|
|
21
|
-
//# sourceMappingURL=index-node12.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-node12.mjs","sources":["../src/index.ts"],"sourcesContent":["import { formatRecordToString, styleToHtmlStyle } from 'nightingale-formatter';\nimport type { Styles, LogRecord, Metadata } from 'nightingale-types';\n\nexport function style(styles: Styles, string: string): string {\n if (!styles || styles.length === 0 || !string) {\n return string;\n }\n\n return `<span style=\"${styles\n .map((styleName: string) => styleToHtmlStyle[styleName].open)\n .join('; ')}\">${string}</span>`;\n}\n\n/**\n * @param {Object} record\n * @returns {string}\n */\nexport default function format<T extends Metadata>(\n record: LogRecord<T>,\n): string {\n return formatRecordToString(record, style);\n}\n"],"names":["style","styles","string","length","map","styleName","styleToHtmlStyle","open","join","format","record","formatRecordToString"],"mappings":";;AAGO,SAASA,KAAT,CAAeC,MAAf,EAA+BC,MAA/B,EAAuD;AAC5D,MAAI,CAACD,MAAD,IAAWA,MAAM,CAACE,MAAP,KAAkB,CAA7B,IAAkC,CAACD,MAAvC,EAA+C;AAC7C,WAAOA,MAAP;AACD;;AAED,SAAQ,gBAAeD,MAAM,CAC1BG,GADoB,CACfC,SAAD,IAAuBC,gBAAgB,CAACD,SAAD,CAAhB,CAA4BE,IADnC,EAEpBC,IAFoB,CAEf,IAFe,CAET,KAAIN,MAAO,SAFzB;AAGD;AAED;AACA;AACA;AACA;;AACe,SAASO,MAAT,CACbC,MADa,EAEL;AACR,SAAOC,oBAAoB,CAACD,MAAD,EAASV,KAAT,CAA3B;AACD;;;;;"}
|