Skip to content

Commit

Permalink
Merge pull request #2573 from db-ui/dependabot-npm_and_yarn-builder-i…
Browse files Browse the repository at this point in the history
…o-41c231627b

chore(deps-dev): bump the builder-io group with 2 updates
  • Loading branch information
github-actions[bot] authored Apr 24, 2024
2 parents eb3cbfc + abbcbcd commit 792acec
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
},
"devDependencies": {
"@builder.io/eslint-plugin-mitosis": "^0.0.15",
"@builder.io/mitosis": "^0.2.4",
"@builder.io/mitosis-cli": "^0.2.4",
"@builder.io/mitosis": "^0.2.6",
"@builder.io/mitosis-cli": "^0.2.6",
"@react-docgen/cli": "^2.0.3",
"cpr": "3.0.1",
"cssnano": "^6.1.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const comp: any = (
<a href="#">Sub1</a>
</DBNavigationItem>
}>
{/*<template v-slot:subnavigation>
{/*<template v-slot:sub-navigation>
<DBNavigationItem data-testid="sub1">
<a href="#">Sub1</a>
</DBNavigationItem>
Expand Down
6 changes: 3 additions & 3 deletions showcases/vue-showcase/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const sortedNavigation = getSortedNavigationItems(navigationItems);
<NavItemComponent :navItem="item"></NavItemComponent>
</template>
</DBNavigation>
<template v-slot:calltoaction>
<template v-slot:call-to-action>
<DBButton
icon="magnifying_glass"
variant="ghost"
Expand All @@ -98,7 +98,7 @@ const sortedNavigation = getSortedNavigationItems(navigationItems);
Search
</DBButton>
</template>
<template v-slot:actionbar>
<template v-slot:action-bar>
<DBButton icon="user" variant="ghost" :no-text="true">
Profile
</DBButton>
Expand All @@ -113,7 +113,7 @@ const sortedNavigation = getSortedNavigationItems(navigationItems);
Help
</DBButton>
</template>
<template v-slot:metanavigation>
<template v-slot:meta-navigation>
<DBSelect
label="Density"
variant="floating"
Expand Down
2 changes: 1 addition & 1 deletion showcases/vue-showcase/src/NavItemComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defineProps<{

<template>
<DBNavigationItem :backButtonText="`Back to ${navItem.label}`">
<template v-if="navItem.subNavigation" v-slot:subnavigation>
<template v-if="navItem.subNavigation" v-slot:sub-navigation>
<template v-for="item of navItem.subNavigation">
<NavItemComponent :navItem="item"></NavItemComponent>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import DefaultComponent from "../DefaultComponent.vue";
import defaultComponentVariants from "../../../../shared/navigation-item.json";
import { DBNavigationItem } from "../../../../../output/vue/src";
const log = (exampleName: string) => {
const log = (exampleName?: string) => {
// eslint-disable-next-line no-alert
alert(exampleName);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import { DBNavigation, DBNavigationItem } from "../../../../../output/vue/src";
<DBNavigation>
<DBNavigationItem :active="true">
Navi-Item 1
<template v-slot:subnavigation>
<template v-slot:sub-navigation>
<DBNavigationItem :active="true">
Sub-Navi-Item 1

<template v-slot:subnavigation>
<template v-slot:sub-navigation>
<DBNavigationItem :active="true">
<a href="#">Sub-Sub-Navi-Item 1</a>
</DBNavigationItem>
Expand Down

0 comments on commit 792acec

Please sign in to comment.