Skip to content

Commit 5eac34f

Browse files
committed
Remove .ce from custom-elements
1 parent 18aa36a commit 5eac34f

19 files changed

+34
-17
lines changed

components.d.ts

+17
Original file line numberDiff line numberDiff line change
@@ -7,38 +7,55 @@ export {}
77
/* prettier-ignore */
88
declare module 'vue' {
99
export interface GlobalComponents {
10+
AtAnchor: typeof import('./src/components/custom-elements/AtAnchor.vue')['default']
1011
'AtAnchor.ce': typeof import('./src/components/custom-elements/AtAnchor.ce.vue')['default']
12+
AtImg: typeof import('./src/components/custom-elements/AtImg.vue')['default']
1113
'AtImg.ce': typeof import('./src/components/custom-elements/AtImg.ce.vue')['default']
14+
AtLink: typeof import('./src/components/custom-elements/AtLink.vue')['default']
1215
'AtLink.ce': typeof import('./src/components/custom-elements/AtLink.ce.vue')['default']
16+
AtStyle: typeof import('./src/components/custom-elements/AtStyle.vue')['default']
1317
'AtStyle.ce': typeof import('./src/components/custom-elements/AtStyle.ce.vue')['default']
18+
AtWebStylesheet: typeof import('./src/components/custom-elements/AtWebStylesheet.vue')['default']
1419
'AtWebStylesheet.ce': typeof import('./src/components/custom-elements/AtWebStylesheet.ce.vue')['default']
20+
AtWebTitle: typeof import('./src/components/custom-elements/AtWebTitle.vue')['default']
1521
'AtWebTitle.ce': typeof import('./src/components/custom-elements/AtWebTitle.ce.vue')['default']
22+
BlueskyPost: typeof import('./src/components/custom-elements/BlueskyPost.vue')['default']
1623
'BlueskyPost.ce': typeof import('./src/components/custom-elements/BlueskyPost.ce.vue')['default']
1724
BlueskyPostce: typeof import('./src/components/custom-elements/BlueskyPostce.vue')['default']
1825
'BlueskyPostEmbed.ce': typeof import('./src/components/custom-elements/BlueskyPostEmbed.ce.vue')['default']
26+
BlueskyProfileCard: typeof import('./src/components/custom-elements/BlueskyProfileCard.vue')['default']
1927
'BlueskyProfileCard.ce': typeof import('./src/components/custom-elements/BlueskyProfileCard.ce.vue')['default']
28+
BlueskyProfileFeed: typeof import('./src/components/custom-elements/BlueskyProfileFeed.vue')['default']
2029
'BlueskyProfileFeed.ce': typeof import('./src/components/custom-elements/BlueskyProfileFeed.ce.vue')['default']
2130
copy: typeof import('./src/components/custom-elements/BlueskyPostEmbed.ce copy.vue')['default']
31+
EightyEightThirtyOneBadge: typeof import('./src/components/custom-elements/EightyEightThirtyOneBadge.vue')['default']
2232
'EightyEightThirtyOneBadge.ce': typeof import('./src/components/custom-elements/EightyEightThirtyOneBadge.ce.vue')['default']
33+
LesbiBadge: typeof import('./src/components/custom-elements/LesbiBadge.vue')['default']
2334
'LesbiBadge.ce': typeof import('./src/components/custom-elements/LesbiBadge.ce.vue')['default']
2435
MarkdownRenderer: typeof import('./src/components/MarkdownRenderer.vue')['default']
2536
MonacoEditor: typeof import('./src/components/MonacoEditor.vue')['default']
37+
NewBlink: typeof import('./src/components/custom-elements/NewBlink.vue')['default']
2638
'NewBlink.ce': typeof import('./src/components/custom-elements/NewBlink.ce.vue')['default']
39+
OmitVanillaCss: typeof import('./src/components/custom-elements/OmitVanillaCss.vue')['default']
2740
'OmitVanillaCss.ce': typeof import('./src/components/custom-elements/OmitVanillaCss.ce.vue')['default']
41+
OnekoKitty: typeof import('./src/components/custom-elements/OnekoKitty.vue')['default']
2842
'OnekoKitty.ce': typeof import('./src/components/custom-elements/OnekoKitty.ce.vue')['default']
2943
PModal: typeof import('./src/components/PModal.vue')['default']
44+
RingLink: typeof import('./src/components/custom-elements/RingLink.vue')['default']
3045
'RingLink.ce': typeof import('./src/components/custom-elements/RingLink.ce.vue')['default']
3146
RouterLink: typeof import('vue-router')['RouterLink']
3247
RouterView: typeof import('vue-router')['RouterView']
3348
SignInGate: typeof import('./src/components/SignInGate.vue')['default']
3449
SpotifyPlayer: typeof import('./src/components/custom-elements/SpotifyPlayer.vue')['default']
3550
UsePico: typeof import('./src/components/UsePico.vue')['default']
51+
UserbarBadge: typeof import('./src/components/custom-elements/UserbarBadge.vue')['default']
3652
'UserbarBadge.ce': typeof import('./src/components/custom-elements/UserbarBadge.ce.vue')['default']
3753
VaButton: typeof import('vuestic-ui')['VaButton']
3854
VaForm: typeof import('vuestic-ui')['VaForm']
3955
VaInput: typeof import('vuestic-ui')['VaInput']
4056
VaModal: typeof import('vuestic-ui')['VaModal']
4157
VaSelect: typeof import('vuestic-ui')['VaSelect']
58+
WebampPlayer: typeof import('./src/components/custom-elements/WebampPlayer.vue')['default']
4259
'WebampPlayer.ce': typeof import('./src/components/custom-elements/WebampPlayer.ce.vue')['default']
4360
}
4461
}

