@uipath/apollo-wind 2.50.0 → 2.52.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/dist/components/forms/field-renderer.cjs +80 -6
- package/dist/components/forms/field-renderer.js +80 -6
- package/dist/components/forms/form-designer.cjs +10 -10
- package/dist/components/forms/form-designer.js +10 -10
- package/dist/components/forms/form-schema.d.ts +38 -2
- package/dist/components/forms/index.cjs +15 -5
- package/dist/components/forms/index.d.ts +7 -6
- package/dist/components/forms/index.js +6 -5
- package/dist/components/forms/metadata-form.cjs +97 -37
- package/dist/components/forms/metadata-form.d.ts +11 -3
- package/dist/components/forms/metadata-form.js +94 -37
- package/dist/components/forms/rules-engine.cjs +14 -3
- package/dist/components/forms/rules-engine.d.ts +16 -0
- package/dist/components/forms/rules-engine.js +14 -3
- package/dist/components/forms/schema-serializer.cjs +10 -0
- package/dist/components/forms/schema-serializer.js +10 -0
- package/dist/components/forms/string-list-field.cjs +154 -0
- package/dist/components/forms/string-list-field.d.ts +29 -0
- package/dist/components/forms/string-list-field.js +117 -0
- package/dist/components/forms/validation-converter.cjs +68 -23
- package/dist/components/forms/validation-converter.d.ts +23 -2
- package/dist/components/forms/validation-converter.js +64 -22
- package/dist/components/ui/datetime-picker.cjs +3 -1
- package/dist/components/ui/datetime-picker.d.ts +4 -0
- package/dist/components/ui/datetime-picker.js +3 -1
- package/dist/components/ui/form-field.cjs +17 -2
- package/dist/components/ui/form-field.d.ts +7 -0
- package/dist/components/ui/form-field.js +17 -2
- package/dist/components/ui/index.cjs +124 -114
- package/dist/components/ui/index.d.ts +3 -2
- package/dist/components/ui/index.js +2 -1
- package/dist/components/ui/info-tooltip.cjs +61 -0
- package/dist/components/ui/info-tooltip.d.ts +10 -0
- package/dist/components/ui/info-tooltip.js +27 -0
- package/dist/components/ui/prompt-editor/components/EditorToolbar.cjs +18 -2
- package/dist/components/ui/prompt-editor/components/EditorToolbar.d.ts +3 -1
- package/dist/components/ui/prompt-editor/components/EditorToolbar.js +19 -3
- package/dist/components/ui/prompt-editor/components/MarkdownPreview.cjs +4 -2
- package/dist/components/ui/prompt-editor/components/MarkdownPreview.js +4 -2
- package/dist/components/ui/prompt-editor/plugins/ToolbarActionsPlugin.cjs +14 -4
- package/dist/components/ui/prompt-editor/plugins/ToolbarActionsPlugin.js +14 -4
- package/dist/components/ui/prompt-editor/prompt-editor-config.cjs +2 -0
- package/dist/components/ui/prompt-editor/prompt-editor-config.d.ts +2 -0
- package/dist/components/ui/prompt-editor/prompt-editor-config.js +2 -0
- package/dist/components/ui/prompt-editor/prompt-editor.cjs +10 -1
- package/dist/components/ui/prompt-editor/prompt-editor.js +10 -1
- package/dist/components/ui/prompt-editor/types.d.ts +7 -1
- package/dist/components/ui/prompt-editor/utils/rich-serialization.cjs +48 -1
- package/dist/components/ui/prompt-editor/utils/rich-serialization.d.ts +0 -14
- package/dist/components/ui/prompt-editor/utils/rich-serialization.js +50 -3
- package/dist/components/ui/select.cjs +1 -1
- package/dist/components/ui/select.js +1 -1
- package/dist/components/ui/textarea.cjs +1 -1
- package/dist/components/ui/textarea.js +1 -1
- package/dist/index.cjs +14 -0
- package/dist/index.d.ts +7 -2
- package/dist/index.js +4 -2
- package/dist/styles.css +13 -0
- package/package.json +2 -2
|
@@ -27,10 +27,10 @@ var __webpack_modules__ = {
|
|
|
27
27
|
"@/components/ui/button" (module) {
|
|
28
28
|
module.exports = require("./button.cjs");
|
|
29
29
|
},
|
|
30
|
-
"
|
|
30
|
+
"./calendar" (module) {
|
|
31
31
|
module.exports = require("./calendar.cjs");
|
|
32
32
|
},
|
|
33
|
-
"
|
|
33
|
+
"./card" (module) {
|
|
34
34
|
module.exports = require("./card.cjs");
|
|
35
35
|
},
|
|
36
36
|
"./chart" (module) {
|
|
@@ -60,13 +60,13 @@ var __webpack_modules__ = {
|
|
|
60
60
|
"./datetime-picker" (module) {
|
|
61
61
|
module.exports = require("./datetime-picker.cjs");
|
|
62
62
|
},
|
|
63
|
-
"
|
|
63
|
+
"./dialog" (module) {
|
|
64
64
|
module.exports = require("./dialog.cjs");
|
|
65
65
|
},
|
|
66
66
|
"./drawer" (module) {
|
|
67
67
|
module.exports = require("./drawer.cjs");
|
|
68
68
|
},
|
|
69
|
-
"
|
|
69
|
+
"@/components/ui/dropdown-menu" (module) {
|
|
70
70
|
module.exports = require("./dropdown-menu.cjs");
|
|
71
71
|
},
|
|
72
72
|
"@/components/ui/editable-cell" (module) {
|
|
@@ -84,13 +84,16 @@ var __webpack_modules__ = {
|
|
|
84
84
|
"./hover-card" (module) {
|
|
85
85
|
module.exports = require("./hover-card.cjs");
|
|
86
86
|
},
|
|
87
|
-
"@/components/ui/
|
|
87
|
+
"@/components/ui/info-tooltip" (module) {
|
|
88
|
+
module.exports = require("./info-tooltip.cjs");
|
|
89
|
+
},
|
|
90
|
+
"./input-group" (module) {
|
|
88
91
|
module.exports = require("./input-group.cjs");
|
|
89
92
|
},
|
|
90
93
|
"@/components/ui/input" (module) {
|
|
91
94
|
module.exports = require("./input.cjs");
|
|
92
95
|
},
|
|
93
|
-
"
|
|
96
|
+
"./label" (module) {
|
|
94
97
|
module.exports = require("./label.cjs");
|
|
95
98
|
},
|
|
96
99
|
"./layout" (module) {
|
|
@@ -105,7 +108,7 @@ var __webpack_modules__ = {
|
|
|
105
108
|
"./pagination" (module) {
|
|
106
109
|
module.exports = require("./pagination.cjs");
|
|
107
110
|
},
|
|
108
|
-
"
|
|
111
|
+
"./popover" (module) {
|
|
109
112
|
module.exports = require("./popover.cjs");
|
|
110
113
|
},
|
|
111
114
|
"@/components/ui/portal-container" (module) {
|
|
@@ -159,7 +162,7 @@ var __webpack_modules__ = {
|
|
|
159
162
|
"./switch" (module) {
|
|
160
163
|
module.exports = require("./switch.cjs");
|
|
161
164
|
},
|
|
162
|
-
"
|
|
165
|
+
"@/components/ui/table" (module) {
|
|
163
166
|
module.exports = require("./table.cjs");
|
|
164
167
|
},
|
|
165
168
|
"./tabs" (module) {
|
|
@@ -293,14 +296,14 @@ var __webpack_exports__ = {};
|
|
|
293
296
|
"default"
|
|
294
297
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_button_group__rspack_import_8[__rspack_import_key];
|
|
295
298
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
296
|
-
var _calendar__rspack_import_9 = __webpack_require__("
|
|
299
|
+
var _calendar__rspack_import_9 = __webpack_require__("./calendar");
|
|
297
300
|
var __rspack_reexport = {};
|
|
298
301
|
for(const __rspack_import_key in _calendar__rspack_import_9)if ([
|
|
299
302
|
"TreeView",
|
|
300
303
|
"default"
|
|
301
304
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_calendar__rspack_import_9[__rspack_import_key];
|
|
302
305
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
303
|
-
var _card__rspack_import_10 = __webpack_require__("
|
|
306
|
+
var _card__rspack_import_10 = __webpack_require__("./card");
|
|
304
307
|
var __rspack_reexport = {};
|
|
305
308
|
for(const __rspack_import_key in _card__rspack_import_10)if ([
|
|
306
309
|
"TreeView",
|
|
@@ -370,7 +373,7 @@ var __webpack_exports__ = {};
|
|
|
370
373
|
"default"
|
|
371
374
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_datetime_picker__rspack_import_19[__rspack_import_key];
|
|
372
375
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
373
|
-
var _dialog__rspack_import_20 = __webpack_require__("
|
|
376
|
+
var _dialog__rspack_import_20 = __webpack_require__("./dialog");
|
|
374
377
|
var __rspack_reexport = {};
|
|
375
378
|
for(const __rspack_import_key in _dialog__rspack_import_20)if ([
|
|
376
379
|
"TreeView",
|
|
@@ -384,7 +387,7 @@ var __webpack_exports__ = {};
|
|
|
384
387
|
"default"
|
|
385
388
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_drawer__rspack_import_21[__rspack_import_key];
|
|
386
389
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
387
|
-
var _dropdown_menu__rspack_import_22 = __webpack_require__("
|
|
390
|
+
var _dropdown_menu__rspack_import_22 = __webpack_require__("@/components/ui/dropdown-menu");
|
|
388
391
|
var __rspack_reexport = {};
|
|
389
392
|
for(const __rspack_import_key in _dropdown_menu__rspack_import_22)if ([
|
|
390
393
|
"TreeView",
|
|
@@ -405,19 +408,19 @@ var __webpack_exports__ = {};
|
|
|
405
408
|
"default"
|
|
406
409
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_empty_state__rspack_import_24[__rspack_import_key];
|
|
407
410
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
408
|
-
var
|
|
411
|
+
var _file_upload__rspack_import_25 = __webpack_require__("./file-upload");
|
|
409
412
|
var __rspack_reexport = {};
|
|
410
|
-
for(const __rspack_import_key in
|
|
413
|
+
for(const __rspack_import_key in _file_upload__rspack_import_25)if ([
|
|
411
414
|
"TreeView",
|
|
412
415
|
"default"
|
|
413
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
416
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_file_upload__rspack_import_25[__rspack_import_key];
|
|
414
417
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
415
|
-
var
|
|
418
|
+
var _form_field__rspack_import_26 = __webpack_require__("./form-field");
|
|
416
419
|
var __rspack_reexport = {};
|
|
417
|
-
for(const __rspack_import_key in
|
|
420
|
+
for(const __rspack_import_key in _form_field__rspack_import_26)if ([
|
|
418
421
|
"TreeView",
|
|
419
422
|
"default"
|
|
420
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
423
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_form_field__rspack_import_26[__rspack_import_key];
|
|
421
424
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
422
425
|
var _hover_card__rspack_import_27 = __webpack_require__("./hover-card");
|
|
423
426
|
var __rspack_reexport = {};
|
|
@@ -426,232 +429,239 @@ var __webpack_exports__ = {};
|
|
|
426
429
|
"default"
|
|
427
430
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_hover_card__rspack_import_27[__rspack_import_key];
|
|
428
431
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
429
|
-
var
|
|
432
|
+
var _info_tooltip__rspack_import_28 = __webpack_require__("@/components/ui/info-tooltip");
|
|
430
433
|
var __rspack_reexport = {};
|
|
431
|
-
for(const __rspack_import_key in
|
|
434
|
+
for(const __rspack_import_key in _info_tooltip__rspack_import_28)if ([
|
|
432
435
|
"TreeView",
|
|
433
436
|
"default"
|
|
434
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
437
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_info_tooltip__rspack_import_28[__rspack_import_key];
|
|
435
438
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
436
|
-
var
|
|
439
|
+
var _input__rspack_import_29 = __webpack_require__("@/components/ui/input");
|
|
437
440
|
var __rspack_reexport = {};
|
|
438
|
-
for(const __rspack_import_key in
|
|
441
|
+
for(const __rspack_import_key in _input__rspack_import_29)if ([
|
|
439
442
|
"TreeView",
|
|
440
443
|
"default"
|
|
441
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
444
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_input__rspack_import_29[__rspack_import_key];
|
|
442
445
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
443
|
-
var
|
|
446
|
+
var _input_group__rspack_import_30 = __webpack_require__("./input-group");
|
|
444
447
|
var __rspack_reexport = {};
|
|
445
|
-
for(const __rspack_import_key in
|
|
448
|
+
for(const __rspack_import_key in _input_group__rspack_import_30)if ([
|
|
446
449
|
"TreeView",
|
|
447
450
|
"default"
|
|
448
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
451
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_input_group__rspack_import_30[__rspack_import_key];
|
|
449
452
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
450
|
-
var
|
|
453
|
+
var _label__rspack_import_31 = __webpack_require__("./label");
|
|
451
454
|
var __rspack_reexport = {};
|
|
452
|
-
for(const __rspack_import_key in
|
|
455
|
+
for(const __rspack_import_key in _label__rspack_import_31)if ([
|
|
453
456
|
"TreeView",
|
|
454
457
|
"default"
|
|
455
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
458
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_label__rspack_import_31[__rspack_import_key];
|
|
456
459
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
457
|
-
var
|
|
460
|
+
var _layout__rspack_import_32 = __webpack_require__("./layout");
|
|
458
461
|
var __rspack_reexport = {};
|
|
459
|
-
for(const __rspack_import_key in
|
|
462
|
+
for(const __rspack_import_key in _layout__rspack_import_32)if ([
|
|
460
463
|
"TreeView",
|
|
461
464
|
"default"
|
|
462
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
465
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_layout__rspack_import_32[__rspack_import_key];
|
|
463
466
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
464
|
-
var
|
|
467
|
+
var _lockable_value_field__rspack_import_33 = __webpack_require__("./lockable-value-field");
|
|
465
468
|
var __rspack_reexport = {};
|
|
466
|
-
for(const __rspack_import_key in
|
|
469
|
+
for(const __rspack_import_key in _lockable_value_field__rspack_import_33)if ([
|
|
467
470
|
"TreeView",
|
|
468
471
|
"default"
|
|
469
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
472
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_lockable_value_field__rspack_import_33[__rspack_import_key];
|
|
470
473
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
471
|
-
var
|
|
474
|
+
var _multi_select__rspack_import_34 = __webpack_require__("./multi-select");
|
|
472
475
|
var __rspack_reexport = {};
|
|
473
|
-
for(const __rspack_import_key in
|
|
476
|
+
for(const __rspack_import_key in _multi_select__rspack_import_34)if ([
|
|
474
477
|
"TreeView",
|
|
475
478
|
"default"
|
|
476
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
479
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_multi_select__rspack_import_34[__rspack_import_key];
|
|
477
480
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
478
|
-
var
|
|
481
|
+
var _pagination__rspack_import_35 = __webpack_require__("./pagination");
|
|
479
482
|
var __rspack_reexport = {};
|
|
480
|
-
for(const __rspack_import_key in
|
|
483
|
+
for(const __rspack_import_key in _pagination__rspack_import_35)if ([
|
|
481
484
|
"TreeView",
|
|
482
485
|
"default"
|
|
483
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
486
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_pagination__rspack_import_35[__rspack_import_key];
|
|
484
487
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
485
|
-
var
|
|
488
|
+
var _popover__rspack_import_36 = __webpack_require__("./popover");
|
|
486
489
|
var __rspack_reexport = {};
|
|
487
|
-
for(const __rspack_import_key in
|
|
490
|
+
for(const __rspack_import_key in _popover__rspack_import_36)if ([
|
|
488
491
|
"TreeView",
|
|
489
492
|
"default"
|
|
490
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
493
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_popover__rspack_import_36[__rspack_import_key];
|
|
491
494
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
492
|
-
var
|
|
495
|
+
var _portal_container__rspack_import_37 = __webpack_require__("@/components/ui/portal-container");
|
|
493
496
|
var __rspack_reexport = {};
|
|
494
|
-
for(const __rspack_import_key in
|
|
497
|
+
for(const __rspack_import_key in _portal_container__rspack_import_37)if ([
|
|
495
498
|
"TreeView",
|
|
496
499
|
"default"
|
|
497
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
500
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_portal_container__rspack_import_37[__rspack_import_key];
|
|
498
501
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
499
|
-
var
|
|
502
|
+
var _progress__rspack_import_38 = __webpack_require__("./progress");
|
|
500
503
|
var __rspack_reexport = {};
|
|
501
|
-
for(const __rspack_import_key in
|
|
504
|
+
for(const __rspack_import_key in _progress__rspack_import_38)if ([
|
|
502
505
|
"TreeView",
|
|
503
506
|
"default"
|
|
504
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
507
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_progress__rspack_import_38[__rspack_import_key];
|
|
505
508
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
506
|
-
var
|
|
509
|
+
var _prompt_editor__rspack_import_39 = __webpack_require__("./prompt-editor?2bb4");
|
|
507
510
|
var __rspack_reexport = {};
|
|
508
|
-
for(const __rspack_import_key in
|
|
511
|
+
for(const __rspack_import_key in _prompt_editor__rspack_import_39)if ([
|
|
509
512
|
"TreeView",
|
|
510
513
|
"default"
|
|
511
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
514
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_prompt_editor__rspack_import_39[__rspack_import_key];
|
|
512
515
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
513
|
-
var
|
|
516
|
+
var _radio_group__rspack_import_40 = __webpack_require__("./radio-group");
|
|
514
517
|
var __rspack_reexport = {};
|
|
515
|
-
for(const __rspack_import_key in
|
|
518
|
+
for(const __rspack_import_key in _radio_group__rspack_import_40)if ([
|
|
516
519
|
"TreeView",
|
|
517
520
|
"default"
|
|
518
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
521
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_radio_group__rspack_import_40[__rspack_import_key];
|
|
519
522
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
520
|
-
var
|
|
523
|
+
var _resizable__rspack_import_41 = __webpack_require__("./resizable");
|
|
521
524
|
var __rspack_reexport = {};
|
|
522
|
-
for(const __rspack_import_key in
|
|
525
|
+
for(const __rspack_import_key in _resizable__rspack_import_41)if ([
|
|
523
526
|
"TreeView",
|
|
524
527
|
"default"
|
|
525
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
528
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_resizable__rspack_import_41[__rspack_import_key];
|
|
526
529
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
527
|
-
var
|
|
530
|
+
var _scroll_area__rspack_import_42 = __webpack_require__("./scroll-area");
|
|
528
531
|
var __rspack_reexport = {};
|
|
529
|
-
for(const __rspack_import_key in
|
|
532
|
+
for(const __rspack_import_key in _scroll_area__rspack_import_42)if ([
|
|
530
533
|
"TreeView",
|
|
531
534
|
"default"
|
|
532
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
535
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_scroll_area__rspack_import_42[__rspack_import_key];
|
|
533
536
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
534
|
-
var
|
|
537
|
+
var _search__rspack_import_43 = __webpack_require__("./search");
|
|
535
538
|
var __rspack_reexport = {};
|
|
536
|
-
for(const __rspack_import_key in
|
|
539
|
+
for(const __rspack_import_key in _search__rspack_import_43)if ([
|
|
537
540
|
"TreeView",
|
|
538
541
|
"default"
|
|
539
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
542
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_search__rspack_import_43[__rspack_import_key];
|
|
540
543
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
541
|
-
var
|
|
544
|
+
var _select__rspack_import_44 = __webpack_require__("./select");
|
|
542
545
|
var __rspack_reexport = {};
|
|
543
|
-
for(const __rspack_import_key in
|
|
546
|
+
for(const __rspack_import_key in _select__rspack_import_44)if ([
|
|
544
547
|
"TreeView",
|
|
545
548
|
"default"
|
|
546
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
549
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_select__rspack_import_44[__rspack_import_key];
|
|
547
550
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
548
|
-
var
|
|
551
|
+
var _separator__rspack_import_45 = __webpack_require__("./separator");
|
|
549
552
|
var __rspack_reexport = {};
|
|
550
|
-
for(const __rspack_import_key in
|
|
553
|
+
for(const __rspack_import_key in _separator__rspack_import_45)if ([
|
|
551
554
|
"TreeView",
|
|
552
555
|
"default"
|
|
553
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
556
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_separator__rspack_import_45[__rspack_import_key];
|
|
554
557
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
555
|
-
var
|
|
558
|
+
var _sheet__rspack_import_46 = __webpack_require__("./sheet");
|
|
556
559
|
var __rspack_reexport = {};
|
|
557
|
-
for(const __rspack_import_key in
|
|
560
|
+
for(const __rspack_import_key in _sheet__rspack_import_46)if ([
|
|
558
561
|
"TreeView",
|
|
559
562
|
"default"
|
|
560
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
563
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_sheet__rspack_import_46[__rspack_import_key];
|
|
561
564
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
562
|
-
var
|
|
565
|
+
var _skeleton__rspack_import_47 = __webpack_require__("./skeleton");
|
|
563
566
|
var __rspack_reexport = {};
|
|
564
|
-
for(const __rspack_import_key in
|
|
567
|
+
for(const __rspack_import_key in _skeleton__rspack_import_47)if ([
|
|
565
568
|
"TreeView",
|
|
566
569
|
"default"
|
|
567
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
570
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_skeleton__rspack_import_47[__rspack_import_key];
|
|
568
571
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
569
|
-
var
|
|
572
|
+
var _slider__rspack_import_48 = __webpack_require__("./slider");
|
|
570
573
|
var __rspack_reexport = {};
|
|
571
|
-
for(const __rspack_import_key in
|
|
574
|
+
for(const __rspack_import_key in _slider__rspack_import_48)if ([
|
|
572
575
|
"TreeView",
|
|
573
576
|
"default"
|
|
574
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
577
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_slider__rspack_import_48[__rspack_import_key];
|
|
575
578
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
576
|
-
var
|
|
579
|
+
var _sonner__rspack_import_49 = __webpack_require__("./sonner");
|
|
577
580
|
var __rspack_reexport = {};
|
|
578
|
-
for(const __rspack_import_key in
|
|
581
|
+
for(const __rspack_import_key in _sonner__rspack_import_49)if ([
|
|
579
582
|
"TreeView",
|
|
580
583
|
"default"
|
|
581
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
584
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_sonner__rspack_import_49[__rspack_import_key];
|
|
582
585
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
583
|
-
var
|
|
586
|
+
var _spinner__rspack_import_50 = __webpack_require__("./spinner");
|
|
584
587
|
var __rspack_reexport = {};
|
|
585
|
-
for(const __rspack_import_key in
|
|
588
|
+
for(const __rspack_import_key in _spinner__rspack_import_50)if ([
|
|
586
589
|
"TreeView",
|
|
587
590
|
"default"
|
|
588
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
591
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_spinner__rspack_import_50[__rspack_import_key];
|
|
589
592
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
590
|
-
var
|
|
593
|
+
var _stats_card__rspack_import_51 = __webpack_require__("./stats-card");
|
|
591
594
|
var __rspack_reexport = {};
|
|
592
|
-
for(const __rspack_import_key in
|
|
595
|
+
for(const __rspack_import_key in _stats_card__rspack_import_51)if ([
|
|
593
596
|
"TreeView",
|
|
594
597
|
"default"
|
|
595
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
598
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_stats_card__rspack_import_51[__rspack_import_key];
|
|
596
599
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
597
|
-
var
|
|
600
|
+
var _stepper__rspack_import_52 = __webpack_require__("./stepper");
|
|
598
601
|
var __rspack_reexport = {};
|
|
599
|
-
for(const __rspack_import_key in
|
|
602
|
+
for(const __rspack_import_key in _stepper__rspack_import_52)if ([
|
|
600
603
|
"TreeView",
|
|
601
604
|
"default"
|
|
602
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
605
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_stepper__rspack_import_52[__rspack_import_key];
|
|
603
606
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
604
|
-
var
|
|
607
|
+
var _switch__rspack_import_53 = __webpack_require__("./switch");
|
|
605
608
|
var __rspack_reexport = {};
|
|
606
|
-
for(const __rspack_import_key in
|
|
609
|
+
for(const __rspack_import_key in _switch__rspack_import_53)if ([
|
|
607
610
|
"TreeView",
|
|
608
611
|
"default"
|
|
609
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
612
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_switch__rspack_import_53[__rspack_import_key];
|
|
610
613
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
611
|
-
var
|
|
614
|
+
var _table__rspack_import_54 = __webpack_require__("@/components/ui/table");
|
|
612
615
|
var __rspack_reexport = {};
|
|
613
|
-
for(const __rspack_import_key in
|
|
616
|
+
for(const __rspack_import_key in _table__rspack_import_54)if ([
|
|
614
617
|
"TreeView",
|
|
615
618
|
"default"
|
|
616
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
619
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_table__rspack_import_54[__rspack_import_key];
|
|
617
620
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
618
|
-
var
|
|
621
|
+
var _tabs__rspack_import_55 = __webpack_require__("./tabs");
|
|
619
622
|
var __rspack_reexport = {};
|
|
620
|
-
for(const __rspack_import_key in
|
|
623
|
+
for(const __rspack_import_key in _tabs__rspack_import_55)if ([
|
|
621
624
|
"TreeView",
|
|
622
625
|
"default"
|
|
623
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
626
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_tabs__rspack_import_55[__rspack_import_key];
|
|
624
627
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
625
|
-
var
|
|
628
|
+
var _textarea__rspack_import_56 = __webpack_require__("@/components/ui/textarea");
|
|
626
629
|
var __rspack_reexport = {};
|
|
627
|
-
for(const __rspack_import_key in
|
|
630
|
+
for(const __rspack_import_key in _textarea__rspack_import_56)if ([
|
|
628
631
|
"TreeView",
|
|
629
632
|
"default"
|
|
630
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
633
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_textarea__rspack_import_56[__rspack_import_key];
|
|
631
634
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
632
|
-
var
|
|
635
|
+
var _toggle__rspack_import_57 = __webpack_require__("./toggle");
|
|
633
636
|
var __rspack_reexport = {};
|
|
634
|
-
for(const __rspack_import_key in
|
|
637
|
+
for(const __rspack_import_key in _toggle__rspack_import_57)if ([
|
|
635
638
|
"TreeView",
|
|
636
639
|
"default"
|
|
637
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
640
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_toggle__rspack_import_57[__rspack_import_key];
|
|
638
641
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
639
|
-
var
|
|
642
|
+
var _toggle_group__rspack_import_58 = __webpack_require__("./toggle-group");
|
|
640
643
|
var __rspack_reexport = {};
|
|
641
|
-
for(const __rspack_import_key in
|
|
644
|
+
for(const __rspack_import_key in _toggle_group__rspack_import_58)if ([
|
|
642
645
|
"TreeView",
|
|
643
646
|
"default"
|
|
644
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
647
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_toggle_group__rspack_import_58[__rspack_import_key];
|
|
645
648
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
646
|
-
var
|
|
649
|
+
var _tooltip__rspack_import_59 = __webpack_require__("./tooltip");
|
|
647
650
|
var __rspack_reexport = {};
|
|
648
|
-
for(const __rspack_import_key in
|
|
651
|
+
for(const __rspack_import_key in _tooltip__rspack_import_59)if ([
|
|
649
652
|
"TreeView",
|
|
650
653
|
"default"
|
|
651
|
-
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>
|
|
654
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_tooltip__rspack_import_59[__rspack_import_key];
|
|
652
655
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
653
656
|
var _tree_view__rspack_import_60 = __webpack_require__("./tree-view");
|
|
654
657
|
var _tree_view__rspack_import_60_default = /*#__PURE__*/ __webpack_require__.n(_tree_view__rspack_import_60);
|
|
658
|
+
var _variable_picker__rspack_import_61 = __webpack_require__("./variable-picker");
|
|
659
|
+
var __rspack_reexport = {};
|
|
660
|
+
for(const __rspack_import_key in _variable_picker__rspack_import_61)if ([
|
|
661
|
+
"TreeView",
|
|
662
|
+
"default"
|
|
663
|
+
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_variable_picker__rspack_import_61[__rspack_import_key];
|
|
664
|
+
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
655
665
|
})();
|
|
656
666
|
exports.TreeView = __webpack_exports__.TreeView;
|
|
657
667
|
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
@@ -23,9 +23,10 @@ export * from './drawer';
|
|
|
23
23
|
export * from './dropdown-menu';
|
|
24
24
|
export * from './editable-cell';
|
|
25
25
|
export * from './empty-state';
|
|
26
|
-
export * from './form-field';
|
|
27
26
|
export * from './file-upload';
|
|
27
|
+
export * from './form-field';
|
|
28
28
|
export * from './hover-card';
|
|
29
|
+
export * from './info-tooltip';
|
|
29
30
|
export * from './input';
|
|
30
31
|
export * from './input-group';
|
|
31
32
|
export * from './label';
|
|
@@ -57,6 +58,6 @@ export * from './textarea';
|
|
|
57
58
|
export * from './toggle';
|
|
58
59
|
export * from './toggle-group';
|
|
59
60
|
export * from './tooltip';
|
|
60
|
-
export * from './variable-picker';
|
|
61
61
|
export type { TreeViewIconMap, TreeViewItem, TreeViewItemAction, TreeViewMenuItem, TreeViewProps, TreeViewSelectionMode, } from './tree-view';
|
|
62
62
|
export { default as TreeView } from './tree-view';
|
|
63
|
+
export * from './variable-picker';
|
|
@@ -24,9 +24,10 @@ export * from "./drawer.js";
|
|
|
24
24
|
export * from "./dropdown-menu.js";
|
|
25
25
|
export * from "./editable-cell.js";
|
|
26
26
|
export * from "./empty-state.js";
|
|
27
|
-
export * from "./form-field.js";
|
|
28
27
|
export * from "./file-upload.js";
|
|
28
|
+
export * from "./form-field.js";
|
|
29
29
|
export * from "./hover-card.js";
|
|
30
|
+
export * from "./info-tooltip.js";
|
|
30
31
|
export * from "./input.js";
|
|
31
32
|
export * from "./input-group.js";
|
|
32
33
|
export * from "./label.js";
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
InfoTooltip: ()=>InfoTooltip
|
|
28
|
+
});
|
|
29
|
+
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
30
|
+
const external_lucide_react_namespaceObject = require("lucide-react");
|
|
31
|
+
const external_tooltip_cjs_namespaceObject = require("./tooltip.cjs");
|
|
32
|
+
function InfoTooltip({ content, 'aria-label': ariaLabel }) {
|
|
33
|
+
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(external_tooltip_cjs_namespaceObject.Tooltip, {
|
|
34
|
+
children: [
|
|
35
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_tooltip_cjs_namespaceObject.TooltipTrigger, {
|
|
36
|
+
asChild: true,
|
|
37
|
+
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("button", {
|
|
38
|
+
type: "button",
|
|
39
|
+
"data-slot": "info-tooltip",
|
|
40
|
+
"aria-label": ariaLabel,
|
|
41
|
+
className: "inline-flex items-center justify-center align-text-bottom ml-1 rounded-sm focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
|
|
42
|
+
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.Info, {
|
|
43
|
+
className: "size-3.5 text-muted-foreground"
|
|
44
|
+
})
|
|
45
|
+
})
|
|
46
|
+
}),
|
|
47
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_tooltip_cjs_namespaceObject.TooltipContent, {
|
|
48
|
+
side: "top",
|
|
49
|
+
className: "max-w-[300px]",
|
|
50
|
+
children: content
|
|
51
|
+
})
|
|
52
|
+
]
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
exports.InfoTooltip = __webpack_exports__.InfoTooltip;
|
|
56
|
+
for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
57
|
+
"InfoTooltip"
|
|
58
|
+
].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
|
|
59
|
+
Object.defineProperty(exports, '__esModule', {
|
|
60
|
+
value: true
|
|
61
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ReactNode } from 'react';
|
|
2
|
+
export interface InfoTooltipProps {
|
|
3
|
+
content: ReactNode;
|
|
4
|
+
'aria-label': string;
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* Info icon with a tooltip, used next to labels. A real button so the tooltip is
|
|
8
|
+
* keyboard-reachable; requires an ancestor TooltipProvider.
|
|
9
|
+
*/
|
|
10
|
+
export declare function InfoTooltip({ content, 'aria-label': ariaLabel }: InfoTooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Info } from "lucide-react";
|
|
3
|
+
import { Tooltip, TooltipContent, TooltipTrigger } from "./tooltip.js";
|
|
4
|
+
function InfoTooltip({ content, 'aria-label': ariaLabel }) {
|
|
5
|
+
return /*#__PURE__*/ jsxs(Tooltip, {
|
|
6
|
+
children: [
|
|
7
|
+
/*#__PURE__*/ jsx(TooltipTrigger, {
|
|
8
|
+
asChild: true,
|
|
9
|
+
children: /*#__PURE__*/ jsx("button", {
|
|
10
|
+
type: "button",
|
|
11
|
+
"data-slot": "info-tooltip",
|
|
12
|
+
"aria-label": ariaLabel,
|
|
13
|
+
className: "inline-flex items-center justify-center align-text-bottom ml-1 rounded-sm focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
|
|
14
|
+
children: /*#__PURE__*/ jsx(Info, {
|
|
15
|
+
className: "size-3.5 text-muted-foreground"
|
|
16
|
+
})
|
|
17
|
+
})
|
|
18
|
+
}),
|
|
19
|
+
/*#__PURE__*/ jsx(TooltipContent, {
|
|
20
|
+
side: "top",
|
|
21
|
+
className: "max-w-[300px]",
|
|
22
|
+
children: content
|
|
23
|
+
})
|
|
24
|
+
]
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
export { InfoTooltip };
|