mdk-skills 2.2.18 → 2.2.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdk-skills",
3
- "version": "2.2.18",
3
+ "version": "2.2.20",
4
4
  "description": "mdk-engineer - 沉稳靠谱的前端开发助手 Claude Skills 配置包,一键注入 .claude/ 技能目录和 CLAUDE.md 人设配置",
5
5
  "author": "XiaoMa",
6
6
  "license": "MIT",
@@ -15,7 +15,11 @@
15
15
  @update:value="onMenuChange"
16
16
  />
17
17
  </div>
18
- <n-tag v-if="statusData" :type="statusData.sourcePath ? 'success' : 'default'" size="small">
18
+ <n-tag
19
+ v-if="statusData"
20
+ :type="statusData.sourcePath ? 'success' : 'default'"
21
+ size="small"
22
+ >
19
23
  {{ statusData.sourcePath ? "本地源" : "npm 源" }}
20
24
  </n-tag>
21
25
  </div>
@@ -105,10 +109,16 @@ onMounted(loadStatus);
105
109
 
106
110
  .fade-enter-active,
107
111
  .fade-leave-active {
108
- transition: opacity 0.2s ease;
112
+ transition:
113
+ opacity 0.6s ease,
114
+ transform 0.6s ease;
115
+ }
116
+
117
+ .fade-enter-from {
118
+ opacity: 0;
119
+ transform: translateY(6px);
109
120
  }
110
121
 
111
- .fade-enter-from,
112
122
  .fade-leave-to {
113
123
  opacity: 0;
114
124
  }