@repobit/dex-system-design 0.21.0 → 0.21.2

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,23 @@
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.21.2](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.21.1...@repobit/dex-system-design@0.21.2) (2025-11-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **DEX-1005:** add missing button component and apply fixes ([06acf35](https://github.com/bitdefender/dex-core/commit/06acf35c1c7452916aa8598ab43479d6273bca71))
12
+
13
+
14
+
15
+ ## [0.21.1](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.21.0...@repobit/dex-system-design@0.21.1) (2025-11-18)
16
+
17
+ **Note:** Version bump only for package @repobit/dex-system-design
18
+
19
+
20
+
21
+
22
+
6
23
  ## [0.21.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.20.0...@repobit/dex-system-design@0.21.0) (2025-11-05)
7
24
 
8
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repobit/dex-system-design",
3
- "version": "0.21.0",
3
+ "version": "0.21.2",
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",
@@ -31,13 +31,18 @@
31
31
  "./footer-lp": "./src/components/footer/footer-lp.js",
32
32
  "./footer-nav-menu": "./src/components/footer/footer-nav-menu.js",
33
33
  "./grid": "./src/components/grid/grid.js",
34
+ "./heading": "./src/components/heading/heading.js",
34
35
  "./header": "./src/components/header/header.js",
35
36
  "./highlight": "./src/components/highlight/highlight.js",
37
+ "./image": "./src/components/image/image.js",
36
38
  "./input": "./src/components/input/input.js",
37
39
  "./link": "./src/components/link/link.js",
40
+ "./list": "./src/components/list/list.js",
41
+ "./list-item": "./src/components/list/list-item/list-item.js",
38
42
  "./light-carousel": "./src/components/light-carousel/light-carousel.js",
39
43
  "./modal": "./src/components/modal/modal.js",
40
44
  "./paragraph": "./src/components/paragraph/paragraph.js",
45
+ "./picture": "./src/components/picture/picture.js",
41
46
  "./pricing-cards": "./src/components/pricing-cards/pricing-card.js",
42
47
  "./radio": "./src/components/radio/radio.js",
43
48
  "./tabs": "./src/components/tabs/tabs.js",
@@ -78,5 +83,5 @@
78
83
  "volta": {
79
84
  "node": "22.14.0"
80
85
  },
81
- "gitHead": "a1e5bfebddd95d02a095d4992fd7c5cf60423865"
86
+ "gitHead": "9eaded413b63ef26ea84fbfab95359397be9f140"
82
87
  }
@@ -1,5 +1,6 @@
1
1
  import { LitElement, html } from "lit";
2
2
  import { tokens } from "../../tokens/tokens.js";
3
+ import "../Button/Button.js";
3
4
  import { anchorNavStyles } from "./anchor-nav.css.js";
4
5
 
5
6
  class BdAnchorNavItem extends HTMLElement {
@@ -1,13 +1,14 @@
1
1
  import { LitElement, html } from "lit";
2
2
  import { tokens } from "../../tokens/tokens.js";
3
+ import "../Button/Button.js";
3
4
  import headerCSS from "../header/header.css.js";
4
5
  import "../heading/heading.js";
5
6
  import "../paragraph/paragraph.js";
6
7
 
7
8
  class Header extends LitElement {
8
9
  static properties = {
9
- productName: { type: String },
10
- valueProp : { type: String },
10
+ title : { type: String },
11
+ subtitle : { type: String },
11
12
  description: { type: String },
12
13
  fullPrice : { type: String },
13
14
  discount : { type: String },
@@ -16,6 +17,9 @@ class Header extends LitElement {
16
17
 
17
18
  constructor() {
18
19
  super();
20
+ this.title = "";
21
+ this.subtitle = "";
22
+ this.description = "";
19
23
  }
20
24
 
21
25
  attributeChangedCallback(name, oldVal, newVal) {
@@ -26,8 +30,8 @@ class Header extends LitElement {
26
30
  return html`
27
31
  <div class="bd-container">
28
32
  <div class="bd-header-left">
29
- <bd-h as="h2" class="bd-product-name">${this.productName}</bd-h>
30
- <bd-h as="h4" class="bd-value-prop">${this.valueProp}</bd-h>
33
+ <bd-h as="h2" class="bd-product-name">${this.title}</bd-h>
34
+ <bd-h as="h4" class="bd-value-prop">${this.subtitle}</bd-h>
31
35
  <bd-p kind="regular" class="bd-description">${this.description}</bd-p>
32
36
 
33
37
  <div class="bd-price-zone-top">
@@ -1,5 +1,6 @@
1
1
  import { LitElement, html } from 'lit';
2
2
  import { tokens } from "../../tokens/tokens.js";
3
+ import "../Button/Button.js";
3
4
  import newActionsPricingCSS from "../pricing-cards/pricing-card-actions.css.js";
4
5
 
5
6
  class PricingCardActions extends LitElement {
@@ -1,9 +1,9 @@
1
1
  import { LitElement, html } from "lit";
2
2
  import { tokens } from "../../tokens/tokens.js";
3
+ import "../Button/Button.js";
3
4
  import "../heading/heading.js";
4
5
  import "../paragraph/paragraph.js";
5
6
  import pricingCardsCSS from "../pricing-cards/pricing-card.css.js";
6
- import "/src/components/Button/Button.js";
7
7
 
8
8
  class PricingContainer extends LitElement {
9
9
  static properties = {