@descope-ui/descope-multi-line-mappings 3.10.2 → 3.11.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/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
|
+
## [3.11.1](https://github.com/descope/web-components-ui/compare/web-components-ui-3.11.0...web-components-ui-3.11.1) (2026-05-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **multi-line-mappings:** stabilize e2e screenshot tests by waiting for combo visibility ([#1034](https://github.com/descope/web-components-ui/issues/1034)) ([1201d82](https://github.com/descope/web-components-ui/commit/1201d82107d990f143ac2c9d4a75964111317fe9))
|
|
11
|
+
|
|
12
|
+
## [3.11.0](https://github.com/descope/web-components-ui/compare/web-components-ui-3.10.2...web-components-ui-3.11.0) (2026-05-19)
|
|
13
|
+
|
|
5
14
|
## [3.10.2](https://github.com/descope/web-components-ui/compare/web-components-ui-3.10.1...web-components-ui-3.10.2) (2026-05-19)
|
|
6
15
|
|
|
7
16
|
## [3.10.1](https://github.com/descope/web-components-ui/compare/web-components-ui-3.10.0...web-components-ui-3.10.1) (2026-05-18)
|
|
@@ -139,6 +139,7 @@ test.describe('logic', () => {
|
|
|
139
139
|
await component.addButton.click();
|
|
140
140
|
|
|
141
141
|
expect(await component.rows.count()).toBe(2);
|
|
142
|
+
await component.getRow(1).firstCombo.locator.waitFor({ state: 'visible' });
|
|
142
143
|
expect(
|
|
143
144
|
await component.screenshot({ animations: 'disabled', caret: 'hide' }),
|
|
144
145
|
).toMatchSnapshot();
|
|
@@ -191,6 +192,7 @@ test.describe('logic', () => {
|
|
|
191
192
|
|
|
192
193
|
expect(await component.rows.count()).toBe(2);
|
|
193
194
|
expect(await component.addButton.getAttribute('disabled')).toBe('true');
|
|
195
|
+
await component.getRow(1).firstCombo.locator.waitFor({ state: 'visible' });
|
|
194
196
|
expect(
|
|
195
197
|
await component.screenshot({ animations: 'disabled', caret: 'hide' }),
|
|
196
198
|
).toMatchSnapshot();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope-ui/descope-multi-line-mappings",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.1",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./src/component/index.js"
|
|
@@ -14,15 +14,15 @@
|
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@playwright/test": "1.58.2",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"test-drivers": "3.11.1",
|
|
18
|
+
"e2e-utils": "3.11.1"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@descope-ui/descope-button": "3.
|
|
22
|
-
"@descope-ui/common": "3.
|
|
23
|
-
"@descope-ui/descope-multi-select-combo-box": "3.
|
|
24
|
-
"@descope-ui/theme-globals": "3.
|
|
25
|
-
"@descope-ui/theme-input-wrapper": "3.
|
|
21
|
+
"@descope-ui/descope-button": "3.11.1",
|
|
22
|
+
"@descope-ui/common": "3.11.1",
|
|
23
|
+
"@descope-ui/descope-multi-select-combo-box": "3.11.1",
|
|
24
|
+
"@descope-ui/theme-globals": "3.11.1",
|
|
25
|
+
"@descope-ui/theme-input-wrapper": "3.11.1"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"link-workspace-packages": false
|