@theia/messages 1.22.0-next.25 → 1.22.0-next.26
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/lib/browser/notification-content-renderer.d.ts +1 -1
- package/lib/browser/notification-content-renderer.d.ts.map +1 -1
- package/lib/browser/notification-content-renderer.js +1 -1
- package/lib/browser/notification-content-renderer.js.map +1 -1
- package/package.json +3 -4
- package/src/browser/notification-content-renderer.ts +1 -1
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*
|
|
14
14
|
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
15
|
********************************************************************************/
|
|
16
|
-
import * as markdownit from 'markdown-it';
|
|
16
|
+
import * as markdownit from '@theia/core/shared/markdown-it';
|
|
17
17
|
export declare class NotificationContentRenderer {
|
|
18
18
|
protected readonly mdEngine: markdownit;
|
|
19
19
|
renderMessage(content: string): string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification-content-renderer.d.ts","sourceRoot":"","sources":["../../src/browser/notification-content-renderer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAElF,OAAO,KAAK,UAAU,MAAM,
|
|
1
|
+
{"version":3,"file":"notification-content-renderer.d.ts","sourceRoot":"","sources":["../../src/browser/notification-content-renderer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;kFAckF;AAElF,OAAO,KAAK,UAAU,MAAM,gCAAgC,CAAC;AAG7D,qBACa,2BAA2B;IAEpC,SAAS,CAAC,QAAQ,CAAC,QAAQ,aAA+B;IAE1D,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM;CAMzC"}
|
|
@@ -22,7 +22,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
22
22
|
};
|
|
23
23
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
24
|
exports.NotificationContentRenderer = void 0;
|
|
25
|
-
const markdownit = require("markdown-it");
|
|
25
|
+
const markdownit = require("@theia/core/shared/markdown-it");
|
|
26
26
|
const inversify_1 = require("@theia/core/shared/inversify");
|
|
27
27
|
let NotificationContentRenderer = class NotificationContentRenderer {
|
|
28
28
|
constructor() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification-content-renderer.js","sourceRoot":"","sources":["../../src/browser/notification-content-renderer.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;kFAckF;;;;;;;;;AAElF,
|
|
1
|
+
{"version":3,"file":"notification-content-renderer.js","sourceRoot":"","sources":["../../src/browser/notification-content-renderer.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;kFAckF;;;;;;;;;AAElF,6DAA6D;AAC7D,4DAA0D;AAG1D,IAAa,2BAA2B,GAAxC,MAAa,2BAA2B;IAAxC;QAEuB,aAAQ,GAAG,UAAU,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;IAQ9D,CAAC;IANG,aAAa,CAAC,OAAe;QACzB,uDAAuD;QACvD,MAAM,sBAAsB,GAAG,OAAO,CAAC,OAAO,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;QAEpE,OAAO,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,sBAAsB,CAAC,CAAC;IAC9D,CAAC;CACJ,CAAA;AAVY,2BAA2B;IADvC,sBAAU,EAAE;GACA,2BAA2B,CAUvC;AAVY,kEAA2B"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/messages",
|
|
3
|
-
"version": "1.22.0-next.
|
|
3
|
+
"version": "1.22.0-next.26+8b3466971c1",
|
|
4
4
|
"description": "Theia - Messages Extension",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.22.0-next.
|
|
7
|
-
"markdown-it": "^8.4.0",
|
|
6
|
+
"@theia/core": "1.22.0-next.26+8b3466971c1",
|
|
8
7
|
"react-perfect-scrollbar": "^1.5.3",
|
|
9
8
|
"ts-md5": "^1.2.2"
|
|
10
9
|
},
|
|
@@ -46,5 +45,5 @@
|
|
|
46
45
|
"nyc": {
|
|
47
46
|
"extends": "../../configs/nyc.json"
|
|
48
47
|
},
|
|
49
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "8b3466971c112af3e655e4eb4b19f80cfc511314"
|
|
50
49
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
15
|
********************************************************************************/
|
|
16
16
|
|
|
17
|
-
import * as markdownit from 'markdown-it';
|
|
17
|
+
import * as markdownit from '@theia/core/shared/markdown-it';
|
|
18
18
|
import { injectable } from '@theia/core/shared/inversify';
|
|
19
19
|
|
|
20
20
|
@injectable()
|