-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.d.ts
214 lines (184 loc) · 4.2 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
import type { PostHTMLExpressions } from 'posthtml-expressions';
import type { Options as PostHTMLParserOptions } from 'posthtml-parser';
interface AnyObject {
[key: string]: string | AnyObject;
}
export type PostHTMLComponents = {
/**
* Root path where to look for folders containing component files.
*
* @default './'
*/
root?: string;
/**
* Paths where to look for component files. Must be relative to `root`.
*
* @default ['']
*/
folders?: string[];
/**
* Prefix to use for component tags.
*
* @default 'x-'
*/
tagPrefix?: string;
/**
* Tag name to be used in HTML when using a component.
*
* @default false
*/
tag?: string|false;
/**
* Attribute name to be used when referencing a component via its path.
*
* @default 'src'
*/
attribute?: string;
/**
* Array of namespace root paths, fallback paths and custom override paths.
*
* @default []
*/
namespaces?: string[];
/**
* Separator to use between namespace and component name.
*
* @default '::'
*/
namespaceSeparator?: string;
/**
* File extension that component files must use.
*
* @default 'html'
*/
fileExtension?: string|string[];
/**
* Name of the tag that will be replaced with the content that is passed to the component.
*
* @default 'yield'
*/
yield?: string;
/**
* Name of the slot tag, where the content will be injected.
*
* @default 'slot'
*/
slot?: string;
/**
* Name of the fill tag, where the content to be injected is defined.
*
* @default 'fill'
*/
fill?: string;
/**
* String to use as a separator between the slot tag and its name.
*
* @default ':'
*/
slotSeparator?: string;
/**
* Tag name for pushing content to a stack.
*
* @default 'push'
*/
push?: string;
/**
* Tag name for popping (rendering) content from a stack.
*
* @default 'stack'
*/
stack?: string;
/**
* Name of the props attribute to use in the `<script>` tag of a component.
*
* @default 'props'
*/
propsScriptAttribute?: string;
/**
* Name of the object that will be used to store the props of a component.
*
* @default 'props'
*/
propsContext?: string;
/**
* Name of the attribute that will be used to pass props to a component as JSON.
*
* @default 'locals'
*/
propsAttribute?: string;
/**
* Name of the key to use when retrieving props passed to a slot via `$slots.slotName.props`.
*
* @default 'props'
*/
propsSlot?: string;
/**
* Configure [`posthtml-parser`](https://github.com/posthtml/posthtml-parser).
*
* @default
* {
* recognizeSelfClosing: true
* }
*/
parserOptions?: PostHTMLParserOptions;
/**
* Configure [`posthtml-expressions`](https://github.com/posthtml/posthtml-expressions).
*
* @default {}
*/
expressions?: PostHTMLExpressions;
/**
* PostHTML plugins to apply to each parsed component.
*
* @default []
*/
plugins?: Array<() => void>;
/**
* Array of objects used to match tags.
*
* @default [{tag: options.tagPrefix}]
*/
matcher?: object;
/**
* Extra rules for the PostHTML plugin that is used by components to parse attributes.
*
* @default {}
*/
attrsParserRules?: Record<string, AnyObject>;
/**
* In strict mode, an error will be thrown if a component cannot be rendered.
*
* @default true
*/
strict?: boolean;
/**
* Callback for lodash `mergeWith` to merge `options.expressions.locals` and props.
*
*
*/
mergeCustomizer?: (objValue: any, srcValue: any) => any;
/**
* Utility methods to be passed to `<script props>` in a component.
*
* @default {merge: _.mergeWith, template: _.template}
*/
utilities?: Record<string, unknown>;
/**
* Define additional attributes that should be preserved for specific HTML elements.
*
* @default {}
*/
elementAttributes?: Record<string, void>;
/**
* Attributes that should be preserved on all elements in components.
*
* @default ['data-*']
*/
safelistAttributes?: string[];
/**
* Attributes that should be removed from all elements in components.
*
* @default []
*/
blocklistAttributes?: string[];
}