@repobit/dex-system-design 0.6.0 → 0.8.0

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,32 @@
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.8.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.7.0...@repobit/dex-system-design@0.8.0) (2025-07-22)
7
+
8
+
9
+ ### Features
10
+
11
+ * **DEX-23636:** tests ([c760fca](https://github.com/bitdefender/dex-core/commit/c760fca8316c2497128d67e34ce5bc40e3977c0e))
12
+ * **DEX-23636:** update value proposition for Bitdefender Ultimate Security in index.html ([8e664fd](https://github.com/bitdefender/dex-core/commit/8e664fd6d06a54eb0cb357e859c7001543e27355))
13
+ * **DEX-23636:** update value proposition for Bitdefender Ultimate Security in index.html ([29789e2](https://github.com/bitdefender/dex-core/commit/29789e293ea29a54ad20c58aadb201f02e120685))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **DEX-23636:** correct import statement and format properties in Header component ([4a8dd5b](https://github.com/bitdefender/dex-core/commit/4a8dd5b0385082233bc24c95548d6f8cff4608e2))
19
+ * **DEX-23636:** refine value proposition and remove test runner mention in Header component ([c7a49e5](https://github.com/bitdefender/dex-core/commit/c7a49e5d1a5a516d192239ebb956c4aaf8ec65df))
20
+
21
+
22
+
23
+ ## [0.7.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.6.0...@repobit/dex-system-design@0.7.0) (2025-07-11)
24
+
25
+
26
+ ### Features
27
+
28
+ * **DEX-23636:** update import path for css from relative to absolute ([dd923b1](https://github.com/bitdefender/dex-core/commit/dd923b1c6168ea4e18dcb62f63a7cadcf46857fe))
29
+
30
+
31
+
6
32
  ## [0.6.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.5.0...@repobit/dex-system-design@0.6.0) (2025-06-25)
7
33
 
8
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repobit/dex-system-design",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
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",
@@ -54,5 +54,5 @@
54
54
  "volta": {
55
55
  "node": "22.14.0"
56
56
  },
57
- "gitHead": "70accd8e5e61d8344dd833fe6d5f343f973e2ce8"
57
+ "gitHead": "5ee2a9f24ee50e104c614725020f50004a644f86"
58
58
  }
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
  :host {
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
  .input-container {
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
  :host {
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
  :host {
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
  :host {
@@ -1,14 +1,14 @@
1
- import { LitElement, html, css } from "lit";
1
+ import { LitElement, html } from "lit";
2
2
  import headerCSS from "../header/header.css.js";
3
3
 
4
4
  class Header extends LitElement {
5
5
  static properties = {
6
6
  productName: { type: String, attribute: "product-name" },
7
- valueProp: { type: String, attribute: "value-prop" },
7
+ valueProp : { type: String, attribute: "value-prop" },
8
8
  description: { type: String },
9
- fullPrice: { type: String, attribute: "full-price" },
10
- discount: { type: String },
11
- finalPrice: { type: String, attribute: "final-price" },
9
+ fullPrice : { type: String, attribute: "full-price" },
10
+ discount : { type: String },
11
+ finalPrice : { type: String, attribute: "final-price" }
12
12
  };
13
13
 
14
14
  constructor() {
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
 
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
  :host {
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
  :host {
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
  :host {
@@ -1,4 +1,4 @@
1
- import { css } from "../lit";
1
+ import { css } from "lit";
2
2
 
3
3
  export default css`
4
4
  :host {