This repository has been archived by the owner on Oct 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-elements.json
339 lines (339 loc) · 10.7 KB
/
custom-elements.json
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
{
"version": "experimental",
"tags": [
{
"name": "arc-action-editor",
"path": "./arc-action-editor.js",
"attributes": [
{
"name": "name",
"description": "Action name that determines which editor to load.\nThe name mast be one of the supported action types or otherwise the\ncomponent won't render any editor.",
"type": "string"
},
{
"name": "type",
"description": "Either `request` or `response`. Actions without a type are not\nexecuted.",
"type": "string"
},
{
"name": "enabled",
"description": "Whether the action is enabled. An action is considered enabled when\nthis value equals `true`.",
"type": "boolean"
},
{
"name": "sync",
"description": "Whether the action should be called synchronously to the request or\nthe response.\nThis value is optional and default to `true`.",
"type": "boolean",
"default": "\"true\""
},
{
"name": "failOnError",
"description": "Whether the action should fail when\nthe request / response if it results in error.",
"type": "boolean"
},
{
"name": "priority",
"description": "Action's priority on a scale of 1 to 10. The default value is 5 and\nthis property is optional.",
"type": "number"
},
{
"name": "opened",
"description": "Whether or not the action is rendered in full view.",
"type": "boolean"
},
{
"name": "compatibility",
"description": "Enables compatibility with the Anypoint theme",
"type": "boolean"
},
{
"name": "outlined",
"description": "Enables outlined MD theme",
"type": "boolean"
},
{
"name": "readOnly",
"type": "boolean"
},
{
"name": "disabled",
"type": "boolean"
}
],
"properties": [
{
"name": "name",
"attribute": "name",
"description": "Action name that determines which editor to load.\nThe name mast be one of the supported action types or otherwise the\ncomponent won't render any editor.",
"type": "string"
},
{
"name": "type",
"attribute": "type",
"description": "Either `request` or `response`. Actions without a type are not\nexecuted.",
"type": "string"
},
{
"name": "enabled",
"attribute": "enabled",
"description": "Whether the action is enabled. An action is considered enabled when\nthis value equals `true`.",
"type": "boolean"
},
{
"name": "sync",
"attribute": "sync",
"description": "Whether the action should be called synchronously to the request or\nthe response.\nThis value is optional and default to `true`.",
"type": "boolean",
"default": "\"true\""
},
{
"name": "failOnError",
"attribute": "failOnError",
"description": "Whether the action should fail when\nthe request / response if it results in error.",
"type": "boolean"
},
{
"name": "priority",
"attribute": "priority",
"description": "Action's priority on a scale of 1 to 10. The default value is 5 and\nthis property is optional.",
"type": "number"
},
{
"name": "config",
"description": "The configuration of an action. The type depends on the `name` property.",
"type": "SetCookieConfig | DeleteCookieConfig | SetVariableConfig"
},
{
"name": "opened",
"attribute": "opened",
"description": "Whether or not the action is rendered in full view.",
"type": "boolean"
},
{
"name": "compatibility",
"attribute": "compatibility",
"description": "Enables compatibility with the Anypoint theme",
"type": "boolean"
},
{
"name": "outlined",
"attribute": "outlined",
"description": "Enables outlined MD theme",
"type": "boolean"
},
{
"name": "readOnly",
"attribute": "readOnly",
"type": "boolean"
},
{
"name": "disabled",
"attribute": "disabled",
"type": "boolean"
}
],
"events": [
{
"name": "change",
"description": "When any configuration property change"
},
{
"name": "duplicate",
"description": "When the user requests to duplicate this action"
},
{
"name": "remove",
"description": "When the user requests to remove this action"
}
]
},
{
"name": "arc-actions-panel",
"path": "./arc-actions-panel.js",
"attributes": [
{
"name": "compatibility",
"description": "Enables compatibility with the Anypoint theme",
"type": "boolean"
},
{
"name": "outlined",
"description": "Enables outlined MD theme",
"type": "boolean"
},
{
"name": "type",
"description": "A type of actions this panel renders. The actions are using\ntype defined in the action definition. This property is used by the tutorial.",
"type": "string"
}
],
"properties": [
{
"name": "compatibility",
"attribute": "compatibility",
"description": "Enables compatibility with the Anypoint theme",
"type": "boolean"
},
{
"name": "outlined",
"attribute": "outlined",
"description": "Enables outlined MD theme",
"type": "boolean"
},
{
"name": "type",
"attribute": "type",
"description": "A type of actions this panel renders. The actions are using\ntype defined in the action definition. This property is used by the tutorial.",
"type": "string"
},
{
"name": "conditions",
"description": "Current list of actions",
"type": "(RunnableAction | ActionCondition)[] | null"
},
{
"name": "hasConditions",
"description": "Returns true when the element has any condition set.",
"type": "boolean"
}
]
},
{
"name": "arc-actions",
"path": "./arc-actions.js",
"description": "An HTML element that renders a panel with request and response\nactions.",
"attributes": [
{
"name": "compatibility",
"description": "Enables compatibility with the Anypoint theme",
"type": "boolean"
},
{
"name": "outlined",
"description": "Enables outlined MD theme",
"type": "boolean"
},
{
"name": "selected",
"description": "Currently selected tab.",
"type": "number"
}
],
"properties": [
{
"name": "response",
"description": "A list of response conditions and actions.",
"type": "(RunnableAction | ActionCondition)[]"
},
{
"name": "request",
"description": "A list of request conditions and actions.",
"type": "(RunnableAction | ActionCondition)[]"
},
{
"name": "compatibility",
"attribute": "compatibility",
"description": "Enables compatibility with the Anypoint theme",
"type": "boolean"
},
{
"name": "outlined",
"attribute": "outlined",
"description": "Enables outlined MD theme",
"type": "boolean"
},
{
"name": "selected",
"attribute": "selected",
"description": "Currently selected tab.",
"type": "number"
},
{
"name": "onchange",
"type": "EventListener | null"
},
{
"name": "onselectedchange",
"type": "EventListener | null"
}
],
"events": [
{
"name": "change",
"description": "When value in the editor change. The detail has the `type` property indicating which property has changes."
},
{
"name": "selectedchange",
"description": "When the panel selection change"
}
]
},
{
"name": "arc-condition-editor",
"path": "./arc-condition-editor.js",
"attributes": [
{
"name": "condition",
"description": "A list of response actions",
"type": "Condition"
},
{
"name": "compatibility",
"description": "Enables compatibility with the Anypoint theme",
"type": "boolean"
},
{
"name": "outlined",
"description": "Enables outlined MD theme",
"type": "boolean"
},
{
"name": "enabled",
"description": "Whether or not the condition is enabled",
"type": "boolean"
},
{
"name": "type",
"description": "The type of the condition that is being rendered.\nEither `request` or `response`.\nThis is not the same as condition's model source type as in response action\ncan be executed with conditions for both request and response.",
"type": "string"
}
],
"properties": [
{
"name": "condition",
"attribute": "condition",
"description": "A list of response actions",
"type": "Condition"
},
{
"name": "compatibility",
"attribute": "compatibility",
"description": "Enables compatibility with the Anypoint theme",
"type": "boolean"
},
{
"name": "outlined",
"attribute": "outlined",
"description": "Enables outlined MD theme",
"type": "boolean"
},
{
"name": "enabled",
"attribute": "enabled",
"description": "Whether or not the condition is enabled",
"type": "boolean"
},
{
"name": "type",
"attribute": "type",
"description": "The type of the condition that is being rendered.\nEither `request` or `response`.\nThis is not the same as condition's model source type as in response action\ncan be executed with conditions for both request and response.",
"type": "string"
},
{
"name": "opened",
"type": "boolean"
}
]
}
]
}