@descope-ui/common 0.0.15 → 0.0.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,10 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.0.17](https://github.com/descope/web-components-ui/compare/@descope-ui/common-0.0.16...@descope-ui/common-0.0.17) (2025-07-15)
6
+
7
+ ## [0.0.16](https://github.com/descope/web-components-ui/compare/@descope-ui/common-0.0.15...@descope-ui/common-0.0.16) (2025-06-30)
8
+
5
9
  ## [0.0.15](https://github.com/descope/web-components-ui/compare/@descope-ui/common-0.0.14...@descope-ui/common-0.0.15) (2025-06-29)
6
10
 
7
11
  ## [0.0.14](https://github.com/descope/web-components-ui/compare/@descope-ui/common-0.0.13...@descope-ui/common-0.0.14) (2025-06-26)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope-ui/common",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "dependencies": {
5
5
  "element-internals-polyfill": "^1.3.9",
6
6
  "color": "^4.2.3",
@@ -32,7 +32,6 @@ export const createDynamicDataMixin =
32
32
  slotName,
33
33
  rerenderAttrsList = [],
34
34
  targetSelector,
35
- sortFn
36
35
  }) =>
37
36
  (superclass) =>
38
37
  class DynamicDataMixinClass extends superclass {
@@ -72,7 +71,7 @@ export const createDynamicDataMixin =
72
71
 
73
72
  set data(value) {
74
73
  if (this.#validateSchema(value)) {
75
- this.#data = sortFn ? value.sort(sortFn) : value;
74
+ this.#data = value;
76
75
  this.#renderItems();
77
76
  }
78
77
  }
@@ -132,9 +132,6 @@ export const inputFloatingLabelStyle = () => {
132
132
  :host([label-type="floating"]) {
133
133
  position: relative;
134
134
  }
135
- :host([label-type="floating"][has-label]) [slot="label"] {
136
- padding: 0;
137
- }
138
135
  :host([label-type="floating"][has-label]) > ::part(label) {
139
136
  z-index: 1;
140
137
  padding: 0;