@elmethis/core 1.0.0-alpha.11 → 1.0.0-alpha.12

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/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { App } from 'vue';
2
1
  import { default as ElmCodeBlock, ElmCodeBlockProps } from './components/code/ElmCodeBlock.vue';
3
2
  import { default as ElmPrismHighlighter, ElmPrismHighlighterProps } from './components/code/ElmPrismHighlighter.vue';
4
3
  import { default as ElmKatex, ElmKatexProps } from './components/code/ElmKatex.vue';
@@ -43,6 +42,3 @@ import { default as ElmNumberedList, ElmNumberedListProps } from './components/t
43
42
  import { default as ElmListItem, ElmListItemProps } from './components/typography/ElmListItem.vue';
44
43
  export { ElmCodeBlock, ElmPrismHighlighter, ElmKatex, ElmColumn, ElmColumnList, ElmParallax, ElmToggle, ElmTooltip, ElmProgress, ElmRectangleWave, ElmHeading1, ElmHeading2, ElmHeading3, ElmHeading4, ElmHeading5, ElmHeading6, ElmCubeIcon, ElmDotLoadingIcon, ElmLanguageIcon, ElmToggleTheme, ElmInlineCode, ElmInlineLink, ElmInlineRuby, ElmInlineText, ElmFile, ElmImage, ElmBookmark, ElmBreadcrumb, ElmPagetop, ElmTableOfContents, ElmJsonRenderer, ElmTable, ElmTableHeader, ElmTableBody, ElmTableRow, ElmTableCell, ElmBlockQuote, ElmBulletedList, ElmCallout, ElmDivider, ElmNumberedList, ElmListItem };
45
44
  export type { 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 };
46
- export declare const ElmethisPlugin: {
47
- install(app: App): void;
48
- };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/core",
3
- "version": "1.0.0-alpha.11",
3
+ "version": "1.0.0-alpha.12",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -1,57 +0,0 @@
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
- }