Skip to content

Commit a27b1c4

Browse files
authored
fix: the failure of breadcrumb animation (#4073)
1 parent 1d38fb6 commit a27b1c4

File tree

8 files changed

+9
-21
lines changed

8 files changed

+9
-21
lines changed

.github/workflows/draft.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
permissions:
99
contents: read
10+
pull-requests: write
1011

1112
jobs:
1213
update_release_draft:

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,5 +189,7 @@
189189
},
190190
"commentTranslate.hover.enabled": false,
191191
"i18n-ally.keystyle": "nested",
192-
"commentTranslate.multiLineMerge": true
192+
"commentTranslate.multiLineMerge": true,
193+
"vue.server.hybridMode": true,
194+
"typescript.tsdk": "node_modules/typescript/lib"
193195
}

docs/src/guide/essentials/build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

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

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

1515
```bash
1616
pnpm build
@@ -24,7 +24,7 @@ pnpm build
2424

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

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

2929
```bash
3030
pnpm preview

internal/tsconfig/base.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
"moduleResolution": "node",
1515
"resolveJsonModule": true,
16+
"allowImportingTsExtensions": true,
1617

1718
"strict": true,
1819
"strictNullChecks": true,

packages/@core/ui-kit/shadcn-ui/src/styles/index.css renamed to packages/@core/base/design/src/css/ui.css

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,6 @@
3434
transform: translateX(30px) skewX(-30deg);
3535
}
3636

37-
/*
38-
.breadcrumb-transition-move,
39-
.breadcrumb-transition-enter-active {
40-
transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
41-
}
42-
43-
.breadcrumb-transition-leave-active {
44-
display: none;
45-
}
46-
47-
.breadcrumb-transition-enter-from {
48-
opacity: 0;
49-
transform: translateX(-5px);
50-
} */
51-
5237
@keyframes slide-down {
5338
from {
5439
opacity: 0;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import './css/global.css';
22
import './css/transition.css';
33
import './css/nprogress.css';
4+
import './css/ui.css';
45
import './design-tokens';
56

67
export {};
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
import './styles/index.css';
2-
31
export * from './components';
42
export { VisuallyHidden } from 'radix-vue';

scripts/vsh/src/check-dep/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function runDepcheck() {
4444
// 删除file:前缀的依赖提示,该依赖是本地依赖
4545
Reflect.deleteProperty(unused.missing, 'file:');
4646
Object.keys(unused.missing).forEach((key) => {
47-
unused.missing[key] = unused.missing[key].filter(
47+
unused.missing[key] = (unused.missing[key] || []).filter(
4848
(item: string) => !item.startsWith('/'),
4949
);
5050
if (unused.missing[key].length === 0) {

0 commit comments

Comments
 (0)