Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: the failure of breadcrumb animation #4073

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

permissions:
contents: read
pull-requests: write

jobs:
update_release_draft:
Expand Down
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,5 +189,7 @@
},
"commentTranslate.hover.enabled": false,
"i18n-ally.keystyle": "nested",
"commentTranslate.multiLineMerge": true
"commentTranslate.multiLineMerge": true,
"vue.server.hybridMode": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
4 changes: 2 additions & 2 deletions docs/src/guide/essentials/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

项目开发完成之后,执行以下命令进行构建:

**注意:** 请在项目跟目录下执行以下命令
**注意:** 请在项目根目录下执行以下命令

```bash
pnpm build
Expand All @@ -24,7 +24,7 @@ pnpm build

- 使用项目自定的命令进行预览(推荐)

**注意:** 请在项目跟目录下执行以下命令
**注意:** 请在项目根目录下执行以下命令

```bash
pnpm preview
Expand Down
1 change: 1 addition & 0 deletions internal/tsconfig/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

"moduleResolution": "node",
"resolveJsonModule": true,
"allowImportingTsExtensions": true,

"strict": true,
"strictNullChecks": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,6 @@
transform: translateX(30px) skewX(-30deg);
}

/*
.breadcrumb-transition-move,
.breadcrumb-transition-enter-active {
transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.breadcrumb-transition-leave-active {
display: none;
}

.breadcrumb-transition-enter-from {
opacity: 0;
transform: translateX(-5px);
} */

@keyframes slide-down {
from {
opacity: 0;
Expand Down
1 change: 1 addition & 0 deletions packages/@core/base/design/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import './css/global.css';
import './css/transition.css';
import './css/nprogress.css';
import './css/ui.css';
import './design-tokens';

export {};
2 changes: 0 additions & 2 deletions packages/@core/ui-kit/shadcn-ui/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
import './styles/index.css';

export * from './components';
export { VisuallyHidden } from 'radix-vue';
2 changes: 1 addition & 1 deletion scripts/vsh/src/check-dep/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function runDepcheck() {
// 删除file:前缀的依赖提示,该依赖是本地依赖
Reflect.deleteProperty(unused.missing, 'file:');
Object.keys(unused.missing).forEach((key) => {
unused.missing[key] = unused.missing[key].filter(
unused.missing[key] = (unused.missing[key] || []).filter(
(item: string) => !item.startsWith('/'),
);
if (unused.missing[key].length === 0) {
Expand Down
Loading