@elmethis/core 1.0.0-alpha.10 → 1.0.0-alpha.11
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/dist/types/global.d.ts +57 -0
- package/package.json +1 -1
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { ElmCodeBlockProps, ElmPrismHighlighterProps, ElmKatexProps, ElmColumnProps, ElmColumnListProps, ElmParallaxProps, ElmToggleProps, ElmTooltipProps, ElmProgressProps, ElmRectangleWaveProps, ElmHeading1Props, ElmHeading2Props, ElmHeading3Props, ElmHeading4Props, ElmHeading5Props, ElmHeading6Props, ElmCubeIconProps, ElmDotLoadingIconProps, ElmLanguageIconProps, ElmToggleThemeProps, ElmInlineCodeProps, ElmInlineLinkProps, ElmInlineRubyProps, ElmInlineTextProps, ElmFileProps, ElmImageProps, ElmBookmarkProps, ElmBreadcrumbProps, ElmPagetopProps, ElmTableOfContentsProps, ElmJsonRendererProps, ElmTableProps, ElmTableHeaderProps, ElmTableBodyProps, ElmTableRowProps, ElmTableCellProps, ElmBlockQuoteProps, ElmBulletedListProps, ElmCalloutProps, ElmDividerProps, ElmNumberedListProps, ElmListItemProps } from '../index';
|
|
2
|
+
declare module 'vue' {
|
|
3
|
+
interface GlobalComponents {
|
|
4
|
+
ElmCodeBlock: (props: ElmCodeBlockProps) => JSX.Element
|
|
5
|
+
ElmPrismHighlighter: (props: ElmPrismHighlighterProps) => JSX.Element
|
|
6
|
+
ElmKatex: (props: ElmKatexProps) => JSX.Element
|
|
7
|
+
|
|
8
|
+
ElmColumn: (props: ElmColumnProps) => JSX.Element
|
|
9
|
+
ElmColumnList: (props: ElmColumnListProps) => JSX.Element
|
|
10
|
+
ElmParallax: (props: ElmParallaxProps) => JSX.Element
|
|
11
|
+
ElmToggle: (props: ElmToggleProps) => JSX.Element
|
|
12
|
+
ElmTooltip: (props: ElmTooltipProps) => JSX.Element
|
|
13
|
+
|
|
14
|
+
ElmProgress: (props: ElmProgressProps) => JSX.Element
|
|
15
|
+
ElmRectangleWave: (props: ElmRectangleWaveProps) => JSX.Element
|
|
16
|
+
|
|
17
|
+
ElmHeading1: (props: ElmHeading1Props) => JSX.Element
|
|
18
|
+
ElmHeading2: (props: ElmHeading2Props) => JSX.Element
|
|
19
|
+
ElmHeading3: (props: ElmHeading3Props) => JSX.Element
|
|
20
|
+
ElmHeading4: (props: ElmHeading4Props) => JSX.Element
|
|
21
|
+
ElmHeading5: (props: ElmHeading5Props) => JSX.Element
|
|
22
|
+
ElmHeading6: (props: ElmHeading6Props) => JSX.Element
|
|
23
|
+
|
|
24
|
+
ElmCubeIcon: (props: ElmCubeIconProps) => JSX.Element
|
|
25
|
+
ElmDotLoadingIcon: (props: ElmDotLoadingIconProps) => JSX.Element
|
|
26
|
+
ElmLanguageIcon: (props: ElmLanguageIconProps) => JSX.Element
|
|
27
|
+
ElmToggleTheme: (props: ElmToggleThemeProps) => JSX.Element
|
|
28
|
+
|
|
29
|
+
ElmInlineCode: (props: ElmInlineCodeProps) => JSX.Element
|
|
30
|
+
ElmInlineLink: (props: ElmInlineLinkProps) => JSX.Element
|
|
31
|
+
ElmInlineRuby: (props: ElmInlineRubyProps) => JSX.Element
|
|
32
|
+
ElmInlineText: (props: ElmInlineTextProps) => JSX.Element
|
|
33
|
+
|
|
34
|
+
ElmFile: (props: ElmFileProps) => JSX.Element
|
|
35
|
+
ElmImage: (props: ElmImageProps) => JSX.Element
|
|
36
|
+
|
|
37
|
+
ElmBookmark: (props: ElmBookmarkProps) => JSX.Element
|
|
38
|
+
ElmBreadcrumb: (props: ElmBreadcrumbProps) => JSX.Element
|
|
39
|
+
ElmPagetop: (props: ElmPagetopProps) => JSX.Element
|
|
40
|
+
ElmTableOfContents: (props: ElmTableOfContentsProps) => JSX.Element
|
|
41
|
+
|
|
42
|
+
ElmJsonRenderer: (props: ElmJsonRendererProps) => JSX.Element
|
|
43
|
+
|
|
44
|
+
ElmTable: (props: ElmTableProps) => JSX.Element
|
|
45
|
+
ElmTableHeader: (props: ElmTableHeaderProps) => JSX.Element
|
|
46
|
+
ElmTableBody: (props: ElmTableBodyProps) => JSX.Element
|
|
47
|
+
ElmTableRow: (props: ElmTableRowProps) => JSX.Element
|
|
48
|
+
ElmTableCell: (props: ElmTableCellProps) => JSX.Element
|
|
49
|
+
|
|
50
|
+
ElmBlockQuote: (props: ElmBlockQuoteProps) => JSX.Element
|
|
51
|
+
ElmBulletedList: (props: ElmBulletedListProps) => JSX.Element
|
|
52
|
+
ElmCallout: (props: ElmCalloutProps) => JSX.Element
|
|
53
|
+
ElmDivider: (props: ElmDividerProps) => JSX.Element
|
|
54
|
+
ElmNumberedList: (props: ElmNumberedListProps) => JSX.Element
|
|
55
|
+
ElmListItem: (props: ElmListItemProps) => JSX.Element
|
|
56
|
+
}
|
|
57
|
+
}
|