mutation-testing-elements
Advanced tools
Comparing version 3.1.0 to 3.1.1
@@ -5,2 +5,3 @@ import { LitElement, nothing } from 'lit'; | ||
export declare class MutationTestReportDrawer extends LitElement { | ||
#private; | ||
static styles: import("lit").CSSResult[]; | ||
@@ -7,0 +8,0 @@ mode: DrawerMode; |
@@ -68,7 +68,18 @@ import type { Position } from 'mutation-testing-report-schema/api'; | ||
export declare function transformHighlightedLines(source: string, visitor?: (pos: PositionWithOffset) => Iterable<HtmlTag>): string[]; | ||
export declare function isWhitespace(char: string): boolean; | ||
export declare function isWhitespace(char: string): char is Characters.NewLine | Characters.Space | Characters.Tab; | ||
export declare const COLUMN_START_INDEX = 1; | ||
export declare const LINE_START_INDEX = 1; | ||
declare enum Characters { | ||
CarriageReturn = "\r", | ||
NewLine = "\n", | ||
Space = " ", | ||
Amp = "&", | ||
Semicolon = ";", | ||
LT = "<", | ||
GT = ">", | ||
Tab = "\t" | ||
} | ||
export declare function findDiffIndices(original: string, mutated: string): number[]; | ||
export declare function gte(a: Position, b: Position): boolean; | ||
export {}; | ||
//# sourceMappingURL=code-helpers.d.ts.map |
@@ -1,2 +0,1 @@ | ||
/// <reference path="../../../src/typings/prism.d.ts" /> | ||
import 'prismjs/components/prism-core'; | ||
@@ -3,0 +2,0 @@ import 'prismjs/components/prism-clike'; |
{ | ||
"name": "mutation-testing-elements", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "A suite of web components for a mutation testing report.", | ||
@@ -51,3 +51,4 @@ "unpkg": "dist/mutation-test-elements.js", | ||
"devDependencies": { | ||
"@playwright/test": "1.44.0", | ||
"@lit-labs/observers": "^2.0.2", | ||
"@playwright/test": "1.45.2", | ||
"@tailwindcss/forms": "0.5.7", | ||
@@ -57,24 +58,24 @@ "@types/express": "4.17.21", | ||
"@types/resemblejs": "4.1.3", | ||
"@vitest/browser": "1.6.0", | ||
"@vitest/browser": "2.0.3", | ||
"autoprefixer": "10.4.19", | ||
"browserslist-to-esbuild": "2.1.1", | ||
"cross-env": "7.0.3", | ||
"cssnano": "7.0.1", | ||
"esbuild": "0.21.2", | ||
"cssnano": "7.0.4", | ||
"esbuild": "0.23.0", | ||
"eslint-config-mte": "*", | ||
"express": "4.19.2", | ||
"lit": "3.1.3", | ||
"mutation-testing-metrics": "3.1.0", | ||
"mutation-testing-real-time": "3.1.0", | ||
"mutation-testing-report-schema": "3.1.0", | ||
"postcss": "8.4.38", | ||
"lit": "3.1.4", | ||
"mutation-testing-metrics": "3.1.1", | ||
"mutation-testing-real-time": "3.1.1", | ||
"mutation-testing-report-schema": "3.1.1", | ||
"postcss": "8.4.39", | ||
"prism-svelte": "0.5.0", | ||
"prismjs": "1.29.0", | ||
"rxjs": "7.8.1", | ||
"sass": "1.77.1", | ||
"tailwindcss": "3.4.3", | ||
"vite": "5.2.11", | ||
"vitest": "1.6.0" | ||
"sass": "1.77.8", | ||
"tailwindcss": "3.4.6", | ||
"vite": "5.3.4", | ||
"vitest": "2.0.3" | ||
}, | ||
"gitHead": "8c4e4ba70c72033378819aef5c654e647bd07371" | ||
"gitHead": "c3789ddb003b9411721f9b012e3b35e491bf9bc6" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
740497
26
9298