@podlite/to-jsx 0.0.8 → 0.0.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/CHANGELOG.md +10 -0
- package/lib/index.d.ts +2 -2
- package/lib/index.js +218 -306
- package/lib/index.js.map +1 -0
- package/package.json +8 -17
- package/src/index.tsx +11 -7
- package/t/index.component.spec.tsx +1 -1
- package/tsconfig.json +10 -19
- package/tsconfig.tsbuildinfo +1 -1
- package/yarn-error.log +0 -8944
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# @podlite/to-jsx
|
|
2
2
|
|
|
3
3
|
## Upcoming
|
|
4
|
+
## 0.0.12
|
|
5
|
+
- fix imports
|
|
6
|
+
- update deps
|
|
7
|
+
## 0.0.11
|
|
8
|
+
- use <video> tags for mov/mp4 media
|
|
9
|
+
- update deps
|
|
10
|
+
## 0.0.10
|
|
11
|
+
- fix id for =table
|
|
12
|
+
## 0.0.9
|
|
13
|
+
- fix npm
|
|
4
14
|
## 0.0.8
|
|
5
15
|
- add support for =Image
|
|
6
16
|
- add caption for =Diagram
|
package/lib/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
import { PodliteExport } from 'podlite';
|
|
3
3
|
import { PodNode } from '@podlite/schema';
|
|
4
4
|
export declare type CreateElement = typeof React.createElement;
|
|
5
5
|
export interface WrapElement {
|
|
6
6
|
(node: PodNode, ...children: React.ReactChild[]): JSX.Element;
|
|
7
7
|
}
|
|
8
|
-
declare const Podlite: React.FC<{
|
|
8
|
+
export declare const Podlite: React.FC<{
|
|
9
9
|
[key: string]: any;
|
|
10
10
|
children?: string;
|
|
11
11
|
file?: string;
|