@descope-ui/descope-enriched-text 2.1.18 → 2.2.0

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,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [2.2.0](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.18...web-components-ui-2.2.0) (2025-10-26)
6
+
7
+
8
+ ### Features
9
+
10
+ * add wrapper style to checkbox ([#756](https://github.com/descope/web-components-ui/issues/756)) ([6859e83](https://github.com/descope/web-components-ui/commit/6859e8333790a35328eae7a9ee101323fdabaade))
11
+
5
12
  ## [2.1.18](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.17...web-components-ui-2.1.18) (2025-10-26)
6
13
 
7
14
  ## [2.1.17](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.16...web-components-ui-2.1.17) (2025-10-20)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope-ui/descope-enriched-text",
3
- "version": "2.1.18",
3
+ "version": "2.2.0",
4
4
  "exports": {
5
5
  ".": {
6
6
  "import": "./src/component/index.js"
@@ -14,14 +14,14 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@playwright/test": "1.38.1",
17
- "e2e-utils": "2.1.18"
17
+ "e2e-utils": "2.2.0"
18
18
  },
19
19
  "dependencies": {
20
20
  "markdown-it": "14.1.0",
21
- "@descope-ui/common": "2.1.18",
22
- "@descope-ui/theme-globals": "2.1.18",
23
- "@descope-ui/descope-text": "2.1.18",
24
- "@descope-ui/descope-link": "2.1.18"
21
+ "@descope-ui/common": "2.2.0",
22
+ "@descope-ui/theme-globals": "2.2.0",
23
+ "@descope-ui/descope-text": "2.2.0",
24
+ "@descope-ui/descope-link": "2.2.0"
25
25
  },
26
26
  "publishConfig": {
27
27
  "link-workspace-packages": false
@@ -167,6 +167,7 @@ class EnrichedText extends createBaseClass({ componentName, baseSelector: ':host
167
167
  }
168
168
 
169
169
  this.contentNode.innerHTML = html;
170
+ this.contentNode.firstChild?.setAttribute('part', 'content');
170
171
  }
171
172
 
172
173
  onReadOnlyChange(isReadOnly) {