@vscode/markdown-editor 0.0.2-74 → 0.0.2-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/index.d.ts +7 -0
- package/dist/index.js +657 -637
- package/dist/index.js.map +1 -1
- package/dist/web-editors.js +1362 -1292
- package/dist/web-editors.js.map +1 -1
- package/package.json +2 -2
- package/src/view/editor.css +36 -36
package/dist/index.d.ts
CHANGED
|
@@ -2218,10 +2218,16 @@ export declare interface LinkPresentation {
|
|
|
2218
2218
|
readonly status?: LinkPresentationStatus;
|
|
2219
2219
|
/** Secondary state, such as pull-request CI status. */
|
|
2220
2220
|
readonly secondaryStatus?: LinkPresentationStatus;
|
|
2221
|
+
readonly changes?: LinkPresentationChanges;
|
|
2221
2222
|
readonly tooltip?: string;
|
|
2222
2223
|
readonly ariaLabel?: string;
|
|
2223
2224
|
}
|
|
2224
2225
|
|
|
2226
|
+
declare interface LinkPresentationChanges {
|
|
2227
|
+
readonly insertions: number;
|
|
2228
|
+
readonly deletions: number;
|
|
2229
|
+
}
|
|
2230
|
+
|
|
2225
2231
|
export declare type LinkPresentationKind = 'resource' | 'issue' | 'pullRequest' | 'commit' | 'file' | 'folder' | 'session' | 'repository' | 'branch';
|
|
2226
2232
|
|
|
2227
2233
|
export declare interface LinkPresentationStatus {
|
|
@@ -2758,6 +2764,7 @@ export declare class RichLink {
|
|
|
2758
2764
|
private readonly _title;
|
|
2759
2765
|
private readonly _detail;
|
|
2760
2766
|
private readonly _reference;
|
|
2767
|
+
private readonly _changes;
|
|
2761
2768
|
private readonly _status;
|
|
2762
2769
|
private readonly _secondaryStatus;
|
|
2763
2770
|
private constructor();
|