src/lib/markdown/components.tsx

+17-17
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@ import type { MDXComponents } from './mdx-types';
66
import type { Slot } from 'vue';
77
import type { JSX } from 'vue/jsx-runtime';
88

9-
import AtImg from '@/components/custom-elements/AtImg.ce.vue';
10-
import AtLink from '@/components/custom-elements/AtLink.ce.vue';
11-
import AtAnchor from '@/components/custom-elements/AtAnchor.ce.vue';
12-
import AtWebStylesheet from '@/components/custom-elements/AtWebStylesheet.ce.vue';
13-
import OmitVanillaCss from '@/components/custom-elements/OmitVanillaCss.ce.vue';
14-
import AtStyle from '@/components/custom-elements/AtStyle.ce.vue';
15-
import AtWebTitle from '@/components/custom-elements/AtWebTitle.ce.vue';
16-
import WebampPlayer from '@/components/custom-elements/WebampPlayer.ce.vue';
9+
import AtImg from '@/components/custom-elements/AtImg.vue';
10+
import AtLink from '@/components/custom-elements/AtLink.vue';
11+
import AtAnchor from '@/components/custom-elements/AtAnchor.vue';
12+
import AtWebStylesheet from '@/components/custom-elements/AtWebStylesheet.vue';
13+
import OmitVanillaCss from '@/components/custom-elements/OmitVanillaCss.vue';
14+
import AtStyle from '@/components/custom-elements/AtStyle.vue';
15+
import AtWebTitle from '@/components/custom-elements/AtWebTitle.vue';
16+
import WebampPlayer from '@/components/custom-elements/WebampPlayer.vue';
1717
import SpotifyPlayer from '@/components/custom-elements/SpotifyPlayer.vue';
18-
import OnekoKitty from '@/components/custom-elements/OnekoKitty.ce.vue';
19-
import NewBlink from '@/components/custom-elements/NewBlink.ce.vue';
20-
import LesbiBadge from '@/components/custom-elements/LesbiBadge.ce.vue';
21-
import EightyEightThirtyOneBadge from '@/components/custom-elements/EightyEightThirtyOneBadge.ce.vue';
22-
import UserbarBadge from '@/components/custom-elements/UserbarBadge.ce.vue';
23-
import RingLink from '@/components/custom-elements/RingLink.ce.vue';
24-
import BlueskyPost from '@/components/custom-elements/BlueskyPost.ce.vue';
25-
import BlueskyProfileCard from '@/components/custom-elements/BlueskyProfileCard.ce.vue';
26-
import BlueskyProfileFeed from '@/components/custom-elements/BlueskyProfileFeed.ce.vue';
18+
import OnekoKitty from '@/components/custom-elements/OnekoKitty.vue';
19+
import NewBlink from '@/components/custom-elements/NewBlink.vue';
20+
import LesbiBadge from '@/components/custom-elements/LesbiBadge.vue';
21+
import EightyEightThirtyOneBadge from '@/components/custom-elements/EightyEightThirtyOneBadge.vue';
22+
import UserbarBadge from '@/components/custom-elements/UserbarBadge.vue';
23+
import RingLink from '@/components/custom-elements/RingLink.vue';
24+
import BlueskyPost from '@/components/custom-elements/BlueskyPost.vue';
25+
import BlueskyProfileCard from '@/components/custom-elements/BlueskyProfileCard.vue';
26+
import BlueskyProfileFeed from '@/components/custom-elements/BlueskyProfileFeed.vue';
2727

2828
type Props = Record<string, any>;
2929

0 commit comments

Comments
 (0)