@jupyterlab/galata 5.3.0-beta.3 → 5.3.0-rc.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/lib/helpers/style.d.ts +1 -1
- package/lib/helpers/style.js +1 -1
- package/package.json +11 -11
- package/src/helpers/style.ts +1 -1
package/lib/helpers/style.d.ts
CHANGED
|
@@ -34,7 +34,7 @@ export declare class StyleHelper {
|
|
|
34
34
|
/**
|
|
35
35
|
* Find unused CSS rules.
|
|
36
36
|
*
|
|
37
|
-
* @param options
|
|
37
|
+
* @param options specify which rules to include/exclude.
|
|
38
38
|
* @returns List of rules with no matching elements on the page.
|
|
39
39
|
*/
|
|
40
40
|
findUnusedStyleRules(options: IUnusedStyleCheckOptions): Promise<string[]>;
|
package/lib/helpers/style.js
CHANGED
|
@@ -24,7 +24,7 @@ class StyleHelper {
|
|
|
24
24
|
/**
|
|
25
25
|
* Find unused CSS rules.
|
|
26
26
|
*
|
|
27
|
-
* @param options
|
|
27
|
+
* @param options specify which rules to include/exclude.
|
|
28
28
|
* @returns List of rules with no matching elements on the page.
|
|
29
29
|
*/
|
|
30
30
|
async findUnusedStyleRules(options) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/galata",
|
|
3
|
-
"version": "5.3.0-
|
|
3
|
+
"version": "5.3.0-rc.1",
|
|
4
4
|
"description": "JupyterLab UI Testing Framework",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -44,17 +44,17 @@
|
|
|
44
44
|
"test:update": "jlpm test:base:update && jlpm test:benchmark:update"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@jupyterlab/application": "^4.3.0-
|
|
48
|
-
"@jupyterlab/apputils": "^4.4.0-
|
|
49
|
-
"@jupyterlab/coreutils": "^6.3.0-
|
|
50
|
-
"@jupyterlab/debugger": "^4.3.0-
|
|
51
|
-
"@jupyterlab/docmanager": "^4.3.0-
|
|
52
|
-
"@jupyterlab/nbformat": "^4.3.0-
|
|
53
|
-
"@jupyterlab/notebook": "^4.3.0-
|
|
54
|
-
"@jupyterlab/services": "^7.3.0-
|
|
55
|
-
"@jupyterlab/settingregistry": "^4.3.0-
|
|
47
|
+
"@jupyterlab/application": "^4.3.0-rc.1",
|
|
48
|
+
"@jupyterlab/apputils": "^4.4.0-rc.1",
|
|
49
|
+
"@jupyterlab/coreutils": "^6.3.0-rc.1",
|
|
50
|
+
"@jupyterlab/debugger": "^4.3.0-rc.1",
|
|
51
|
+
"@jupyterlab/docmanager": "^4.3.0-rc.1",
|
|
52
|
+
"@jupyterlab/nbformat": "^4.3.0-rc.1",
|
|
53
|
+
"@jupyterlab/notebook": "^4.3.0-rc.1",
|
|
54
|
+
"@jupyterlab/services": "^7.3.0-rc.1",
|
|
55
|
+
"@jupyterlab/settingregistry": "^4.3.0-rc.1",
|
|
56
56
|
"@lumino/coreutils": "^2.2.0",
|
|
57
|
-
"@playwright/test": "^1.
|
|
57
|
+
"@playwright/test": "^1.48.0",
|
|
58
58
|
"@stdlib/stats": "~0.0.13",
|
|
59
59
|
"fs-extra": "^10.1.0",
|
|
60
60
|
"json5": "^2.2.3",
|
package/src/helpers/style.ts
CHANGED
|
@@ -49,7 +49,7 @@ export class StyleHelper {
|
|
|
49
49
|
/**
|
|
50
50
|
* Find unused CSS rules.
|
|
51
51
|
*
|
|
52
|
-
* @param options
|
|
52
|
+
* @param options specify which rules to include/exclude.
|
|
53
53
|
* @returns List of rules with no matching elements on the page.
|
|
54
54
|
*/
|
|
55
55
|
async findUnusedStyleRules(
|