Skip to content

Commit 5ade4a3

Browse files
Merge branch 'main' into copilot/fix-4206
2 parents 6271418 + d67eaa0 commit 5ade4a3

File tree

12 files changed

+145
-140
lines changed

12 files changed

+145
-140
lines changed

output/stencil/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"devDependencies": {
3232
"@custom-elements-manifest/analyzer": "0.10.5",
33-
"@stencil/core": "4.36.2",
33+
"@stencil/core": "4.36.3",
3434
"cem-plugin-expanded-types": "1.4.0",
3535
"custom-element-jet-brains-integration": "1.7.0",
3636
"custom-element-vs-code-integration": "1.5.0",

output/vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
"tsx": "4.20.4",
4444
"typescript": "5.8.3",
4545
"vite": "6.3.5",
46-
"vue": "3.5.18",
47-
"vue-tsc": "3.0.5"
46+
"vue": "3.5.19",
47+
"vue-tsc": "3.0.6"
4848
},
4949
"publishConfig": {
5050
"registry": "https://registry.npmjs.org/",

package-lock.json

Lines changed: 119 additions & 119 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@builder.io/mitosis-cli": "0.12.1",
5151
"@typescript-eslint/eslint-plugin": "8.40.0",
5252
"cpr": "3.0.1",
53-
"cssnano": "7.1.0",
53+
"cssnano": "7.1.1",
5454
"hygen": "6.2.11",
5555
"nodemon": "3.1.10",
5656
"sass": "1.85.0",

packages/components/src/components/header/header.scss

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,21 @@
5353
}
5454
}
5555

56-
// Hide the burger menu if there is no navigation
57-
&:has(.db-header-navigation:empty) {
56+
// Hide the burger ONLY when the drawer would be empty.
57+
// This requires: no main navigation AND no meta navigation AND no secondary action.
58+
&:has(.db-header-navigation:empty):has(
59+
.db-header-meta-navigation:empty
60+
):has(.db-header-secondary-action:empty) {
5861
.db-header-burger-menu-container {
5962
display: none;
6063
}
64+
}
6165

62-
&:has(.db-header-secondary-action:empty) {
63-
.db-header-action-container::before {
64-
display: none;
65-
}
66+
// Hide the action-area divider only when both navigation and secondary action are missing.
67+
// With no navigation but a secondary action, we keep the divider.
68+
&:has(.db-header-navigation:empty):has(.db-header-secondary-action:empty) {
69+
.db-header-action-container::before {
70+
display: none;
6671
}
6772
}
6873
}

packages/components/src/components/input/input.lite.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export default function DBInput(props: DBInputProps) {
241241
form={props.form}
242242
pattern={props.pattern}
243243
size={props.size}
244-
// @ts-expect-error inout has a property autoComplete
244+
// @ts-expect-error input has a property autoComplete
245245
autoComplete={props.autocomplete}
246246
autoFocus={getBoolean(props.autofocus, 'autofocus')}
247247
onInput={(event: ChangeEvent<HTMLInputElement>) =>

packages/foundations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@db-ux/icon-font-tools": "0.3.4",
5151
"@playwright/test": "1.54.2",
5252
"cpr": "3.0.1",
53-
"cssnano": "7.1.0",
53+
"cssnano": "7.1.1",
5454
"dotenv": "17.2.1",
5555
"glob": "11.0.3",
5656
"nodemon": "3.1.10",

showcases/nuxt-showcase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"dependencies": {
1414
"nuxt": "4.0.3",
15-
"vue": "3.5.18",
15+
"vue": "3.5.19",
1616
"vue-router": "4.5.1"
1717
}
1818
}

showcases/patternhub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"esbuild": "0.25.9",
4444
"eslint": "8.57.1",
4545
"eslint-config-next": "15.4.7",
46-
"iframe-resizer": "5.5.2",
46+
"iframe-resizer": "5.5.3",
4747
"open-cli": "8.0.0",
4848
"prettier": "3.6.2",
4949
"sass": "1.85.0",

showcases/patternhub/pages/foundations/playgrounds/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ We would also appreciate it if you could provide a working example when opening
2727
</DBCard>
2828
</a>
2929

30-
<a href="https://codesandbox.io/s/github/db-ux-design-system/examples/tree/main/angular17-example">
30+
<a href="https://codesandbox.io/s/github/db-ux-design-system/examples/tree/main/angular18-example">
3131
<DBCard behavior="interactive">
3232
![](/assets/images/angular-showcase.svg)
33-
<strong>Angular 17</strong>
33+
<strong>Angular 18</strong>
3434
Angular app including `@db-ux/ngx-core-components`
3535
</DBCard>
3636
</a>
@@ -65,10 +65,10 @@ We would also appreciate it if you could provide a working example when opening
6565
</DBCard>
6666
</a>
6767

68-
<a href="https://stackblitz.com/fork/github/db-ux-design-system/examples/tree/main/angular17-example?file=index.html">
68+
<a href="https://stackblitz.com/fork/github/db-ux-design-system/examples/tree/main/angular18-example?file=index.html">
6969
<DBCard behavior="interactive">
7070
![](/assets/images/angular-showcase.svg)
71-
<strong>Angular 17</strong>
71+
<strong>Angular 18</strong>
7272
Angular app including `@db-ux/ngx-core-components`
7373
</DBCard>
7474
</a>

0 commit comments

Comments
 (0)