@pyreon/document-primitives 0.13.1 → 0.15.0
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/lib/index.d.ts +410 -410
- package/package.json +20 -18
- package/src/__tests__/manifest-snapshot.test.ts +45 -0
- package/src/__tests__/primitives-attrs.test.ts +12 -12
- package/src/__tests__/useDocumentExport.test.ts +69 -18
- package/src/manifest.ts +388 -0
- package/lib/index.d.ts.map +0 -1
- package/lib/index.js.map +0 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
import { DocChild, DocNode, DocNode as DocNode$1, ExtractOptions, ExtractOptions as ExtractOptions$1, NodeType, ResolvedStyles, extractDocumentTree, resolveStyles } from "@pyreon/connector-document";
|
|
2
|
-
import * as _pyreon_ui_core0 from "@pyreon/ui-core";
|
|
3
|
-
import * as _pyreon_elements0 from "@pyreon/elements";
|
|
4
|
-
import * as _pyreon_core0 from "@pyreon/core";
|
|
5
|
-
import * as _pyreon_rocketstyle0 from "@pyreon/rocketstyle";
|
|
2
|
+
import * as _$_pyreon_ui_core0 from "@pyreon/ui-core";
|
|
3
|
+
import * as _$_pyreon_elements0 from "@pyreon/elements";
|
|
4
|
+
import * as _$_pyreon_core0 from "@pyreon/core";
|
|
5
|
+
import * as _$_pyreon_rocketstyle0 from "@pyreon/rocketstyle";
|
|
6
6
|
|
|
7
7
|
//#region src/DocumentPreview.d.ts
|
|
8
|
-
declare const DocumentPreview: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
9
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
10
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
11
|
-
children: _pyreon_elements0.Content;
|
|
12
|
-
content: _pyreon_elements0.Content;
|
|
13
|
-
label: _pyreon_elements0.Content;
|
|
14
|
-
beforeContent: _pyreon_elements0.Content;
|
|
15
|
-
afterContent: _pyreon_elements0.Content;
|
|
16
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
17
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
8
|
+
declare const DocumentPreview: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
9
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
10
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
11
|
+
children: _$_pyreon_elements0.Content;
|
|
12
|
+
content: _$_pyreon_elements0.Content;
|
|
13
|
+
label: _$_pyreon_elements0.Content;
|
|
14
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
15
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
16
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
17
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
18
18
|
equalBeforeAfter: boolean;
|
|
19
|
-
gap: _pyreon_elements0.Responsive;
|
|
20
|
-
direction: _pyreon_elements0.Direction;
|
|
21
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
22
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
23
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
24
|
-
alignX: _pyreon_elements0.AlignX;
|
|
25
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
26
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
27
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
28
|
-
alignY: _pyreon_elements0.AlignY;
|
|
29
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
30
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
31
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
19
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
20
|
+
direction: _$_pyreon_elements0.Direction;
|
|
21
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
22
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
23
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
24
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
25
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
26
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
27
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
28
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
29
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
30
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
31
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
32
32
|
dangerouslySetInnerHTML: {
|
|
33
33
|
__html: string;
|
|
34
34
|
};
|
|
35
|
-
css: _pyreon_elements0.ExtendCss;
|
|
36
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
37
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
38
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
39
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
35
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
36
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
37
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
38
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
39
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
40
40
|
size?: string;
|
|
41
41
|
showPageBreaks?: boolean;
|
|
42
42
|
}, {}, {
|
|
@@ -46,7 +46,7 @@ declare const DocumentPreview: _pyreon_rocketstyle0.RocketStyleComponent<Partial
|
|
|
46
46
|
_documentType: "document";
|
|
47
47
|
}, {}, {
|
|
48
48
|
readonly sizes: "size";
|
|
49
|
-
}, true, _pyreon_rocketstyle0.DimensionProps<"size", {
|
|
49
|
+
}, true, _$_pyreon_rocketstyle0.DimensionProps<"size", {
|
|
50
50
|
readonly sizes: "size";
|
|
51
51
|
}, {
|
|
52
52
|
A4: {
|
|
@@ -72,13 +72,13 @@ declare const DocumentPreview: _pyreon_rocketstyle0.RocketStyleComponent<Partial
|
|
|
72
72
|
}, {}>>;
|
|
73
73
|
//#endregion
|
|
74
74
|
//#region src/primitives/DocButton.d.ts
|
|
75
|
-
declare const DocButton: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
76
|
-
label: _pyreon_core0.VNodeChild;
|
|
77
|
-
children: _pyreon_core0.VNodeChild;
|
|
75
|
+
declare const DocButton: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
76
|
+
label: _$_pyreon_core0.VNodeChild;
|
|
77
|
+
children: _$_pyreon_core0.VNodeChild;
|
|
78
78
|
paragraph: boolean;
|
|
79
|
-
tag: _pyreon_ui_core0.HTMLTextTags;
|
|
80
|
-
css: _pyreon_elements0.ExtendCss;
|
|
81
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
79
|
+
tag: _$_pyreon_ui_core0.HTMLTextTags;
|
|
80
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
81
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
82
82
|
href?: string;
|
|
83
83
|
}, {}, {
|
|
84
84
|
padding: string;
|
|
@@ -91,7 +91,7 @@ declare const DocButton: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
91
91
|
_documentType: "button";
|
|
92
92
|
}, {}, {
|
|
93
93
|
readonly variants: "variant";
|
|
94
|
-
}, true, _pyreon_rocketstyle0.DimensionProps<"variant", {
|
|
94
|
+
}, true, _$_pyreon_rocketstyle0.DimensionProps<"variant", {
|
|
95
95
|
readonly variants: "variant";
|
|
96
96
|
}, {
|
|
97
97
|
primary: {
|
|
@@ -108,13 +108,13 @@ declare const DocButton: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
108
108
|
}, {}>>;
|
|
109
109
|
//#endregion
|
|
110
110
|
//#region src/primitives/DocCode.d.ts
|
|
111
|
-
declare const DocCode: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
112
|
-
label: _pyreon_core0.VNodeChild;
|
|
113
|
-
children: _pyreon_core0.VNodeChild;
|
|
111
|
+
declare const DocCode: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
112
|
+
label: _$_pyreon_core0.VNodeChild;
|
|
113
|
+
children: _$_pyreon_core0.VNodeChild;
|
|
114
114
|
paragraph: boolean;
|
|
115
|
-
tag: _pyreon_ui_core0.HTMLTextTags;
|
|
116
|
-
css: _pyreon_elements0.ExtendCss;
|
|
117
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
115
|
+
tag: _$_pyreon_ui_core0.HTMLTextTags;
|
|
116
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
117
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
118
118
|
language?: string;
|
|
119
119
|
}, {}, {
|
|
120
120
|
backgroundColor: string;
|
|
@@ -140,38 +140,38 @@ declare const DocCode: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
140
140
|
}, false, {}>;
|
|
141
141
|
//#endregion
|
|
142
142
|
//#region src/primitives/DocColumn.d.ts
|
|
143
|
-
declare const DocColumn: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
144
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
145
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
146
|
-
children: _pyreon_elements0.Content;
|
|
147
|
-
content: _pyreon_elements0.Content;
|
|
148
|
-
label: _pyreon_elements0.Content;
|
|
149
|
-
beforeContent: _pyreon_elements0.Content;
|
|
150
|
-
afterContent: _pyreon_elements0.Content;
|
|
151
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
152
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
143
|
+
declare const DocColumn: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
144
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
145
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
146
|
+
children: _$_pyreon_elements0.Content;
|
|
147
|
+
content: _$_pyreon_elements0.Content;
|
|
148
|
+
label: _$_pyreon_elements0.Content;
|
|
149
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
150
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
151
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
152
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
153
153
|
equalBeforeAfter: boolean;
|
|
154
|
-
gap: _pyreon_elements0.Responsive;
|
|
155
|
-
direction: _pyreon_elements0.Direction;
|
|
156
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
157
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
158
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
159
|
-
alignX: _pyreon_elements0.AlignX;
|
|
160
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
161
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
162
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
163
|
-
alignY: _pyreon_elements0.AlignY;
|
|
164
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
165
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
166
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
154
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
155
|
+
direction: _$_pyreon_elements0.Direction;
|
|
156
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
157
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
158
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
159
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
160
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
161
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
162
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
163
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
164
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
165
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
166
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
167
167
|
dangerouslySetInnerHTML: {
|
|
168
168
|
__html: string;
|
|
169
169
|
};
|
|
170
|
-
css: _pyreon_elements0.ExtendCss;
|
|
171
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
172
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
173
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
174
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
170
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
171
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
172
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
173
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
174
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
175
175
|
width?: number | string;
|
|
176
176
|
}, {}, {}, {
|
|
177
177
|
_documentType: "column";
|
|
@@ -191,38 +191,38 @@ declare const DocColumn: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
191
191
|
}, false, {}>;
|
|
192
192
|
//#endregion
|
|
193
193
|
//#region src/primitives/DocDivider.d.ts
|
|
194
|
-
declare const DocDivider: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
195
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
196
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
197
|
-
children: _pyreon_elements0.Content;
|
|
198
|
-
content: _pyreon_elements0.Content;
|
|
199
|
-
label: _pyreon_elements0.Content;
|
|
200
|
-
beforeContent: _pyreon_elements0.Content;
|
|
201
|
-
afterContent: _pyreon_elements0.Content;
|
|
202
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
203
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
194
|
+
declare const DocDivider: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
195
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
196
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
197
|
+
children: _$_pyreon_elements0.Content;
|
|
198
|
+
content: _$_pyreon_elements0.Content;
|
|
199
|
+
label: _$_pyreon_elements0.Content;
|
|
200
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
201
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
202
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
203
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
204
204
|
equalBeforeAfter: boolean;
|
|
205
|
-
gap: _pyreon_elements0.Responsive;
|
|
206
|
-
direction: _pyreon_elements0.Direction;
|
|
207
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
208
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
209
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
210
|
-
alignX: _pyreon_elements0.AlignX;
|
|
211
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
212
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
213
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
214
|
-
alignY: _pyreon_elements0.AlignY;
|
|
215
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
216
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
217
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
205
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
206
|
+
direction: _$_pyreon_elements0.Direction;
|
|
207
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
208
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
209
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
210
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
211
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
212
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
213
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
214
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
215
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
216
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
217
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
218
218
|
dangerouslySetInnerHTML: {
|
|
219
219
|
__html: string;
|
|
220
220
|
};
|
|
221
|
-
css: _pyreon_elements0.ExtendCss;
|
|
222
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
223
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
224
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
225
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
221
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
222
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
223
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
224
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
225
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
226
226
|
color?: string;
|
|
227
227
|
thickness?: number;
|
|
228
228
|
}, {}, {
|
|
@@ -292,38 +292,38 @@ declare const DocDivider: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
292
292
|
* }
|
|
293
293
|
* ```
|
|
294
294
|
*/
|
|
295
|
-
declare const DocDocument: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
296
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
297
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
298
|
-
children: _pyreon_elements0.Content;
|
|
299
|
-
content: _pyreon_elements0.Content;
|
|
300
|
-
label: _pyreon_elements0.Content;
|
|
301
|
-
beforeContent: _pyreon_elements0.Content;
|
|
302
|
-
afterContent: _pyreon_elements0.Content;
|
|
303
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
304
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
295
|
+
declare const DocDocument: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
296
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
297
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
298
|
+
children: _$_pyreon_elements0.Content;
|
|
299
|
+
content: _$_pyreon_elements0.Content;
|
|
300
|
+
label: _$_pyreon_elements0.Content;
|
|
301
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
302
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
303
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
304
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
305
305
|
equalBeforeAfter: boolean;
|
|
306
|
-
gap: _pyreon_elements0.Responsive;
|
|
307
|
-
direction: _pyreon_elements0.Direction;
|
|
308
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
309
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
310
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
311
|
-
alignX: _pyreon_elements0.AlignX;
|
|
312
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
313
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
314
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
315
|
-
alignY: _pyreon_elements0.AlignY;
|
|
316
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
317
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
318
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
306
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
307
|
+
direction: _$_pyreon_elements0.Direction;
|
|
308
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
309
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
310
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
311
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
312
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
313
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
314
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
315
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
316
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
317
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
318
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
319
319
|
dangerouslySetInnerHTML: {
|
|
320
320
|
__html: string;
|
|
321
321
|
};
|
|
322
|
-
css: _pyreon_elements0.ExtendCss;
|
|
323
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
324
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
325
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
326
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
322
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
323
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
324
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
325
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
326
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
327
327
|
title?: string | (() => string);
|
|
328
328
|
author?: string | (() => string);
|
|
329
329
|
subject?: string | (() => string);
|
|
@@ -345,13 +345,13 @@ declare const DocDocument: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
345
345
|
}, false, {}>;
|
|
346
346
|
//#endregion
|
|
347
347
|
//#region src/primitives/DocHeading.d.ts
|
|
348
|
-
declare const DocHeading: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
349
|
-
label: _pyreon_core0.VNodeChild;
|
|
350
|
-
children: _pyreon_core0.VNodeChild;
|
|
348
|
+
declare const DocHeading: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
349
|
+
label: _$_pyreon_core0.VNodeChild;
|
|
350
|
+
children: _$_pyreon_core0.VNodeChild;
|
|
351
351
|
paragraph: boolean;
|
|
352
|
-
tag: _pyreon_ui_core0.HTMLTextTags;
|
|
353
|
-
css: _pyreon_elements0.ExtendCss;
|
|
354
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
352
|
+
tag: _$_pyreon_ui_core0.HTMLTextTags;
|
|
353
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
354
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
355
355
|
level?: string;
|
|
356
356
|
}, {}, {
|
|
357
357
|
color: string;
|
|
@@ -361,7 +361,7 @@ declare const DocHeading: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
361
361
|
_documentType: "heading";
|
|
362
362
|
}, {}, {
|
|
363
363
|
readonly levels: "level";
|
|
364
|
-
}, true, _pyreon_rocketstyle0.DimensionProps<"level", {
|
|
364
|
+
}, true, _$_pyreon_rocketstyle0.DimensionProps<"level", {
|
|
365
365
|
readonly levels: "level";
|
|
366
366
|
}, {
|
|
367
367
|
h1: {
|
|
@@ -391,38 +391,38 @@ declare const DocHeading: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
391
391
|
}, {}>>;
|
|
392
392
|
//#endregion
|
|
393
393
|
//#region src/primitives/DocImage.d.ts
|
|
394
|
-
declare const DocImage: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
395
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
396
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
397
|
-
children: _pyreon_elements0.Content;
|
|
398
|
-
content: _pyreon_elements0.Content;
|
|
399
|
-
label: _pyreon_elements0.Content;
|
|
400
|
-
beforeContent: _pyreon_elements0.Content;
|
|
401
|
-
afterContent: _pyreon_elements0.Content;
|
|
402
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
403
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
394
|
+
declare const DocImage: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
395
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
396
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
397
|
+
children: _$_pyreon_elements0.Content;
|
|
398
|
+
content: _$_pyreon_elements0.Content;
|
|
399
|
+
label: _$_pyreon_elements0.Content;
|
|
400
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
401
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
402
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
403
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
404
404
|
equalBeforeAfter: boolean;
|
|
405
|
-
gap: _pyreon_elements0.Responsive;
|
|
406
|
-
direction: _pyreon_elements0.Direction;
|
|
407
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
408
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
409
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
410
|
-
alignX: _pyreon_elements0.AlignX;
|
|
411
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
412
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
413
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
414
|
-
alignY: _pyreon_elements0.AlignY;
|
|
415
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
416
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
417
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
405
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
406
|
+
direction: _$_pyreon_elements0.Direction;
|
|
407
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
408
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
409
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
410
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
411
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
412
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
413
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
414
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
415
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
416
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
417
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
418
418
|
dangerouslySetInnerHTML: {
|
|
419
419
|
__html: string;
|
|
420
420
|
};
|
|
421
|
-
css: _pyreon_elements0.ExtendCss;
|
|
422
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
423
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
424
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
425
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
421
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
422
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
423
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
424
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
425
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
426
426
|
width?: number | string;
|
|
427
427
|
caption?: string;
|
|
428
428
|
height?: number | string;
|
|
@@ -446,13 +446,13 @@ declare const DocImage: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
446
446
|
}, false, {}>;
|
|
447
447
|
//#endregion
|
|
448
448
|
//#region src/primitives/DocLink.d.ts
|
|
449
|
-
declare const DocLink: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
450
|
-
label: _pyreon_core0.VNodeChild;
|
|
451
|
-
children: _pyreon_core0.VNodeChild;
|
|
449
|
+
declare const DocLink: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
450
|
+
label: _$_pyreon_core0.VNodeChild;
|
|
451
|
+
children: _$_pyreon_core0.VNodeChild;
|
|
452
452
|
paragraph: boolean;
|
|
453
|
-
tag: _pyreon_ui_core0.HTMLTextTags;
|
|
454
|
-
css: _pyreon_elements0.ExtendCss;
|
|
455
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
453
|
+
tag: _$_pyreon_ui_core0.HTMLTextTags;
|
|
454
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
455
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
456
456
|
href?: string;
|
|
457
457
|
}, {}, {
|
|
458
458
|
color: string;
|
|
@@ -475,38 +475,38 @@ declare const DocLink: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
475
475
|
}, false, {}>;
|
|
476
476
|
//#endregion
|
|
477
477
|
//#region src/primitives/DocList.d.ts
|
|
478
|
-
declare const DocList: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
479
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
480
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
481
|
-
children: _pyreon_elements0.Content;
|
|
482
|
-
content: _pyreon_elements0.Content;
|
|
483
|
-
label: _pyreon_elements0.Content;
|
|
484
|
-
beforeContent: _pyreon_elements0.Content;
|
|
485
|
-
afterContent: _pyreon_elements0.Content;
|
|
486
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
487
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
478
|
+
declare const DocList: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
479
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
480
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
481
|
+
children: _$_pyreon_elements0.Content;
|
|
482
|
+
content: _$_pyreon_elements0.Content;
|
|
483
|
+
label: _$_pyreon_elements0.Content;
|
|
484
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
485
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
486
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
487
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
488
488
|
equalBeforeAfter: boolean;
|
|
489
|
-
gap: _pyreon_elements0.Responsive;
|
|
490
|
-
direction: _pyreon_elements0.Direction;
|
|
491
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
492
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
493
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
494
|
-
alignX: _pyreon_elements0.AlignX;
|
|
495
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
496
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
497
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
498
|
-
alignY: _pyreon_elements0.AlignY;
|
|
499
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
500
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
501
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
489
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
490
|
+
direction: _$_pyreon_elements0.Direction;
|
|
491
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
492
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
493
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
494
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
495
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
496
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
497
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
498
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
499
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
500
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
501
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
502
502
|
dangerouslySetInnerHTML: {
|
|
503
503
|
__html: string;
|
|
504
504
|
};
|
|
505
|
-
css: _pyreon_elements0.ExtendCss;
|
|
506
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
507
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
508
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
509
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
505
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
506
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
507
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
508
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
509
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
510
510
|
ordered?: boolean;
|
|
511
511
|
}, {}, {
|
|
512
512
|
marginBottom: number;
|
|
@@ -529,13 +529,13 @@ declare const DocList: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
529
529
|
}, false, {}>;
|
|
530
530
|
//#endregion
|
|
531
531
|
//#region src/primitives/DocListItem.d.ts
|
|
532
|
-
declare const DocListItem: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
533
|
-
label: _pyreon_core0.VNodeChild;
|
|
534
|
-
children: _pyreon_core0.VNodeChild;
|
|
532
|
+
declare const DocListItem: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
533
|
+
label: _$_pyreon_core0.VNodeChild;
|
|
534
|
+
children: _$_pyreon_core0.VNodeChild;
|
|
535
535
|
paragraph: boolean;
|
|
536
|
-
tag: _pyreon_ui_core0.HTMLTextTags;
|
|
537
|
-
css: _pyreon_elements0.ExtendCss;
|
|
538
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {}, {}, {
|
|
536
|
+
tag: _$_pyreon_ui_core0.HTMLTextTags;
|
|
537
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
538
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {}, {}, {
|
|
539
539
|
fontSize: number;
|
|
540
540
|
lineHeight: number;
|
|
541
541
|
}, {
|
|
@@ -556,38 +556,38 @@ declare const DocListItem: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
556
556
|
}, false, {}>;
|
|
557
557
|
//#endregion
|
|
558
558
|
//#region src/primitives/DocPage.d.ts
|
|
559
|
-
declare const DocPage: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
560
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
561
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
562
|
-
children: _pyreon_elements0.Content;
|
|
563
|
-
content: _pyreon_elements0.Content;
|
|
564
|
-
label: _pyreon_elements0.Content;
|
|
565
|
-
beforeContent: _pyreon_elements0.Content;
|
|
566
|
-
afterContent: _pyreon_elements0.Content;
|
|
567
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
568
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
559
|
+
declare const DocPage: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
560
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
561
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
562
|
+
children: _$_pyreon_elements0.Content;
|
|
563
|
+
content: _$_pyreon_elements0.Content;
|
|
564
|
+
label: _$_pyreon_elements0.Content;
|
|
565
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
566
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
567
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
568
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
569
569
|
equalBeforeAfter: boolean;
|
|
570
|
-
gap: _pyreon_elements0.Responsive;
|
|
571
|
-
direction: _pyreon_elements0.Direction;
|
|
572
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
573
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
574
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
575
|
-
alignX: _pyreon_elements0.AlignX;
|
|
576
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
577
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
578
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
579
|
-
alignY: _pyreon_elements0.AlignY;
|
|
580
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
581
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
582
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
570
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
571
|
+
direction: _$_pyreon_elements0.Direction;
|
|
572
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
573
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
574
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
575
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
576
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
577
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
578
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
579
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
580
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
581
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
582
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
583
583
|
dangerouslySetInnerHTML: {
|
|
584
584
|
__html: string;
|
|
585
585
|
};
|
|
586
|
-
css: _pyreon_elements0.ExtendCss;
|
|
587
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
588
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
589
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
590
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
586
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
587
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
588
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
589
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
590
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
591
591
|
size?: string;
|
|
592
592
|
orientation?: string;
|
|
593
593
|
}, {}, {
|
|
@@ -611,38 +611,38 @@ declare const DocPage: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
611
611
|
}, false, {}>;
|
|
612
612
|
//#endregion
|
|
613
613
|
//#region src/primitives/DocPageBreak.d.ts
|
|
614
|
-
declare const DocPageBreak: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
615
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
616
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
617
|
-
children: _pyreon_elements0.Content;
|
|
618
|
-
content: _pyreon_elements0.Content;
|
|
619
|
-
label: _pyreon_elements0.Content;
|
|
620
|
-
beforeContent: _pyreon_elements0.Content;
|
|
621
|
-
afterContent: _pyreon_elements0.Content;
|
|
622
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
623
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
614
|
+
declare const DocPageBreak: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
615
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
616
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
617
|
+
children: _$_pyreon_elements0.Content;
|
|
618
|
+
content: _$_pyreon_elements0.Content;
|
|
619
|
+
label: _$_pyreon_elements0.Content;
|
|
620
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
621
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
622
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
623
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
624
624
|
equalBeforeAfter: boolean;
|
|
625
|
-
gap: _pyreon_elements0.Responsive;
|
|
626
|
-
direction: _pyreon_elements0.Direction;
|
|
627
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
628
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
629
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
630
|
-
alignX: _pyreon_elements0.AlignX;
|
|
631
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
632
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
633
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
634
|
-
alignY: _pyreon_elements0.AlignY;
|
|
635
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
636
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
637
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
625
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
626
|
+
direction: _$_pyreon_elements0.Direction;
|
|
627
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
628
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
629
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
630
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
631
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
632
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
633
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
634
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
635
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
636
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
637
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
638
638
|
dangerouslySetInnerHTML: {
|
|
639
639
|
__html: string;
|
|
640
640
|
};
|
|
641
|
-
css: _pyreon_elements0.ExtendCss;
|
|
642
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
643
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
644
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
645
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {}, {}, {}, {
|
|
641
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
642
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
643
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
644
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
645
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {}, {}, {}, {
|
|
646
646
|
_documentType: "page-break";
|
|
647
647
|
}, {}, {
|
|
648
648
|
readonly states: "state";
|
|
@@ -660,38 +660,38 @@ declare const DocPageBreak: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
660
660
|
}, false, {}>;
|
|
661
661
|
//#endregion
|
|
662
662
|
//#region src/primitives/DocQuote.d.ts
|
|
663
|
-
declare const DocQuote: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
664
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
665
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
666
|
-
children: _pyreon_elements0.Content;
|
|
667
|
-
content: _pyreon_elements0.Content;
|
|
668
|
-
label: _pyreon_elements0.Content;
|
|
669
|
-
beforeContent: _pyreon_elements0.Content;
|
|
670
|
-
afterContent: _pyreon_elements0.Content;
|
|
671
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
672
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
663
|
+
declare const DocQuote: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
664
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
665
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
666
|
+
children: _$_pyreon_elements0.Content;
|
|
667
|
+
content: _$_pyreon_elements0.Content;
|
|
668
|
+
label: _$_pyreon_elements0.Content;
|
|
669
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
670
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
671
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
672
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
673
673
|
equalBeforeAfter: boolean;
|
|
674
|
-
gap: _pyreon_elements0.Responsive;
|
|
675
|
-
direction: _pyreon_elements0.Direction;
|
|
676
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
677
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
678
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
679
|
-
alignX: _pyreon_elements0.AlignX;
|
|
680
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
681
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
682
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
683
|
-
alignY: _pyreon_elements0.AlignY;
|
|
684
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
685
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
686
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
674
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
675
|
+
direction: _$_pyreon_elements0.Direction;
|
|
676
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
677
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
678
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
679
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
680
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
681
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
682
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
683
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
684
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
685
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
686
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
687
687
|
dangerouslySetInnerHTML: {
|
|
688
688
|
__html: string;
|
|
689
689
|
};
|
|
690
|
-
css: _pyreon_elements0.ExtendCss;
|
|
691
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
692
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
693
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
694
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
690
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
691
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
692
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
693
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
694
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
695
695
|
borderColor?: string;
|
|
696
696
|
}, {}, {
|
|
697
697
|
padding: string;
|
|
@@ -722,38 +722,38 @@ declare const DocQuote: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
722
722
|
* Element base accepts `direction: 'inline' | 'rows' | 'reverseInline'
|
|
723
723
|
* | 'reverseRows'` — `'row'` is not a valid value.
|
|
724
724
|
*/
|
|
725
|
-
declare const DocRow: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
726
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
727
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
728
|
-
children: _pyreon_elements0.Content;
|
|
729
|
-
content: _pyreon_elements0.Content;
|
|
730
|
-
label: _pyreon_elements0.Content;
|
|
731
|
-
beforeContent: _pyreon_elements0.Content;
|
|
732
|
-
afterContent: _pyreon_elements0.Content;
|
|
733
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
734
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
725
|
+
declare const DocRow: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
726
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
727
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
728
|
+
children: _$_pyreon_elements0.Content;
|
|
729
|
+
content: _$_pyreon_elements0.Content;
|
|
730
|
+
label: _$_pyreon_elements0.Content;
|
|
731
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
732
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
733
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
734
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
735
735
|
equalBeforeAfter: boolean;
|
|
736
|
-
gap: _pyreon_elements0.Responsive;
|
|
737
|
-
direction: _pyreon_elements0.Direction;
|
|
738
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
739
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
740
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
741
|
-
alignX: _pyreon_elements0.AlignX;
|
|
742
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
743
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
744
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
745
|
-
alignY: _pyreon_elements0.AlignY;
|
|
746
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
747
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
748
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
736
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
737
|
+
direction: _$_pyreon_elements0.Direction;
|
|
738
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
739
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
740
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
741
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
742
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
743
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
744
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
745
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
746
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
747
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
748
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
749
749
|
dangerouslySetInnerHTML: {
|
|
750
750
|
__html: string;
|
|
751
751
|
};
|
|
752
|
-
css: _pyreon_elements0.ExtendCss;
|
|
753
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
754
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
755
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
756
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {}, {}, {}, {
|
|
752
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
753
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
754
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
755
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
756
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {}, {}, {}, {
|
|
757
757
|
_documentType: "row";
|
|
758
758
|
}, {}, {
|
|
759
759
|
readonly states: "state";
|
|
@@ -771,38 +771,38 @@ declare const DocRow: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
771
771
|
}, false, {}>;
|
|
772
772
|
//#endregion
|
|
773
773
|
//#region src/primitives/DocSection.d.ts
|
|
774
|
-
declare const DocSection: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
775
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
776
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
777
|
-
children: _pyreon_elements0.Content;
|
|
778
|
-
content: _pyreon_elements0.Content;
|
|
779
|
-
label: _pyreon_elements0.Content;
|
|
780
|
-
beforeContent: _pyreon_elements0.Content;
|
|
781
|
-
afterContent: _pyreon_elements0.Content;
|
|
782
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
783
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
774
|
+
declare const DocSection: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
775
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
776
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
777
|
+
children: _$_pyreon_elements0.Content;
|
|
778
|
+
content: _$_pyreon_elements0.Content;
|
|
779
|
+
label: _$_pyreon_elements0.Content;
|
|
780
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
781
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
782
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
783
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
784
784
|
equalBeforeAfter: boolean;
|
|
785
|
-
gap: _pyreon_elements0.Responsive;
|
|
786
|
-
direction: _pyreon_elements0.Direction;
|
|
787
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
788
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
789
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
790
|
-
alignX: _pyreon_elements0.AlignX;
|
|
791
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
792
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
793
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
794
|
-
alignY: _pyreon_elements0.AlignY;
|
|
795
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
796
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
797
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
785
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
786
|
+
direction: _$_pyreon_elements0.Direction;
|
|
787
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
788
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
789
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
790
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
791
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
792
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
793
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
794
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
795
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
796
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
797
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
798
798
|
dangerouslySetInnerHTML: {
|
|
799
799
|
__html: string;
|
|
800
800
|
};
|
|
801
|
-
css: _pyreon_elements0.ExtendCss;
|
|
802
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
803
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
804
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
805
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
801
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
802
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
803
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
804
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
805
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
806
806
|
direction?: string;
|
|
807
807
|
}, {}, {
|
|
808
808
|
padding: number;
|
|
@@ -810,7 +810,7 @@ declare const DocSection: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
810
810
|
_documentType: "section";
|
|
811
811
|
}, {}, {
|
|
812
812
|
readonly directions: "direction";
|
|
813
|
-
}, false, _pyreon_rocketstyle0.DimensionProps<"direction", {
|
|
813
|
+
}, false, _$_pyreon_rocketstyle0.DimensionProps<"direction", {
|
|
814
814
|
readonly directions: "direction";
|
|
815
815
|
}, {
|
|
816
816
|
column: {};
|
|
@@ -820,38 +820,38 @@ declare const DocSection: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
820
820
|
}, {}>>;
|
|
821
821
|
//#endregion
|
|
822
822
|
//#region src/primitives/DocSpacer.d.ts
|
|
823
|
-
declare const DocSpacer: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
824
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
825
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
826
|
-
children: _pyreon_elements0.Content;
|
|
827
|
-
content: _pyreon_elements0.Content;
|
|
828
|
-
label: _pyreon_elements0.Content;
|
|
829
|
-
beforeContent: _pyreon_elements0.Content;
|
|
830
|
-
afterContent: _pyreon_elements0.Content;
|
|
831
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
832
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
823
|
+
declare const DocSpacer: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
824
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
825
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
826
|
+
children: _$_pyreon_elements0.Content;
|
|
827
|
+
content: _$_pyreon_elements0.Content;
|
|
828
|
+
label: _$_pyreon_elements0.Content;
|
|
829
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
830
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
831
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
832
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
833
833
|
equalBeforeAfter: boolean;
|
|
834
|
-
gap: _pyreon_elements0.Responsive;
|
|
835
|
-
direction: _pyreon_elements0.Direction;
|
|
836
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
837
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
838
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
839
|
-
alignX: _pyreon_elements0.AlignX;
|
|
840
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
841
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
842
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
843
|
-
alignY: _pyreon_elements0.AlignY;
|
|
844
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
845
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
846
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
834
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
835
|
+
direction: _$_pyreon_elements0.Direction;
|
|
836
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
837
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
838
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
839
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
840
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
841
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
842
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
843
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
844
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
845
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
846
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
847
847
|
dangerouslySetInnerHTML: {
|
|
848
848
|
__html: string;
|
|
849
849
|
};
|
|
850
|
-
css: _pyreon_elements0.ExtendCss;
|
|
851
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
852
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
853
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
854
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
850
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
851
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
852
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
853
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
854
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
855
855
|
height?: number;
|
|
856
856
|
}, {}, {}, {
|
|
857
857
|
_documentType: "spacer";
|
|
@@ -889,38 +889,38 @@ declare const DocSpacer: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
889
889
|
* column collection on parent table). Filtering them at the
|
|
890
890
|
* rocketstyle layer keeps the DOM render path clean.
|
|
891
891
|
*/
|
|
892
|
-
declare const DocTable: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
893
|
-
tag: _pyreon_ui_core0.HTMLTags;
|
|
894
|
-
innerRef: _pyreon_elements0.InnerRef;
|
|
895
|
-
children: _pyreon_elements0.Content;
|
|
896
|
-
content: _pyreon_elements0.Content;
|
|
897
|
-
label: _pyreon_elements0.Content;
|
|
898
|
-
beforeContent: _pyreon_elements0.Content;
|
|
899
|
-
afterContent: _pyreon_elements0.Content;
|
|
900
|
-
block: _pyreon_elements0.ResponsiveBoolType;
|
|
901
|
-
equalCols: _pyreon_elements0.ResponsiveBoolType;
|
|
892
|
+
declare const DocTable: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
893
|
+
tag: _$_pyreon_ui_core0.HTMLTags;
|
|
894
|
+
innerRef: _$_pyreon_elements0.InnerRef;
|
|
895
|
+
children: _$_pyreon_elements0.Content;
|
|
896
|
+
content: _$_pyreon_elements0.Content;
|
|
897
|
+
label: _$_pyreon_elements0.Content;
|
|
898
|
+
beforeContent: _$_pyreon_elements0.Content;
|
|
899
|
+
afterContent: _$_pyreon_elements0.Content;
|
|
900
|
+
block: _$_pyreon_elements0.ResponsiveBoolType;
|
|
901
|
+
equalCols: _$_pyreon_elements0.ResponsiveBoolType;
|
|
902
902
|
equalBeforeAfter: boolean;
|
|
903
|
-
gap: _pyreon_elements0.Responsive;
|
|
904
|
-
direction: _pyreon_elements0.Direction;
|
|
905
|
-
contentDirection: _pyreon_elements0.Direction;
|
|
906
|
-
beforeContentDirection: _pyreon_elements0.Direction;
|
|
907
|
-
afterContentDirection: _pyreon_elements0.Direction;
|
|
908
|
-
alignX: _pyreon_elements0.AlignX;
|
|
909
|
-
contentAlignX: _pyreon_elements0.AlignX;
|
|
910
|
-
beforeContentAlignX: _pyreon_elements0.AlignX;
|
|
911
|
-
afterContentAlignX: _pyreon_elements0.AlignX;
|
|
912
|
-
alignY: _pyreon_elements0.AlignY;
|
|
913
|
-
contentAlignY: _pyreon_elements0.AlignY;
|
|
914
|
-
beforeContentAlignY: _pyreon_elements0.AlignY;
|
|
915
|
-
afterContentAlignY: _pyreon_elements0.AlignY;
|
|
903
|
+
gap: _$_pyreon_elements0.Responsive;
|
|
904
|
+
direction: _$_pyreon_elements0.Direction;
|
|
905
|
+
contentDirection: _$_pyreon_elements0.Direction;
|
|
906
|
+
beforeContentDirection: _$_pyreon_elements0.Direction;
|
|
907
|
+
afterContentDirection: _$_pyreon_elements0.Direction;
|
|
908
|
+
alignX: _$_pyreon_elements0.AlignX;
|
|
909
|
+
contentAlignX: _$_pyreon_elements0.AlignX;
|
|
910
|
+
beforeContentAlignX: _$_pyreon_elements0.AlignX;
|
|
911
|
+
afterContentAlignX: _$_pyreon_elements0.AlignX;
|
|
912
|
+
alignY: _$_pyreon_elements0.AlignY;
|
|
913
|
+
contentAlignY: _$_pyreon_elements0.AlignY;
|
|
914
|
+
beforeContentAlignY: _$_pyreon_elements0.AlignY;
|
|
915
|
+
afterContentAlignY: _$_pyreon_elements0.AlignY;
|
|
916
916
|
dangerouslySetInnerHTML: {
|
|
917
917
|
__html: string;
|
|
918
918
|
};
|
|
919
|
-
css: _pyreon_elements0.ExtendCss;
|
|
920
|
-
contentCss: _pyreon_elements0.ExtendCss;
|
|
921
|
-
beforeContentCss: _pyreon_elements0.ExtendCss;
|
|
922
|
-
afterContentCss: _pyreon_elements0.ExtendCss;
|
|
923
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
919
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
920
|
+
contentCss: _$_pyreon_elements0.ExtendCss;
|
|
921
|
+
beforeContentCss: _$_pyreon_elements0.ExtendCss;
|
|
922
|
+
afterContentCss: _$_pyreon_elements0.ExtendCss;
|
|
923
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {
|
|
924
924
|
caption?: string;
|
|
925
925
|
rows?: unknown[];
|
|
926
926
|
columns?: unknown[];
|
|
@@ -937,13 +937,13 @@ declare const DocTable: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
937
937
|
}, true, {}>;
|
|
938
938
|
//#endregion
|
|
939
939
|
//#region src/primitives/DocText.d.ts
|
|
940
|
-
declare const DocText: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
941
|
-
label: _pyreon_core0.VNodeChild;
|
|
942
|
-
children: _pyreon_core0.VNodeChild;
|
|
940
|
+
declare const DocText: _$_pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
941
|
+
label: _$_pyreon_core0.VNodeChild;
|
|
942
|
+
children: _$_pyreon_core0.VNodeChild;
|
|
943
943
|
paragraph: boolean;
|
|
944
|
-
tag: _pyreon_ui_core0.HTMLTextTags;
|
|
945
|
-
css: _pyreon_elements0.ExtendCss;
|
|
946
|
-
}> & _pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {}, {}, {
|
|
944
|
+
tag: _$_pyreon_ui_core0.HTMLTextTags;
|
|
945
|
+
css: _$_pyreon_elements0.ExtendCss;
|
|
946
|
+
}> & _$_pyreon_core0.PyreonHTMLAttributes<HTMLElement>, {}, {}, {
|
|
947
947
|
color: string;
|
|
948
948
|
lineHeight: number;
|
|
949
949
|
marginBottom: number;
|
|
@@ -952,7 +952,7 @@ declare const DocText: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
952
952
|
}, {}, {
|
|
953
953
|
readonly variants: "variant";
|
|
954
954
|
readonly weights: "weight";
|
|
955
|
-
}, true, _pyreon_rocketstyle0.DimensionProps<"weight", {
|
|
955
|
+
}, true, _$_pyreon_rocketstyle0.DimensionProps<"weight", {
|
|
956
956
|
readonly variants: "variant";
|
|
957
957
|
readonly weights: "weight";
|
|
958
958
|
}, {
|
|
@@ -962,7 +962,7 @@ declare const DocText: _pyreon_rocketstyle0.RocketStyleComponent<Partial<{
|
|
|
962
962
|
bold: {
|
|
963
963
|
fontWeight: string;
|
|
964
964
|
};
|
|
965
|
-
}, _pyreon_rocketstyle0.DimensionProps<"variant", {
|
|
965
|
+
}, _$_pyreon_rocketstyle0.DimensionProps<"variant", {
|
|
966
966
|
readonly variants: "variant";
|
|
967
967
|
readonly weights: "weight";
|
|
968
968
|
}, {
|