@descope-ui/descope-button 2.1.15 → 2.1.17

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
+ ## [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)
6
+
7
+ ## [2.1.16](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.15...web-components-ui-2.1.16) (2025-10-19)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * exclude style attr from proxy sync ([#755](https://github.com/descope/web-components-ui/issues/755)) ([ca0bd1e](https://github.com/descope/web-components-ui/commit/ca0bd1e2a4e07435eec492b08d366c02dd5d687c))
13
+
5
14
  ## [2.1.15](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.14...web-components-ui-2.1.15) (2025-10-16)
6
15
 
7
16
  ## [2.1.14](https://github.com/descope/web-components-ui/compare/web-components-ui-2.1.13...web-components-ui-2.1.14) (2025-10-12)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope-ui/descope-button",
3
- "version": "2.1.15",
3
+ "version": "2.1.17",
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.15",
18
- "test-assets": "2.1.15"
17
+ "e2e-utils": "2.1.17",
18
+ "test-assets": "2.1.17"
19
19
  },
20
20
  "dependencies": {
21
21
  "@vaadin/button": "24.3.4",
22
- "@descope-ui/common": "2.1.15",
23
- "@descope-ui/theme-globals": "2.1.15",
24
- "@descope-ui/descope-icon": "2.1.15"
22
+ "@descope-ui/common": "2.1.17",
23
+ "@descope-ui/theme-globals": "2.1.17",
24
+ "@descope-ui/descope-icon": "2.1.17"
25
25
  },
26
26
  "publishConfig": {
27
27
  "link-workspace-packages": false
@@ -124,7 +124,7 @@ export const ButtonClass = compose(
124
124
  padding: 0;
125
125
  }
126
126
  `,
127
- excludeAttrsSync: ['tabindex', 'class'],
127
+ excludeAttrsSync: ['tabindex', 'class', 'style'],
128
128
  componentName,
129
129
  })
130
130
  );