@datapos/datapos-shared 0.3.165 → 0.3.166

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.
@@ -1,4 +1,3 @@
1
- import { default as MarkdownIt } from 'markdown-it';
2
1
  import { micromark } from 'micromark';
3
2
  import { default as prism } from 'prismjs';
4
3
  import { Module } from '../../module';
@@ -18,7 +17,6 @@ export type PresenterLocalisedConfig = Omit<PresenterConfig, 'label' | 'descript
18
17
  description: string;
19
18
  };
20
19
  export type PresenterTools = {
21
- MarkdownIt: typeof MarkdownIt;
22
20
  micromark: typeof micromark;
23
21
  prism: typeof prism;
24
22
  };
@@ -0,0 +1,7 @@
1
+ import { PresentationView, PresentationVisualContentConfig } from '../index';
2
+ export interface CytoscapeJSView extends PresentationView {
3
+ diagram: unknown;
4
+ }
5
+ export declare function useMicromark(): {
6
+ render: (viewType: unknown, contentConfig: PresentationVisualContentConfig, element: HTMLElement) => Promise<void>;
7
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-shared",
3
- "version": "0.3.165",
3
+ "version": "0.3.166",
4
4
  "description": "A TypeScript library containing common declarations and utilities used across other Data Positioning repositories.",
5
5
  "license": "MIT",
6
6
  "private": false,