@repobit/dex-system-design 0.23.63 → 0.23.64
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.64](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.23.63...@repobit/dex-system-design@0.23.64) (2026-07-03)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **DEX-1014:** css adjustments for cards component
|
|
11
|
+
|
|
12
|
+
|
|
6
13
|
## [0.23.63](https://github.com/bitdefender/dex-core/compare/@repobit/dex-system-design@0.23.62...@repobit/dex-system-design@0.23.63) (2026-07-02)
|
|
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.
|
|
3
|
+
"version": "0.23.64",
|
|
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.
|
|
74
|
-
"@repobit/dex-store-elements": "1.4.
|
|
73
|
+
"@repobit/dex-store": "1.3.60",
|
|
74
|
+
"@repobit/dex-store-elements": "1.4.52",
|
|
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": "
|
|
91
|
+
"gitHead": "d2ffeffa127085b7c0af844f9965b13afdfd7bd8"
|
|
92
92
|
}
|
|
@@ -8,6 +8,7 @@ export default css`
|
|
|
8
8
|
padding-top: var(--spacing-64);
|
|
9
9
|
padding-bottom: var(--spacing-64);
|
|
10
10
|
max-width: 1290px;
|
|
11
|
+
margin: 0 auto;
|
|
11
12
|
}
|
|
12
13
|
|
|
13
14
|
::slotted([slot="icon"]) {
|
|
@@ -33,8 +34,6 @@ export default css`
|
|
|
33
34
|
justify-content: center;
|
|
34
35
|
position: relative;
|
|
35
36
|
width: 100%;
|
|
36
|
-
margin: var(--spacing-0) auto;
|
|
37
|
-
overflow: hidden;
|
|
38
37
|
flex-direction: column;
|
|
39
38
|
padding-left: var(--spacing-14);
|
|
40
39
|
padding-right: var(--spacing-14);
|
|
@@ -65,7 +64,7 @@ export default css`
|
|
|
65
64
|
scroll-snap-type: x mandatory;
|
|
66
65
|
display: grid;
|
|
67
66
|
gap: 1.5rem;
|
|
68
|
-
grid-template-columns
|
|
67
|
+
/* grid-template-columns vine din JS */
|
|
69
68
|
}
|
|
70
69
|
|
|
71
70
|
.bd-light-carousel-track-s::-webkit-scrollbar {
|
|
@@ -192,7 +191,7 @@ export default css`
|
|
|
192
191
|
}
|
|
193
192
|
|
|
194
193
|
.bd-light-carousel-track-s {
|
|
195
|
-
grid-template-columns: repeat(2, 1fr);
|
|
194
|
+
grid-template-columns: repeat(2, 1fr) !important;
|
|
196
195
|
}
|
|
197
196
|
}
|
|
198
197
|
|
|
@@ -238,7 +237,7 @@ export default css`
|
|
|
238
237
|
|
|
239
238
|
@media (max-width: 600px) {
|
|
240
239
|
.bd-light-carousel-track-s {
|
|
241
|
-
grid-template-columns: 1fr;
|
|
240
|
+
grid-template-columns: 1fr !important;
|
|
242
241
|
}
|
|
243
242
|
}
|
|
244
243
|
`;
|
|
@@ -76,6 +76,8 @@ class Card extends LitElement {
|
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
render() {
|
|
79
|
+
const itemCount = this.querySelectorAll("bd-card-item").length;
|
|
80
|
+
|
|
79
81
|
return html`
|
|
80
82
|
<section class="bd-light-carousel-s">
|
|
81
83
|
${this.title
|
|
@@ -85,7 +87,10 @@ class Card extends LitElement {
|
|
|
85
87
|
</div>
|
|
86
88
|
`
|
|
87
89
|
: null}
|
|
88
|
-
<div
|
|
90
|
+
<div
|
|
91
|
+
class="bd-light-carousel-track-s"
|
|
92
|
+
style="grid-template-columns: repeat(${itemCount}, 1fr);"
|
|
93
|
+
>
|
|
89
94
|
<slot @slotchange=${() => this._equalizeHeights()}></slot>
|
|
90
95
|
</div>
|
|
91
96
|
</section>
|