@stina/extension-api 0.32.0 → 0.33.0-alpha.8cab91c
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/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/runtime.d.cts +2 -2
- package/dist/runtime.d.ts +2 -2
- package/dist/schemas/index.cjs +58 -110
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +2752 -3056
- package/dist/schemas/index.d.ts +2752 -3056
- package/dist/schemas/index.js +56 -101
- package/dist/schemas/index.js.map +1 -1
- package/dist/{types.tools-XIdePk7Z.d.cts → types.tools-BYgcVNP4.d.cts} +82 -141
- package/dist/{types.tools-XIdePk7Z.d.ts → types.tools-BYgcVNP4.d.ts} +82 -141
- package/package.json +1 -1
- package/schema/extension-manifest.schema.json +146 -341
- package/src/index.ts +4 -10
- package/src/schemas/components.schema.ts +52 -6
- package/src/schemas/contributions.schema.ts +33 -178
- package/src/schemas/index.ts +4 -18
- package/src/types.components.ts +46 -6
- package/src/types.contributions.ts +39 -142
- package/src/types.ts +1 -9
|
@@ -139,165 +139,6 @@
|
|
|
139
139
|
"contributes": {
|
|
140
140
|
"type": "object",
|
|
141
141
|
"properties": {
|
|
142
|
-
"settings": {
|
|
143
|
-
"type": "array",
|
|
144
|
-
"items": {
|
|
145
|
-
"type": "object",
|
|
146
|
-
"properties": {
|
|
147
|
-
"id": {
|
|
148
|
-
"type": "string",
|
|
149
|
-
"description": "Setting ID (namespaced automatically)"
|
|
150
|
-
},
|
|
151
|
-
"title": {
|
|
152
|
-
"type": "string",
|
|
153
|
-
"description": "Display title"
|
|
154
|
-
},
|
|
155
|
-
"description": {
|
|
156
|
-
"type": "string",
|
|
157
|
-
"description": "Help text"
|
|
158
|
-
},
|
|
159
|
-
"type": {
|
|
160
|
-
"type": "string",
|
|
161
|
-
"enum": [
|
|
162
|
-
"string",
|
|
163
|
-
"number",
|
|
164
|
-
"boolean",
|
|
165
|
-
"select"
|
|
166
|
-
],
|
|
167
|
-
"description": "Setting type"
|
|
168
|
-
},
|
|
169
|
-
"default": {
|
|
170
|
-
"description": "Default value"
|
|
171
|
-
},
|
|
172
|
-
"options": {
|
|
173
|
-
"type": "array",
|
|
174
|
-
"items": {
|
|
175
|
-
"type": "object",
|
|
176
|
-
"properties": {
|
|
177
|
-
"value": {
|
|
178
|
-
"type": "string"
|
|
179
|
-
},
|
|
180
|
-
"label": {
|
|
181
|
-
"type": "string"
|
|
182
|
-
}
|
|
183
|
-
},
|
|
184
|
-
"required": [
|
|
185
|
-
"value",
|
|
186
|
-
"label"
|
|
187
|
-
],
|
|
188
|
-
"additionalProperties": false
|
|
189
|
-
},
|
|
190
|
-
"description": "For select type: available options"
|
|
191
|
-
},
|
|
192
|
-
"optionsToolId": {
|
|
193
|
-
"type": "string",
|
|
194
|
-
"description": "For select type: load options from tool"
|
|
195
|
-
},
|
|
196
|
-
"optionsParams": {
|
|
197
|
-
"type": "object",
|
|
198
|
-
"additionalProperties": {},
|
|
199
|
-
"description": "Params for options tool"
|
|
200
|
-
},
|
|
201
|
-
"optionsMapping": {
|
|
202
|
-
"type": "object",
|
|
203
|
-
"properties": {
|
|
204
|
-
"itemsKey": {
|
|
205
|
-
"type": "string",
|
|
206
|
-
"description": "Key for items array in tool result data"
|
|
207
|
-
},
|
|
208
|
-
"valueKey": {
|
|
209
|
-
"type": "string",
|
|
210
|
-
"description": "Key for option value"
|
|
211
|
-
},
|
|
212
|
-
"labelKey": {
|
|
213
|
-
"type": "string",
|
|
214
|
-
"description": "Key for option label"
|
|
215
|
-
},
|
|
216
|
-
"descriptionKey": {
|
|
217
|
-
"type": "string",
|
|
218
|
-
"description": "Optional key for description"
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"required": [
|
|
222
|
-
"itemsKey",
|
|
223
|
-
"valueKey",
|
|
224
|
-
"labelKey"
|
|
225
|
-
],
|
|
226
|
-
"additionalProperties": false,
|
|
227
|
-
"description": "Mapping for options tool response"
|
|
228
|
-
},
|
|
229
|
-
"createToolId": {
|
|
230
|
-
"type": "string",
|
|
231
|
-
"description": "Tool ID for creating a new option"
|
|
232
|
-
},
|
|
233
|
-
"createLabel": {
|
|
234
|
-
"type": "string",
|
|
235
|
-
"description": "Label for create action"
|
|
236
|
-
},
|
|
237
|
-
"createFields": {
|
|
238
|
-
"type": "array",
|
|
239
|
-
"items": {
|
|
240
|
-
"$ref": "#/definitions/ExtensionManifest/properties/contributes/properties/settings/items"
|
|
241
|
-
},
|
|
242
|
-
"description": "Fields for create form"
|
|
243
|
-
},
|
|
244
|
-
"createParams": {
|
|
245
|
-
"type": "object",
|
|
246
|
-
"additionalProperties": {},
|
|
247
|
-
"description": "Static params for create tool"
|
|
248
|
-
},
|
|
249
|
-
"createMapping": {
|
|
250
|
-
"type": "object",
|
|
251
|
-
"properties": {
|
|
252
|
-
"resultKey": {
|
|
253
|
-
"type": "string",
|
|
254
|
-
"description": "Key for result data object"
|
|
255
|
-
},
|
|
256
|
-
"valueKey": {
|
|
257
|
-
"type": "string",
|
|
258
|
-
"description": "Key for option value (defaults to \"id\")"
|
|
259
|
-
}
|
|
260
|
-
},
|
|
261
|
-
"required": [
|
|
262
|
-
"valueKey"
|
|
263
|
-
],
|
|
264
|
-
"additionalProperties": false,
|
|
265
|
-
"description": "Mapping for create tool response"
|
|
266
|
-
},
|
|
267
|
-
"validation": {
|
|
268
|
-
"type": "object",
|
|
269
|
-
"properties": {
|
|
270
|
-
"required": {
|
|
271
|
-
"type": "boolean",
|
|
272
|
-
"description": "Whether the field is required"
|
|
273
|
-
},
|
|
274
|
-
"min": {
|
|
275
|
-
"type": "number",
|
|
276
|
-
"description": "Minimum value (number) or length (string)"
|
|
277
|
-
},
|
|
278
|
-
"max": {
|
|
279
|
-
"type": "number",
|
|
280
|
-
"description": "Maximum value (number) or length (string)"
|
|
281
|
-
},
|
|
282
|
-
"pattern": {
|
|
283
|
-
"type": "string",
|
|
284
|
-
"description": "Regex pattern for validation"
|
|
285
|
-
}
|
|
286
|
-
},
|
|
287
|
-
"additionalProperties": false,
|
|
288
|
-
"description": "Validation rules"
|
|
289
|
-
}
|
|
290
|
-
},
|
|
291
|
-
"required": [
|
|
292
|
-
"id",
|
|
293
|
-
"title",
|
|
294
|
-
"type"
|
|
295
|
-
],
|
|
296
|
-
"additionalProperties": false,
|
|
297
|
-
"description": "Setting definition"
|
|
298
|
-
},
|
|
299
|
-
"description": "User-configurable settings"
|
|
300
|
-
},
|
|
301
142
|
"toolSettings": {
|
|
302
143
|
"type": "array",
|
|
303
144
|
"items": {
|
|
@@ -393,6 +234,133 @@
|
|
|
393
234
|
"type": "object",
|
|
394
235
|
"additionalProperties": {},
|
|
395
236
|
"description": "Static params for list tool"
|
|
237
|
+
},
|
|
238
|
+
"editView": {
|
|
239
|
+
"type": "object",
|
|
240
|
+
"properties": {
|
|
241
|
+
"content": {
|
|
242
|
+
"type": "object",
|
|
243
|
+
"properties": {
|
|
244
|
+
"component": {
|
|
245
|
+
"type": "string",
|
|
246
|
+
"description": "Component type name"
|
|
247
|
+
},
|
|
248
|
+
"style": {
|
|
249
|
+
"type": "object",
|
|
250
|
+
"additionalProperties": {
|
|
251
|
+
"type": "string"
|
|
252
|
+
},
|
|
253
|
+
"propertyNames": {
|
|
254
|
+
"enum": [
|
|
255
|
+
"color",
|
|
256
|
+
"background-color",
|
|
257
|
+
"background",
|
|
258
|
+
"border-color",
|
|
259
|
+
"border",
|
|
260
|
+
"border-width",
|
|
261
|
+
"border-style",
|
|
262
|
+
"border-radius",
|
|
263
|
+
"border-top",
|
|
264
|
+
"border-right",
|
|
265
|
+
"border-bottom",
|
|
266
|
+
"border-left",
|
|
267
|
+
"border-top-left-radius",
|
|
268
|
+
"border-top-right-radius",
|
|
269
|
+
"border-bottom-left-radius",
|
|
270
|
+
"border-bottom-right-radius",
|
|
271
|
+
"padding",
|
|
272
|
+
"padding-top",
|
|
273
|
+
"padding-right",
|
|
274
|
+
"padding-bottom",
|
|
275
|
+
"padding-left",
|
|
276
|
+
"margin",
|
|
277
|
+
"margin-top",
|
|
278
|
+
"margin-right",
|
|
279
|
+
"margin-bottom",
|
|
280
|
+
"margin-left",
|
|
281
|
+
"gap",
|
|
282
|
+
"row-gap",
|
|
283
|
+
"column-gap",
|
|
284
|
+
"font-size",
|
|
285
|
+
"font-weight",
|
|
286
|
+
"font-style",
|
|
287
|
+
"text-align",
|
|
288
|
+
"text-decoration",
|
|
289
|
+
"line-height",
|
|
290
|
+
"letter-spacing",
|
|
291
|
+
"white-space",
|
|
292
|
+
"word-break",
|
|
293
|
+
"overflow-wrap",
|
|
294
|
+
"width",
|
|
295
|
+
"height",
|
|
296
|
+
"min-width",
|
|
297
|
+
"min-height",
|
|
298
|
+
"max-width",
|
|
299
|
+
"max-height",
|
|
300
|
+
"flex",
|
|
301
|
+
"flex-grow",
|
|
302
|
+
"flex-shrink",
|
|
303
|
+
"flex-basis",
|
|
304
|
+
"flex-wrap",
|
|
305
|
+
"align-self",
|
|
306
|
+
"justify-self",
|
|
307
|
+
"align-items",
|
|
308
|
+
"justify-content",
|
|
309
|
+
"opacity",
|
|
310
|
+
"visibility",
|
|
311
|
+
"overflow",
|
|
312
|
+
"overflow-x",
|
|
313
|
+
"overflow-y",
|
|
314
|
+
"box-shadow",
|
|
315
|
+
"outline",
|
|
316
|
+
"cursor",
|
|
317
|
+
"border-collapse",
|
|
318
|
+
"border-spacing"
|
|
319
|
+
]
|
|
320
|
+
},
|
|
321
|
+
"description": "Safe CSS styles for the component"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"required": [
|
|
325
|
+
"component"
|
|
326
|
+
],
|
|
327
|
+
"additionalProperties": true,
|
|
328
|
+
"description": "Root component for the create/edit modal"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"required": [
|
|
332
|
+
"content"
|
|
333
|
+
],
|
|
334
|
+
"additionalProperties": false,
|
|
335
|
+
"description": "Component-tree create/edit form bound to $item.<key>"
|
|
336
|
+
},
|
|
337
|
+
"groupBy": {
|
|
338
|
+
"type": "object",
|
|
339
|
+
"properties": {
|
|
340
|
+
"key": {
|
|
341
|
+
"type": "string",
|
|
342
|
+
"description": "Key in each item used to determine group membership"
|
|
343
|
+
},
|
|
344
|
+
"order": {
|
|
345
|
+
"type": "array",
|
|
346
|
+
"items": {
|
|
347
|
+
"type": "string"
|
|
348
|
+
},
|
|
349
|
+
"description": "Explicit ordering of group values; unlisted groups appear afterwards alphabetically"
|
|
350
|
+
},
|
|
351
|
+
"labels": {
|
|
352
|
+
"type": "object",
|
|
353
|
+
"additionalProperties": {
|
|
354
|
+
"type": "string"
|
|
355
|
+
},
|
|
356
|
+
"description": "Human-friendly labels per group value (rendered as section headers)"
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"required": [
|
|
360
|
+
"key"
|
|
361
|
+
],
|
|
362
|
+
"additionalProperties": false,
|
|
363
|
+
"description": "Optional grouping configuration; when set, items are visually grouped by this field"
|
|
396
364
|
}
|
|
397
365
|
},
|
|
398
366
|
"required": [
|
|
@@ -449,78 +417,7 @@
|
|
|
449
417
|
"description": "Component type name"
|
|
450
418
|
},
|
|
451
419
|
"style": {
|
|
452
|
-
"
|
|
453
|
-
"additionalProperties": {
|
|
454
|
-
"type": "string"
|
|
455
|
-
},
|
|
456
|
-
"propertyNames": {
|
|
457
|
-
"enum": [
|
|
458
|
-
"color",
|
|
459
|
-
"background-color",
|
|
460
|
-
"background",
|
|
461
|
-
"border-color",
|
|
462
|
-
"border",
|
|
463
|
-
"border-width",
|
|
464
|
-
"border-style",
|
|
465
|
-
"border-radius",
|
|
466
|
-
"border-top",
|
|
467
|
-
"border-right",
|
|
468
|
-
"border-bottom",
|
|
469
|
-
"border-left",
|
|
470
|
-
"border-top-left-radius",
|
|
471
|
-
"border-top-right-radius",
|
|
472
|
-
"border-bottom-left-radius",
|
|
473
|
-
"border-bottom-right-radius",
|
|
474
|
-
"padding",
|
|
475
|
-
"padding-top",
|
|
476
|
-
"padding-right",
|
|
477
|
-
"padding-bottom",
|
|
478
|
-
"padding-left",
|
|
479
|
-
"margin",
|
|
480
|
-
"margin-top",
|
|
481
|
-
"margin-right",
|
|
482
|
-
"margin-bottom",
|
|
483
|
-
"margin-left",
|
|
484
|
-
"gap",
|
|
485
|
-
"row-gap",
|
|
486
|
-
"column-gap",
|
|
487
|
-
"font-size",
|
|
488
|
-
"font-weight",
|
|
489
|
-
"font-style",
|
|
490
|
-
"text-align",
|
|
491
|
-
"text-decoration",
|
|
492
|
-
"line-height",
|
|
493
|
-
"letter-spacing",
|
|
494
|
-
"white-space",
|
|
495
|
-
"word-break",
|
|
496
|
-
"overflow-wrap",
|
|
497
|
-
"width",
|
|
498
|
-
"height",
|
|
499
|
-
"min-width",
|
|
500
|
-
"min-height",
|
|
501
|
-
"max-width",
|
|
502
|
-
"max-height",
|
|
503
|
-
"flex",
|
|
504
|
-
"flex-grow",
|
|
505
|
-
"flex-shrink",
|
|
506
|
-
"flex-basis",
|
|
507
|
-
"flex-wrap",
|
|
508
|
-
"align-self",
|
|
509
|
-
"justify-self",
|
|
510
|
-
"align-items",
|
|
511
|
-
"justify-content",
|
|
512
|
-
"opacity",
|
|
513
|
-
"visibility",
|
|
514
|
-
"overflow",
|
|
515
|
-
"overflow-x",
|
|
516
|
-
"overflow-y",
|
|
517
|
-
"box-shadow",
|
|
518
|
-
"outline",
|
|
519
|
-
"cursor",
|
|
520
|
-
"border-collapse",
|
|
521
|
-
"border-spacing"
|
|
522
|
-
]
|
|
523
|
-
},
|
|
420
|
+
"$ref": "#/definitions/ExtensionManifest/properties/contributes/properties/toolSettings/items/properties/view/anyOf/0/properties/editView/properties/content/properties/style",
|
|
524
421
|
"description": "Safe CSS styles for the component"
|
|
525
422
|
}
|
|
526
423
|
},
|
|
@@ -540,13 +437,6 @@
|
|
|
540
437
|
}
|
|
541
438
|
],
|
|
542
439
|
"description": "View configuration"
|
|
543
|
-
},
|
|
544
|
-
"fields": {
|
|
545
|
-
"type": "array",
|
|
546
|
-
"items": {
|
|
547
|
-
"$ref": "#/definitions/ExtensionManifest/properties/contributes/properties/settings/items"
|
|
548
|
-
},
|
|
549
|
-
"description": "Fields for create/edit forms"
|
|
550
440
|
}
|
|
551
441
|
},
|
|
552
442
|
"required": [
|
|
@@ -624,7 +514,7 @@
|
|
|
624
514
|
"description": "Component type name"
|
|
625
515
|
},
|
|
626
516
|
"style": {
|
|
627
|
-
"$ref": "#/definitions/ExtensionManifest/properties/contributes/properties/toolSettings/items/properties/view/anyOf/
|
|
517
|
+
"$ref": "#/definitions/ExtensionManifest/properties/contributes/properties/toolSettings/items/properties/view/anyOf/0/properties/editView/properties/content/properties/style",
|
|
628
518
|
"description": "Safe CSS styles for the component"
|
|
629
519
|
}
|
|
630
520
|
},
|
|
@@ -696,118 +586,33 @@
|
|
|
696
586
|
"additionalProperties": {},
|
|
697
587
|
"description": "Default settings"
|
|
698
588
|
},
|
|
699
|
-
"
|
|
589
|
+
"configView": {
|
|
700
590
|
"type": "object",
|
|
701
591
|
"properties": {
|
|
702
|
-
"
|
|
592
|
+
"content": {
|
|
703
593
|
"type": "object",
|
|
704
|
-
"
|
|
705
|
-
"
|
|
706
|
-
|
|
707
|
-
"
|
|
708
|
-
"type": "string",
|
|
709
|
-
"enum": [
|
|
710
|
-
"string",
|
|
711
|
-
"number",
|
|
712
|
-
"boolean",
|
|
713
|
-
"select",
|
|
714
|
-
"password",
|
|
715
|
-
"url"
|
|
716
|
-
],
|
|
717
|
-
"description": "Property type"
|
|
718
|
-
},
|
|
719
|
-
"title": {
|
|
720
|
-
"type": "string",
|
|
721
|
-
"description": "Display label"
|
|
722
|
-
},
|
|
723
|
-
"description": {
|
|
724
|
-
"type": "string",
|
|
725
|
-
"description": "Help text"
|
|
726
|
-
},
|
|
727
|
-
"default": {
|
|
728
|
-
"description": "Default value"
|
|
729
|
-
},
|
|
730
|
-
"required": {
|
|
731
|
-
"type": "boolean",
|
|
732
|
-
"description": "Whether the field is required"
|
|
733
|
-
},
|
|
734
|
-
"placeholder": {
|
|
735
|
-
"type": "string",
|
|
736
|
-
"description": "Placeholder text"
|
|
737
|
-
},
|
|
738
|
-
"options": {
|
|
739
|
-
"type": "array",
|
|
740
|
-
"items": {
|
|
741
|
-
"type": "object",
|
|
742
|
-
"properties": {
|
|
743
|
-
"value": {
|
|
744
|
-
"type": "string",
|
|
745
|
-
"description": "Value stored in settings"
|
|
746
|
-
},
|
|
747
|
-
"label": {
|
|
748
|
-
"type": "string",
|
|
749
|
-
"description": "Display label"
|
|
750
|
-
}
|
|
751
|
-
},
|
|
752
|
-
"required": [
|
|
753
|
-
"value",
|
|
754
|
-
"label"
|
|
755
|
-
],
|
|
756
|
-
"additionalProperties": false,
|
|
757
|
-
"description": "Select option"
|
|
758
|
-
},
|
|
759
|
-
"description": "For select type"
|
|
760
|
-
},
|
|
761
|
-
"validation": {
|
|
762
|
-
"type": "object",
|
|
763
|
-
"properties": {
|
|
764
|
-
"pattern": {
|
|
765
|
-
"type": "string",
|
|
766
|
-
"description": "Regex pattern the value must match"
|
|
767
|
-
},
|
|
768
|
-
"minLength": {
|
|
769
|
-
"type": "number",
|
|
770
|
-
"description": "Minimum string length"
|
|
771
|
-
},
|
|
772
|
-
"maxLength": {
|
|
773
|
-
"type": "number",
|
|
774
|
-
"description": "Maximum string length"
|
|
775
|
-
},
|
|
776
|
-
"min": {
|
|
777
|
-
"type": "number",
|
|
778
|
-
"description": "Minimum number value"
|
|
779
|
-
},
|
|
780
|
-
"max": {
|
|
781
|
-
"type": "number",
|
|
782
|
-
"description": "Maximum number value"
|
|
783
|
-
}
|
|
784
|
-
},
|
|
785
|
-
"additionalProperties": false,
|
|
786
|
-
"description": "Validation rules"
|
|
787
|
-
}
|
|
594
|
+
"properties": {
|
|
595
|
+
"component": {
|
|
596
|
+
"type": "string",
|
|
597
|
+
"description": "Component type name"
|
|
788
598
|
},
|
|
789
|
-
"
|
|
790
|
-
"
|
|
791
|
-
"
|
|
792
|
-
|
|
793
|
-
"additionalProperties": false,
|
|
794
|
-
"description": "Provider config property"
|
|
795
|
-
},
|
|
796
|
-
"description": "Property definitions"
|
|
797
|
-
},
|
|
798
|
-
"order": {
|
|
799
|
-
"type": "array",
|
|
800
|
-
"items": {
|
|
801
|
-
"type": "string"
|
|
599
|
+
"style": {
|
|
600
|
+
"$ref": "#/definitions/ExtensionManifest/properties/contributes/properties/toolSettings/items/properties/view/anyOf/0/properties/editView/properties/content/properties/style",
|
|
601
|
+
"description": "Safe CSS styles for the component"
|
|
602
|
+
}
|
|
802
603
|
},
|
|
803
|
-
"
|
|
604
|
+
"required": [
|
|
605
|
+
"component"
|
|
606
|
+
],
|
|
607
|
+
"additionalProperties": true,
|
|
608
|
+
"description": "Root component to render"
|
|
804
609
|
}
|
|
805
610
|
},
|
|
806
611
|
"required": [
|
|
807
|
-
"
|
|
612
|
+
"content"
|
|
808
613
|
],
|
|
809
614
|
"additionalProperties": false,
|
|
810
|
-
"description": "
|
|
615
|
+
"description": "Component-tree configuration view"
|
|
811
616
|
}
|
|
812
617
|
},
|
|
813
618
|
"required": [
|
package/src/index.ts
CHANGED
|
@@ -17,9 +17,6 @@ export type {
|
|
|
17
17
|
ExtensionManifest,
|
|
18
18
|
Platform,
|
|
19
19
|
ExtensionContributions,
|
|
20
|
-
SettingDefinition,
|
|
21
|
-
SettingOptionsMapping,
|
|
22
|
-
SettingCreateMapping,
|
|
23
20
|
ToolSettingsViewDefinition,
|
|
24
21
|
ToolSettingsView,
|
|
25
22
|
ToolSettingsListView,
|
|
@@ -32,19 +29,13 @@ export type {
|
|
|
32
29
|
PanelActionDataSource,
|
|
33
30
|
PanelUnknownView,
|
|
34
31
|
ProviderDefinition,
|
|
32
|
+
ProviderConfigView,
|
|
35
33
|
PromptContribution,
|
|
36
34
|
PromptSection,
|
|
37
35
|
ToolDefinition,
|
|
38
36
|
ToolConfirmationConfig,
|
|
39
37
|
CommandDefinition,
|
|
40
38
|
|
|
41
|
-
// Provider Configuration Schema
|
|
42
|
-
ProviderConfigSchema,
|
|
43
|
-
ProviderConfigProperty,
|
|
44
|
-
ProviderConfigPropertyType,
|
|
45
|
-
ProviderConfigSelectOption,
|
|
46
|
-
ProviderConfigValidation,
|
|
47
|
-
|
|
48
39
|
// Permissions
|
|
49
40
|
Permission,
|
|
50
41
|
NetworkPermission,
|
|
@@ -166,6 +157,9 @@ export type {
|
|
|
166
157
|
ParagraphProps,
|
|
167
158
|
ButtonProps,
|
|
168
159
|
TextInputProps,
|
|
160
|
+
PasswordInputProps,
|
|
161
|
+
NumberInputProps,
|
|
162
|
+
TextAreaProps,
|
|
169
163
|
DateTimeInputProps,
|
|
170
164
|
SelectProps,
|
|
171
165
|
IconPickerProps,
|