@easy-editor/setters 0.1.0 → 0.1.2

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 CHANGED
@@ -3,8 +3,74 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var React$1 = require('react');
6
+ var reactDom = require('react-dom');
6
7
  var jsxRuntime = require('react/jsx-runtime');
7
8
 
9
+ /**
10
+ * Popover - 共享弹窗组件
11
+ * - 使用 Portal 渲染到 document.body,避免被父容器遮挡
12
+ * - 自动匹配触发器宽度
13
+ */
14
+ const Popover = props => {
15
+ const {
16
+ open,
17
+ onClose,
18
+ trigger,
19
+ children,
20
+ width = 'trigger'
21
+ } = props;
22
+ const triggerRef = React$1.useRef(null);
23
+ const [position, setPosition] = React$1.useState({
24
+ top: 0,
25
+ left: 0
26
+ });
27
+ const [popoverWidth, setPopoverWidth] = React$1.useState(0);
28
+
29
+ // 计算弹窗位置
30
+ React$1.useEffect(() => {
31
+ if (open && triggerRef.current) {
32
+ const triggerRect = triggerRef.current.getBoundingClientRect();
33
+ const triggerWidth = triggerRect.width;
34
+
35
+ // 设置弹窗宽度
36
+ if (width === 'trigger') {
37
+ setPopoverWidth(triggerWidth);
38
+ }
39
+ setPosition({
40
+ top: triggerRect.bottom + 4,
41
+ left: triggerRect.left
42
+ });
43
+ }
44
+ }, [open, width]);
45
+
46
+ // 点击外部关闭
47
+ React$1.useEffect(() => {
48
+ const handleClickOutside = event => {
49
+ const target = event.target;
50
+ const popoverEl = document.querySelector('.es-popover-portal');
51
+ if (popoverEl && !popoverEl.contains(target) && triggerRef.current && !triggerRef.current.contains(target)) {
52
+ onClose();
53
+ }
54
+ };
55
+ if (open) {
56
+ document.addEventListener('mousedown', handleClickOutside);
57
+ return () => document.removeEventListener('mousedown', handleClickOutside);
58
+ }
59
+ }, [open, onClose]);
60
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
61
+ ref: triggerRef
62
+ }, trigger), open ? /*#__PURE__*/reactDom.createPortal(/*#__PURE__*/React.createElement("div", {
63
+ className: "es-popover-portal",
64
+ style: {
65
+ position: 'fixed',
66
+ top: position.top,
67
+ left: position.left,
68
+ width: popoverWidth || 'auto',
69
+ zIndex: 1000
70
+ }
71
+ }, children), document.body) : '');
72
+ };
73
+
8
74
  function r(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=" "),n+=f);}else for(f in e)e[f]&&(n&&(n+=" "),n+=f);return n}function clsx(){for(var e,t,f=0,n="",o=arguments.length;f<o;f++)(e=arguments[f])&&(t=r(e))&&(n&&(n+=" "),n+=t);return n}
9
75
 
