@oxide/react-asciidoc 2.1.0-canary.792ad4d → 2.1.1-canary.b3df79d
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/react-asciidoc.js +546 -558
- package/dist/react-asciidoc.umd.cjs +11 -11
- package/dist/types/utils/prepareDocument.d.ts +0 -9
- package/package.json +6 -1
|
@@ -120,7 +120,6 @@ export interface TableBlock extends BaseBlock {
|
|
|
120
120
|
type: 'table';
|
|
121
121
|
caption: string;
|
|
122
122
|
columns: Column[];
|
|
123
|
-
rows: Row;
|
|
124
123
|
headRows: Cell[][];
|
|
125
124
|
bodyRows: Cell[][];
|
|
126
125
|
footRows: Cell[][];
|
|
@@ -136,11 +135,6 @@ export type Column = {
|
|
|
136
135
|
verticalAlign: string | undefined;
|
|
137
136
|
style: string | undefined;
|
|
138
137
|
};
|
|
139
|
-
export type Row = {
|
|
140
|
-
head: Cell[][];
|
|
141
|
-
body: Cell[][];
|
|
142
|
-
foot: Cell[][];
|
|
143
|
-
};
|
|
144
138
|
export interface Cell extends BaseBlock {
|
|
145
139
|
type: 'table_cell';
|
|
146
140
|
columnSpan: number | undefined;
|
|
@@ -156,9 +150,6 @@ export interface Cell extends BaseBlock {
|
|
|
156
150
|
* serialized HTML string. Undefined for asciidoc/literal cells, which
|
|
157
151
|
* don't go through the inline-string path. */
|
|
158
152
|
contentInlines?: InlineNode[][] | undefined;
|
|
159
|
-
source: string;
|
|
160
|
-
lines: string[];
|
|
161
|
-
column: Column | undefined;
|
|
162
153
|
width: string | undefined;
|
|
163
154
|
columnPercentageWidth: string | undefined;
|
|
164
155
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oxide/react-asciidoc",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1-canary.b3df79d",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -67,5 +67,10 @@
|
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"registry": "https://registry.npmjs.org/",
|
|
69
69
|
"access": "public"
|
|
70
|
+
},
|
|
71
|
+
"allowScripts": {
|
|
72
|
+
"esbuild@0.27.7": true,
|
|
73
|
+
"fsevents@2.3.2": true,
|
|
74
|
+
"fsevents@2.3.3": true
|
|
70
75
|
}
|
|
71
76
|
}
|