@repobit/dex-system-design 0.23.38 → 0.23.39

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
@@ -3,6 +3,13 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.23.39](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.23.38...@repobit/dex-system-design@0.23.39) (2026-05-27)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **DEX-1014:** update accordion background styles and logic
11
+
12
+
6
13
  ## [0.23.38](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.23.37...@repobit/dex-system-design@0.23.38) (2026-05-26)
7
14
 
8
15
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repobit/dex-system-design",
3
- "version": "0.23.38",
3
+ "version": "0.23.39",
4
4
  "description": "Design system based on Web Components.",
5
5
  "author": "Iordache Matei Cezar <miordache@bitdefender.com>",
6
6
  "homepage": "https://github.com/bitdefender/dex-core#readme",
@@ -70,8 +70,8 @@
70
70
  "url": "https://github.com/bitdefender/dex-core/issues"
71
71
  },
72
72
  "dependencies": {
73
- "@repobit/dex-store": "1.3.34",
74
- "@repobit/dex-store-elements": "1.4.26",
73
+ "@repobit/dex-store": "1.3.35",
74
+ "@repobit/dex-store-elements": "1.4.27",
75
75
  "lit": "^3.3.2"
76
76
  },
77
77
  "devDependencies": {
@@ -88,5 +88,5 @@
88
88
  "volta": {
89
89
  "node": "24.14.0"
90
90
  },
91
- "gitHead": "e639a21f5618fc23aff63c32c9447ce67df63558"
91
+ "gitHead": "de85da7811e34bd95e7873bf75dd612a54bfc4b1"
92
92
  }
@@ -30,7 +30,12 @@ export default css`
30
30
  z-index: 1;
31
31
  border-radius: var(--radius-sm);
32
32
  }
33
-
33
+ .bd-accordion-bg-inner {
34
+ max-width: 1290px;
35
+ margin-inline: auto;
36
+ padding-inline: var(--layout-ensemble-inline-padding, var(--spacing-24));
37
+ box-sizing: border-box;
38
+ }
34
39
  /* Focus ring pentru varianta terms-of-use — fara background deci ring simplu */
35
40
  :host(bd-accordion-bg-item[data-variant="terms-of-use"][data-bd-acc-focus]) {
36
41
  // box-shadow: var(--focus-outline-primary);
@@ -68,14 +68,16 @@ class BdAccordionBg extends LitElement {
68
68
 
69
69
  _renderFaq() {
70
70
  return html`
71
- <div class="bd-accordion-bg-container ${this.noBg ? "no-bg" : ""}">
71
+ <div class="bd-accordion-bg-container ${this.noBg ? "no-bg" : ""}">
72
+ <div class="bd-accordion-bg-inner">
72
73
  <div class="bd-accordion-bg-header">
73
74
  <bd-h as="h2" class="bd-accordion-bg-title">${this.title}</bd-h>
74
75
  </div>
75
76
  <slot></slot>
76
77
  <slot name="footer"></slot>
77
78
  </div>
78
- `;
79
+ </div>
80
+ `;
79
81
  }
80
82
 
81
83
  _renderTerms() {