@repobit/dex-system-design 0.23.7 → 0.23.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
@@ -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.8](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.23.7...@repobit/dex-system-design@0.23.8) (2026-03-25)
7
+
8
+ ### Bug Fixes
9
+
10
+ * **DEX-1014:** fix for compare and awards style issues
11
+
12
+
6
13
  ## [0.23.7](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.23.6...@repobit/dex-system-design@0.23.7) (2026-03-24)
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.7",
3
+ "version": "0.23.8",
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",
@@ -86,5 +86,5 @@
86
86
  "volta": {
87
87
  "node": "24.14.0"
88
88
  },
89
- "gitHead": "457a940c4ec1a3e921ff76c656c5850591ac20a8"
89
+ "gitHead": "e0d9ea64bc98f130a92686d3c0e385d0ba284565"
90
90
  }
@@ -1,7 +1,7 @@
1
1
  import { LitElement, html } from 'lit';
2
2
  import { tokens } from "../../tokens/tokens.js";
3
3
  import './awards-icon.js';
4
- import { awardsCSS } from './awards.css.js';
4
+ import { awardsCSS } from './awards.css';
5
5
 
6
6
  export class AwardsSection extends LitElement {
7
7
  static properties = {
@@ -1,7 +1,10 @@
1
1
  // awards.stories.js
2
2
  import { html } from 'lit';
3
+ import "../heading/heading.js";
4
+ import "../image/image.js";
5
+ import "../link/link.js";
6
+ import "../paragraph/paragraph.js";
3
7
  import './awards.js';
4
-
5
8
  export default {
6
9
  title : 'Components/AwardsSection',
7
10
  component : 'bd-awards-section',
@@ -1,9 +1,6 @@
1
1
  import { LitElement, html, nothing } from "lit";
2
2
  import { tokens } from "../../tokens/tokens.js";
3
- import "../image/image.js";
4
- import "../link/link.js";
5
3
  import compareCSS from "./compare.css.js";
6
-
7
4
  // ═══════════════════════════════════════════════════════════════
8
5
  // compare-bar
9
6
  // Attributes / Properties:
@@ -1,4 +1,8 @@
1
1
  import { html } from "lit";
2
+ import "../heading/heading.js";
3
+ import "../image/image.js";
4
+ import "../link/link.js";
5
+ import "../paragraph/paragraph.js";
2
6
  import "./compare.js";
3
7
 
4
8
  const SHIELD_ICON = "/assets/shield-check.svg";
@@ -117,7 +121,7 @@ export const Default = {
117
121
  bar-stretch="false"
118
122
  >
119
123
  <compare-bar label="Bitdefender" score="5.86" max-score="6" variant="primary"></compare-bar>
120
- <compare-bar label="Norton" score="5.89" max-score="6" variant="secondary" scale="0.93"></compare-bar>
124
+ <compare-bar label="Norton" score="5.89" max-score="6" variant="secondary" scale="0.73"></compare-bar>
121
125
  <compare-bar label="McAfee" score="5.53" max-score="6" variant="secondary" scale="0.47"></compare-bar>
122
126
  </compare-card>
123
127
  </bd-compare-section>