@opensumi/ide-core-common 2.15.6 → 2.15.7

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.
@@ -11,4 +11,5 @@ export * from './application';
11
11
  export * from './authentication';
12
12
  export * from './accessibility';
13
13
  export * from './statusbar';
14
+ export * from './markdown';
14
15
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC"}
@@ -14,4 +14,5 @@ tslib_1.__exportStar(require("./application"), exports);
14
14
  tslib_1.__exportStar(require("./authentication"), exports);
15
15
  tslib_1.__exportStar(require("./accessibility"), exports);
16
16
  tslib_1.__exportStar(require("./statusbar"), exports);
17
+ tslib_1.__exportStar(require("./markdown"), exports);
17
18
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;AAAA,mDAAyB;AACzB,oDAA0B;AAC1B,iDAAuB;AACvB,oDAA0B;AAC1B,sDAA4B;AAC5B,qDAA2B;AAC3B,mDAAyB;AACzB,gDAAsB;AACtB,mDAAyB;AACzB,wDAA8B;AAC9B,2DAAiC;AACjC,0DAAgC;AAChC,sDAA4B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;AAAA,mDAAyB;AACzB,oDAA0B;AAC1B,iDAAuB;AACvB,oDAA0B;AAC1B,sDAA4B;AAC5B,qDAA2B;AAC3B,mDAAyB;AACzB,gDAAsB;AACtB,mDAAyB;AACzB,wDAA8B;AAC9B,2DAAiC;AACjC,0DAAgC;AAChC,sDAA4B;AAC5B,qDAA2B"}
@@ -0,0 +1,10 @@
1
+ import { UriComponents } from '../uri';
2
+ export interface IMarkdownString {
3
+ value: string;
4
+ isTrusted?: boolean;
5
+ supportThemeIcons?: boolean;
6
+ uris?: {
7
+ [href: string]: UriComponents;
8
+ };
9
+ }
10
+ //# sourceMappingURL=markdown.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"markdown.d.ts","sourceRoot":"","sources":["../../src/types/markdown.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AAEvC,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,IAAI,CAAC,EAAE;QAAE,CAAC,IAAI,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE,CAAC;CAC1C"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=markdown.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"markdown.js","sourceRoot":"","sources":["../../src/types/markdown.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opensumi/ide-core-common",
3
- "version": "2.15.6",
3
+ "version": "2.15.7",
4
4
  "description": "@opensumi/ide-core-common",
5
5
  "files": [
6
6
  "lib"
@@ -27,5 +27,5 @@
27
27
  "devDependencies": {
28
28
  "@opensumi/ide-dev-tool": "^1.3.1"
29
29
  },
30
- "gitHead": "a0fcde4b501535478e2f5dbe6817de99c08d9c8f"
30
+ "gitHead": "0f6daa848f25f4ad9acee989d1c6c29c66b6dba8"
31
31
  }