@descope-ui/common 3.0.6 → 3.0.8

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
+ ## [3.0.8](https://github.com/descope/web-components-ui/compare/web-components-ui-3.0.7...web-components-ui-3.0.8) (2026-03-26)
6
+
7
+ ## [3.0.7](https://github.com/descope/web-components-ui/compare/web-components-ui-3.0.6...web-components-ui-3.0.7) (2026-03-25)
8
+
5
9
  ## [3.0.6](https://github.com/descope/web-components-ui/compare/web-components-ui-3.0.5...web-components-ui-3.0.6) (2026-03-23)
6
10
 
7
11
  ## [3.0.5](https://github.com/descope/web-components-ui/compare/web-components-ui-3.0.4...web-components-ui-3.0.5) (2026-03-22)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope-ui/common",
3
- "version": "3.0.6",
3
+ "version": "3.0.8",
4
4
  "dependencies": {
5
5
  "element-internals-polyfill": "^1.3.9",
6
6
  "color": "^4.2.3",
@@ -23,6 +23,9 @@ const booleanAttributesList = [
23
23
  'loading',
24
24
  'allow-custom-value',
25
25
  'collapsed',
26
+ 'hide-country',
27
+ 'hide-subdivision',
28
+ 'hide-city',
26
29
  ];
27
30
 
28
31
  const isBooleanAttribute = (attr) => {
@@ -50,11 +53,11 @@ export const normalizeBooleanAttributesMixin = (superclass) =>
50
53
  } else if (!attrVal) {
51
54
  // eslint-disable-next-line no-console
52
55
  console.debug(
53
- `attribute "${attr}" has no value, should it be added to the boolean attributes list?`
56
+ `attribute "${attr}" has no value, should it be added to the boolean attributes list?`,
54
57
  );
55
58
  }
56
59
  }),
57
- {}
60
+ {},
58
61
  );
59
62
  }
60
63
  };