Skip to content

Commit 5e7ac47

Browse files
committed
chore: bump deps, crlf->lf
1 parent 0e88ff6 commit 5e7ac47

7 files changed

Lines changed: 29 additions & 35 deletions

File tree

.gitattributes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
*.md linguist-detectable=true
2-
docs/** linguist-documentation=false
2+
docs/** linguist-documentation=false
3+
4+
* text eol=lf
5+
public/ binary

docs/.vitepress/components/ArticleList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ async function loadMore() {
4343
}
4444
4545
const loadTrigger = useTemplateRef<Element[]>('load-trigger')
46+
// @ts-expect-error https://github.com/vueuse/vueuse/issues/4712
4647
// `useIntersectionObserver` | `useTemplateRef` of array type cannot be passed as argument
47-
// https://github.com/vueuse/vueuse/issues/4712
4848
useIntersectionObserver(loadTrigger, ([{ isIntersecting }]) => {
4949
if (isIntersecting)
5050
loadMore()

docs/.vitepress/components/MemberCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ defineProps<Member>()
5959
position: absolute;
6060
opacity: 0.6;
6161
margin-top: -1em;
62-
mask: linear-gradient(#fff, transparent);
62+
mask: linear-gradient(#FFF, transparent);
6363
font-size: 14px;
6464
font-weight: bold;
6565
}

docs/.vitepress/theme/reusable.css

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,20 @@
3636
@keyframes scrollcheck-x {
3737
0% {
3838
mask:
39-
linear-gradient(to right, #fff calc(100% - var(--fadeout-width)), transparent),
40-
linear-gradient(to top, #fff var(--guessed-scrollbar-height), transparent var(--guessed-scrollbar-height));
39+
linear-gradient(to right, #FFF calc(100% - var(--fadeout-width)), transparent),
40+
linear-gradient(to top, #FFF var(--guessed-scrollbar-height), transparent var(--guessed-scrollbar-height));
4141
}
4242

4343
0.01%, 99.99% {
4444
mask:
45-
linear-gradient(to right, #fff var(--left-offset), transparent var(--left-offset), #fff calc(var(--left-offset) + var(--fadeout-width)), #fff calc(100% - var(--fadeout-width)), transparent),
46-
linear-gradient(to top, #fff var(--guessed-scrollbar-height), transparent var(--guessed-scrollbar-height));
45+
linear-gradient(to right, #FFF var(--left-offset), transparent var(--left-offset), #FFF calc(var(--left-offset) + var(--fadeout-width)), #FFF calc(100% - var(--fadeout-width)), transparent),
46+
linear-gradient(to top, #FFF var(--guessed-scrollbar-height), transparent var(--guessed-scrollbar-height));
4747
}
4848

4949
100% {
5050
mask:
51-
linear-gradient(to right, #fff var(--left-offset), transparent var(--left-offset), #fff calc(var(--left-offset) + var(--fadeout-width))),
52-
linear-gradient(to top, #fff var(--guessed-scrollbar-height), transparent var(--guessed-scrollbar-height));
51+
linear-gradient(to right, #FFF var(--left-offset), transparent var(--left-offset), #FFF calc(var(--left-offset) + var(--fadeout-width))),
52+
linear-gradient(to top, #FFF var(--guessed-scrollbar-height), transparent var(--guessed-scrollbar-height));
5353
}
5454
}
5555

@@ -66,20 +66,20 @@
6666
@keyframes scrollcheck-y {
6767
0% {
6868
mask:
69-
linear-gradient(to bottom, #fff calc(100% - var(--fadeout-height)), transparent),
70-
linear-gradient(to left, #fff var(--guessed-scrollbar-width), transparent var(--guessed-scrollbar-width));
69+
linear-gradient(to bottom, #FFF calc(100% - var(--fadeout-height)), transparent),
70+
linear-gradient(to left, #FFF var(--guessed-scrollbar-width), transparent var(--guessed-scrollbar-width));
7171
}
7272

7373
0.01%, 99.99% {
7474
mask:
75-
linear-gradient(to bottom, #fff var(--top-offset), transparent var(--top-offset), #fff calc(var(--top-offset) + var(--fadeout-height)), #fff calc(100% - var(--fadeout-height)), transparent),
76-
linear-gradient(to left, #fff var(--guessed-scrollbar-width), transparent var(--guessed-scrollbar-width));
75+
linear-gradient(to bottom, #FFF var(--top-offset), transparent var(--top-offset), #FFF calc(var(--top-offset) + var(--fadeout-height)), #FFF calc(100% - var(--fadeout-height)), transparent),
76+
linear-gradient(to left, #FFF var(--guessed-scrollbar-width), transparent var(--guessed-scrollbar-width));
7777
}
7878

7979
100% {
8080
mask:
81-
linear-gradient(to bottom, #fff var(--top-offset), transparent var(--top-offset), #fff calc(var(--top-offset) + var(--fadeout-height))),
82-
linear-gradient(to left, #fff var(--guessed-scrollbar-width), transparent var(--guessed-scrollbar-width));
81+
linear-gradient(to bottom, #FFF var(--top-offset), transparent var(--top-offset), #FFF calc(var(--top-offset) + var(--fadeout-height))),
82+
linear-gradient(to left, #FFF var(--guessed-scrollbar-width), transparent var(--guessed-scrollbar-width));
8383
}
8484
}
8585

docs/.vitepress/theme/style.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/* stylelint-disable selector-class-pattern */
22
:root {
3-
--vp-c-brand-1: #37f;
4-
--vp-c-brand-2: #3af;
5-
--vp-c-brand-3: #49e;
6-
--vp-c-brand-soft: #3af4;
3+
--vp-c-brand-1: #37F;
4+
--vp-c-brand-2: #3AF;
5+
--vp-c-brand-3: #49E;
6+
--vp-c-brand-soft: #3AF4;
77
}
88

