@descope-ui/descope-tooltip 2.2.45 → 2.2.47
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/CHANGELOG.md +9 -0
- package/e2e/descope-tooltip.spec.ts +3 -4
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.2.47](https://github.com/descope/web-components-ui/compare/web-components-ui-2.2.46...web-components-ui-2.2.47) (2026-02-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* Migrate to Playwright 1.58.1 ([#873](https://github.com/descope/web-components-ui/issues/873)) ([ff16007](https://github.com/descope/web-components-ui/commit/ff16007b6316abd82050ce9bcbce8180a5660d95))
|
|
11
|
+
|
|
12
|
+
## [2.2.46](https://github.com/descope/web-components-ui/compare/web-components-ui-2.2.45...web-components-ui-2.2.46) (2026-02-05)
|
|
13
|
+
|
|
5
14
|
## [2.2.45](https://github.com/descope/web-components-ui/compare/web-components-ui-2.2.44...web-components-ui-2.2.45) (2026-02-05)
|
|
6
15
|
|
|
7
16
|
## [2.2.44](https://github.com/descope/web-components-ui/compare/web-components-ui-2.2.43...web-components-ui-2.2.44) (2026-02-05)
|
|
@@ -33,9 +33,8 @@ test.describe('theme', () => {
|
|
|
33
33
|
const container = page.locator('.story-wrapper');
|
|
34
34
|
|
|
35
35
|
await component.hover();
|
|
36
|
-
await page.waitForTimeout(500);
|
|
37
36
|
|
|
38
|
-
expect(await container.screenshot()).toMatchSnapshot();
|
|
37
|
+
expect(await container.screenshot({ timeout: 3000 })).toMatchSnapshot();
|
|
39
38
|
});
|
|
40
39
|
});
|
|
41
40
|
|
|
@@ -47,7 +46,7 @@ test.describe('theme', () => {
|
|
|
47
46
|
|
|
48
47
|
await component.hover();
|
|
49
48
|
|
|
50
|
-
expect(await container.screenshot()).toMatchSnapshot();
|
|
49
|
+
expect(await container.screenshot({ timeout: 3000 })).toMatchSnapshot();
|
|
51
50
|
});
|
|
52
51
|
});
|
|
53
52
|
});
|
|
@@ -101,6 +100,6 @@ test.describe('logic', () => {
|
|
|
101
100
|
await page.goto(getStoryUrl(storyName, { opened: 'true', 'static-display': 'true' }));
|
|
102
101
|
const container = page.locator('.story-wrapper');
|
|
103
102
|
|
|
104
|
-
expect(await container.screenshot()).toMatchSnapshot();
|
|
103
|
+
expect(await container.screenshot({ timeout: 3000 })).toMatchSnapshot();
|
|
105
104
|
});
|
|
106
105
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope-ui/descope-tooltip",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.47",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./src/component/index.js"
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@playwright/test": "1.
|
|
17
|
-
"e2e-utils": "2.2.
|
|
16
|
+
"@playwright/test": "1.58.1",
|
|
17
|
+
"e2e-utils": "2.2.47"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@vaadin/tooltip": "24.3.4",
|
|
21
|
-
"@descope-ui/common": "2.2.
|
|
22
|
-
"@descope-ui/theme-globals": "2.2.
|
|
23
|
-
"@descope-ui/descope-enriched-text": "2.2.
|
|
21
|
+
"@descope-ui/common": "2.2.47",
|
|
22
|
+
"@descope-ui/theme-globals": "2.2.47",
|
|
23
|
+
"@descope-ui/descope-enriched-text": "2.2.47"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"link-workspace-packages": false
|