@descope-ui/descope-multi-sso 3.14.5 → 3.14.7
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/package.json +11 -11
- package/src/component/MultiSsoClass.js +12 -0
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.14.7](https://github.com/descope/web-components-ui/compare/web-components-ui-3.14.6...web-components-ui-3.14.7) (2026-06-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **multi-sso,user-passkeys:** fix slotted icons not updating in list items on prop change ([#1065](https://github.com/descope/web-components-ui/issues/1065)) ([07e42a2](https://github.com/descope/web-components-ui/commit/07e42a237bf84b9b95e436bdfcab776e40e80ca3))
|
|
11
|
+
|
|
12
|
+
## [3.14.6](https://github.com/descope/web-components-ui/compare/web-components-ui-3.14.5...web-components-ui-3.14.6) (2026-06-16)
|
|
13
|
+
|
|
5
14
|
## [3.14.5](https://github.com/descope/web-components-ui/compare/web-components-ui-3.14.4...web-components-ui-3.14.5) (2026-06-16)
|
|
6
15
|
|
|
7
16
|
## [3.14.4](https://github.com/descope/web-components-ui/compare/web-components-ui-3.14.3...web-components-ui-3.14.4) (2026-06-16)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope-ui/descope-multi-sso",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.7",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./src/component/index.js"
|
|
@@ -14,18 +14,18 @@
|
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@playwright/test": "1.58.2",
|
|
17
|
-
"e2e-utils": "3.14.
|
|
18
|
-
"test-drivers": "3.14.
|
|
17
|
+
"e2e-utils": "3.14.7",
|
|
18
|
+
"test-drivers": "3.14.7"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@descope-ui/common": "3.14.
|
|
22
|
-
"@descope-ui/
|
|
23
|
-
"@descope-ui/
|
|
24
|
-
"@descope-ui/descope-list-item": "3.14.
|
|
25
|
-
"@descope-ui/descope-text": "3.14.
|
|
26
|
-
"@descope-ui/descope-
|
|
27
|
-
"@descope-ui/descope-
|
|
28
|
-
"@descope-ui/descope-badge": "3.14.
|
|
21
|
+
"@descope-ui/common": "3.14.7",
|
|
22
|
+
"@descope-ui/descope-list": "3.14.7",
|
|
23
|
+
"@descope-ui/theme-globals": "3.14.7",
|
|
24
|
+
"@descope-ui/descope-list-item": "3.14.7",
|
|
25
|
+
"@descope-ui/descope-text": "3.14.7",
|
|
26
|
+
"@descope-ui/descope-icon": "3.14.7",
|
|
27
|
+
"@descope-ui/descope-button": "3.14.7",
|
|
28
|
+
"@descope-ui/descope-badge": "3.14.7"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"link-workspace-packages": false
|
|
@@ -150,6 +150,12 @@ class RawMultiSsoClass extends BaseClass {
|
|
|
150
150
|
`;
|
|
151
151
|
|
|
152
152
|
this.listEl = this.shadowRoot.querySelector('descope-list');
|
|
153
|
+
this.deleteIconSlot = this.shadowRoot.querySelector(
|
|
154
|
+
'slot[name="delete-icon"]',
|
|
155
|
+
);
|
|
156
|
+
this.externalLinkIconSlot = this.shadowRoot.querySelector(
|
|
157
|
+
'slot[name="external-link-icon"]',
|
|
158
|
+
);
|
|
153
159
|
|
|
154
160
|
injectStyle(
|
|
155
161
|
`
|
|
@@ -284,6 +290,12 @@ class RawMultiSsoClass extends BaseClass {
|
|
|
284
290
|
this.listEl.addEventListener('click', this.onItemClick.bind(this));
|
|
285
291
|
|
|
286
292
|
forwardAttrs(this.listEl, this, { includeAttrs: ['empty'] });
|
|
293
|
+
|
|
294
|
+
const rerender = () => {
|
|
295
|
+
if (this.data) this.data = [...this.data];
|
|
296
|
+
};
|
|
297
|
+
this.deleteIconSlot.addEventListener('slotchange', rerender);
|
|
298
|
+
this.externalLinkIconSlot.addEventListener('slotchange', rerender);
|
|
287
299
|
}
|
|
288
300
|
|
|
289
301
|
onCreateClick() {
|