99
.dark:root {
10-
--vp-c-brand-1: #5af;
10+
--vp-c-brand-1: #5AF;
1111
}
1212

1313
select, input {
@@ -78,4 +78,4 @@ svg:where(.iconify) {
7878

7979
.tippy-box > .tippy-svg-arrow {
8080
fill: var(--vp-c-bg-elv);
81-
}
81+
}

docs/.vitepress/theme/theme-enhanced.css

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
/* stylelint-disable-next-line selector-class-pattern */
1+
/* stylelint-disable selector-class-pattern */
22
.VPMenuGroup > .title {
33
font-size: 11px;
44
}
55

6-
/* stylelint-disable-next-line selector-class-pattern */
76
.VPSwitch > .check {
87
bottom: 1px;
98
width: auto;
@@ -29,11 +28,3 @@
2928
.vp-doc s {
3029
opacity: 0.6;
3130
}
32-
33-
.vp-doc .custom-block {
34-
padding: 8px 16px;
35-
}
36-
37-
.vp-doc .custom-block :first-child:first-child {
38-
margin: 8px 0;
39-
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
"lint": "eslint ."
1111
},
1212
"devDependencies": {
13-
"@antfu/eslint-config": "^4.17.0",
13+
"@antfu/eslint-config": "^4.19.0",
1414
"@iconify/vue": "^5.0.0",
1515
"@vueuse/core": "^13.5.0",
16-
"@zinkawaii/stylelint-config": "^0.3.2",
16+
"@zinkawaii/stylelint-config": "^0.3.3",
1717
"eslint": "^9.31.0",
1818
"parse-domain": "^8.2.2",
1919
"pinia": "^3.0.3",
20-
"stylelint": "^16.21.1",
20+
"stylelint": "^16.22.0",
2121
"vitepress": "^1.6.3",
22-
"vue": "^3.5.17",
22+
"vue": "^3.5.18",
2323
"vue-tippy": "^6.7.1"
2424
},
2525
"pnpm": {

0 commit comments

Comments
 (0)