10
76
  function cn(...inputs) {
@@ -107,19 +173,7 @@ const createLucideIcon = (iconName, iconNode) => {
107
173
  * This source code is licensed under the ISC license.
108
174
  * See the LICENSE file in the root directory of this source tree.
109
175
  */
110
- const __iconNode$1O = [["path", {
111
- d: "M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",
112
- key: "169zse"
113
- }]];
114
- const Activity = createLucideIcon("activity", __iconNode$1O);
115
-
116
- /**
117
- * @license lucide-react v0.561.0 - ISC
118
- *
119
- * This source code is licensed under the ISC license.
120
- * See the LICENSE file in the root directory of this source tree.
121
- */
122
- const __iconNode$1N = [["rect", {
176
+ const __iconNode$m = [["rect", {
123
177
  width: "6",
124
178
  height: "16",
125
179
  x: "4",
@@ -137,7 +191,7 @@ const __iconNode$1N = [["rect", {
137
191
  d: "M22 22H2",
138
192
  key: "19qnx5"
139
193
  }]];
140
- const AlignEndHorizontal = createLucideIcon("align-end-horizontal", __iconNode$1N);
194
+ const AlignEndHorizontal = createLucideIcon("align-end-horizontal", __iconNode$m);
141
195
 
142
196
  /**
143
197
  * @license lucide-react v0.561.0 - ISC
@@ -145,7 +199,7 @@ const AlignEndHorizontal = createLucideIcon("align-end-horizontal", __iconNode$1
145
199
  * This source code is licensed under the ISC license.
146
200
  * See the LICENSE file in the root directory of this source tree.
147
201
  */
148
- const __iconNode$1M = [["rect", {
202
+ const __iconNode$l = [["rect", {
149
203
  width: "16",
150
204
  height: "6",
151
205
  x: "2",
@@ -163,7 +217,7 @@ const __iconNode$1M = [["rect", {
163
217
  d: "M22 22V2",
164
218
  key: "12ipfv"
165
219
  }]];
166
- const AlignEndVertical = createLucideIcon("align-end-vertical", __iconNode$1M);
220
+ const AlignEndVertical = createLucideIcon("align-end-vertical", __iconNode$l);
167
221
 
168
222
  /**
169
223
  * @license lucide-react v0.561.0 - ISC
@@ -171,7 +225,7 @@ const AlignEndVertical = createLucideIcon("align-end-vertical", __iconNode$1M);
171
225
  * This source code is licensed under the ISC license.
172
226
  * See the LICENSE file in the root directory of this source tree.
173
227
  */
174
- const __iconNode$1L = [["rect", {
228
+ const __iconNode$k = [["rect", {
175
229
  width: "6",
176
230
  height: "14",
177
231
  x: "4",
@@ -198,7 +252,7 @@ const __iconNode$1L = [["rect", {
198
252
  d: "M7 5V2",
199
253
  key: "liy1u9"
200
254
  }]];
201
- const AlignHorizontalDistributeCenter = createLucideIcon("align-horizontal-distribute-center", __iconNode$1L);
255
+ const AlignHorizontalDistributeCenter = createLucideIcon("align-horizontal-distribute-center", __iconNode$k);
202
256
 
203
257
  /**
204
258
  * @license lucide-react v0.561.0 - ISC
@@ -206,7 +260,7 @@ const AlignHorizontalDistributeCenter = createLucideIcon("align-horizontal-distr
206
260
  * This source code is licensed under the ISC license.
207
261
  * See the LICENSE file in the root directory of this source tree.
208
262
  */
209
- const __iconNode$1K = [["rect", {
263
+ const __iconNode$j = [["rect", {
210
264
  width: "6",
211
265
  height: "16",
212
266
  x: "4",
@@ -224,7 +278,7 @@ const __iconNode$1K = [["rect", {
224
278
  d: "M22 2H2",
225
279
  key: "fhrpnj"
226
280
  }]];
227
- const AlignStartHorizontal = createLucideIcon("align-start-horizontal", __iconNode$1K);
281
+ const AlignStartHorizontal = createLucideIcon("align-start-horizontal", __iconNode$j);
228
282
 
229
283
  /**
230
284
  * @license lucide-react v0.561.0 - ISC
@@ -232,7 +286,7 @@ const AlignStartHorizontal = createLucideIcon("align-start-horizontal", __iconNo
232
286
  * This source code is licensed under the ISC license.
233
287
  * See the LICENSE file in the root directory of this source tree.
234
288
  */
235
- const __iconNode$1J = [["rect", {
289
+ const __iconNode$i = [["rect", {
236
290
  width: "9",
237
291
  height: "6",
238
292
  x: "6",
@@ -250,7 +304,7 @@ const __iconNode$1J = [["rect", {
250
304
  d: "M2 2v20",
251
305
  key: "1ivd8o"
252
306
  }]];
253
- const AlignStartVertical = createLucideIcon("align-start-vertical", __iconNode$1J);
307
+ const AlignStartVertical = createLucideIcon("align-start-vertical", __iconNode$i);
254
308
 
255
309
  /**
256
310
  * @license lucide-react v0.561.0 - ISC
@@ -258,7 +312,7 @@ const AlignStartVertical = createLucideIcon("align-start-vertical", __iconNode$1
258
312
  * This source code is licensed under the ISC license.
259
313
  * See the LICENSE file in the root directory of this source tree.
260
314
  */
261
- const __iconNode$1I = [["path", {
315
+ const __iconNode$h = [["path", {
262
316
  d: "M22 17h-3",
263
317
  key: "1lwga1"
264
318
  }], ["path", {
@@ -285,37 +339,7 @@ const __iconNode$1I = [["path", {
285
339
  rx: "2",
286
340
  key: "we8e9z"
287
341
  }]];
288
- const AlignVerticalDistributeCenter = createLucideIcon("align-vertical-distribute-center", __iconNode$1I);
289
-
290
- /**
291
- * @license lucide-react v0.561.0 - ISC
292
- *
293
- * This source code is licensed under the ISC license.
294
- * See the LICENSE file in the root directory of this source tree.
295
- */
296
- const __iconNode$1H = [["path", {
297
- d: "M12 5v14",
298
- key: "s699le"
299
- }], ["path", {
300
- d: "m19 12-7 7-7-7",
301
- key: "1idqje"
302
- }]];
303
- const ArrowDown = createLucideIcon("arrow-down", __iconNode$1H);
304
-
305
- /**
306
- * @license lucide-react v0.561.0 - ISC
307
- *
308
- * This source code is licensed under the ISC license.
309
- * See the LICENSE file in the root directory of this source tree.
310
- */
311
- const __iconNode$1G = [["path", {
312
- d: "m12 19-7-7 7-7",
313
- key: "1l729n"
314
- }], ["path", {
315
- d: "M19 12H5",
316
- key: "x3x0zl"
317
- }]];
318
- const ArrowLeft = createLucideIcon("arrow-left", __iconNode$1G);
342
+ const AlignVerticalDistributeCenter = createLucideIcon("align-vertical-distribute-center", __iconNode$h);
319
343
 
320
344
  /**
321
345
  * @license lucide-react v0.561.0 - ISC
@@ -323,120 +347,14 @@ const ArrowLeft = createLucideIcon("arrow-left", __iconNode$1G);
323
347
  * This source code is licensed under the ISC license.
324
348
  * See the LICENSE file in the root directory of this source tree.
325
349
  */
326
- const __iconNode$1F = [["path", {
350
+ const __iconNode$g = [["path", {
327
351
  d: "M5 12h14",
328
352
  key: "1ays0h"
329
353
  }], ["path", {
330
354
  d: "m12 5 7 7-7 7",
331
355
  key: "xquz4c"
332
356
  }]];
333
- const ArrowRight = createLucideIcon("arrow-right", __iconNode$1F);
334
-
335
- /**
336
- * @license lucide-react v0.561.0 - ISC
337
- *
338
- * This source code is licensed under the ISC license.
339
- * See the LICENSE file in the root directory of this source tree.
340
- */
341
- const __iconNode$1E = [["path", {
342
- d: "m5 12 7-7 7 7",
343
- key: "hav0vg"
344
- }], ["path", {
345
- d: "M12 19V5",
346
- key: "x0mq9r"
347
- }]];
348
- const ArrowUp = createLucideIcon("arrow-up", __iconNode$1E);
349
-
350
- /**
351
- * @license lucide-react v0.561.0 - ISC
352
- *
353
- * This source code is licensed under the ISC license.
354
- * See the LICENSE file in the root directory of this source tree.
355
- */
356
- const __iconNode$1D = [["path", {
357
- d: "M10.268 21a2 2 0 0 0 3.464 0",
358
- key: "vwvbt9"
359
- }], ["path", {
360
- d: "M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",
361
- key: "11g9vi"
362
- }]];
363
- const Bell = createLucideIcon("bell", __iconNode$1D);
364
-
365
- /**
366
- * @license lucide-react v0.561.0 - ISC
367
- *
368
- * This source code is licensed under the ISC license.
369
- * See the LICENSE file in the root directory of this source tree.
370
- */
371
- const __iconNode$1C = [["path", {
372
- d: "M8 2v4",
373
- key: "1cmpym"
374
- }], ["path", {
375
- d: "M16 2v4",
376
- key: "4m81vk"
377
- }], ["rect", {
378
- width: "18",
379
- height: "18",
380
- x: "3",
381
- y: "4",
382
- rx: "2",
383
- key: "1hopcy"
384
- }], ["path", {
385
- d: "M3 10h18",
386
- key: "8toen8"
387
- }]];
388
- const Calendar = createLucideIcon("calendar", __iconNode$1C);
389
-
390
- /**
391
- * @license lucide-react v0.561.0 - ISC
392
- *
393
- * This source code is licensed under the ISC license.
394
- * See the LICENSE file in the root directory of this source tree.
395
- */
396
- const __iconNode$1B = [["path", {
397
- d: "M5 21v-6",
398
- key: "1hz6c0"
399
- }], ["path", {
400
- d: "M12 21V9",
401
- key: "uvy0l4"
402
- }], ["path", {
403
- d: "M19 21V3",
404
- key: "11j9sm"
405
- }]];
406
- const ChartNoAxesColumnIncreasing = createLucideIcon("chart-no-axes-column-increasing", __iconNode$1B);
407
-
408
- /**
409
- * @license lucide-react v0.561.0 - ISC
410
- *
411
- * This source code is licensed under the ISC license.
412
- * See the LICENSE file in the root directory of this source tree.
413
- */
414
- const __iconNode$1A = [["path", {
415
- d: "M5 21v-6",
416
- key: "1hz6c0"
417
- }], ["path", {
418
- d: "M12 21V3",
419
- key: "1lcnhd"
420
- }], ["path", {
421
- d: "M19 21V9",
422
- key: "unv183"
423
- }]];
424
- const ChartNoAxesColumn = createLucideIcon("chart-no-axes-column", __iconNode$1A);
425
-
426
- /**
427
- * @license lucide-react v0.561.0 - ISC
428
- *
429
- * This source code is licensed under the ISC license.
430
- * See the LICENSE file in the root directory of this source tree.
431
- */
432
- const __iconNode$1z = [["path", {
433
- d: "M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z",
434
- key: "pzmjnu"
435
- }], ["path", {
436
- d: "M21.21 15.89A10 10 0 1 1 8 2.83",
437
- key: "k2fpak"
438
- }]];
439
- const ChartPie = createLucideIcon("chart-pie", __iconNode$1z);
357
+ const ArrowRight = createLucideIcon("arrow-right", __iconNode$g);
440
358
 
441
359
  /**
442
360
  * @license lucide-react v0.561.0 - ISC
@@ -444,11 +362,11 @@ const ChartPie = createLucideIcon("chart-pie", __iconNode$1z);
444
362
  * This source code is licensed under the ISC license.
445
363
  * See the LICENSE file in the root directory of this source tree.
446
364
  */
447
- const __iconNode$1y = [["path", {
365
+ const __iconNode$f = [["path", {
448
366
  d: "M20 6 9 17l-5-5",
449
367
  key: "1gmf2c"
450
368
  }]];
451
- const Check = createLucideIcon("check", __iconNode$1y);
369
+ const Check = createLucideIcon("check", __iconNode$f);
452
370
 
453
371
  /**
454
372
  * @license lucide-react v0.561.0 - ISC
@@ -456,47 +374,11 @@ const Check = createLucideIcon("check", __iconNode$1y);
456
374
  * This source code is licensed under the ISC license.
457
375
  * See the LICENSE file in the root directory of this source tree.
458
376
  */
459
- const __iconNode$1x = [["path", {
377
+ const __iconNode$e = [["path", {
460
378
  d: "m6 9 6 6 6-6",
461
379
  key: "qrunsl"
462
380
  }]];
463
- const ChevronDown = createLucideIcon("chevron-down", __iconNode$1x);
464
-
465
- /**
466
- * @license lucide-react v0.561.0 - ISC
467
- *
468
- * This source code is licensed under the ISC license.
469
- * See the LICENSE file in the root directory of this source tree.
470
- */
471
- const __iconNode$1w = [["path", {
472
- d: "m15 18-6-6 6-6",
473
- key: "1wnfg3"
474
- }]];
475
- const ChevronLeft = createLucideIcon("chevron-left", __iconNode$1w);
476
-
477
- /**
478
- * @license lucide-react v0.561.0 - ISC
479
- *
480
- * This source code is licensed under the ISC license.
481
- * See the LICENSE file in the root directory of this source tree.
482
- */
483
- const __iconNode$1v = [["path", {
484
- d: "m9 18 6-6-6-6",
485
- key: "mthhwq"
486
- }]];
487
- const ChevronRight = createLucideIcon("chevron-right", __iconNode$1v);
488
-
489
- /**
490
- * @license lucide-react v0.561.0 - ISC
491
- *
492
- * This source code is licensed under the ISC license.
493
- * See the LICENSE file in the root directory of this source tree.
494
- */
495
- const __iconNode$1u = [["path", {
496
- d: "m18 15-6-6-6 6",
497
- key: "153udz"
498
- }]];
499
- const ChevronUp = createLucideIcon("chevron-up", __iconNode$1u);
381
+ const ChevronDown = createLucideIcon("chevron-down", __iconNode$e);
500
382
 
501
383
  /**
502
384
  * @license lucide-react v0.561.0 - ISC
@@ -504,40 +386,14 @@ const ChevronUp = createLucideIcon("chevron-up", __iconNode$1u);
504
386
  * This source code is licensed under the ISC license.
505
387
  * See the LICENSE file in the root directory of this source tree.
506
388
  */
507
- const __iconNode$1t = [["path", {
389
+ const __iconNode$d = [["path", {
508
390
  d: "m7 15 5 5 5-5",
509
391
  key: "1hf1tw"
510
392
  }], ["path", {
511
393
  d: "m7 9 5-5 5 5",
512
394
  key: "sgt6xg"
513
395
  }]];
514
- const ChevronsUpDown = createLucideIcon("chevrons-up-down", __iconNode$1t);
515
-
516
- /**
517
- * @license lucide-react v0.561.0 - ISC
518
- *
519
- * This source code is licensed under the ISC license.
520
- * See the LICENSE file in the root directory of this source tree.
521
- */
522
- const __iconNode$1s = [["circle", {
523
- cx: "12",
524
- cy: "12",
525
- r: "10",
526
- key: "1mglay"
527
- }], ["line", {
528
- x1: "12",
529
- x2: "12",
530
- y1: "8",
531
- y2: "12",
532
- key: "1pkeuh"
533
- }], ["line", {
534
- x1: "12",
535
- x2: "12.01",
536
- y1: "16",
537
- y2: "16",
538
- key: "4dfq90"
539
- }]];
540
- const CircleAlert = createLucideIcon("circle-alert", __iconNode$1s);
396
+ const ChevronsUpDown = createLucideIcon("chevrons-up-down", __iconNode$d);
541
397
 
542
398
  /**
543
399
  * @license lucide-react v0.561.0 - ISC
@@ -545,14 +401,14 @@ const CircleAlert = createLucideIcon("circle-alert", __iconNode$1s);
545
401
  * This source code is licensed under the ISC license.
546
402
  * See the LICENSE file in the root directory of this source tree.
547
403
  */
548
- const __iconNode$1r = [["path", {
549
- d: "M21.801 10A10 10 0 1 1 17 3.335",
550
- key: "yps3ct"
404
+ const __iconNode$c = [["path", {
405
+ d: "m16 18 6-6-6-6",
406
+ key: "eg8j8"
551
407
  }], ["path", {
552
- d: "m9 11 3 3L22 4",
553
- key: "1pflzl"
408
+ d: "m8 6-6 6 6 6",
409
+ key: "ppft3o"
554
410
  }]];
555
- const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$1r);
411
+ const Code = createLucideIcon("code", __iconNode$c);
556
412
 
557
413
  /**
558
414
  * @license lucide-react v0.561.0 - ISC
@@ -560,19 +416,20 @@ const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$1r);
560
416
  * This source code is licensed under the ISC license.
561
417
  * See the LICENSE file in the root directory of this source tree.
562
418
  */
563
- const __iconNode$1q = [["circle", {
419
+ const __iconNode$b = [["ellipse", {
564
420
  cx: "12",
565
- cy: "12",
566
- r: "10",
567
- key: "1mglay"
421
+ cy: "5",
422
+ rx: "9",
423
+ ry: "3",
424
+ key: "msslwz"
568
425
  }], ["path", {
569
- d: "m15 9-6 6",
570
- key: "1uzhvr"
426
+ d: "M3 5V19A9 3 0 0 0 21 19V5",
427
+ key: "1wlel7"
571
428
  }], ["path", {
572
- d: "m9 9 6 6",
573
- key: "z0biqf"
429
+ d: "M3 12A9 3 0 0 0 21 12",
430
+ key: "mv7ke4"
574
431
  }]];
575
- const CircleX = createLucideIcon("circle-x", __iconNode$1q);
432
+ const Database = createLucideIcon("database", __iconNode$b);
576
433
 
577
434
  /**
578
435
  * @license lucide-react v0.561.0 - ISC
@@ -580,13 +437,20 @@ const CircleX = createLucideIcon("circle-x", __iconNode$1q);
580
437
  * This source code is licensed under the ISC license.
581
438
  * See the LICENSE file in the root directory of this source tree.
582
439
  */
583
- const __iconNode$1p = [["circle", {
584
- cx: "12",
585
- cy: "12",
586
- r: "10",
587
- key: "1mglay"
440
+ const __iconNode$a = [["path", {
441
+ d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
442
+ key: "1oefj6"
443
+ }], ["path", {
444
+ d: "M14 2v5a1 1 0 0 0 1 1h5",
445
+ key: "wfsgrz"
446
+ }], ["path", {
447
+ d: "M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1",
448
+ key: "1oajmo"
449
+ }], ["path", {
450
+ d: "M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1",
451
+ key: "mpwhp6"
588
452
  }]];
589
- const Circle = createLucideIcon("circle", __iconNode$1p);
453
+ const FileBraces = createLucideIcon("file-braces", __iconNode$a);
590
454
 
591
455
  /**
592
456
  * @license lucide-react v0.561.0 - ISC
@@ -594,16 +458,38 @@ const Circle = createLucideIcon("circle", __iconNode$1p);
594
458
  * This source code is licensed under the ISC license.
595
459
  * See the LICENSE file in the root directory of this source tree.
596
460
  */
597
- const __iconNode$1o = [["path", {
598
- d: "M12 6v6l4 2",
599
- key: "mmk7yg"
461
+ const __iconNode$9 = [["circle", {
462
+ cx: "9",
463
+ cy: "12",
464
+ r: "1",
465
+ key: "1vctgf"
600
466
  }], ["circle", {
601
- cx: "12",
467
+ cx: "9",
468
+ cy: "5",
469
+ r: "1",
470
+ key: "hp0tcf"
471
+ }], ["circle", {
472
+ cx: "9",
473
+ cy: "19",
474
+ r: "1",
475
+ key: "fkjjf6"
476
+ }], ["circle", {
477
+ cx: "15",
602
478
  cy: "12",
603
- r: "10",
604
- key: "1mglay"
479
+ r: "1",
480
+ key: "1tmaij"
481
+ }], ["circle", {
482
+ cx: "15",
483
+ cy: "5",
484
+ r: "1",
485
+ key: "19l28e"
486
+ }], ["circle", {
487
+ cx: "15",
488
+ cy: "19",
489
+ r: "1",
490
+ key: "f4zoj3"
605
491
  }]];
606
- const Clock = createLucideIcon("clock", __iconNode$1o);
492
+ const GripVertical = createLucideIcon("grip-vertical", __iconNode$9);
607
493
 
608
494
  /**
609
495
  * @license lucide-react v0.561.0 - ISC
@@ -611,11 +497,20 @@ const Clock = createLucideIcon("clock", __iconNode$1o);
611
497
  * This source code is licensed under the ISC license.
612
498
  * See the LICENSE file in the root directory of this source tree.
613
499
  */
614
- const __iconNode$1n = [["path", {
615
- d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",
616
- key: "p7xjir"
500
+ const __iconNode$8 = [["path", {
501
+ d: "M9 17H7A5 5 0 0 1 7 7h2",
502
+ key: "8i5ue5"
503
+ }], ["path", {
504
+ d: "M15 7h2a5 5 0 1 1 0 10h-2",
505
+ key: "1b9ql8"
506
+ }], ["line", {
507
+ x1: "8",
508
+ x2: "16",
509
+ y1: "12",
510
+ y2: "12",
511
+ key: "1jonct"
617
512
  }]];
618
- const Cloud = createLucideIcon("cloud", __iconNode$1n);
513
+ const Link2 = createLucideIcon("link-2", __iconNode$8);
619
514
 
620
515
  /**
621
516
  * @license lucide-react v0.561.0 - ISC
@@ -623,14 +518,14 @@ const Cloud = createLucideIcon("cloud", __iconNode$1n);
623
518
  * This source code is licensed under the ISC license.
624
519
  * See the LICENSE file in the root directory of this source tree.
625
520
  */
626
- const __iconNode$1m = [["path", {
627
- d: "m16 18 6-6-6-6",
628
- key: "eg8j8"
521
+ const __iconNode$7 = [["path", {
522
+ d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",
523
+ key: "1cjeqo"
629
524
  }], ["path", {
630
- d: "m8 6-6 6 6 6",
631
- key: "ppft3o"
525
+ d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",
526
+ key: "19qd67"
632
527
  }]];
633
- const Code = createLucideIcon("code", __iconNode$1m);
528
+ const Link = createLucideIcon("link", __iconNode$7);
634
529
 
635
530
  /**
636
531
  * @license lucide-react v0.561.0 - ISC
@@ -638,19 +533,20 @@ const Code = createLucideIcon("code", __iconNode$1m);
638
533
  * This source code is licensed under the ISC license.
639
534
  * See the LICENSE file in the root directory of this source tree.
640
535
  */
641
- const __iconNode$1l = [["rect", {
642
- width: "14",
643
- height: "14",
644
- x: "8",
645
- y: "8",
646
- rx: "2",
647
- ry: "2",
648
- key: "17jyea"
536
+ const __iconNode$6 = [["path", {
537
+ d: "M15 3h6v6",
538
+ key: "1q9fwt"
649
539
  }], ["path", {
650
- d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",
651
- key: "zix9uf"
540
+ d: "m21 3-7 7",
541
+ key: "1l2asr"
542
+ }], ["path", {
543
+ d: "m3 21 7-7",
544
+ key: "tjx5ai"
545
+ }], ["path", {
546
+ d: "M9 21H3v-6",
547
+ key: "wtvkvv"
652
548
  }]];
653
- const Copy = createLucideIcon("copy", __iconNode$1l);
549
+ const Maximize2 = createLucideIcon("maximize-2", __iconNode$6);
654
550
 
655
551
  /**
656
552
  * @license lucide-react v0.561.0 - ISC
@@ -658,1432 +554,14 @@ const Copy = createLucideIcon("copy", __iconNode$1l);
658
554
  * This source code is licensed under the ISC license.
659
555
  * See the LICENSE file in the root directory of this source tree.
660
556
  */
661
- const __iconNode$1k = [["ellipse", {
662
- cx: "12",
663
- cy: "5",
664
- rx: "9",
665
- ry: "3",
666
- key: "msslwz"
557
+ const __iconNode$5 = [["path", {
558
+ d: "M5 12h14",
559
+ key: "1ays0h"
667
560
  }], ["path", {
668
- d: "M3 5V19A9 3 0 0 0 21 19V5",
669
- key: "1wlel7"
670
- }], ["path", {
671
- d: "M3 12A9 3 0 0 0 21 12",
672
- key: "mv7ke4"
673
- }]];
674
- const Database = createLucideIcon("database", __iconNode$1k);
675
-
676
- /**
677
- * @license lucide-react v0.561.0 - ISC
678
- *
679
- * This source code is licensed under the ISC license.
680
- * See the LICENSE file in the root directory of this source tree.
681
- */
682
- const __iconNode$1j = [["path", {
683
- d: "M12 15V3",
684
- key: "m9g1x1"
685
- }], ["path", {
686
- d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",
687
- key: "ih7n3h"
688
- }], ["path", {
689
- d: "m7 10 5 5 5-5",
690
- key: "brsn70"
691
- }]];
692
- const Download = createLucideIcon("download", __iconNode$1j);
693
-
694
- /**
695
- * @license lucide-react v0.561.0 - ISC
696
- *
697
- * This source code is licensed under the ISC license.
698
- * See the LICENSE file in the root directory of this source tree.
699
- */
700
- const __iconNode$1i = [["circle", {
701
- cx: "12",
702
- cy: "12",
703
- r: "1",
704
- key: "41hilf"
705
- }], ["circle", {
706
- cx: "12",
707
- cy: "5",
708
- r: "1",
709
- key: "gxeob9"
710
- }], ["circle", {
711
- cx: "12",
712
- cy: "19",
713
- r: "1",
714
- key: "lyex9k"
715
- }]];
716
- const EllipsisVertical = createLucideIcon("ellipsis-vertical", __iconNode$1i);
717
-
718
- /**
719
- * @license lucide-react v0.561.0 - ISC
720
- *
721
- * This source code is licensed under the ISC license.
722
- * See the LICENSE file in the root directory of this source tree.
723
- */
724
- const __iconNode$1h = [["circle", {
725
- cx: "12",
726
- cy: "12",
727
- r: "1",
728
- key: "41hilf"
729
- }], ["circle", {
730
- cx: "19",
731
- cy: "12",
732
- r: "1",
733
- key: "1wjl8i"
734
- }], ["circle", {
735
- cx: "5",
736
- cy: "12",
737
- r: "1",
738
- key: "1pcz8c"
739
- }]];
740
- const Ellipsis = createLucideIcon("ellipsis", __iconNode$1h);
741
-
742
- /**
743
- * @license lucide-react v0.561.0 - ISC
744
- *
745
- * This source code is licensed under the ISC license.
746
- * See the LICENSE file in the root directory of this source tree.
747
- */
748
- const __iconNode$1g = [["path", {
749
- d: "M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",
750
- key: "ct8e1f"
751
- }], ["path", {
752
- d: "M14.084 14.158a3 3 0 0 1-4.242-4.242",
753
- key: "151rxh"
754
- }], ["path", {
755
- d: "M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",
756
- key: "13bj9a"
757
- }], ["path", {
758
- d: "m2 2 20 20",
759
- key: "1ooewy"
760
- }]];
761
- const EyeOff = createLucideIcon("eye-off", __iconNode$1g);
762
-
763
- /**
764
- * @license lucide-react v0.561.0 - ISC
765
- *
766
- * This source code is licensed under the ISC license.
767
- * See the LICENSE file in the root directory of this source tree.
768
- */
769
- const __iconNode$1f = [["path", {
770
- d: "M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",
771
- key: "1nclc0"
772
- }], ["circle", {
773
- cx: "12",
774
- cy: "12",
775
- r: "3",
776
- key: "1v7zrd"
777
- }]];
778
- const Eye = createLucideIcon("eye", __iconNode$1f);
779
-
780
- /**
781
- * @license lucide-react v0.561.0 - ISC
782
- *
783
- * This source code is licensed under the ISC license.
784
- * See the LICENSE file in the root directory of this source tree.
785
- */
786
- const __iconNode$1e = [["path", {
787
- d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
788
- key: "1oefj6"
789
- }], ["path", {
790
- d: "M14 2v5a1 1 0 0 0 1 1h5",
791
- key: "wfsgrz"
792
- }], ["path", {
793
- d: "M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1",
794
- key: "1oajmo"
795
- }], ["path", {
796
- d: "M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1",
797
- key: "mpwhp6"
798
- }]];
799
- const FileBraces = createLucideIcon("file-braces", __iconNode$1e);
800
-
801
- /**
802
- * @license lucide-react v0.561.0 - ISC
803
- *
804
- * This source code is licensed under the ISC license.
805
- * See the LICENSE file in the root directory of this source tree.
806
- */
807
- const __iconNode$1d = [["path", {
808
- d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
809
- key: "1oefj6"
810
- }], ["path", {
811
- d: "M14 2v5a1 1 0 0 0 1 1h5",
812
- key: "wfsgrz"
813
- }], ["path", {
814
- d: "M10 9H8",
815
- key: "b1mrlr"
816
- }], ["path", {
817
- d: "M16 13H8",
818
- key: "t4e002"
819
- }], ["path", {
820
- d: "M16 17H8",
821
- key: "z1uh3a"
822
- }]];
823
- const FileText = createLucideIcon("file-text", __iconNode$1d);
824
-
825
- /**
826
- * @license lucide-react v0.561.0 - ISC
827
- *
828
- * This source code is licensed under the ISC license.
829
- * See the LICENSE file in the root directory of this source tree.
830
- */
831
- const __iconNode$1c = [["path", {
832
- d: "M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",
833
- key: "1oefj6"
834
- }], ["path", {
835
- d: "M14 2v5a1 1 0 0 0 1 1h5",
836
- key: "wfsgrz"
837
- }]];
838
- const File = createLucideIcon("file", __iconNode$1c);
839
-
840
- /**
841
- * @license lucide-react v0.561.0 - ISC
842
- *
843
- * This source code is licensed under the ISC license.
844
- * See the LICENSE file in the root directory of this source tree.
845
- */
846
- const __iconNode$1b = [["path", {
847
- d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",
848
- key: "1kt360"
849
- }]];
850
- const Folder = createLucideIcon("folder", __iconNode$1b);
851
-
852
- /**
853
- * @license lucide-react v0.561.0 - ISC
854
- *
855
- * This source code is licensed under the ISC license.
856
- * See the LICENSE file in the root directory of this source tree.
857
- */
858
- const __iconNode$1a = [["path", {
859
- d: "M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",
860
- key: "sc7q7i"
861
- }]];
862
- const Funnel = createLucideIcon("funnel", __iconNode$1a);
863
-
864
- /**
865
- * @license lucide-react v0.561.0 - ISC
866
- *
867
- * This source code is licensed under the ISC license.
868
- * See the LICENSE file in the root directory of this source tree.
869
- */
870
- const __iconNode$19 = [["circle", {
871
- cx: "12",
872
- cy: "12",
873
- r: "10",
874
- key: "1mglay"
875
- }], ["path", {
876
- d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",
877
- key: "13o1zl"
878
- }], ["path", {
879
- d: "M2 12h20",
880
- key: "9i4pu4"
881
- }]];
882
- const Globe = createLucideIcon("globe", __iconNode$19);
883
-
884
- /**
885
- * @license lucide-react v0.561.0 - ISC
886
- *
887
- * This source code is licensed under the ISC license.
888
- * See the LICENSE file in the root directory of this source tree.
889
- */
890
- const __iconNode$18 = [["rect", {
891
- width: "18",
892
- height: "18",
893
- x: "3",
894
- y: "3",
895
- rx: "2",
896
- key: "afitv7"
897
- }], ["path", {
898
- d: "M3 9h18",
899
- key: "1pudct"
900
- }], ["path", {
901
- d: "M3 15h18",
902
- key: "5xshup"
903
- }], ["path", {
904
- d: "M9 3v18",
905
- key: "fh3hqa"
906
- }], ["path", {
907
- d: "M15 3v18",
908
- key: "14nvp0"
909
- }]];
910
- const Grid3x3 = createLucideIcon("grid-3x3", __iconNode$18);
911
-
912
- /**
913
- * @license lucide-react v0.561.0 - ISC
914
- *
915
- * This source code is licensed under the ISC license.
916
- * See the LICENSE file in the root directory of this source tree.
917
- */
918
- const __iconNode$17 = [["circle", {
919
- cx: "9",
920
- cy: "12",
921
- r: "1",
922
- key: "1vctgf"
923
- }], ["circle", {
924
- cx: "9",
925
- cy: "5",
926
- r: "1",
927
- key: "hp0tcf"
928
- }], ["circle", {
929
- cx: "9",
930
- cy: "19",
931
- r: "1",
932
- key: "fkjjf6"
933
- }], ["circle", {
934
- cx: "15",
935
- cy: "12",
936
- r: "1",
937
- key: "1tmaij"
938
- }], ["circle", {
939
- cx: "15",
940
- cy: "5",
941
- r: "1",
942
- key: "19l28e"
943
- }], ["circle", {
944
- cx: "15",
945
- cy: "19",
946
- r: "1",
947
- key: "f4zoj3"
948
- }]];
949
- const GripVertical = createLucideIcon("grip-vertical", __iconNode$17);
950
-
951
- /**
952
- * @license lucide-react v0.561.0 - ISC
953
- *
954
- * This source code is licensed under the ISC license.
955
- * See the LICENSE file in the root directory of this source tree.
956
- */
957
- const __iconNode$16 = [["path", {
958
- d: "M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5",
959
- key: "mvr1a0"
960
- }]];
961
- const Heart = createLucideIcon("heart", __iconNode$16);
962
-
963
- /**
964
- * @license lucide-react v0.561.0 - ISC
965
- *
966
- * This source code is licensed under the ISC license.
967
- * See the LICENSE file in the root directory of this source tree.
968
- */
969
- const __iconNode$15 = [["path", {
970
- d: "M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",
971
- key: "5wwlr5"
972
- }], ["path", {
973
- d: "M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",
974
- key: "r6nss1"
975
- }]];
976
- const House = createLucideIcon("house", __iconNode$15);
977
-
978
- /**
979
- * @license lucide-react v0.561.0 - ISC
980
- *
981
- * This source code is licensed under the ISC license.
982
- * See the LICENSE file in the root directory of this source tree.
983
- */
984
- const __iconNode$14 = [["rect", {
985
- width: "18",
986
- height: "18",
987
- x: "3",
988
- y: "3",
989
- rx: "2",
990
- ry: "2",
991
- key: "1m3agn"
992
- }], ["circle", {
993
- cx: "9",
994
- cy: "9",
995
- r: "2",
996
- key: "af1f0g"
997
- }], ["path", {
998
- d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",
999
- key: "1xmnt7"
1000
- }]];
1001
- const Image$1 = createLucideIcon("image", __iconNode$14);
1002
-
1003
- /**
1004
- * @license lucide-react v0.561.0 - ISC
1005
- *
1006
- * This source code is licensed under the ISC license.
1007
- * See the LICENSE file in the root directory of this source tree.
1008
- */
1009
- const __iconNode$13 = [["circle", {
1010
- cx: "12",
1011
- cy: "12",
1012
- r: "10",
1013
- key: "1mglay"
1014
- }], ["path", {
1015
- d: "M12 16v-4",
1016
- key: "1dtifu"
1017
- }], ["path", {
1018
- d: "M12 8h.01",
1019
- key: "e9boi3"
1020
- }]];
1021
- const Info = createLucideIcon("info", __iconNode$13);
1022
-
1023
- /**
1024
- * @license lucide-react v0.561.0 - ISC
1025
- *
1026
- * This source code is licensed under the ISC license.
1027
- * See the LICENSE file in the root directory of this source tree.
1028
- */
1029
- const __iconNode$12 = [["path", {
1030
- d: "M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z",
1031
- key: "zw3jo"
1032
- }], ["path", {
1033
- d: "M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12",
1034
- key: "1wduqc"
1035
- }], ["path", {
1036
- d: "M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17",
1037
- key: "kqbvx6"
1038
- }]];
1039
- const Layers = createLucideIcon("layers", __iconNode$12);
1040
-
1041
- /**
1042
- * @license lucide-react v0.561.0 - ISC
1043
- *
1044
- * This source code is licensed under the ISC license.
1045
- * See the LICENSE file in the root directory of this source tree.
1046
- */
1047
- const __iconNode$11 = [["path", {
1048
- d: "M9 17H7A5 5 0 0 1 7 7h2",
1049
- key: "8i5ue5"
1050
- }], ["path", {
1051
- d: "M15 7h2a5 5 0 1 1 0 10h-2",
1052
- key: "1b9ql8"
1053
- }], ["line", {
1054
- x1: "8",
1055
- x2: "16",
1056
- y1: "12",
1057
- y2: "12",
1058
- key: "1jonct"
1059
- }]];
1060
- const Link2 = createLucideIcon("link-2", __iconNode$11);
1061
-
1062
- /**
1063
- * @license lucide-react v0.561.0 - ISC
1064
- *
1065
- * This source code is licensed under the ISC license.
1066
- * See the LICENSE file in the root directory of this source tree.
1067
- */
1068
- const __iconNode$10 = [["path", {
1069
- d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",
1070
- key: "1cjeqo"
1071
- }], ["path", {
1072
- d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",
1073
- key: "19qd67"
1074
- }]];
1075
- const Link = createLucideIcon("link", __iconNode$10);
1076
-
1077
- /**
1078
- * @license lucide-react v0.561.0 - ISC
1079
- *
1080
- * This source code is licensed under the ISC license.
1081
- * See the LICENSE file in the root directory of this source tree.
1082
- */
1083
- const __iconNode$$ = [["path", {
1084
- d: "M3 5h.01",
1085
- key: "18ugdj"
1086
- }], ["path", {
1087
- d: "M3 12h.01",
1088
- key: "nlz23k"
1089
- }], ["path", {
1090
- d: "M3 19h.01",
1091
- key: "noohij"
1092
- }], ["path", {
1093
- d: "M8 5h13",
1094
- key: "1pao27"
1095
- }], ["path", {
1096
- d: "M8 12h13",
1097
- key: "1za7za"
1098
- }], ["path", {
1099
- d: "M8 19h13",
1100
- key: "m83p4d"
1101
- }]];
1102
- const List = createLucideIcon("list", __iconNode$$);
1103
-
1104
- /**
1105
- * @license lucide-react v0.561.0 - ISC
1106
- *
1107
- * This source code is licensed under the ISC license.
1108
- * See the LICENSE file in the root directory of this source tree.
1109
- */
1110
- const __iconNode$_ = [["path", {
1111
- d: "M12 2v4",
1112
- key: "3427ic"
1113
- }], ["path", {
1114
- d: "m16.2 7.8 2.9-2.9",
1115
- key: "r700ao"
1116
- }], ["path", {
1117
- d: "M18 12h4",
1118
- key: "wj9ykh"
1119
- }], ["path", {
1120
- d: "m16.2 16.2 2.9 2.9",
1121
- key: "1bxg5t"
1122
- }], ["path", {
1123
- d: "M12 18v4",
1124
- key: "jadmvz"
1125
- }], ["path", {
1126
- d: "m4.9 19.1 2.9-2.9",
1127
- key: "bwix9q"
1128
- }], ["path", {
1129
- d: "M2 12h4",
1130
- key: "j09sii"
1131
- }], ["path", {
1132
- d: "m4.9 4.9 2.9 2.9",
1133
- key: "giyufr"
1134
- }]];
1135
- const Loader = createLucideIcon("loader", __iconNode$_);
1136
-
1137
- /**
1138
- * @license lucide-react v0.561.0 - ISC
1139
- *
1140
- * This source code is licensed under the ISC license.
1141
- * See the LICENSE file in the root directory of this source tree.
1142
- */
1143
- const __iconNode$Z = [["rect", {
1144
- width: "18",
1145
- height: "11",
1146
- x: "3",
1147
- y: "11",
1148
- rx: "2",
1149
- ry: "2",
1150
- key: "1w4ew1"
1151
- }], ["path", {
1152
- d: "M7 11V7a5 5 0 0 1 9.9-1",
1153
- key: "1mm8w8"
1154
- }]];
1155
- const LockOpen = createLucideIcon("lock-open", __iconNode$Z);
1156
-
1157
- /**
1158
- * @license lucide-react v0.561.0 - ISC
1159
- *
1160
- * This source code is licensed under the ISC license.
1161
- * See the LICENSE file in the root directory of this source tree.
1162
- */
1163
- const __iconNode$Y = [["rect", {
1164
- width: "18",
1165
- height: "11",
1166
- x: "3",
1167
- y: "11",
1168
- rx: "2",
1169
- ry: "2",
1170
- key: "1w4ew1"
1171
- }], ["path", {
1172
- d: "M7 11V7a5 5 0 0 1 10 0v4",
1173
- key: "fwvmzm"
1174
- }]];
1175
- const Lock = createLucideIcon("lock", __iconNode$Y);
1176
-
1177
- /**
1178
- * @license lucide-react v0.561.0 - ISC
1179
- *
1180
- * This source code is licensed under the ISC license.
1181
- * See the LICENSE file in the root directory of this source tree.
1182
- */
1183
- const __iconNode$X = [["path", {
1184
- d: "m16 17 5-5-5-5",
1185
- key: "1bji2h"
1186
- }], ["path", {
1187
- d: "M21 12H9",
1188
- key: "dn1m92"
1189
- }], ["path", {
1190
- d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",
1191
- key: "1uf3rs"
1192
- }]];
1193
- const LogOut = createLucideIcon("log-out", __iconNode$X);
1194
-
1195
- /**
1196
- * @license lucide-react v0.561.0 - ISC
1197
- *
1198
- * This source code is licensed under the ISC license.
1199
- * See the LICENSE file in the root directory of this source tree.
1200
- */
1201
- const __iconNode$W = [["path", {
1202
- d: "m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7",
1203
- key: "132q7q"
1204
- }], ["rect", {
1205
- x: "2",
1206
- y: "4",
1207
- width: "20",
1208
- height: "16",
1209
- rx: "2",
1210
- key: "izxlao"
1211
- }]];
1212
- const Mail = createLucideIcon("mail", __iconNode$W);
1213
-
1214
- /**
1215
- * @license lucide-react v0.561.0 - ISC
1216
- *
1217
- * This source code is licensed under the ISC license.
1218
- * See the LICENSE file in the root directory of this source tree.
1219
- */
1220
- const __iconNode$V = [["path", {
1221
- d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",
1222
- key: "1r0f0z"
1223
- }], ["circle", {
1224
- cx: "12",
1225
- cy: "10",
1226
- r: "3",
1227
- key: "ilqhr7"
1228
- }]];
1229
- const MapPin = createLucideIcon("map-pin", __iconNode$V);
1230
-
1231
- /**
1232
- * @license lucide-react v0.561.0 - ISC
1233
- *
1234
- * This source code is licensed under the ISC license.
1235
- * See the LICENSE file in the root directory of this source tree.
1236
- */
1237
- const __iconNode$U = [["path", {
1238
- d: "M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z",
1239
- key: "169xi5"
1240
- }], ["path", {
1241
- d: "M15 5.764v15",
1242
- key: "1pn4in"
1243
- }], ["path", {
1244
- d: "M9 3.236v15",
1245
- key: "1uimfh"
1246
- }]];
1247
- const Map = createLucideIcon("map", __iconNode$U);
1248
-
1249
- /**
1250
- * @license lucide-react v0.561.0 - ISC
1251
- *
1252
- * This source code is licensed under the ISC license.
1253
- * See the LICENSE file in the root directory of this source tree.
1254
- */
1255
- const __iconNode$T = [["path", {
1256
- d: "M15 3h6v6",
1257
- key: "1q9fwt"
1258
- }], ["path", {
1259
- d: "m21 3-7 7",
1260
- key: "1l2asr"
1261
- }], ["path", {
1262
- d: "m3 21 7-7",
1263
- key: "tjx5ai"
1264
- }], ["path", {
1265
- d: "M9 21H3v-6",
1266
- key: "wtvkvv"
1267
- }]];
1268
- const Maximize2 = createLucideIcon("maximize-2", __iconNode$T);
1269
-
1270
- /**
1271
- * @license lucide-react v0.561.0 - ISC
1272
- *
1273
- * This source code is licensed under the ISC license.
1274
- * See the LICENSE file in the root directory of this source tree.
1275
- */
1276
- const __iconNode$S = [["path", {
1277
- d: "M4 5h16",
1278
- key: "1tepv9"
1279
- }], ["path", {
1280
- d: "M4 12h16",
1281
- key: "1lakjw"
1282
- }], ["path", {
1283
- d: "M4 19h16",
1284
- key: "1djgab"
1285
- }]];
1286
- const Menu = createLucideIcon("menu", __iconNode$S);
1287
-
1288
- /**
1289
- * @license lucide-react v0.561.0 - ISC
1290
- *
1291
- * This source code is licensed under the ISC license.
1292
- * See the LICENSE file in the root directory of this source tree.
1293
- */
1294
- const __iconNode$R = [["path", {
1295
- d: "M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719",
1296
- key: "1sd12s"
1297
- }]];
1298
- const MessageCircle = createLucideIcon("message-circle", __iconNode$R);
1299
-
1300
- /**
1301
- * @license lucide-react v0.561.0 - ISC
1302
- *
1303
- * This source code is licensed under the ISC license.
1304
- * See the LICENSE file in the root directory of this source tree.
1305
- */
1306
- const __iconNode$Q = [["path", {
1307
- d: "M5 12h14",
1308
- key: "1ays0h"
1309
- }]];
1310
- const Minus = createLucideIcon("minus", __iconNode$Q);
1311
-
1312
- /**
1313
- * @license lucide-react v0.561.0 - ISC
1314
- *
1315
- * This source code is licensed under the ISC license.
1316
- * See the LICENSE file in the root directory of this source tree.
1317
- */
1318
- const __iconNode$P = [["rect", {
1319
- width: "20",
1320
- height: "14",
1321
- x: "2",
1322
- y: "3",
1323
- rx: "2",
1324
- key: "48i651"
1325
- }], ["line", {
1326
- x1: "8",
1327
- x2: "16",
1328
- y1: "21",
1329
- y2: "21",
1330
- key: "1svkeh"
1331
- }], ["line", {
1332
- x1: "12",
1333
- x2: "12",
1334
- y1: "17",
1335
- y2: "21",
1336
- key: "vw1qmm"
1337
- }]];
1338
- const Monitor = createLucideIcon("monitor", __iconNode$P);
1339
-
1340
- /**
1341
- * @license lucide-react v0.561.0 - ISC
1342
- *
1343
- * This source code is licensed under the ISC license.
1344
- * See the LICENSE file in the root directory of this source tree.
1345
- */
1346
- const __iconNode$O = [["path", {
1347
- d: "M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",
1348
- key: "kfwtm"
1349
- }]];
1350
- const Moon = createLucideIcon("moon", __iconNode$O);
1351
-
1352
- /**
1353
- * @license lucide-react v0.561.0 - ISC
1354
- *
1355
- * This source code is licensed under the ISC license.
1356
- * See the LICENSE file in the root directory of this source tree.
1357
- */
1358
- const __iconNode$N = [["path", {
1359
- d: "M12 2v20",
1360
- key: "t6zp3m"
1361
- }], ["path", {
1362
- d: "m15 19-3 3-3-3",
1363
- key: "11eu04"
1364
- }], ["path", {
1365
- d: "m19 9 3 3-3 3",
1366
- key: "1mg7y2"
1367
- }], ["path", {
1368
- d: "M2 12h20",
1369
- key: "9i4pu4"
1370
- }], ["path", {
1371
- d: "m5 9-3 3 3 3",
1372
- key: "j64kie"
1373
- }], ["path", {
1374
- d: "m9 5 3-3 3 3",
1375
- key: "l8vdw6"
1376
- }]];
1377
- const Move = createLucideIcon("move", __iconNode$N);
1378
-
1379
- /**
1380
- * @license lucide-react v0.561.0 - ISC
1381
- *
1382
- * This source code is licensed under the ISC license.
1383
- * See the LICENSE file in the root directory of this source tree.
1384
- */
1385
- const __iconNode$M = [["path", {
1386
- d: "M9 18V5l12-2v13",
1387
- key: "1jmyc2"
1388
- }], ["circle", {
1389
- cx: "6",
1390
- cy: "18",
1391
- r: "3",
1392
- key: "fqmcym"
1393
- }], ["circle", {
1394
- cx: "18",
1395
- cy: "16",
1396
- r: "3",
1397
- key: "1hluhg"
1398
- }]];
1399
- const Music = createLucideIcon("music", __iconNode$M);
1400
-
1401
- /**
1402
- * @license lucide-react v0.561.0 - ISC
1403
- *
1404
- * This source code is licensed under the ISC license.
1405
- * See the LICENSE file in the root directory of this source tree.
1406
- */
1407
- const __iconNode$L = [["path", {
1408
- d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z",
1409
- key: "1a0edw"
1410
- }], ["path", {
1411
- d: "M12 22V12",
1412
- key: "d0xqtd"
1413
- }], ["polyline", {
1414
- points: "3.29 7 12 12 20.71 7",
1415
- key: "ousv84"
1416
- }], ["path", {
1417
- d: "m7.5 4.27 9 5.15",
1418
- key: "1c824w"
1419
- }]];
1420
- const Package = createLucideIcon("package", __iconNode$L);
1421
-
1422
- /**
1423
- * @license lucide-react v0.561.0 - ISC
1424
- *
1425
- * This source code is licensed under the ISC license.
1426
- * See the LICENSE file in the root directory of this source tree.
1427
- */
1428
- const __iconNode$K = [["rect", {
1429
- width: "18",
1430
- height: "18",
1431
- x: "3",
1432
- y: "3",
1433
- rx: "2",
1434
- key: "afitv7"
1435
- }], ["path", {
1436
- d: "M9 3v18",
1437
- key: "fh3hqa"
1438
- }]];
1439
- const PanelLeft = createLucideIcon("panel-left", __iconNode$K);
1440
-
1441
- /**
1442
- * @license lucide-react v0.561.0 - ISC
1443
- *
1444
- * This source code is licensed under the ISC license.
1445
- * See the LICENSE file in the root directory of this source tree.
1446
- */
1447
- const __iconNode$J = [["rect", {
1448
- width: "18",
1449
- height: "18",
1450
- x: "3",
1451
- y: "3",
1452
- rx: "2",
1453
- key: "afitv7"
1454
- }], ["path", {
1455
- d: "M3 9h18",
1456
- key: "1pudct"
1457
- }], ["path", {
1458
- d: "M9 21V9",
1459
- key: "1oto5p"
1460
- }]];
1461
- const PanelsTopLeft = createLucideIcon("panels-top-left", __iconNode$J);
1462
-
1463
- /**
1464
- * @license lucide-react v0.561.0 - ISC
1465
- *
1466
- * This source code is licensed under the ISC license.
1467
- * See the LICENSE file in the root directory of this source tree.
1468
- */
1469
- const __iconNode$I = [["rect", {
1470
- x: "14",
1471
- y: "3",
1472
- width: "5",
1473
- height: "18",
1474
- rx: "1",
1475
- key: "kaeet6"
1476
- }], ["rect", {
1477
- x: "5",
1478
- y: "3",
1479
- width: "5",
1480
- height: "18",
1481
- rx: "1",
1482
- key: "1wsw3u"
1483
- }]];
1484
- const Pause = createLucideIcon("pause", __iconNode$I);
1485
-
1486
- /**
1487
- * @license lucide-react v0.561.0 - ISC
1488
- *
1489
- * This source code is licensed under the ISC license.
1490
- * See the LICENSE file in the root directory of this source tree.
1491
- */
1492
- const __iconNode$H = [["path", {
1493
- d: "M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z",
1494
- key: "10ikf1"
1495
- }]];
1496
- const Play = createLucideIcon("play", __iconNode$H);
1497
-
1498
- /**
1499
- * @license lucide-react v0.561.0 - ISC
1500
- *
1501
- * This source code is licensed under the ISC license.
1502
- * See the LICENSE file in the root directory of this source tree.
1503
- */
1504
- const __iconNode$G = [["path", {
1505
- d: "M5 12h14",
1506
- key: "1ays0h"
1507
- }], ["path", {
1508
- d: "M12 5v14",
1509
- key: "s699le"
1510
- }]];
1511
- const Plus = createLucideIcon("plus", __iconNode$G);
1512
-
1513
- /**
1514
- * @license lucide-react v0.561.0 - ISC
1515
- *
1516
- * This source code is licensed under the ISC license.
1517
- * See the LICENSE file in the root directory of this source tree.
1518
- */
1519
- const __iconNode$F = [["path", {
1520
- d: "M12 2v10",
1521
- key: "mnfbl"
1522
- }], ["path", {
1523
- d: "M18.4 6.6a9 9 0 1 1-12.77.04",
1524
- key: "obofu9"
1525
- }]];
1526
- const Power = createLucideIcon("power", __iconNode$F);
1527
-
1528
- /**
1529
- * @license lucide-react v0.561.0 - ISC
1530
- *
1531
- * This source code is licensed under the ISC license.
1532
- * See the LICENSE file in the root directory of this source tree.
1533
- */
1534
- const __iconNode$E = [["path", {
1535
- d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",
1536
- key: "143wyd"
1537
- }], ["path", {
1538
- d: "M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",
1539
- key: "1itne7"
1540
- }], ["rect", {
1541
- x: "6",
1542
- y: "14",
1543
- width: "12",
1544
- height: "8",
1545
- rx: "1",
1546
- key: "1ue0tg"
1547
- }]];
1548
- const Printer = createLucideIcon("printer", __iconNode$E);
1549
-
1550
- /**
1551
- * @license lucide-react v0.561.0 - ISC
1552
- *
1553
- * This source code is licensed under the ISC license.
1554
- * See the LICENSE file in the root directory of this source tree.
1555
- */
1556
- const __iconNode$D = [["path", {
1557
- d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",
1558
- key: "v9h5vc"
1559
- }], ["path", {
1560
- d: "M21 3v5h-5",
1561
- key: "1q7to0"
1562
- }], ["path", {
1563
- d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",
1564
- key: "3uifl3"
1565
- }], ["path", {
1566
- d: "M8 16H3v5",
1567
- key: "1cv678"
1568
- }]];
1569
- const RefreshCw = createLucideIcon("refresh-cw", __iconNode$D);
1570
-
1571
- /**
1572
- * @license lucide-react v0.561.0 - ISC
1573
- *
1574
- * This source code is licensed under the ISC license.
1575
- * See the LICENSE file in the root directory of this source tree.
1576
- */
1577
- const __iconNode$C = [["path", {
1578
- d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",
1579
- key: "1c8476"
1580
- }], ["path", {
1581
- d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",
1582
- key: "1ydtos"
1583
- }], ["path", {
1584
- d: "M7 3v4a1 1 0 0 0 1 1h7",
1585
- key: "t51u73"
1586
- }]];
1587
- const Save = createLucideIcon("save", __iconNode$C);
1588
-
1589
- /**
1590
- * @license lucide-react v0.561.0 - ISC
1591
- *
1592
- * This source code is licensed under the ISC license.
1593
- * See the LICENSE file in the root directory of this source tree.
1594
- */
1595
- const __iconNode$B = [["path", {
1596
- d: "m21 21-4.34-4.34",
1597
- key: "14j7rj"
1598
- }], ["circle", {
1599
- cx: "11",
1600
- cy: "11",
1601
- r: "8",
1602
- key: "4ej97u"
1603
- }]];
1604
- const Search = createLucideIcon("search", __iconNode$B);
1605
-
1606
- /**
1607
- * @license lucide-react v0.561.0 - ISC
1608
- *
1609
- * This source code is licensed under the ISC license.
1610
- * See the LICENSE file in the root directory of this source tree.
1611
- */
1612
- const __iconNode$A = [["path", {
1613
- d: "M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",
1614
- key: "1ffxy3"
1615
- }], ["path", {
1616
- d: "m21.854 2.147-10.94 10.939",
1617
- key: "12cjpa"
1618
- }]];
1619
- const Send = createLucideIcon("send", __iconNode$A);
1620
-
1621
- /**
1622
- * @license lucide-react v0.561.0 - ISC
1623
- *
1624
- * This source code is licensed under the ISC license.
1625
- * See the LICENSE file in the root directory of this source tree.
1626
- */
1627
- const __iconNode$z = [["rect", {
1628
- width: "20",
1629
- height: "8",
1630
- x: "2",
1631
- y: "2",
1632
- rx: "2",
1633
- ry: "2",
1634
- key: "ngkwjq"
1635
- }], ["rect", {
1636
- width: "20",
1637
- height: "8",
1638
- x: "2",
1639
- y: "14",
1640
- rx: "2",
1641
- ry: "2",
1642
- key: "iecqi9"
1643
- }], ["line", {
1644
- x1: "6",
1645
- x2: "6.01",
1646
- y1: "6",
1647
- y2: "6",
1648
- key: "16zg32"
1649
- }], ["line", {
1650
- x1: "6",
1651
- x2: "6.01",
1652
- y1: "18",
1653
- y2: "18",
1654
- key: "nzw8ys"
1655
- }]];
1656
- const Server = createLucideIcon("server", __iconNode$z);
1657
-
1658
- /**
1659
- * @license lucide-react v0.561.0 - ISC
1660
- *
1661
- * This source code is licensed under the ISC license.
1662
- * See the LICENSE file in the root directory of this source tree.
1663
- */
1664
- const __iconNode$y = [["path", {
1665
- d: "M14 17H5",
1666
- key: "gfn3mx"
1667
- }], ["path", {
1668
- d: "M19 7h-9",
1669
- key: "6i9tg"
1670
- }], ["circle", {
1671
- cx: "17",
1672
- cy: "17",
1673
- r: "3",
1674
- key: "18b49y"
1675
- }], ["circle", {
1676
- cx: "7",
1677
- cy: "7",
1678
- r: "3",
1679
- key: "dfmy0x"
1680
- }]];
1681
- const Settings2 = createLucideIcon("settings-2", __iconNode$y);
1682
-
1683
- /**
1684
- * @license lucide-react v0.561.0 - ISC
1685
- *
1686
- * This source code is licensed under the ISC license.
1687
- * See the LICENSE file in the root directory of this source tree.
1688
- */
1689
- const __iconNode$x = [["path", {
1690
- d: "M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",
1691
- key: "1i5ecw"
1692
- }], ["circle", {
1693
- cx: "12",
1694
- cy: "12",
1695
- r: "3",
1696
- key: "1v7zrd"
1697
- }]];
1698
- const Settings = createLucideIcon("settings", __iconNode$x);
1699
-
1700
- /**
1701
- * @license lucide-react v0.561.0 - ISC
1702
- *
1703
- * This source code is licensed under the ISC license.
1704
- * See the LICENSE file in the root directory of this source tree.
1705
- */
1706
- const __iconNode$w = [["path", {
1707
- d: "M12 2v13",
1708
- key: "1km8f5"
1709
- }], ["path", {
1710
- d: "m16 6-4-4-4 4",
1711
- key: "13yo43"
1712
- }], ["path", {
1713
- d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8",
1714
- key: "1b2hhj"
1715
- }]];
1716
- const Share = createLucideIcon("share", __iconNode$w);
1717
-
1718
- /**
1719
- * @license lucide-react v0.561.0 - ISC
1720
- *
1721
- * This source code is licensed under the ISC license.
1722
- * See the LICENSE file in the root directory of this source tree.
1723
- */
1724
- const __iconNode$v = [["path", {
1725
- d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",
1726
- key: "oel41y"
1727
- }]];
1728
- const Shield = createLucideIcon("shield", __iconNode$v);
1729
-
1730
- /**
1731
- * @license lucide-react v0.561.0 - ISC
1732
- *
1733
- * This source code is licensed under the ISC license.
1734
- * See the LICENSE file in the root directory of this source tree.
1735
- */
1736
- const __iconNode$u = [["circle", {
1737
- cx: "8",
1738
- cy: "21",
1739
- r: "1",
1740
- key: "jimo8o"
1741
- }], ["circle", {
1742
- cx: "19",
1743
- cy: "21",
1744
- r: "1",
1745
- key: "13723u"
1746
- }], ["path", {
1747
- d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12",
1748
- key: "9zh506"
1749
- }]];
1750
- const ShoppingCart = createLucideIcon("shopping-cart", __iconNode$u);
1751
-
1752
- /**
1753
- * @license lucide-react v0.561.0 - ISC
1754
- *
1755
- * This source code is licensed under the ISC license.
1756
- * See the LICENSE file in the root directory of this source tree.
1757
- */
1758
- const __iconNode$t = [["path", {
1759
- d: "M10 8h4",
1760
- key: "1sr2af"
1761
- }], ["path", {
1762
- d: "M12 21v-9",
1763
- key: "17s77i"
1764
- }], ["path", {
1765
- d: "M12 8V3",
1766
- key: "13r4qs"
1767
- }], ["path", {
1768
- d: "M17 16h4",
1769
- key: "h1uq16"
1770
- }], ["path", {
1771
- d: "M19 12V3",
1772
- key: "o1uvq1"
1773
- }], ["path", {
1774
- d: "M19 21v-5",
1775
- key: "qua636"
1776
- }], ["path", {
1777
- d: "M3 14h4",
1778
- key: "bcjad9"
1779
- }], ["path", {
1780
- d: "M5 10V3",
1781
- key: "cb8scm"
1782
- }], ["path", {
1783
- d: "M5 21v-7",
1784
- key: "1w1uti"
1785
- }]];
1786
- const SlidersVertical = createLucideIcon("sliders-vertical", __iconNode$t);
1787
-
1788
- /**
1789
- * @license lucide-react v0.561.0 - ISC
1790
- *
1791
- * This source code is licensed under the ISC license.
1792
- * See the LICENSE file in the root directory of this source tree.
1793
- */
1794
- const __iconNode$s = [["rect", {
1795
- width: "14",
1796
- height: "20",
1797
- x: "5",
1798
- y: "2",
1799
- rx: "2",
1800
- ry: "2",
1801
- key: "1yt0o3"
1802
- }], ["path", {
1803
- d: "M12 18h.01",
1804
- key: "mhygvu"
1805
- }]];
1806
- const Smartphone = createLucideIcon("smartphone", __iconNode$s);
1807
-
1808
- /**
1809
- * @license lucide-react v0.561.0 - ISC
1810
- *
1811
- * This source code is licensed under the ISC license.
1812
- * See the LICENSE file in the root directory of this source tree.
1813
- */
1814
- const __iconNode$r = [["path", {
1815
- d: "M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",
1816
- key: "1m0v6g"
1817
- }], ["path", {
1818
- d: "M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",
1819
- key: "ohrbg2"
1820
- }]];
1821
- const SquarePen = createLucideIcon("square-pen", __iconNode$r);
1822
-
1823
- /**
1824
- * @license lucide-react v0.561.0 - ISC
1825
- *
1826
- * This source code is licensed under the ISC license.
1827
- * See the LICENSE file in the root directory of this source tree.
1828
- */
1829
- const __iconNode$q = [["rect", {
1830
- width: "18",
1831
- height: "18",
1832
- x: "3",
1833
- y: "3",
1834
- rx: "2",
1835
- key: "afitv7"
1836
- }]];
1837
- const Square = createLucideIcon("square", __iconNode$q);
1838
-
1839
- /**
1840
- * @license lucide-react v0.561.0 - ISC
1841
- *
1842
- * This source code is licensed under the ISC license.
1843
- * See the LICENSE file in the root directory of this source tree.
1844
- */
1845
- const __iconNode$p = [["path", {
1846
- d: "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",
1847
- key: "r04s7s"
1848
- }]];
1849
- const Star = createLucideIcon("star", __iconNode$p);
1850
-
1851
- /**
1852
- * @license lucide-react v0.561.0 - ISC
1853
- *
1854
- * This source code is licensed under the ISC license.
1855
- * See the LICENSE file in the root directory of this source tree.
1856
- */
1857
- const __iconNode$o = [["circle", {
1858
- cx: "12",
1859
- cy: "12",
1860
- r: "4",
1861
- key: "4exip2"
1862
- }], ["path", {
1863
- d: "M12 2v2",
1864
- key: "tus03m"
1865
- }], ["path", {
1866
- d: "M12 20v2",
1867
- key: "1lh1kg"
1868
- }], ["path", {
1869
- d: "m4.93 4.93 1.41 1.41",
1870
- key: "149t6j"
1871
- }], ["path", {
1872
- d: "m17.66 17.66 1.41 1.41",
1873
- key: "ptbguv"
1874
- }], ["path", {
1875
- d: "M2 12h2",
1876
- key: "1t8f8n"
1877
- }], ["path", {
1878
- d: "M20 12h2",
1879
- key: "1q8mjw"
1880
- }], ["path", {
1881
- d: "m6.34 17.66-1.41 1.41",
1882
- key: "1m8zz5"
1883
- }], ["path", {
1884
- d: "m19.07 4.93-1.41 1.41",
1885
- key: "1shlcs"
1886
- }]];
1887
- const Sun = createLucideIcon("sun", __iconNode$o);
1888
-
1889
- /**
1890
- * @license lucide-react v0.561.0 - ISC
1891
- *
1892
- * This source code is licensed under the ISC license.
1893
- * See the LICENSE file in the root directory of this source tree.
1894
- */
1895
- const __iconNode$n = [["path", {
1896
- d: "M12 3v18",
1897
- key: "108xh3"
1898
- }], ["rect", {
1899
- width: "18",
1900
- height: "18",
1901
- x: "3",
1902
- y: "3",
1903
- rx: "2",
1904
- key: "afitv7"
1905
- }], ["path", {
1906
- d: "M3 9h18",
1907
- key: "1pudct"
1908
- }], ["path", {
1909
- d: "M3 15h18",
1910
- key: "5xshup"
1911
- }]];
1912
- const Table = createLucideIcon("table", __iconNode$n);
1913
-
1914
- /**
1915
- * @license lucide-react v0.561.0 - ISC
1916
- *
1917
- * This source code is licensed under the ISC license.
1918
- * See the LICENSE file in the root directory of this source tree.
1919
- */
1920
- const __iconNode$m = [["path", {
1921
- d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",
1922
- key: "vktsd0"
1923
- }], ["circle", {
1924
- cx: "7.5",
1925
- cy: "7.5",
1926
- r: ".5",
1927
- fill: "currentColor",
1928
- key: "kqv944"
1929
- }]];
1930
- const Tag = createLucideIcon("tag", __iconNode$m);
1931
-
1932
- /**
1933
- * @license lucide-react v0.561.0 - ISC
1934
- *
1935
- * This source code is licensed under the ISC license.
1936
- * See the LICENSE file in the root directory of this source tree.
1937
- */
1938
- const __iconNode$l = [["circle", {
1939
- cx: "12",
1940
- cy: "12",
1941
- r: "10",
1942
- key: "1mglay"
1943
- }], ["circle", {
1944
- cx: "12",
1945
- cy: "12",
1946
- r: "6",
1947
- key: "1vlfrh"
1948
- }], ["circle", {
1949
- cx: "12",
1950
- cy: "12",
1951
- r: "2",
1952
- key: "1c9p78"
1953
- }]];
1954
- const Target = createLucideIcon("target", __iconNode$l);
1955
-
1956
- /**
1957
- * @license lucide-react v0.561.0 - ISC
1958
- *
1959
- * This source code is licensed under the ISC license.
1960
- * See the LICENSE file in the root directory of this source tree.
1961
- */
1962
- const __iconNode$k = [["path", {
1963
- d: "M12 19h8",
1964
- key: "baeox8"
1965
- }], ["path", {
1966
- d: "m4 17 6-6-6-6",
1967
- key: "1yngyt"
1968
- }]];
1969
- const Terminal = createLucideIcon("terminal", __iconNode$k);
1970
-
1971
- /**
1972
- * @license lucide-react v0.561.0 - ISC
1973
- *
1974
- * This source code is licensed under the ISC license.
1975
- * See the LICENSE file in the root directory of this source tree.
1976
- */
1977
- const __iconNode$j = [["path", {
1978
- d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z",
1979
- key: "emmmcr"
1980
- }], ["path", {
1981
- d: "M7 10v12",
1982
- key: "1qc93n"
1983
- }]];
1984
- const ThumbsUp = createLucideIcon("thumbs-up", __iconNode$j);
1985
-
1986
- /**
1987
- * @license lucide-react v0.561.0 - ISC
1988
- *
1989
- * This source code is licensed under the ISC license.
1990
- * See the LICENSE file in the root directory of this source tree.
1991
- */
1992
- const __iconNode$i = [["path", {
1993
- d: "M10 11v6",
1994
- key: "nco0om"
1995
- }], ["path", {
1996
- d: "M14 11v6",
1997
- key: "outv1u"
1998
- }], ["path", {
1999
- d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",
2000
- key: "miytrc"
2001
- }], ["path", {
2002
- d: "M3 6h18",
2003
- key: "d0wm0j"
2004
- }], ["path", {
2005
- d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",
2006
- key: "e791ji"
2007
- }]];
2008
- const Trash2 = createLucideIcon("trash-2", __iconNode$i);
2009
-
2010
- /**
2011
- * @license lucide-react v0.561.0 - ISC
2012
- *
2013
- * This source code is licensed under the ISC license.
2014
- * See the LICENSE file in the root directory of this source tree.
2015
- */
2016
- const __iconNode$h = [["path", {
2017
- d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",
2018
- key: "miytrc"
2019
- }], ["path", {
2020
- d: "M3 6h18",
2021
- key: "d0wm0j"
2022
- }], ["path", {
2023
- d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",
2024
- key: "e791ji"
2025
- }]];
2026
- const Trash = createLucideIcon("trash", __iconNode$h);
2027
-
2028
- /**
2029
- * @license lucide-react v0.561.0 - ISC
2030
- *
2031
- * This source code is licensed under the ISC license.
2032
- * See the LICENSE file in the root directory of this source tree.
2033
- */
2034
- const __iconNode$g = [["path", {
2035
- d: "M16 17h6v-6",
2036
- key: "t6n2it"
2037
- }], ["path", {
2038
- d: "m22 17-8.5-8.5-5 5L2 7",
2039
- key: "x473p"
2040
- }]];
2041
- const TrendingDown = createLucideIcon("trending-down", __iconNode$g);
2042
-
2043
- /**
2044
- * @license lucide-react v0.561.0 - ISC
2045
- *
2046
- * This source code is licensed under the ISC license.
2047
- * See the LICENSE file in the root directory of this source tree.
2048
- */
2049
- const __iconNode$f = [["path", {
2050
- d: "M16 7h6v6",
2051
- key: "box55l"
2052
- }], ["path", {
2053
- d: "m22 7-8.5 8.5-5-5L2 17",
2054
- key: "1t1m79"
2055
- }]];
2056
- const TrendingUp = createLucideIcon("trending-up", __iconNode$f);
2057
-
2058
- /**
2059
- * @license lucide-react v0.561.0 - ISC
2060
- *
2061
- * This source code is licensed under the ISC license.
2062
- * See the LICENSE file in the root directory of this source tree.
2063
- */
2064
- const __iconNode$e = [["path", {
2065
- d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",
2066
- key: "wmoenq"
2067
- }], ["path", {
2068
- d: "M12 9v4",
2069
- key: "juzpu7"
2070
- }], ["path", {
2071
- d: "M12 17h.01",
2072
- key: "p32p05"
2073
- }]];
2074
- const TriangleAlert = createLucideIcon("triangle-alert", __iconNode$e);
2075
-
2076
- /**
2077
- * @license lucide-react v0.561.0 - ISC
2078
- *
2079
- * This source code is licensed under the ISC license.
2080
- * See the LICENSE file in the root directory of this source tree.
2081
- */
2082
- const __iconNode$d = [["path", {
2083
- d: "M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z",
2084
- key: "14u9p9"
561
+ d: "M12 5v14",
562
+ key: "s699le"
2085
563
  }]];
2086
- const Triangle = createLucideIcon("triangle", __iconNode$d);
564
+ const Plus = createLucideIcon("plus", __iconNode$5);
2087
565
 
2088
566
  /**
2089
567
  * @license lucide-react v0.561.0 - ISC
@@ -2091,46 +569,24 @@ const Triangle = createLucideIcon("triangle", __iconNode$d);
2091
569
  * This source code is licensed under the ISC license.
2092
570
  * See the LICENSE file in the root directory of this source tree.
2093
571
  */
2094
- const __iconNode$c = [["path", {
2095
- d: "M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",
2096
- key: "wrbu53"
2097
- }], ["path", {
2098
- d: "M15 18H9",
2099
- key: "1lyqi6"
572
+ const __iconNode$4 = [["path", {
573
+ d: "M14 17H5",
574
+ key: "gfn3mx"
2100
575
  }], ["path", {
2101
- d: "M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14",
2102
- key: "lysw3i"
576
+ d: "M19 7h-9",
577
+ key: "6i9tg"
2103
578
  }], ["circle", {
2104
579
  cx: "17",
2105
- cy: "18",
2106
- r: "2",
2107
- key: "332jqn"
580
+ cy: "17",
581
+ r: "3",
582
+ key: "18b49y"
2108
583
  }], ["circle", {
2109
584
  cx: "7",
2110
- cy: "18",
2111
- r: "2",
2112
- key: "19iecd"
2113
- }]];
2114
- const Truck = createLucideIcon("truck", __iconNode$c);
2115
-
2116
- /**
2117
- * @license lucide-react v0.561.0 - ISC
2118
- *
2119
- * This source code is licensed under the ISC license.
2120
- * See the LICENSE file in the root directory of this source tree.
2121
- */
2122
- const __iconNode$b = [["path", {
2123
- d: "m17 2-5 5-5-5",
2124
- key: "16satq"
2125
- }], ["rect", {
2126
- width: "20",
2127
- height: "15",
2128
- x: "2",
2129
- y: "7",
2130
- rx: "2",
2131
- key: "1e6viu"
585
+ cy: "7",
586
+ r: "3",
587
+ key: "dfmy0x"
2132
588
  }]];
2133
- const Tv = createLucideIcon("tv", __iconNode$b);
589
+ const Settings2 = createLucideIcon("settings-2", __iconNode$4);
2134
590
 
2135
591
  /**
2136
592
  * @license lucide-react v0.561.0 - ISC
@@ -2138,17 +594,23 @@ const Tv = createLucideIcon("tv", __iconNode$b);
2138
594
  * This source code is licensed under the ISC license.
2139
595
  * See the LICENSE file in the root directory of this source tree.
2140
596
  */
2141
- const __iconNode$a = [["path", {
2142
- d: "M12 4v16",
2143
- key: "1654pz"
597
+ const __iconNode$3 = [["path", {
598
+ d: "M10 11v6",
599
+ key: "nco0om"
600
+ }], ["path", {
601
+ d: "M14 11v6",
602
+ key: "outv1u"
603
+ }], ["path", {
604
+ d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",
605
+ key: "miytrc"
2144
606
  }], ["path", {
2145
- d: "M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2",
2146
- key: "e0r10z"
607
+ d: "M3 6h18",
608
+ key: "d0wm0j"
2147
609
  }], ["path", {
2148
- d: "M9 20h6",
2149
- key: "s66wpe"
610
+ d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",
611
+ key: "e791ji"
2150
612
  }]];
2151
- const Type = createLucideIcon("type", __iconNode$a);
613
+ const Trash2 = createLucideIcon("trash-2", __iconNode$3);
2152
614
 
2153
615
  /**
2154
616
  * @license lucide-react v0.561.0 - ISC
@@ -2156,7 +618,7 @@ const Type = createLucideIcon("type", __iconNode$a);
2156
618
  * This source code is licensed under the ISC license.
2157
619
  * See the LICENSE file in the root directory of this source tree.
2158
620
  */
2159
- const __iconNode$9 = [["path", {
621
+ const __iconNode$2 = [["path", {
2160
622
  d: "m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71",
2161
623
  key: "yqzxt4"
2162
624
  }], ["path", {
@@ -2187,7 +649,7 @@ const __iconNode$9 = [["path", {
2187
649
  y2: "16",
2188
650
  key: "ox905f"
2189
651
  }]];
2190
- const Unlink = createLucideIcon("unlink", __iconNode$9);
652
+ const Unlink = createLucideIcon("unlink", __iconNode$2);
2191
653
 
2192
654
  /**
2193
655
  * @license lucide-react v0.561.0 - ISC
@@ -2195,7 +657,7 @@ const Unlink = createLucideIcon("unlink", __iconNode$9);
2195
657
  * This source code is licensed under the ISC license.
2196
658
  * See the LICENSE file in the root directory of this source tree.
2197
659
  */
2198
- const __iconNode$8 = [["path", {
660
+ const __iconNode$1 = [["path", {
2199
661
  d: "M12 3v12",
2200
662
  key: "1x0j5s"
2201
663
  }], ["path", {
@@ -2205,87 +667,7 @@ const __iconNode$8 = [["path", {
2205
667
  d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",
2206
668
  key: "ih7n3h"
2207
669
  }]];
2208
- const Upload = createLucideIcon("upload", __iconNode$8);
2209
-
2210
- /**
2211
- * @license lucide-react v0.561.0 - ISC
2212
- *
2213
- * This source code is licensed under the ISC license.
2214
- * See the LICENSE file in the root directory of this source tree.
2215
- */
2216
- const __iconNode$7 = [["path", {
2217
- d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",
2218
- key: "975kel"
2219
- }], ["circle", {
2220
- cx: "12",
2221
- cy: "7",
2222
- r: "4",
2223
- key: "17ys0d"
2224
- }]];
2225
- const User = createLucideIcon("user", __iconNode$7);
2226
-
2227
- /**
2228
- * @license lucide-react v0.561.0 - ISC
2229
- *
2230
- * This source code is licensed under the ISC license.
2231
- * See the LICENSE file in the root directory of this source tree.
2232
- */
2233
- const __iconNode$6 = [["path", {
2234
- d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",
2235
- key: "1yyitq"
2236
- }], ["path", {
2237
- d: "M16 3.128a4 4 0 0 1 0 7.744",
2238
- key: "16gr8j"
2239
- }], ["path", {
2240
- d: "M22 21v-2a4 4 0 0 0-3-3.87",
2241
- key: "kshegd"
2242
- }], ["circle", {
2243
- cx: "9",
2244
- cy: "7",
2245
- r: "4",
2246
- key: "nufk8"
2247
- }]];
2248
- const Users = createLucideIcon("users", __iconNode$6);
2249
-
2250
- /**
2251
- * @license lucide-react v0.561.0 - ISC
2252
- *
2253
- * This source code is licensed under the ISC license.
2254
- * See the LICENSE file in the root directory of this source tree.
2255
- */
2256
- const __iconNode$5 = [["path", {
2257
- d: "m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5",
2258
- key: "ftymec"
2259
- }], ["rect", {
2260
- x: "2",
2261
- y: "6",
2262
- width: "14",
2263
- height: "12",
2264
- rx: "2",
2265
- key: "158x01"
2266
- }]];
2267
- const Video = createLucideIcon("video", __iconNode$5);
2268
-
2269
- /**
2270
- * @license lucide-react v0.561.0 - ISC
2271
- *
2272
- * This source code is licensed under the ISC license.
2273
- * See the LICENSE file in the root directory of this source tree.
2274
- */
2275
- const __iconNode$4 = [["path", {
2276
- d: "M12 20h.01",
2277
- key: "zekei9"
2278
- }], ["path", {
2279
- d: "M2 8.82a15 15 0 0 1 20 0",
2280
- key: "dnpr2z"
2281
- }], ["path", {
2282
- d: "M5 12.859a10 10 0 0 1 14 0",
2283
- key: "1x1e6c"
2284
- }], ["path", {
2285
- d: "M8.5 16.429a5 5 0 0 1 7 0",
2286
- key: "1bycff"
2287
- }]];
2288
- const Wifi = createLucideIcon("wifi", __iconNode$4);
670
+ const Upload = createLucideIcon("upload", __iconNode$1);
2289
671
 
2290
672
  /**
2291
673
  * @license lucide-react v0.561.0 - ISC
@@ -2293,88 +675,18 @@ const Wifi = createLucideIcon("wifi", __iconNode$4);
2293
675
  * This source code is licensed under the ISC license.
2294
676
  * See the LICENSE file in the root directory of this source tree.
2295
677
  */
2296
- const __iconNode$3 = [["path", {
678
+ const __iconNode = [["path", {
2297
679
  d: "M18 6 6 18",
2298
680
  key: "1bl5f8"
2299
681
  }], ["path", {
2300
682
  d: "m6 6 12 12",
2301
683
  key: "d8bk6v"
2302
684
  }]];
2303
- const X = createLucideIcon("x", __iconNode$3);
2304
-
2305
- /**
2306
- * @license lucide-react v0.561.0 - ISC
2307
- *
2308
- * This source code is licensed under the ISC license.
2309
- * See the LICENSE file in the root directory of this source tree.
2310
- */
2311
- const __iconNode$2 = [["path", {
2312
- d: "M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",
2313
- key: "1xq2db"
2314
- }]];
2315
- const Zap = createLucideIcon("zap", __iconNode$2);
2316
-
2317
- /**
2318
- * @license lucide-react v0.561.0 - ISC
2319
- *
2320
- * This source code is licensed under the ISC license.
2321
- * See the LICENSE file in the root directory of this source tree.
2322
- */
2323
- const __iconNode$1 = [["circle", {
2324
- cx: "11",
2325
- cy: "11",
2326
- r: "8",
2327
- key: "4ej97u"
2328
- }], ["line", {
2329
- x1: "21",
2330
- x2: "16.65",
2331
- y1: "21",
2332
- y2: "16.65",
2333
- key: "13gj7c"
2334
- }], ["line", {
2335
- x1: "11",
2336
- x2: "11",
2337
- y1: "8",
2338
- y2: "14",
2339
- key: "1vmskp"
2340
- }], ["line", {
2341
- x1: "8",
2342
- x2: "14",
2343
- y1: "11",
2344
- y2: "11",
2345
- key: "durymu"
2346
- }]];
2347
- const ZoomIn = createLucideIcon("zoom-in", __iconNode$1);
2348
-
2349
- /**
2350
- * @license lucide-react v0.561.0 - ISC
2351
- *
2352
- * This source code is licensed under the ISC license.
2353
- * See the LICENSE file in the root directory of this source tree.
2354
- */
2355
- const __iconNode = [["circle", {
2356
- cx: "11",
2357
- cy: "11",
2358
- r: "8",
2359
- key: "4ej97u"
2360
- }], ["line", {
2361
- x1: "21",
2362
- x2: "16.65",
2363
- y1: "21",
2364
- y2: "16.65",
2365
- key: "13gj7c"
2366
- }], ["line", {
2367
- x1: "8",
2368
- x2: "14",
2369
- y1: "11",
2370
- y2: "11",
2371
- key: "durymu"
2372
- }]];
2373
- const ZoomOut = createLucideIcon("zoom-out", __iconNode);
685
+ const X = createLucideIcon("x", __iconNode);
2374
686
 
2375
- var styles$k = {"container":"es-container-K2hFq","visualWrapper":"es-visualWrapper-4dHVX","previewBox":"es-previewBox-LDujZ","previewElement":"es-previewElement-Bu8GM","grid":"es-grid-BmRRU","gridButton":"es-gridButton-6Vtr7","gridButtonSelected":"es-gridButtonSelected-fOpOm","section":"es-section-SaHDo","sectionLabel":"es-sectionLabel-hDWO0","buttonGroup":"es-buttonGroup-Nj258","alignButton":"es-alignButton-zAvz2","alignButtonSelected":"es-alignButtonSelected-kGGHJ","alignIcon":"es-alignIcon-mFjSX","alignIconRotated":"es-alignIconRotated-z4AwW"};
687
+ var styles$j = {"container":"es-container-K2hFq","visualWrapper":"es-visualWrapper-4dHVX","previewBox":"es-previewBox-LDujZ","previewElement":"es-previewElement-Bu8GM","grid":"es-grid-BmRRU","gridButton":"es-gridButton-6Vtr7","gridButtonSelected":"es-gridButtonSelected-fOpOm","section":"es-section-SaHDo","sectionLabel":"es-sectionLabel-hDWO0","buttonGroup":"es-buttonGroup-Nj258","alignButton":"es-alignButton-zAvz2","alignButtonSelected":"es-alignButtonSelected-kGGHJ","alignIcon":"es-alignIcon-mFjSX","alignIconRotated":"es-alignIconRotated-z4AwW"};
2376
688
 
2377
- const defaultValue$4 = {
689
+ const defaultValue$3 = {
2378
690
  horizontal: 'left',
2379
691
  vertical: 'top'
2380
692
  };
@@ -2492,7 +804,7 @@ const AlignSetter = props => {
2492
804
  showHorizontal = true,
2493
805
  showVertical = true
2494
806
  } = props;
2495
- const currentValue = value ?? initialValue ?? defaultValue$4;
807
+ const currentValue = value ?? initialValue ?? defaultValue$3;
2496
808
  const updateAlign = React$1.useCallback(updates => {
2497
809
  onChange({
2498
810
  ...currentValue,
@@ -2507,34 +819,34 @@ const AlignSetter = props => {
2507
819
  }, [onChange]);
2508
820
  const isGridSelected = (h, v) => currentValue.horizontal === h && currentValue.vertical === v;
2509
821
  return /*#__PURE__*/React.createElement("div", {
2510
- className: styles$k.container
822
+ className: styles$j.container
2511
823
  }, showHorizontal === true && showVertical === true ? /*#__PURE__*/React.createElement("div", {
2512
- className: styles$k.visualWrapper
824
+ className: styles$j.visualWrapper
2513
825
  }, /*#__PURE__*/React.createElement("div", {
2514
- className: styles$k.previewBox
826
+ className: styles$j.previewBox
2515
827
  }, /*#__PURE__*/React.createElement("div", {
2516
- className: styles$k.previewElement,
828
+ className: styles$j.previewElement,
2517
829
  style: getElementPosition(currentValue.horizontal, currentValue.vertical)
2518
830
  })), /*#__PURE__*/React.createElement("div", {
2519
- className: styles$k.grid
831
+ className: styles$j.grid
2520
832
  }, gridPositions.map(pos => /*#__PURE__*/React.createElement("button", {
2521
833
  "aria-label": `Align ${pos.h} ${pos.v}`,
2522
- className: cn(styles$k.gridButton, isGridSelected(pos.h, pos.v) ? styles$k.gridButtonSelected : ''),
834
+ className: cn(styles$j.gridButton, isGridSelected(pos.h, pos.v) ? styles$j.gridButtonSelected : ''),
2523
835
  key: `${pos.h}-${pos.v}`,
2524
836
  onClick: () => handleGridClick(pos.h, pos.v),
2525
837
  type: "button"
2526
838
  })))) : null, showHorizontal === true ? /*#__PURE__*/React.createElement("div", {
2527
- className: styles$k.section
839
+ className: styles$j.section
2528
840
  }, /*#__PURE__*/React.createElement("span", {
2529
- className: styles$k.sectionLabel
841
+ className: styles$j.sectionLabel
2530
842
  }, "\u6C34\u5E73\u5BF9\u9F50"), /*#__PURE__*/React.createElement("div", {
2531
- className: styles$k.buttonGroup
843
+ className: styles$j.buttonGroup
2532
844
  }, horizontalOptions.map(option => {
2533
845
  const Icon = option.icon;
2534
846
  const isRotated = option.value === 'stretch';
2535
847
  return /*#__PURE__*/React.createElement("button", {
2536
848
  "aria-label": option.label,
2537
- className: cn(styles$k.alignButton, currentValue.horizontal === option.value ? styles$k.alignButtonSelected : ''),
849
+ className: cn(styles$j.alignButton, currentValue.horizontal === option.value ? styles$j.alignButtonSelected : ''),
2538
850
  key: option.value,
2539
851
  onClick: () => updateAlign({
2540
852
  horizontal: option.value
@@ -2542,19 +854,19 @@ const AlignSetter = props => {
2542
854
  title: option.label,
2543
855
  type: "button"
2544
856
  }, /*#__PURE__*/React.createElement(Icon, {
2545
- className: cn(styles$k.alignIcon, isRotated ? styles$k.alignIconRotated : '')
857
+ className: cn(styles$j.alignIcon, isRotated ? styles$j.alignIconRotated : '')
2546
858
  }));
2547
859
  }))) : null, showVertical === true ? /*#__PURE__*/React.createElement("div", {
2548
- className: styles$k.section
860
+ className: styles$j.section
2549
861
  }, /*#__PURE__*/React.createElement("span", {
2550
- className: styles$k.sectionLabel
862
+ className: styles$j.sectionLabel
2551
863
  }, "\u5782\u76F4\u5BF9\u9F50"), /*#__PURE__*/React.createElement("div", {
2552
- className: styles$k.buttonGroup
864
+ className: styles$j.buttonGroup
2553
865
  }, verticalOptions.map(option => {
2554
866
  const Icon = option.icon;
2555
867
  return /*#__PURE__*/React.createElement("button", {
2556
868
  "aria-label": option.label,
2557
- className: cn(styles$k.alignButton, currentValue.vertical === option.value ? styles$k.alignButtonSelected : ''),
869
+ className: cn(styles$j.alignButton, currentValue.vertical === option.value ? styles$j.alignButtonSelected : ''),
2558
870
  key: option.value,
2559
871
  onClick: () => updateAlign({
2560
872
  vertical: option.value
@@ -2562,12 +874,12 @@ const AlignSetter = props => {
2562
874
  title: option.label,
2563
875
  type: "button"
2564
876
  }, /*#__PURE__*/React.createElement(Icon, {
2565
- className: styles$k.alignIcon
877
+ className: styles$j.alignIcon
2566
878
  }));
2567
879
  }))) : null);
2568
880
  };
2569
881
 
2570
- var styles$j = {"container":"es-container-KSlB-","item":"es-item-xDCpZ","dragHandle":"es-dragHandle-lOaFv","input":"es-input-ItzPT","removeButton":"es-removeButton-ymAlo","removeIcon":"es-removeIcon-ld51f","addButton":"es-addButton-U1VQX","addIcon":"es-addIcon-6qJub"};
882
+ var styles$i = {"container":"es-container-KSlB-","item":"es-item-xDCpZ","dragHandle":"es-dragHandle-lOaFv","input":"es-input-ItzPT","removeButton":"es-removeButton-ymAlo","removeIcon":"es-removeIcon-ld51f","addButton":"es-addButton-U1VQX","addIcon":"es-addIcon-6qJub"};
2571
883
 
2572
884
  const ArraySetter = props => {
2573
885
  const {
@@ -2603,14 +915,14 @@ const ArraySetter = props => {
2603
915
  const canAdd = !maxItems || items.length < maxItems;
2604
916
  const canRemove = items.length > minItems;
2605
917
  return /*#__PURE__*/React.createElement("div", {
2606
- className: styles$j.container
918
+ className: styles$i.container
2607
919
  }, items.map((item, index) => /*#__PURE__*/React.createElement("div", {
2608
- className: styles$j.item,
920
+ className: styles$i.item,
2609
921
  key: `item-${String(item)}-${index}`
2610
922
  }, /*#__PURE__*/React.createElement(GripVertical, {
2611
- className: styles$j.dragHandle
923
+ className: styles$i.dragHandle
2612
924
  }), /*#__PURE__*/React.createElement("input", {
2613
- className: styles$j.input,
925
+ className: styles$i.input,
2614
926
  onChange: e => {
2615
927
  const val = itemSetter === 'number' ? +e.target.value : e.target.value;
2616
928
  handleChange(index, val);
@@ -2619,19 +931,19 @@ const ArraySetter = props => {
2619
931
  type: itemSetter === 'number' ? 'number' : 'text',
2620
932
  value: item
2621
933
  }), /*#__PURE__*/React.createElement("button", {
2622
- className: styles$j.removeButton,
934
+ className: styles$i.removeButton,
2623
935
  disabled: !canRemove,
2624
936
  onClick: () => handleRemove(index),
2625
937
  type: "button"
2626
938
  }, /*#__PURE__*/React.createElement(Trash2, {
2627
- className: styles$j.removeIcon
939
+ className: styles$i.removeIcon
2628
940
  })))), /*#__PURE__*/React.createElement("button", {
2629
- className: styles$j.addButton,
941
+ className: styles$i.addButton,
2630
942
  disabled: !canAdd,
2631
943
  onClick: handleAdd,
2632
944
  type: "button"
2633
945
  }, /*#__PURE__*/React.createElement(Plus, {
2634
- className: styles$j.addIcon
946
+ className: styles$i.addIcon
2635
947
  }), addButtonText));
2636
948
  };
2637
949
 
@@ -3831,7 +2143,7 @@ var Sketch = /*#__PURE__*/React$1.forwardRef((props, ref) => {
3831
2143
  });
3832
2144
  Sketch.displayName = 'Sketch';
3833
2145
 
3834
- var styles$i = {"trigger":"es-trigger-w-aUi","colorPreview":"es-colorPreview-SUgiJ","colorValue":"es-colorValue-cYdRP","popover":"es-popover-SfIUB","popoverHidden":"es-popoverHidden-GCAC8"};
2146
+ var styles$h = {"trigger":"es-trigger-w-aUi","colorPreview":"es-colorPreview-SUgiJ","colorValue":"es-colorValue-cYdRP","popover":"es-popover-SfIUB"};
3835
2147
 
3836
2148
  const ColorSetter = props => {
3837
2149
  const {
@@ -3841,40 +2153,25 @@ const ColorSetter = props => {
3841
2153
  disableAlpha = false
3842
2154
  } = props;
3843
2155
  const [open, setOpen] = React$1.useState(false);
3844
- const containerRef = React$1.useRef(null);
3845
- React$1.useEffect(() => {
3846
- const handleClickOutside = event => {
3847
- if (containerRef.current && !containerRef.current.contains(event.target)) {
3848
- setOpen(false);
2156
+ return /*#__PURE__*/React.createElement(Popover, {
2157
+ onClose: () => setOpen(false),
2158
+ open: open,
2159
+ trigger: /*#__PURE__*/React.createElement("button", {
2160
+ "aria-label": "Select color",
2161
+ className: styles$h.trigger,
2162
+ onClick: () => setOpen(true),
2163
+ type: "button"
2164
+ }, /*#__PURE__*/React.createElement("div", {
2165
+ "aria-label": "Current color",
2166
+ className: styles$h.colorPreview,
2167
+ style: {
2168
+ backgroundColor: value ?? initialValue
3849
2169
  }
3850
- };
3851
- if (open) {
3852
- document.addEventListener('mousedown', handleClickOutside);
3853
- }
3854
- return () => {
3855
- document.removeEventListener('mousedown', handleClickOutside);
3856
- };
3857
- }, [open]);
3858
- return /*#__PURE__*/React.createElement("div", {
3859
- ref: containerRef,
3860
- style: {
3861
- position: 'relative'
3862
- }
3863
- }, /*#__PURE__*/React.createElement("button", {
3864
- "aria-label": "Select color",
3865
- className: styles$i.trigger,
3866
- onClick: () => setOpen(!open),
3867
- type: "button"
2170
+ }), /*#__PURE__*/React.createElement("span", {
2171
+ className: styles$h.colorValue
2172
+ }, value ?? initialValue))
3868
2173
  }, /*#__PURE__*/React.createElement("div", {
3869
- "aria-label": "Current color",
3870
- className: styles$i.colorPreview,
3871
- style: {
3872
- backgroundColor: value ?? initialValue
3873
- }
3874
- }), /*#__PURE__*/React.createElement("span", {
3875
- className: styles$i.colorValue
3876
- }, value ?? initialValue)), /*#__PURE__*/React.createElement("div", {
3877
- className: cn(styles$i.popover, !open && styles$i.popoverHidden)
2174
+ className: styles$h.popover
3878
2175
  }, /*#__PURE__*/React.createElement(Sketch, {
3879
2176
  color: value,
3880
2177
  disableAlpha: disableAlpha,
@@ -3883,9 +2180,9 @@ const ColorSetter = props => {
3883
2180
  })));
3884
2181
  };
3885
2182
 
3886
- var styles$h = {"container":"es-container-df9wM","trigger":"es-trigger-fTNvQ","triggerIcon":"es-triggerIcon-1mdQ0","triggerIconPrimary":"es-triggerIconPrimary-opifh","triggerIconMuted":"es-triggerIconMuted-CWgDl","triggerText":"es-triggerText-WeQRu","popover":"es-popover-z8oiW","popoverHidden":"es-popoverHidden-kLhMd","tabsList":"es-tabsList-liSeY","tabTrigger":"es-tabTrigger-6j7K-","tabTriggerActive":"es-tabTriggerActive-g6hcl","tabTriggerIcon":"es-tabTriggerIcon-dRSAp","tabContent":"es-tabContent--H166","tabContentActive":"es-tabContentActive-Fjdu5","section":"es-section-eDYxd","sectionLabel":"es-sectionLabel--LHE8","input":"es-input--OymK","inputMono":"es-inputMono-pCJz3","textarea":"es-textarea-iurkc","booleanButtons":"es-booleanButtons-0bM8P","booleanButton":"es-booleanButton-3fXcB","booleanButtonActive":"es-booleanButtonActive-zGWrZ","datasourceList":"es-datasourceList-VIRXb","datasourceButton":"es-datasourceButton-giz6D","datasourceButtonActive":"es-datasourceButtonActive-m5WPP","datasourceIcon":"es-datasourceIcon-q9Omt","emptyState":"es-emptyState-rI2si","hint":"es-hint-zfWLZ","preview":"es-preview-tUInw"};
2183
+ var styles$g = {"trigger":"es-trigger-fTNvQ","triggerIcon":"es-triggerIcon-1mdQ0","triggerIconPrimary":"es-triggerIconPrimary-opifh","triggerIconMuted":"es-triggerIconMuted-CWgDl","triggerText":"es-triggerText-WeQRu","popoverContent":"es-popoverContent-6qE--","tabsList":"es-tabsList-liSeY","tabTrigger":"es-tabTrigger-6j7K-","tabTriggerActive":"es-tabTriggerActive-g6hcl","tabTriggerIcon":"es-tabTriggerIcon-dRSAp","tabContent":"es-tabContent--H166","tabContentActive":"es-tabContentActive-Fjdu5","section":"es-section-eDYxd","sectionLabel":"es-sectionLabel--LHE8","input":"es-input--OymK","inputMono":"es-inputMono-pCJz3","textarea":"es-textarea-iurkc","booleanButtons":"es-booleanButtons-0bM8P","booleanButton":"es-booleanButton-3fXcB","booleanButtonActive":"es-booleanButtonActive-zGWrZ","datasourceList":"es-datasourceList-VIRXb","datasourceButton":"es-datasourceButton-giz6D","datasourceButtonActive":"es-datasourceButtonActive-m5WPP","datasourceIcon":"es-datasourceIcon-q9Omt","emptyState":"es-emptyState-rI2si","hint":"es-hint-zfWLZ","preview":"es-preview-tUInw"};
3887
2184
 
3888
- const defaultValue$3 = {
2185
+ const defaultValue$2 = {
3889
2186
  type: 'static',
3890
2187
  staticValue: ''
3891
2188
  };
@@ -3898,23 +2195,9 @@ const DataBindingSetter = props => {
3898
2195
  showPreview = true,
3899
2196
  dataSources = []
3900
2197
  } = props;
3901
- const currentValue = value ?? initialValue ?? defaultValue$3;
2198
+ const currentValue = value ?? initialValue ?? defaultValue$2;
3902
2199
  const [open, setOpen] = React$1.useState(false);
3903
2200
  const [activeTab, setActiveTab] = React$1.useState(currentValue.type);
3904
- const containerRef = React$1.useRef(null);
3905
- React$1.useEffect(() => {
3906
- const handleClickOutside = event => {
3907
- if (containerRef.current && !containerRef.current.contains(event.target)) {
3908
- setOpen(false);
3909
- }
3910
- };
3911
- if (open) {
3912
- document.addEventListener('mousedown', handleClickOutside);
3913
- }
3914
- return () => {
3915
- document.removeEventListener('mousedown', handleClickOutside);
3916
- };
3917
- }, [open]);
3918
2201
  const updateBinding = React$1.useCallback(updates => {
3919
2202
  onChange({
3920
2203
  ...currentValue,
@@ -3949,7 +2232,7 @@ const DataBindingSetter = props => {
3949
2232
  switch (dataType) {
3950
2233
  case 'number':
3951
2234
  return /*#__PURE__*/React.createElement("input", {
3952
- className: styles$h.input,
2235
+ className: styles$g.input,
3953
2236
  onChange: e => handleStaticValueChange(Number(e.target.value)),
3954
2237
  placeholder: "\u8F93\u5165\u6570\u503C",
3955
2238
  type: "number",
@@ -3957,20 +2240,20 @@ const DataBindingSetter = props => {
3957
2240
  });
3958
2241
  case 'boolean':
3959
2242
  return /*#__PURE__*/React.createElement("div", {
3960
- className: styles$h.booleanButtons
2243
+ className: styles$g.booleanButtons
3961
2244
  }, /*#__PURE__*/React.createElement("button", {
3962
- className: cn(styles$h.booleanButton, currentValue.staticValue === true ? styles$h.booleanButtonActive : ''),
2245
+ className: cn(styles$g.booleanButton, currentValue.staticValue === true ? styles$g.booleanButtonActive : ''),
3963
2246
  onClick: () => handleStaticValueChange(true),
3964
2247
  type: "button"
3965
2248
  }, "True"), /*#__PURE__*/React.createElement("button", {
3966
- className: cn(styles$h.booleanButton, currentValue.staticValue === false ? styles$h.booleanButtonActive : ''),
2249
+ className: cn(styles$g.booleanButton, currentValue.staticValue === false ? styles$g.booleanButtonActive : ''),
3967
2250
  onClick: () => handleStaticValueChange(false),
3968
2251
  type: "button"
3969
2252
  }, "False"));
3970
2253
  case 'array':
3971
2254
  case 'object':
3972
2255
  return /*#__PURE__*/React.createElement("textarea", {
3973
- className: styles$h.textarea,
2256
+ className: styles$g.textarea,
3974
2257
  onChange: e => {
3975
2258
  try {
3976
2259
  const parsed = JSON.parse(e.target.value);
@@ -3984,7 +2267,7 @@ const DataBindingSetter = props => {
3984
2267
  });
3985
2268
  default:
3986
2269
  return /*#__PURE__*/React.createElement("input", {
3987
- className: styles$h.input,
2270
+ className: styles$g.input,
3988
2271
  onChange: e => handleStaticValueChange(e.target.value),
3989
2272
  placeholder: "\u8F93\u5165\u503C",
3990
2273
  type: "text",
@@ -3999,94 +2282,96 @@ const DataBindingSetter = props => {
3999
2282
  const ds = dataSources.find(d => d.id === currentValue.datasourceId);
4000
2283
  return {
4001
2284
  icon: /*#__PURE__*/React.createElement(Link2, {
4002
- className: cn(styles$h.triggerIcon, styles$h.triggerIconPrimary)
2285
+ className: cn(styles$g.triggerIcon, styles$g.triggerIconPrimary)
4003
2286
  }),
4004
2287
  text: `${ds?.name ?? currentValue.datasourceId}${currentValue.datasourcePath ? `.${currentValue.datasourcePath}` : ''}`
4005
2288
  };
4006
2289
  }
4007
2290
  return {
4008
2291
  icon: /*#__PURE__*/React.createElement(FileBraces, {
4009
- className: cn(styles$h.triggerIcon, styles$h.triggerIconMuted)
2292
+ className: cn(styles$g.triggerIcon, styles$g.triggerIconMuted)
4010
2293
  }),
4011
2294
  text: '静态数据'
4012
2295
  };
4013
2296
  }, [currentValue, dataSources]);
4014
- return /*#__PURE__*/React.createElement("div", {
4015
- className: styles$h.container,
4016
- ref: containerRef
4017
- }, /*#__PURE__*/React.createElement("button", {
4018
- "aria-label": "Data binding",
4019
- className: styles$h.trigger,
4020
- onClick: () => setOpen(!open),
4021
- type: "button"
4022
- }, bindingStatus.icon, /*#__PURE__*/React.createElement("span", {
4023
- className: styles$h.triggerText
4024
- }, bindingStatus.text)), /*#__PURE__*/React.createElement("div", {
4025
- className: cn(styles$h.popover, open === false ? styles$h.popoverHidden : '')
2297
+ return /*#__PURE__*/React.createElement(Popover, {
2298
+ onClose: () => setOpen(false),
2299
+ open: open,
2300
+ trigger: /*#__PURE__*/React.createElement("button", {
2301
+ "aria-label": "Data binding",
2302
+ className: styles$g.trigger,
2303
+ onClick: () => setOpen(true),
2304
+ type: "button"
2305
+ }, bindingStatus.icon, /*#__PURE__*/React.createElement("span", {
2306
+ className: styles$g.triggerText
2307
+ }, bindingStatus.text)),
2308
+ width: 300
4026
2309
  }, /*#__PURE__*/React.createElement("div", {
4027
- className: styles$h.tabsList,
2310
+ className: styles$g.popoverContent
2311
+ }, /*#__PURE__*/React.createElement("div", {
2312
+ className: styles$g.tabsList,
4028
2313
  role: "tablist"
4029
2314
  }, /*#__PURE__*/React.createElement("button", {
4030
2315
  "aria-selected": activeTab === 'static',
4031
- className: cn(styles$h.tabTrigger, activeTab === 'static' ? styles$h.tabTriggerActive : ''),
2316
+ className: cn(styles$g.tabTrigger, activeTab === 'static' ? styles$g.tabTriggerActive : ''),
4032
2317
  onClick: () => handleTypeChange('static'),
4033
2318
  role: "tab",
4034
2319
  type: "button"
4035
2320
  }, /*#__PURE__*/React.createElement(FileBraces, {
4036
- className: styles$h.tabTriggerIcon
2321
+ className: styles$g.tabTriggerIcon
4037
2322
  }), "\u9759\u6001\u6570\u636E"), /*#__PURE__*/React.createElement("button", {
4038
2323
  "aria-selected": activeTab === 'datasource',
4039
- className: cn(styles$h.tabTrigger, activeTab === 'datasource' ? styles$h.tabTriggerActive : ''),
2324
+ className: cn(styles$g.tabTrigger, activeTab === 'datasource' ? styles$g.tabTriggerActive : ''),
4040
2325
  onClick: () => handleTypeChange('datasource'),
4041
2326
  role: "tab",
4042
2327
  type: "button"
4043
2328
  }, /*#__PURE__*/React.createElement(Database, {
4044
- className: styles$h.tabTriggerIcon
2329
+ className: styles$g.tabTriggerIcon
4045
2330
  }), "\u6570\u636E\u6E90")), /*#__PURE__*/React.createElement("div", {
4046
- className: cn(styles$h.tabContent, activeTab === 'static' ? styles$h.tabContentActive : ''),
2331
+ className: cn(styles$g.tabContent, activeTab === 'static' ? styles$g.tabContentActive : ''),
4047
2332
  role: "tabpanel"
4048
2333
  }, /*#__PURE__*/React.createElement("div", {
4049
- className: styles$h.section
2334
+ className: styles$g.section
4050
2335
  }, /*#__PURE__*/React.createElement("span", {
4051
- className: styles$h.sectionLabel
2336
+ className: styles$g.sectionLabel
4052
2337
  }, "\u503C (", dataType, ")"), renderStaticInput)), /*#__PURE__*/React.createElement("div", {
4053
- className: cn(styles$h.tabContent, activeTab === 'datasource' ? styles$h.tabContentActive : ''),
2338
+ className: cn(styles$g.tabContent, activeTab === 'datasource' ? styles$g.tabContentActive : ''),
4054
2339
  role: "tabpanel"
4055
2340
  }, /*#__PURE__*/React.createElement("div", {
4056
- className: styles$h.section
2341
+ className: styles$g.section
4057
2342
  }, /*#__PURE__*/React.createElement("span", {
4058
- className: styles$h.sectionLabel
2343
+ className: styles$g.sectionLabel
4059
2344
  }, "\u6570\u636E\u6E90"), dataSources.length > 0 ? /*#__PURE__*/React.createElement("div", {
4060
- className: styles$h.datasourceList
2345
+ className: styles$g.datasourceList
4061
2346
  }, dataSources.map(ds => /*#__PURE__*/React.createElement("button", {
4062
- className: cn(styles$h.datasourceButton, currentValue.datasourceId === ds.id ? styles$h.datasourceButtonActive : ''),
2347
+ className: cn(styles$g.datasourceButton, currentValue.datasourceId === ds.id ? styles$g.datasourceButtonActive : ''),
4063
2348
  key: ds.id,
4064
2349
  onClick: () => handleDatasourceChange(ds.id),
4065
2350
  type: "button"
4066
2351
  }, /*#__PURE__*/React.createElement(Database, {
4067
- className: styles$h.datasourceIcon
2352
+ className: styles$g.datasourceIcon
4068
2353
  }), ds.name))) : /*#__PURE__*/React.createElement("div", {
4069
- className: styles$h.emptyState
2354
+ className: styles$g.emptyState
4070
2355
  }, "\u6682\u65E0\u53EF\u7528\u6570\u636E\u6E90"), currentValue.datasourceId ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
4071
- className: styles$h.sectionLabel
2356
+ className: styles$g.sectionLabel
4072
2357
  }, "\u6570\u636E\u8DEF\u5F84"), /*#__PURE__*/React.createElement("input", {
4073
- className: cn(styles$h.input, styles$h.inputMono),
2358
+ className: cn(styles$g.input, styles$g.inputMono),
4074
2359
  onChange: e => handlePathChange(e.target.value),
4075
2360
  placeholder: "data.list[0].name",
4076
2361
  type: "text",
4077
2362
  value: currentValue.datasourcePath ?? ''
4078
2363
  }), /*#__PURE__*/React.createElement("span", {
4079
- className: styles$h.hint
2364
+ className: styles$g.hint
4080
2365
  }, "\u4F7F\u7528\u70B9\u53F7\u8BBF\u95EE\u5D4C\u5957\u5C5E\u6027\uFF0C\u5982: data.items[0].value")) : null, showPreview === true && currentValue.datasourceId ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
4081
- className: styles$h.sectionLabel
2366
+ className: styles$g.sectionLabel
4082
2367
  }, "\u6570\u636E\u9884\u89C8"), /*#__PURE__*/React.createElement("div", {
4083
- className: styles$h.preview
2368
+ className: styles$g.preview
4084
2369
  }, "\u7ED1\u5B9A\u540E\u53EF\u5728\u9884\u89C8\u6A21\u5F0F\u67E5\u770B\u6570\u636E")) : null))));
4085
2370
  };
4086
2371
 
4087
- var styles$g = {"container":"es-container-4VZqD","trigger":"es-trigger-rmYLl","triggerIcon":"es-triggerIcon-ktlTS","triggerText":"es-triggerText-B63By","popover":"es-popover-d9HQQ","popoverHidden":"es-popoverHidden-fDKLq","content":"es-content-3MmL0","header":"es-header-VoKF3","headerTitle":"es-headerTitle-vDZR8","headerCount":"es-headerCount-stTlN","mappingList":"es-mappingList-SLqhN","mappingItem":"es-mappingItem-xtRLl","mappingHeader":"es-mappingHeader-LwKiY","mappingTitle":"es-mappingTitle-IMhzw","mappingRequired":"es-mappingRequired-tP6L-","mappingType":"es-mappingType-nyqrh","mappingRow":"es-mappingRow-lFfhT","select":"es-select-R4pIl","input":"es-input--LohJ","arrowIcon":"es-arrowIcon-QqWMM","targetField":"es-targetField-gSvGk","transformRow":"es-transformRow-O6MAG","transformIcon":"es-transformIcon-beXzy","transformInput":"es-transformInput-SyN2q","clearButton":"es-clearButton-Pm-uP","helpText":"es-helpText-IHqjo"};
2372
+ var styles$f = {"trigger":"es-trigger-rmYLl","triggerIcon":"es-triggerIcon-ktlTS","triggerText":"es-triggerText-B63By","popoverContent":"es-popoverContent-IIcFY","header":"es-header-VoKF3","headerTitle":"es-headerTitle-vDZR8","headerCount":"es-headerCount-stTlN","mappingList":"es-mappingList-SLqhN","mappingItem":"es-mappingItem-xtRLl","mappingHeader":"es-mappingHeader-LwKiY","mappingTitle":"es-mappingTitle-IMhzw","mappingRequired":"es-mappingRequired-tP6L-","mappingType":"es-mappingType-nyqrh","mappingRow":"es-mappingRow-lFfhT","select":"es-select-R4pIl","input":"es-input--LohJ","arrowIcon":"es-arrowIcon-QqWMM","targetField":"es-targetField-gSvGk","transformRow":"es-transformRow-O6MAG","transformIcon":"es-transformIcon-beXzy","transformInput":"es-transformInput-SyN2q","clearButton":"es-clearButton-Pm-uP","helpText":"es-helpText-IHqjo"};
4088
2373
 
4089
- const defaultValue$2 = {
2374
+ const defaultValue$1 = {
4090
2375
  mappings: []
4091
2376
  };
4092
2377
  const DataMappingSetter = props => {
@@ -4097,22 +2382,8 @@ const DataMappingSetter = props => {
4097
2382
  targetFields,
4098
2383
  sourceFields = []
4099
2384
  } = props;
4100
- const currentValue = value ?? initialValue ?? defaultValue$2;
2385
+ const currentValue = value ?? initialValue ?? defaultValue$1;
4101
2386
  const [open, setOpen] = React$1.useState(false);
4102
- const containerRef = React$1.useRef(null);
4103
- React$1.useEffect(() => {
4104
- const handleClickOutside = event => {
4105
- if (containerRef.current && !containerRef.current.contains(event.target)) {
4106
- setOpen(false);
4107
- }
4108
- };
4109
- if (open) {
4110
- document.addEventListener('mousedown', handleClickOutside);
4111
- }
4112
- return () => {
4113
- document.removeEventListener('mousedown', handleClickOutside);
4114
- };
4115
- }, [open]);
4116
2387
 
4117
2388
  // 获取字段的映射
4118
2389
  const getMapping = React$1.useCallback(targetField => currentValue.mappings.find(m => m.targetField === targetField), [currentValue.mappings]);
@@ -4148,47 +2419,47 @@ const DataMappingSetter = props => {
4148
2419
 
4149
2420
  // 统计已映射字段数
4150
2421
  const mappedCount = currentValue.mappings.filter(m => m.sourceField).length;
4151
- return /*#__PURE__*/React.createElement("div", {
4152
- className: styles$g.container,
4153
- ref: containerRef
4154
- }, /*#__PURE__*/React.createElement("button", {
4155
- "aria-label": "Data mapping",
4156
- className: styles$g.trigger,
4157
- onClick: () => setOpen(!open),
4158
- type: "button"
4159
- }, /*#__PURE__*/React.createElement(Settings2, {
4160
- className: styles$g.triggerIcon
4161
- }), /*#__PURE__*/React.createElement("span", {
4162
- className: styles$g.triggerText
4163
- }, "\u5B57\u6BB5\u6620\u5C04 (", mappedCount, "/", targetFields.length, ")")), /*#__PURE__*/React.createElement("div", {
4164
- className: cn(styles$g.popover, open === false ? styles$g.popoverHidden : '')
2422
+ return /*#__PURE__*/React.createElement(Popover, {
2423
+ onClose: () => setOpen(false),
2424
+ open: open,
2425
+ trigger: /*#__PURE__*/React.createElement("button", {
2426
+ "aria-label": "Data mapping",
2427
+ className: styles$f.trigger,
2428
+ onClick: () => setOpen(true),
2429
+ type: "button"
2430
+ }, /*#__PURE__*/React.createElement(Settings2, {
2431
+ className: styles$f.triggerIcon
2432
+ }), /*#__PURE__*/React.createElement("span", {
2433
+ className: styles$f.triggerText
2434
+ }, "\u5B57\u6BB5\u6620\u5C04 (", mappedCount, "/", targetFields.length, ")")),
2435
+ width: 320
4165
2436
  }, /*#__PURE__*/React.createElement("div", {
4166
- className: styles$g.content
2437
+ className: styles$f.popoverContent
4167
2438
  }, /*#__PURE__*/React.createElement("div", {
4168
- className: styles$g.header
2439
+ className: styles$f.header
4169
2440
  }, /*#__PURE__*/React.createElement("span", {
4170
- className: styles$g.headerTitle
2441
+ className: styles$f.headerTitle
4171
2442
  }, "\u5B57\u6BB5\u6620\u5C04\u914D\u7F6E"), /*#__PURE__*/React.createElement("span", {
4172
- className: styles$g.headerCount
2443
+ className: styles$f.headerCount
4173
2444
  }, mappedCount, "/", targetFields.length, " \u5DF2\u6620\u5C04")), /*#__PURE__*/React.createElement("div", {
4174
- className: styles$g.mappingList
2445
+ className: styles$f.mappingList
4175
2446
  }, targetFields.map(field => {
4176
2447
  const mapping = getMapping(field.name);
4177
2448
  return /*#__PURE__*/React.createElement("div", {
4178
- className: styles$g.mappingItem,
2449
+ className: styles$f.mappingItem,
4179
2450
  key: field.name
4180
2451
  }, /*#__PURE__*/React.createElement("div", {
4181
- className: styles$g.mappingHeader
2452
+ className: styles$f.mappingHeader
4182
2453
  }, /*#__PURE__*/React.createElement("span", {
4183
- className: styles$g.mappingTitle
2454
+ className: styles$f.mappingTitle
4184
2455
  }, field.label, field.required ? /*#__PURE__*/React.createElement("span", {
4185
- className: styles$g.mappingRequired
2456
+ className: styles$f.mappingRequired
4186
2457
  }, "*") : null), /*#__PURE__*/React.createElement("span", {
4187
- className: styles$g.mappingType
2458
+ className: styles$f.mappingType
4188
2459
  }, field.type)), /*#__PURE__*/React.createElement("div", {
4189
- className: styles$g.mappingRow
2460
+ className: styles$f.mappingRow
4190
2461
  }, sourceFields.length > 0 ? /*#__PURE__*/React.createElement("select", {
4191
- className: styles$g.select,
2462
+ className: styles$f.select,
4192
2463
  onChange: e => updateMapping(field.name, {
4193
2464
  sourceField: e.target.value
4194
2465
  }),
@@ -4199,7 +2470,7 @@ const DataMappingSetter = props => {
4199
2470
  key: sf,
4200
2471
  value: sf
4201
2472
  }, sf))) : /*#__PURE__*/React.createElement("input", {
4202
- className: styles$g.input,
2473
+ className: styles$f.input,
4203
2474
  onChange: e => updateMapping(field.name, {
4204
2475
  sourceField: e.target.value
4205
2476
  }),
@@ -4207,15 +2478,15 @@ const DataMappingSetter = props => {
4207
2478
  type: "text",
4208
2479
  value: mapping?.sourceField ?? ''
4209
2480
  }), /*#__PURE__*/React.createElement(ArrowRight, {
4210
- className: styles$g.arrowIcon
2481
+ className: styles$f.arrowIcon
4211
2482
  }), /*#__PURE__*/React.createElement("div", {
4212
- className: styles$g.targetField
2483
+ className: styles$f.targetField
4213
2484
  }, field.name)), mapping?.sourceField ? /*#__PURE__*/React.createElement("div", {
4214
- className: styles$g.transformRow
2485
+ className: styles$f.transformRow
4215
2486
  }, /*#__PURE__*/React.createElement(Code, {
4216
- className: styles$g.transformIcon
2487
+ className: styles$f.transformIcon
4217
2488
  }), /*#__PURE__*/React.createElement("input", {
4218
- className: styles$g.transformInput,
2489
+ className: styles$f.transformInput,
4219
2490
  onChange: e => updateMapping(field.name, {
4220
2491
  transform: e.target.value
4221
2492
  }),
@@ -4223,236 +2494,13 @@ const DataMappingSetter = props => {
4223
2494
  type: "text",
4224
2495
  value: mapping?.transform ?? ''
4225
2496
  })) : null, mapping?.sourceField ? /*#__PURE__*/React.createElement("button", {
4226
- className: styles$g.clearButton,
2497
+ className: styles$f.clearButton,
4227
2498
  onClick: () => clearMapping(field.name),
4228
2499
  type: "button"
4229
2500
  }, "\u6E05\u9664\u6620\u5C04") : null);
4230
2501
  })), /*#__PURE__*/React.createElement("div", {
4231
- className: styles$g.helpText
4232
- }, /*#__PURE__*/React.createElement("p", null, "\u2022 \u6E90\u5B57\u6BB5: \u6570\u636E\u6E90\u4E2D\u7684\u5B57\u6BB5\u8DEF\u5F84"), /*#__PURE__*/React.createElement("p", null, "\u2022 \u8F6C\u6362\u8868\u8FBE\u5F0F: \u5982 value * 100, value.toFixed(2)")))));
4233
- };
4234
-
4235
- var styles$f = {"container":"es-container-pcCYY","trigger":"es-trigger-IjziC","triggerIcon":"es-triggerIcon-t21hp","triggerText":"es-triggerText-WQ-5H","popover":"es-popover-h2Vn-","popoverHidden":"es-popoverHidden-EiA3W","searchWrapper":"es-searchWrapper-jUGP6","searchIcon":"es-searchIcon-Qu4Cl","searchInput":"es-searchInput-YUlsM","section":"es-section-mWvKy","sectionTitle":"es-sectionTitle-4m6ZV","iconGrid":"es-iconGrid-hvHqv","iconButton":"es-iconButton-3y2jO","iconButtonSelected":"es-iconButtonSelected-01Ozi","iconButtonIcon":"es-iconButtonIcon-ur-nS","emptyMessage":"es-emptyMessage-dWKQh"};
4236
-
4237
- // 图标映射表
4238
- const iconMap = {
4239
- Activity,
4240
- AlertCircle: CircleAlert,
4241
- AlertTriangle: TriangleAlert,
4242
- ArrowDown,
4243
- ArrowLeft,
4244
- ArrowRight,
4245
- ArrowUp,
4246
- BarChart: ChartNoAxesColumnIncreasing,
4247
- BarChart2: ChartNoAxesColumn,
4248
- Bell,
4249
- Calendar,
4250
- Check,
4251
- CheckCircle: CircleCheckBig,
4252
- ChevronDown,
4253
- ChevronLeft,
4254
- ChevronRight,
4255
- ChevronUp,
4256
- Circle,
4257
- Clock,
4258
- Cloud,
4259
- Code,
4260
- Copy,
4261
- Database,
4262
- Download,
4263
- Edit: SquarePen,
4264
- Eye,
4265
- EyeOff,
4266
- File,
4267
- FileText,
4268
- Filter: Funnel,
4269
- Folder,
4270
- Globe,
4271
- Grid: Grid3x3,
4272
- Heart,
4273
- Home: House,
4274
- Image: Image$1,
4275
- Info,
4276
- Layers,
4277
- Layout: PanelsTopLeft,
4278
- Link,
4279
- List,
4280
- Loader,
4281
- Lock,
4282
- LogOut,
4283
- Mail,
4284
- Map: Map,
4285
- MapPin,
4286
- Menu,
4287
- MessageCircle,
4288
- Minus,
4289
- Monitor,
4290
- Moon,
4291
- MoreHorizontal: Ellipsis,
4292
- MoreVertical: EllipsisVertical,
4293
- Move,
4294
- Music,
4295
- Package,
4296
- Pause,
4297
- PieChart: ChartPie,
4298
- Play,
4299
- Plus,
4300
- Power,
4301
- Printer,
4302
- RefreshCw,
4303
- Save,
4304
- Search,
4305
- Send,
4306
- Server,
4307
- Settings,
4308
- Share,
4309
- Shield,
4310
- ShoppingCart,
4311
- Sidebar: PanelLeft,
4312
- Sliders: SlidersVertical,
4313
- Smartphone,
4314
- Square,
4315
- Star,
4316
- Sun,
4317
- Table,
4318
- Tag,
4319
- Target,
4320
- Terminal,
4321
- ThumbsUp,
4322
- Trash,
4323
- TrendingDown,
4324
- TrendingUp,
4325
- Triangle,
4326
- Truck,
4327
- Tv,
4328
- Type,
4329
- Unlock: LockOpen,
4330
- Upload,
4331
- User,
4332
- Users,
4333
- Video,
4334
- Wifi,
4335
- X,
4336
- XCircle: CircleX,
4337
- Zap,
4338
- ZoomIn,
4339
- ZoomOut
4340
- };
4341
-
4342
- // 常用图标列表
4343
- const commonIcons = Object.keys(iconMap);
4344
- const defaultValue$1 = {
4345
- name: 'Circle'
4346
- };
4347
- const IconSetter = props => {
4348
- const {
4349
- value,
4350
- initialValue,
4351
- onChange,
4352
- recent = true
4353
- } = props;
4354
- const currentValue = value ?? initialValue ?? defaultValue$1;
4355
- const [open, setOpen] = React$1.useState(false);
4356
- const [searchQuery, setSearchQuery] = React$1.useState('');
4357
- const [recentIcons, setRecentIcons] = React$1.useState([]);
4358
- const containerRef = React$1.useRef(null);
4359
- React$1.useEffect(() => {
4360
- const handleClickOutside = event => {
4361
- if (containerRef.current && !containerRef.current.contains(event.target)) {
4362
- setOpen(false);
4363
- }
4364
- };
4365
- if (open) {
4366
- document.addEventListener('mousedown', handleClickOutside);
4367
- }
4368
- return () => {
4369
- document.removeEventListener('mousedown', handleClickOutside);
4370
- };
4371
- }, [open]);
4372
-
4373
- // 获取图标组件
4374
- const getIconComponent = React$1.useCallback(iconName => iconMap[iconName] || Circle, []);
4375
-
4376
- // 过滤图标
4377
- const filteredIcons = React$1.useMemo(() => {
4378
- if (!searchQuery) {
4379
- return commonIcons;
4380
- }
4381
- const query = searchQuery.toLowerCase();
4382
- return commonIcons.filter(icon => icon.toLowerCase().includes(query));
4383
- }, [searchQuery]);
4384
-
4385
- // 选择图标
4386
- const handleSelectIcon = React$1.useCallback(iconName => {
4387
- onChange({
4388
- name: iconName
4389
- });
4390
- setRecentIcons(prev => {
4391
- const newRecent = [iconName, ...prev.filter(i => i !== iconName)].slice(0, 8);
4392
- return newRecent;
4393
- });
4394
- setOpen(false);
4395
- }, [onChange]);
4396
- const CurrentIcon = getIconComponent(currentValue.name);
4397
- return /*#__PURE__*/React.createElement("div", {
4398
- className: styles$f.container,
4399
- ref: containerRef
4400
- }, /*#__PURE__*/React.createElement("button", {
4401
- "aria-label": "Select icon",
4402
- className: styles$f.trigger,
4403
- onClick: () => setOpen(!open),
4404
- type: "button"
4405
- }, /*#__PURE__*/React.createElement(CurrentIcon, {
4406
- className: styles$f.triggerIcon
4407
- }), /*#__PURE__*/React.createElement("span", {
4408
- className: styles$f.triggerText
4409
- }, currentValue.name)), /*#__PURE__*/React.createElement("div", {
4410
- className: cn(styles$f.popover, open === false ? styles$f.popoverHidden : '')
4411
- }, /*#__PURE__*/React.createElement("div", {
4412
- className: styles$f.searchWrapper
4413
- }, /*#__PURE__*/React.createElement(Search, {
4414
- className: styles$f.searchIcon
4415
- }), /*#__PURE__*/React.createElement("input", {
4416
- className: styles$f.searchInput,
4417
- onChange: e => setSearchQuery(e.target.value),
4418
- placeholder: "\u641C\u7D22\u56FE\u6807...",
4419
- type: "text",
4420
- value: searchQuery
4421
- })), recent === true && recentIcons.length > 0 && searchQuery === '' ? /*#__PURE__*/React.createElement("div", {
4422
- className: styles$f.section
4423
- }, /*#__PURE__*/React.createElement("div", {
4424
- className: styles$f.sectionTitle
4425
- }, "\u6700\u8FD1\u4F7F\u7528"), /*#__PURE__*/React.createElement("div", {
4426
- className: styles$f.iconGrid
4427
- }, recentIcons.map(iconName => {
4428
- const Icon = getIconComponent(iconName);
4429
- return /*#__PURE__*/React.createElement("button", {
4430
- "aria-label": iconName,
4431
- className: cn(styles$f.iconButton, currentValue.name === iconName ? styles$f.iconButtonSelected : ''),
4432
- key: iconName,
4433
- onClick: () => handleSelectIcon(iconName),
4434
- title: iconName,
4435
- type: "button"
4436
- }, /*#__PURE__*/React.createElement(Icon, {
4437
- className: styles$f.iconButtonIcon
4438
- }));
4439
- }))) : null, /*#__PURE__*/React.createElement("div", {
4440
- className: styles$f.iconGrid
4441
- }, filteredIcons.map(iconName => {
4442
- const Icon = getIconComponent(iconName);
4443
- return /*#__PURE__*/React.createElement("button", {
4444
- "aria-label": iconName,
4445
- className: cn(styles$f.iconButton, currentValue.name === iconName ? styles$f.iconButtonSelected : ''),
4446
- key: iconName,
4447
- onClick: () => handleSelectIcon(iconName),
4448
- title: iconName,
4449
- type: "button"
4450
- }, /*#__PURE__*/React.createElement(Icon, {
4451
- className: styles$f.iconButtonIcon
4452
- }));
4453
- })), filteredIcons.length === 0 ? /*#__PURE__*/React.createElement("div", {
4454
- className: styles$f.emptyMessage
4455
- }, "\u672A\u627E\u5230\u5339\u914D\u7684\u56FE\u6807") : null));
2502
+ className: styles$f.helpText
2503
+ }, /*#__PURE__*/React.createElement("p", null, "\u2022 \u6E90\u5B57\u6BB5: \u6570\u636E\u6E90\u4E2D\u7684\u5B57\u6BB5\u8DEF\u5F84"), /*#__PURE__*/React.createElement("p", null, "\u2022 \u8F6C\u6362\u8868\u8FBE\u5F0F: \u5982 value * 100, value.toFixed(2)"))));
4456
2504
  };
4457
2505
 
4458
2506
  var styles$e = {"container":"es-container-CUmyq","textarea":"es-textarea-hn1hD","textareaError":"es-textareaError-O2GWs","error":"es-error-wjKcS"};
@@ -4735,7 +2783,7 @@ const SegmentedSetter = props => {
4735
2783
  }, option.label)));
4736
2784
  };
4737
2785
 
4738
- var styles$8 = {"container":"es-container-HI7-c","trigger":"es-trigger-YRz9p","triggerValue":"es-triggerValue-k-g2-","placeholder":"es-placeholder-F8-XP","chevron":"es-chevron-UbZv-","chevronOpen":"es-chevronOpen-Yui-r","dropdown":"es-dropdown-l2sra","dropdownHidden":"es-dropdownHidden-S8Y4U","option":"es-option-cv-7C","optionSelected":"es-optionSelected-K4e5h","optionDisabled":"es-optionDisabled-72jrC"};
2786
+ var styles$8 = {"trigger":"es-trigger-YRz9p","triggerValue":"es-triggerValue-k-g2-","placeholder":"es-placeholder-F8-XP","chevron":"es-chevron-UbZv-","chevronOpen":"es-chevronOpen-Yui-r","dropdown":"es-dropdown-l2sra","option":"es-option-cv-7C","optionSelected":"es-optionSelected-K4e5h","optionDisabled":"es-optionDisabled-72jrC"};
4739
2787
 
4740
2788
  const SelectSetter = props => {
4741
2789
  const {
@@ -4746,22 +2794,8 @@ const SelectSetter = props => {
4746
2794
  onChange
4747
2795
  } = props;
4748
2796
  const [open, setOpen] = React$1.useState(false);
4749
- const containerRef = React$1.useRef(null);
4750
2797
  const currentValue = value ?? initialValue ?? '';
4751
2798
  const selectedOption = options.find(opt => opt.value === currentValue);
4752
- React$1.useEffect(() => {
4753
- const handleClickOutside = event => {
4754
- if (containerRef.current && !containerRef.current.contains(event.target)) {
4755
- setOpen(false);
4756
- }
4757
- };
4758
- if (open) {
4759
- document.addEventListener('mousedown', handleClickOutside);
4760
- }
4761
- return () => {
4762
- document.removeEventListener('mousedown', handleClickOutside);
4763
- };
4764
- }, [open]);
4765
2799
  const handleSelect = (optionValue, disabled) => {
4766
2800
  if (disabled) {
4767
2801
  return;
@@ -4769,21 +2803,22 @@ const SelectSetter = props => {
4769
2803
  onChange(optionValue);
4770
2804
  setOpen(false);
4771
2805
  };
4772
- return /*#__PURE__*/React.createElement("div", {
4773
- className: styles$8.container,
4774
- ref: containerRef
4775
- }, /*#__PURE__*/React.createElement("button", {
4776
- "aria-expanded": open,
4777
- "aria-haspopup": "listbox",
4778
- className: styles$8.trigger,
4779
- onClick: () => setOpen(!open),
4780
- type: "button"
4781
- }, /*#__PURE__*/React.createElement("span", {
4782
- className: cn(styles$8.triggerValue, selectedOption ? '' : styles$8.placeholder)
4783
- }, selectedOption?.label || placeholder || '请选择'), /*#__PURE__*/React.createElement(ChevronDown, {
4784
- className: cn(styles$8.chevron, open ? styles$8.chevronOpen : '')
4785
- })), /*#__PURE__*/React.createElement("div", {
4786
- className: cn(styles$8.dropdown, open === false ? styles$8.dropdownHidden : ''),
2806
+ return /*#__PURE__*/React.createElement(Popover, {
2807
+ onClose: () => setOpen(false),
2808
+ open: open,
2809
+ trigger: /*#__PURE__*/React.createElement("button", {
2810
+ "aria-expanded": open,
2811
+ "aria-haspopup": "listbox",
2812
+ className: styles$8.trigger,
2813
+ onClick: () => setOpen(true),
2814
+ type: "button"
2815
+ }, /*#__PURE__*/React.createElement("span", {
2816
+ className: cn(styles$8.triggerValue, selectedOption ? '' : styles$8.placeholder)
2817
+ }, selectedOption?.label || placeholder || '请选择'), /*#__PURE__*/React.createElement(ChevronDown, {
2818
+ className: cn(styles$8.chevron, open ? styles$8.chevronOpen : '')
2819
+ }))
2820
+ }, /*#__PURE__*/React.createElement("div", {
2821
+ className: styles$8.dropdown,
4787
2822
  role: "listbox"
4788
2823
  }, options.map(option => /*#__PURE__*/React.createElement("button", {
4789
2824
  "aria-selected": option.value === currentValue,
@@ -5276,7 +3311,6 @@ const setterMap = {
5276
3311
  TabSetter,
5277
3312
  SpacingSetter,
5278
3313
  AlignSetter,
5279
- IconSetter,
5280
3314
  DataBindingSetter,
5281
3315
  DataMappingSetter,
5282
3316
  SelectSetter,
@@ -5293,11 +3327,11 @@ exports.CollapseSetter = CollapseSetter;
5293
3327
  exports.ColorSetter = ColorSetter;
5294
3328
  exports.DataBindingSetter = DataBindingSetter;
5295
3329
  exports.DataMappingSetter = DataMappingSetter;
5296
- exports.IconSetter = IconSetter;
5297
3330
  exports.JsonSetter = JsonSetter;
5298
3331
  exports.NodeIdSetter = NodeIdSetter;
5299
3332
  exports.NumberSetter = NumberSetter;
5300
3333
  exports.ObjectSetter = ObjectSetter;
3334
+ exports.Popover = Popover;
5301
3335
  exports.RectSetter = RectSetter;
5302
3336
  exports.SegmentedSetter = SegmentedSetter;
5303
3337
  exports.SelectSetter = SelectSetter;