File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 236
236
<input
237
237
bind:this ={cmdKInput }
238
238
bind:value ={cmdKValue }
239
- class =" focus:ring-b caret-primary dark:caret-dark focus:outline-hidden w-full placeholder:text-black/20 dark:bg-black dark:placeholder:text-white/30"
239
+ class =" caret-primary dark:caret-dark focus:outline-hidden w-full placeholder:text-black/20 dark:bg-black dark:placeholder:text-white/30"
240
240
type =" text"
241
241
placeholder ={isZh ? ' 请输入组件关键字' : ' Please enter the component keyword' }
242
242
/>
343
343
</button >
344
344
</div >
345
345
</div >
346
+ <div class =" h-px bg-black/5 dark:bg-white/10" ></div >
346
347
{/each }
347
348
</div >
348
349
<div class =" flex gap-4 border-t border-black/10 px-4 py-2 text-xs opacity-60 dark:border-white/10" >
Original file line number Diff line number Diff line change 147
147
{isZh ? ' 更新日志' : ' Changelog' }
148
148
</a >
149
149
<div class =" my-2 h-px bg-black/5 dark:bg-white/20" ></div >
150
- <a href =" https://0.stdf.design" target =" _blank" class =" hover:underline" >Version 0.x </a >
150
+ <div class =" flex flex-col space-y-2" >
151
+ <a href =" https://1.0.stdf.design" target =" _blank" class =" hover:underline" >Version 1.0.x </a >
152
+ <a href =" https://0.stdf.design" target =" _blank" class =" hover:underline" >Version 0.x </a >
153
+ </div >
151
154
</div >
152
155
{/if }
153
156
</div >
Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
- import { mdTextToHljs } from ' ../../../utils/index' ;
2
+ import { mdTextToHljs , groupIconMdPlugin } from ' ../../../utils/index' ;
3
3
import { isWideScreenStore } from ' ../../../store' ;
4
4
5
5
// @ts-ignore
8
8
import text_en from ' ../../../../../mds/guide/icon_en.md' ;
9
9
10
10
const isZh = localStorage .getItem (' lang' ) === ' zh_CN' ;
11
- const hljsText = mdTextToHljs ((isZh ? text : text_en ).replace (/ <a href="/ g , ' <a target="_blank" href="' ));
11
+ const hljsText = groupIconMdPlugin ( mdTextToHljs ((isZh ? text : text_en ).replace (/ <a href="/ g , ' <a target="_blank" href="' ) ));
12
12
</script >
13
13
14
14
<article
You can’t perform that action at this time.
0 commit comments