@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.js CHANGED
@@ -1,9 +1,74 @@
1
- /* @easy-editor/setters v0.1.0 */
1
+ /* @easy-editor/setters v0.1.1 */
2
2
  (function (global, factory) {
3
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('react'), require('react/jsx-runtime')) :
4
- typeof define === 'function' && define.amd ? define(['exports', 'react', 'react/jsx-runtime'], factory) :
5
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.EasyEditorSetters = {}, global.React, global.jsxRuntime));
6
- })(this, (function (exports, React$1, jsxRuntime) { 'use strict';
3
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('react'), require('react-dom'), require('react/jsx-runtime')) :
4
+ typeof define === 'function' && define.amd ? define(['exports', 'react', 'react-dom', 'react/jsx-runtime'], factory) :
5
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.EasyEditorSetters = {}, global.React, global.ReactDOM, global.jsxRuntime));
6
+ })(this, (function (exports, React$1, reactDom, jsxRuntime) { 'use strict';
7
+
8
+ /**
9
+ * Popover - 共享弹窗组件
10
+ * - 使用 Portal 渲染到 document.body,避免被父容器遮挡
11
+ * - 自动匹配触发器宽度
12
+ */
13
+ const Popover = props => {
14
+ const {
15
+ open,
16
+ onClose,
17
+ trigger,
18
+ children,
19
+ width = 'trigger'
20
+ } = props;
21
+ const triggerRef = React$1.useRef(null);
22
+ const [position, setPosition] = React$1.useState({
23
+ top: 0,
24
+ left: 0
25
+ });
26
+ const [popoverWidth, setPopoverWidth] = React$1.useState(0);
27
+
28
+ // 计算弹窗位置
29
+ React$1.useEffect(() => {
30
+ if (open && triggerRef.current) {
31
+ const triggerRect = triggerRef.current.getBoundingClientRect();
32
+ const triggerWidth = triggerRect.width;
33
+
34
+ // 设置弹窗宽度
35
+ if (width === 'trigger') {
36
+ setPopoverWidth(triggerWidth);
37
+ }
38
+ setPosition({
39
+ top: triggerRect.bottom + 4,
40
+ left: triggerRect.left
41
+ });
42
+ }
43
+ }, [open, width]);
44
+
45
+ // 点击外部关闭
46
+ React$1.useEffect(() => {
47
+ const handleClickOutside = event => {
48
+ const target = event.target;
49
+ const popoverEl = document.querySelector('.es-popover-portal');
50
+ if (popoverEl && !popoverEl.contains(target) && triggerRef.current && !triggerRef.current.contains(target)) {
51
+ onClose();
52
+ }
53
+ };
54
+ if (open) {
55
+ document.addEventListener('mousedown', handleClickOutside);
56
+ return () => document.removeEventListener('mousedown', handleClickOutside);
57
+ }
58
+ }, [open, onClose]);
59
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
60
+ ref: triggerRef
61
+ }, trigger), open ? /*#__PURE__*/reactDom.createPortal(/*#__PURE__*/React.createElement("div", {
62
+ className: "es-popover-portal",
63
+ style: {
64
+ position: 'fixed',
65
+ top: position.top,
66
+ left: position.left,
67
+ width: popoverWidth || 'auto',
68
+ zIndex: 1000
69
+ }
70
+ }, children), document.body) : '');
71
+ };
7
72
 
8
73
  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
74
 
@@ -107,19 +172,7 @@
107
172
  * This source code is licensed under the ISC license.
108
173
  * See the LICENSE file in the root directory of this source tree.
109
174
  */
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", {
175
+ const __iconNode$m = [["rect", {
123
176
  width: "6",
124
177
  height: "16",
125
178
  x: "4",
@@ -137,7 +190,7 @@
137
190
  d: "M22 22H2",
138
191
  key: "19qnx5"
139
192
  }]];
140
- const AlignEndHorizontal = createLucideIcon("align-end-horizontal", __iconNode$1N);
193
+ const AlignEndHorizontal = createLucideIcon("align-end-horizontal", __iconNode$m);
141
194
 
142
195
  /**
143
196
  * @license lucide-react v0.561.0 - ISC
@@ -145,7 +198,7 @@
145
198
  * This source code is licensed under the ISC license.
146
199
  * See the LICENSE file in the root directory of this source tree.
147
200
  */
148
- const __iconNode$1M = [["rect", {
201
+ const __iconNode$l = [["rect", {
149
202
  width: "16",
150
203
  height: "6",
151
204
  x: "2",
@@ -163,7 +216,7 @@
163
216
  d: "M22 22V2",
164
217
  key: "12ipfv"
165
218
  }]];
166
- const AlignEndVertical = createLucideIcon("align-end-vertical", __iconNode$1M);
219
+ const AlignEndVertical = createLucideIcon("align-end-vertical", __iconNode$l);
167
220
 
168
221
  /**
169
222
  * @license lucide-react v0.561.0 - ISC
@@ -171,7 +224,7 @@
171
224
  * This source code is licensed under the ISC license.
172
225
  * See the LICENSE file in the root directory of this source tree.
173
226
  */
174
- const __iconNode$1L = [["rect", {
227
+ const __iconNode$k = [["rect", {
175
228
  width: "6",
176
229
  height: "14",
177
230
  x: "4",
@@ -198,7 +251,7 @@
198
251
  d: "M7 5V2",
199
252
  key: "liy1u9"
200
253
  }]];
201
- const AlignHorizontalDistributeCenter = createLucideIcon("align-horizontal-distribute-center", __iconNode$1L);
254
+ const AlignHorizontalDistributeCenter = createLucideIcon("align-horizontal-distribute-center", __iconNode$k);
202
255
 
203
256
  /**
204
257
  * @license lucide-react v0.561.0 - ISC
@@ -206,7 +259,7 @@
206
259
  * This source code is licensed under the ISC license.
207
260
  * See the LICENSE file in the root directory of this source tree.
208
261
  */
209
- const __iconNode$1K = [["rect", {
262
+ const __iconNode$j = [["rect", {
210
263
  width: "6",
211
264
  height: "16",
212
265
  x: "4",
@@ -224,7 +277,7 @@
224
277
  d: "M22 2H2",
225
278
  key: "fhrpnj"
226
279
  }]];
227
- const AlignStartHorizontal = createLucideIcon("align-start-horizontal", __iconNode$1K);
280
+ const AlignStartHorizontal = createLucideIcon("align-start-horizontal", __iconNode$j);
228
281
 
229
282
  /**
230
283
  * @license lucide-react v0.561.0 - ISC
@@ -232,7 +285,7 @@
232
285
  * This source code is licensed under the ISC license.
233
286
  * See the LICENSE file in the root directory of this source tree.
234
287
  */
235
- const __iconNode$1J = [["rect", {
288
+ const __iconNode$i = [["rect", {
236
289
  width: "9",
237
290
  height: "6",
238
291
  x: "6",
@@ -250,7 +303,7 @@
250
303
  d: "M2 2v20",
251
304
  key: "1ivd8o"
252
305
  }]];
253
- const AlignStartVertical = createLucideIcon("align-start-vertical", __iconNode$1J);
306
+ const AlignStartVertical = createLucideIcon("align-start-vertical", __iconNode$i);
254
307
 
255
308
  /**
256
309
  * @license lucide-react v0.561.0 - ISC
@@ -258,7 +311,7 @@
258
311
  * This source code is licensed under the ISC license.
259
312
  * See the LICENSE file in the root directory of this source tree.
260
313
  */
261
- const __iconNode$1I = [["path", {
314
+ const __iconNode$h = [["path", {
262
315
  d: "M22 17h-3",
263
316
  key: "1lwga1"
264
317
  }], ["path", {
@@ -285,37 +338,7 @@
285
338
  rx: "2",
286
339
  key: "we8e9z"
287
340
  }]];
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);
341
+ const AlignVerticalDistributeCenter = createLucideIcon("align-vertical-distribute-center", __iconNode$h);
319
342
 
320
343
  /**
321
344
  * @license lucide-react v0.561.0 - ISC
@@ -323,120 +346,14 @@
323
346
  * This source code is licensed under the ISC license.
324
347
  * See the LICENSE file in the root directory of this source tree.
325
348
  */
326
- const __iconNode$1F = [["path", {
349
+ const __iconNode$g = [["path", {
327
350
  d: "M5 12h14",
328
351
  key: "1ays0h"
329
352
  }], ["path", {
330
353
  d: "m12 5 7 7-7 7",
331
354
  key: "xquz4c"
332
355
  }]];
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);
356
+ const ArrowRight = createLucideIcon("arrow-right", __iconNode$g);
440
357
 
441
358
  /**
442
359
  * @license lucide-react v0.561.0 - ISC
@@ -444,11 +361,11 @@
444
361
  * This source code is licensed under the ISC license.
445
362
  * See the LICENSE file in the root directory of this source tree.
446
363
  */
447
- const __iconNode$1y = [["path", {
364
+ const __iconNode$f = [["path", {
448
365
  d: "M20 6 9 17l-5-5",
449
366
  key: "1gmf2c"
450
367
  }]];
451
- const Check = createLucideIcon("check", __iconNode$1y);
368
+ const Check = createLucideIcon("check", __iconNode$f);
452
369
 
453
370
  /**
454
371
  * @license lucide-react v0.561.0 - ISC
@@ -456,47 +373,11 @@
456
373
  * This source code is licensed under the ISC license.
457
374
  * See the LICENSE file in the root directory of this source tree.
458
375
  */
459
- const __iconNode$1x = [["path", {
376
+ const __iconNode$e = [["path", {
460
377
  d: "m6 9 6 6 6-6",
461
378
  key: "qrunsl"
462
379
  }]];
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);
380
+ const ChevronDown = createLucideIcon("chevron-down", __iconNode$e);
500
381
 
501
382
  /**
502
383
  * @license lucide-react v0.561.0 - ISC
@@ -504,40 +385,14 @@
504
385
  * This source code is licensed under the ISC license.
505
386
  * See the LICENSE file in the root directory of this source tree.
506
387
  */
507
- const __iconNode$1t = [["path", {
388
+ const __iconNode$d = [["path", {
508
389
  d: "m7 15 5 5 5-5",
509
390
  key: "1hf1tw"
510
391
  }], ["path", {
511
392
  d: "m7 9 5-5 5 5",
512
393
  key: "sgt6xg"
513
394
  }]];
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);
395
+ const ChevronsUpDown = createLucideIcon("chevrons-up-down", __iconNode$d);
541
396
 
542
397
  /**
543
398
  * @license lucide-react v0.561.0 - ISC
@@ -545,14 +400,14 @@
545
400
  * This source code is licensed under the ISC license.
546
401
  * See the LICENSE file in the root directory of this source tree.
547
402
  */
548
- const __iconNode$1r = [["path", {
549
- d: "M21.801 10A10 10 0 1 1 17 3.335",
550
- key: "yps3ct"
403
+ const __iconNode$c = [["path", {
404
+ d: "m16 18 6-6-6-6",
405
+ key: "eg8j8"
551
406
  }], ["path", {
552
- d: "m9 11 3 3L22 4",
553
- key: "1pflzl"
407
+ d: "m8 6-6 6 6 6",
408
+ key: "ppft3o"
554
409
  }]];
555
- const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$1r);
410
+ const Code = createLucideIcon("code", __iconNode$c);
556
411
 
557
412
  /**
558
413
  * @license lucide-react v0.561.0 - ISC
@@ -560,19 +415,20 @@
560
415
  * This source code is licensed under the ISC license.
561
416
  * See the LICENSE file in the root directory of this source tree.
562
417
  */
563
- const __iconNode$1q = [["circle", {
418
+ const __iconNode$b = [["ellipse", {
564
419
  cx: "12",
565
- cy: "12",
566
- r: "10",
567
- key: "1mglay"
420
+ cy: "5",
421
+ rx: "9",
422
+ ry: "3",
423
+ key: "msslwz"
568
424
  }], ["path", {
569
- d: "m15 9-6 6",
570
- key: "1uzhvr"
425
+ d: "M3 5V19A9 3 0 0 0 21 19V5",
426
+ key: "1wlel7"
571
427
  }], ["path", {
572
- d: "m9 9 6 6",
573
- key: "z0biqf"
428
+ d: "M3 12A9 3 0 0 0 21 12",
429
+ key: "mv7ke4"
574
430
  }]];
575
- const CircleX = createLucideIcon("circle-x", __iconNode$1q);
431
+ const Database = createLucideIcon("database", __iconNode$b);
576
432
 
577
433
  /**
578
434
  * @license lucide-react v0.561.0 - ISC
@@ -580,13 +436,20 @@
580
436
  * This source code is licensed under the ISC license.
581
437
  * See the LICENSE file in the root directory of this source tree.
582
438
  */
583
- const __iconNode$1p = [["circle", {
584
- cx: "12",
585
- cy: "12",
586
- r: "10",
587
- key: "1mglay"
439
+ const __iconNode$a = [["path", {
440
+ 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",
441
+ key: "1oefj6"
442
+ }], ["path", {
443
+ d: "M14 2v5a1 1 0 0 0 1 1h5",
444
+ key: "wfsgrz"
445
+ }], ["path", {
446
+ 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",
447
+ key: "1oajmo"
448
+ }], ["path", {
449
+ 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",
450
+ key: "mpwhp6"
588
451
  }]];
589
- const Circle = createLucideIcon("circle", __iconNode$1p);
452
+ const FileBraces = createLucideIcon("file-braces", __iconNode$a);
590
453
 
591
454
  /**
592
455
  * @license lucide-react v0.561.0 - ISC
@@ -594,16 +457,38 @@
594
457
  * This source code is licensed under the ISC license.
595
458
  * See the LICENSE file in the root directory of this source tree.
596
459
  */
597
- const __iconNode$1o = [["path", {
598
- d: "M12 6v6l4 2",
599
- key: "mmk7yg"
460
+ const __iconNode$9 = [["circle", {
461
+ cx: "9",
462
+ cy: "12",
463
+ r: "1",
464
+ key: "1vctgf"
600
465
  }], ["circle", {
601
- cx: "12",
466
+ cx: "9",
467
+ cy: "5",
468
+ r: "1",
469
+ key: "hp0tcf"
470
+ }], ["circle", {
471
+ cx: "9",
472
+ cy: "19",
473
+ r: "1",
474
+ key: "fkjjf6"
475
+ }], ["circle", {
476
+ cx: "15",
602
477
  cy: "12",
603
- r: "10",
604
- key: "1mglay"
478
+ r: "1",
479
+ key: "1tmaij"
480
+ }], ["circle", {
481
+ cx: "15",
482
+ cy: "5",
483
+ r: "1",
484
+ key: "19l28e"
485
+ }], ["circle", {
486
+ cx: "15",
487
+ cy: "19",
488
+ r: "1",
489
+ key: "f4zoj3"
605
490
  }]];
606
- const Clock = createLucideIcon("clock", __iconNode$1o);
491
+ const GripVertical = createLucideIcon("grip-vertical", __iconNode$9);
607
492
 
608
493
  /**
609
494
  * @license lucide-react v0.561.0 - ISC
@@ -611,11 +496,20 @@
611
496
  * This source code is licensed under the ISC license.
612
497
  * See the LICENSE file in the root directory of this source tree.
613
498
  */
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"
499
+ const __iconNode$8 = [["path", {
500
+ d: "M9 17H7A5 5 0 0 1 7 7h2",
501
+ key: "8i5ue5"
502
+ }], ["path", {
503
+ d: "M15 7h2a5 5 0 1 1 0 10h-2",
504
+ key: "1b9ql8"
505
+ }], ["line", {
506
+ x1: "8",
507
+ x2: "16",
508
+ y1: "12",
509
+ y2: "12",
510
+ key: "1jonct"
617
511
  }]];
618
- const Cloud = createLucideIcon("cloud", __iconNode$1n);
512
+ const Link2 = createLucideIcon("link-2", __iconNode$8);
619
513
 
620
514
  /**
621
515
  * @license lucide-react v0.561.0 - ISC
@@ -623,14 +517,14 @@
623
517
  * This source code is licensed under the ISC license.
624
518
  * See the LICENSE file in the root directory of this source tree.
625
519
  */
626
- const __iconNode$1m = [["path", {
627
- d: "m16 18 6-6-6-6",
628
- key: "eg8j8"
520
+ const __iconNode$7 = [["path", {
521
+ d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",
522
+ key: "1cjeqo"
629
523
  }], ["path", {
630
- d: "m8 6-6 6 6 6",
631
- key: "ppft3o"
524
+ d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",
525
+ key: "19qd67"
632
526
  }]];
633
- const Code = createLucideIcon("code", __iconNode$1m);
527
+ const Link = createLucideIcon("link", __iconNode$7);
634
528
 
635
529
  /**
636
530
  * @license lucide-react v0.561.0 - ISC
@@ -638,19 +532,20 @@
638
532
  * This source code is licensed under the ISC license.
639
533
  * See the LICENSE file in the root directory of this source tree.
640
534
  */
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"
535
+ const __iconNode$6 = [["path", {
536
+ d: "M15 3h6v6",
537
+ key: "1q9fwt"
649
538
  }], ["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"
539
+ d: "m21 3-7 7",
540
+ key: "1l2asr"
541
+ }], ["path", {
542
+ d: "m3 21 7-7",
543
+ key: "tjx5ai"
544
+ }], ["path", {
545
+ d: "M9 21H3v-6",
546
+ key: "wtvkvv"
652
547
  }]];
653
- const Copy = createLucideIcon("copy", __iconNode$1l);
548
+ const Maximize2 = createLucideIcon("maximize-2", __iconNode$6);
654
549
 
655
550
  /**
656
551
  * @license lucide-react v0.561.0 - ISC
@@ -658,1432 +553,14 @@
658
553
  * This source code is licensed under the ISC license.
659
554
  * See the LICENSE file in the root directory of this source tree.
660
555
  */
661
- const __iconNode$1k = [["ellipse", {
662
- cx: "12",
663
- cy: "5",
664
- rx: "9",
665
- ry: "3",
666
- key: "msslwz"
556
+ const __iconNode$5 = [["path", {
557
+ d: "M5 12h14",
558
+ key: "1ays0h"
667
559
  }], ["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"
560
+ d: "M12 5v14",
561
+ key: "s699le"
2085
562
  }]];
2086
- const Triangle = createLucideIcon("triangle", __iconNode$d);
563
+ const Plus = createLucideIcon("plus", __iconNode$5);
2087
564
 
2088
565
  /**
2089
566
  * @license lucide-react v0.561.0 - ISC
@@ -2091,46 +568,24 @@
2091
568
  * This source code is licensed under the ISC license.
2092
569
  * See the LICENSE file in the root directory of this source tree.
2093
570
  */
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"
571
+ const __iconNode$4 = [["path", {
572
+ d: "M14 17H5",
573
+ key: "gfn3mx"
2100
574
  }], ["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"
575
+ d: "M19 7h-9",
576
+ key: "6i9tg"
2103
577
  }], ["circle", {
2104
578
  cx: "17",
2105
- cy: "18",
2106
- r: "2",
2107
- key: "332jqn"
579
+ cy: "17",
580
+ r: "3",
581
+ key: "18b49y"
2108
582
  }], ["circle", {
2109
583
  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"
584
+ cy: "7",
585
+ r: "3",
586
+ key: "dfmy0x"
2132
587
  }]];
2133
- const Tv = createLucideIcon("tv", __iconNode$b);
588
+ const Settings2 = createLucideIcon("settings-2", __iconNode$4);
2134
589
 
2135
590
  /**
2136
591
  * @license lucide-react v0.561.0 - ISC
@@ -2138,17 +593,23 @@
2138
593
  * This source code is licensed under the ISC license.
2139
594
  * See the LICENSE file in the root directory of this source tree.
2140
595
  */
2141
- const __iconNode$a = [["path", {
2142
- d: "M12 4v16",
2143
- key: "1654pz"
596
+ const __iconNode$3 = [["path", {
597
+ d: "M10 11v6",
598
+ key: "nco0om"
599
+ }], ["path", {
600
+ d: "M14 11v6",
601
+ key: "outv1u"
602
+ }], ["path", {
603
+ d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",
604
+ key: "miytrc"
2144
605
  }], ["path", {
2145
- d: "M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2",
2146
- key: "e0r10z"
606
+ d: "M3 6h18",
607
+ key: "d0wm0j"
2147
608
  }], ["path", {
2148
- d: "M9 20h6",
2149
- key: "s66wpe"
609
+ d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",
610
+ key: "e791ji"
2150
611
  }]];
2151
- const Type = createLucideIcon("type", __iconNode$a);
612
+ const Trash2 = createLucideIcon("trash-2", __iconNode$3);
2152
613
 
2153
614
  /**
2154
615
  * @license lucide-react v0.561.0 - ISC
@@ -2156,7 +617,7 @@
2156
617
  * This source code is licensed under the ISC license.
2157
618
  * See the LICENSE file in the root directory of this source tree.
2158
619
  */
2159
- const __iconNode$9 = [["path", {
620
+ const __iconNode$2 = [["path", {
2160
621
  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
622
  key: "yqzxt4"
2162
623
  }], ["path", {
@@ -2187,7 +648,7 @@
2187
648
  y2: "16",
2188
649
  key: "ox905f"
2189
650
  }]];
2190
- const Unlink = createLucideIcon("unlink", __iconNode$9);
651
+ const Unlink = createLucideIcon("unlink", __iconNode$2);
2191
652
 
2192
653
  /**
2193
654
  * @license lucide-react v0.561.0 - ISC
@@ -2195,7 +656,7 @@
2195
656
  * This source code is licensed under the ISC license.
2196
657
  * See the LICENSE file in the root directory of this source tree.
2197
658
  */
2198
- const __iconNode$8 = [["path", {
659
+ const __iconNode$1 = [["path", {
2199
660
  d: "M12 3v12",
2200
661
  key: "1x0j5s"
2201
662
  }], ["path", {
@@ -2205,87 +666,7 @@
2205
666
  d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",
2206
667
  key: "ih7n3h"
2207
668
  }]];
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);
669
+ const Upload = createLucideIcon("upload", __iconNode$1);
2289
670
 
2290
671
  /**
2291
672
  * @license lucide-react v0.561.0 - ISC
@@ -2293,88 +674,18 @@
2293
674
  * This source code is licensed under the ISC license.
2294
675
  * See the LICENSE file in the root directory of this source tree.
2295
676
  */
2296
- const __iconNode$3 = [["path", {
677
+ const __iconNode = [["path", {
2297
678
  d: "M18 6 6 18",
2298
679
  key: "1bl5f8"
2299
680
  }], ["path", {
2300
681
  d: "m6 6 12 12",
2301
682
  key: "d8bk6v"
2302
683
  }]];
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);
684
+ const X = createLucideIcon("x", __iconNode);
2374
685
 
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"};
686
+ 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
687
 
2377
- const defaultValue$4 = {
688
+ const defaultValue$3 = {
2378
689
  horizontal: 'left',
2379
690
  vertical: 'top'
2380
691
  };
@@ -2492,7 +803,7 @@
2492
803
  showHorizontal = true,
2493
804
  showVertical = true
2494
805
  } = props;
2495
- const currentValue = value ?? initialValue ?? defaultValue$4;
806
+ const currentValue = value ?? initialValue ?? defaultValue$3;
2496
807
  const updateAlign = React$1.useCallback(updates => {
2497
808
  onChange({
2498
809
  ...currentValue,
@@ -2507,34 +818,34 @@
2507
818
  }, [onChange]);
2508
819
  const isGridSelected = (h, v) => currentValue.horizontal === h && currentValue.vertical === v;
2509
820
  return /*#__PURE__*/React.createElement("div", {
2510
- className: styles$k.container
821
+ className: styles$j.container
2511
822
  }, showHorizontal === true && showVertical === true ? /*#__PURE__*/React.createElement("div", {
2512
- className: styles$k.visualWrapper
823
+ className: styles$j.visualWrapper
2513
824
  }, /*#__PURE__*/React.createElement("div", {
2514
- className: styles$k.previewBox
825
+ className: styles$j.previewBox
2515
826
  }, /*#__PURE__*/React.createElement("div", {
2516
- className: styles$k.previewElement,
827
+ className: styles$j.previewElement,
2517
828
  style: getElementPosition(currentValue.horizontal, currentValue.vertical)
2518
829
  })), /*#__PURE__*/React.createElement("div", {
2519
- className: styles$k.grid
830
+ className: styles$j.grid
2520
831
  }, gridPositions.map(pos => /*#__PURE__*/React.createElement("button", {
2521
832
  "aria-label": `Align ${pos.h} ${pos.v}`,
2522
- className: cn(styles$k.gridButton, isGridSelected(pos.h, pos.v) ? styles$k.gridButtonSelected : ''),
833
+ className: cn(styles$j.gridButton, isGridSelected(pos.h, pos.v) ? styles$j.gridButtonSelected : ''),
2523
834
  key: `${pos.h}-${pos.v}`,
2524
835
  onClick: () => handleGridClick(pos.h, pos.v),
2525
836
  type: "button"
2526
837
  })))) : null, showHorizontal === true ? /*#__PURE__*/React.createElement("div", {
2527
- className: styles$k.section
838
+ className: styles$j.section
2528
839
  }, /*#__PURE__*/React.createElement("span", {
2529
- className: styles$k.sectionLabel
840
+ className: styles$j.sectionLabel
2530
841
  }, "\u6C34\u5E73\u5BF9\u9F50"), /*#__PURE__*/React.createElement("div", {
2531
- className: styles$k.buttonGroup
842
+ className: styles$j.buttonGroup
2532
843
  }, horizontalOptions.map(option => {
2533
844
  const Icon = option.icon;
2534
845
  const isRotated = option.value === 'stretch';
2535
846
  return /*#__PURE__*/React.createElement("button", {
2536
847
  "aria-label": option.label,
2537
- className: cn(styles$k.alignButton, currentValue.horizontal === option.value ? styles$k.alignButtonSelected : ''),
848
+ className: cn(styles$j.alignButton, currentValue.horizontal === option.value ? styles$j.alignButtonSelected : ''),
2538
849
  key: option.value,
2539
850
  onClick: () => updateAlign({
2540
851
  horizontal: option.value
@@ -2542,19 +853,19 @@
2542
853
  title: option.label,
2543
854
  type: "button"
2544
855
  }, /*#__PURE__*/React.createElement(Icon, {
2545
- className: cn(styles$k.alignIcon, isRotated ? styles$k.alignIconRotated : '')
856
+ className: cn(styles$j.alignIcon, isRotated ? styles$j.alignIconRotated : '')
2546
857
  }));
2547
858
  }))) : null, showVertical === true ? /*#__PURE__*/React.createElement("div", {
2548
- className: styles$k.section
859
+ className: styles$j.section
2549
860
  }, /*#__PURE__*/React.createElement("span", {
2550
- className: styles$k.sectionLabel
861
+ className: styles$j.sectionLabel
2551
862
  }, "\u5782\u76F4\u5BF9\u9F50"), /*#__PURE__*/React.createElement("div", {
2552
- className: styles$k.buttonGroup
863
+ className: styles$j.buttonGroup
2553
864
  }, verticalOptions.map(option => {
2554
865
  const Icon = option.icon;
2555
866
  return /*#__PURE__*/React.createElement("button", {
2556
867
  "aria-label": option.label,
2557
- className: cn(styles$k.alignButton, currentValue.vertical === option.value ? styles$k.alignButtonSelected : ''),
868
+ className: cn(styles$j.alignButton, currentValue.vertical === option.value ? styles$j.alignButtonSelected : ''),
2558
869
  key: option.value,
2559
870
  onClick: () => updateAlign({
2560
871
  vertical: option.value
@@ -2562,12 +873,12 @@
2562
873
  title: option.label,
2563
874
  type: "button"
2564
875
  }, /*#__PURE__*/React.createElement(Icon, {
2565
- className: styles$k.alignIcon
876
+ className: styles$j.alignIcon
2566
877
  }));
2567
878
  }))) : null);
2568
879
  };
2569
880
 
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"};
881
+ 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
882
 
2572
883
  const ArraySetter = props => {
2573
884
  const {
@@ -2603,14 +914,14 @@
2603
914
  const canAdd = !maxItems || items.length < maxItems;
2604
915
  const canRemove = items.length > minItems;
2605
916
  return /*#__PURE__*/React.createElement("div", {
2606
- className: styles$j.container
917
+ className: styles$i.container
2607
918
  }, items.map((item, index) => /*#__PURE__*/React.createElement("div", {
2608
- className: styles$j.item,
919
+ className: styles$i.item,
2609
920
  key: `item-${String(item)}-${index}`
2610
921
  }, /*#__PURE__*/React.createElement(GripVertical, {
2611
- className: styles$j.dragHandle
922
+ className: styles$i.dragHandle
2612
923
  }), /*#__PURE__*/React.createElement("input", {
2613
- className: styles$j.input,
924
+ className: styles$i.input,
2614
925
  onChange: e => {
2615
926
  const val = itemSetter === 'number' ? +e.target.value : e.target.value;
2616
927
  handleChange(index, val);
@@ -2619,19 +930,19 @@
2619
930
  type: itemSetter === 'number' ? 'number' : 'text',
2620
931
  value: item
2621
932
  }), /*#__PURE__*/React.createElement("button", {
2622
- className: styles$j.removeButton,
933
+ className: styles$i.removeButton,
2623
934
  disabled: !canRemove,
2624
935
  onClick: () => handleRemove(index),
2625
936
  type: "button"
2626
937
  }, /*#__PURE__*/React.createElement(Trash2, {
2627
- className: styles$j.removeIcon
938
+ className: styles$i.removeIcon
2628
939
  })))), /*#__PURE__*/React.createElement("button", {
2629
- className: styles$j.addButton,
940
+ className: styles$i.addButton,
2630
941
  disabled: !canAdd,
2631
942
  onClick: handleAdd,
2632
943
  type: "button"
2633
944
  }, /*#__PURE__*/React.createElement(Plus, {
2634
- className: styles$j.addIcon
945
+ className: styles$i.addIcon
2635
946
  }), addButtonText));
2636
947
  };
2637
948
 
@@ -3831,7 +2142,7 @@
3831
2142
  });
3832
2143
  Sketch.displayName = 'Sketch';
3833
2144
 
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"};
2145
+ var styles$h = {"trigger":"es-trigger-w-aUi","colorPreview":"es-colorPreview-SUgiJ","colorValue":"es-colorValue-cYdRP","popover":"es-popover-SfIUB"};
3835
2146
 
3836
2147
  const ColorSetter = props => {
3837
2148
  const {
@@ -3841,40 +2152,25 @@
3841
2152
  disableAlpha = false
3842
2153
  } = props;
3843
2154
  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);
2155
+ return /*#__PURE__*/React.createElement(Popover, {
2156
+ onClose: () => setOpen(false),
2157
+ open: open,
2158
+ trigger: /*#__PURE__*/React.createElement("button", {
2159
+ "aria-label": "Select color",
2160
+ className: styles$h.trigger,
2161
+ onClick: () => setOpen(true),
2162
+ type: "button"
2163
+ }, /*#__PURE__*/React.createElement("div", {
2164
+ "aria-label": "Current color",
2165
+ className: styles$h.colorPreview,
2166
+ style: {
2167
+ backgroundColor: value ?? initialValue
3849
2168
  }
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"
2169
+ }), /*#__PURE__*/React.createElement("span", {
2170
+ className: styles$h.colorValue
2171
+ }, value ?? initialValue))
3868
2172
  }, /*#__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)
2173
+ className: styles$h.popover
3878
2174
  }, /*#__PURE__*/React.createElement(Sketch, {
3879
2175
  color: value,
3880
2176
  disableAlpha: disableAlpha,
@@ -3883,9 +2179,9 @@
3883
2179
  })));
3884
2180
  };
3885
2181
 
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"};
2182
+ 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
2183
 
3888
- const defaultValue$3 = {
2184
+ const defaultValue$2 = {
3889
2185
  type: 'static',
3890
2186
  staticValue: ''
3891
2187
  };
@@ -3898,23 +2194,9 @@
3898
2194
  showPreview = true,
3899
2195
  dataSources = []
3900
2196
  } = props;
3901
- const currentValue = value ?? initialValue ?? defaultValue$3;
2197
+ const currentValue = value ?? initialValue ?? defaultValue$2;
3902
2198
  const [open, setOpen] = React$1.useState(false);
3903
2199
  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
2200
  const updateBinding = React$1.useCallback(updates => {
3919
2201
  onChange({
3920
2202
  ...currentValue,
@@ -3949,7 +2231,7 @@
3949
2231
  switch (dataType) {
3950
2232
  case 'number':
3951
2233
  return /*#__PURE__*/React.createElement("input", {
3952
- className: styles$h.input,
2234
+ className: styles$g.input,
3953
2235
  onChange: e => handleStaticValueChange(Number(e.target.value)),
3954
2236
  placeholder: "\u8F93\u5165\u6570\u503C",
3955
2237
  type: "number",
@@ -3957,20 +2239,20 @@
3957
2239
  });
3958
2240
  case 'boolean':
3959
2241
  return /*#__PURE__*/React.createElement("div", {
3960
- className: styles$h.booleanButtons
2242
+ className: styles$g.booleanButtons
3961
2243
  }, /*#__PURE__*/React.createElement("button", {
3962
- className: cn(styles$h.booleanButton, currentValue.staticValue === true ? styles$h.booleanButtonActive : ''),
2244
+ className: cn(styles$g.booleanButton, currentValue.staticValue === true ? styles$g.booleanButtonActive : ''),
3963
2245
  onClick: () => handleStaticValueChange(true),
3964
2246
  type: "button"
3965
2247
  }, "True"), /*#__PURE__*/React.createElement("button", {
3966
- className: cn(styles$h.booleanButton, currentValue.staticValue === false ? styles$h.booleanButtonActive : ''),
2248
+ className: cn(styles$g.booleanButton, currentValue.staticValue === false ? styles$g.booleanButtonActive : ''),
3967
2249
  onClick: () => handleStaticValueChange(false),
3968
2250
  type: "button"
3969
2251
  }, "False"));
3970
2252
  case 'array':
3971
2253
  case 'object':
3972
2254
  return /*#__PURE__*/React.createElement("textarea", {
3973
- className: styles$h.textarea,
2255
+ className: styles$g.textarea,
3974
2256
  onChange: e => {
3975
2257
  try {
3976
2258
  const parsed = JSON.parse(e.target.value);
@@ -3984,7 +2266,7 @@
3984
2266
  });
3985
2267
  default:
3986
2268
  return /*#__PURE__*/React.createElement("input", {
3987
- className: styles$h.input,
2269
+ className: styles$g.input,
3988
2270
  onChange: e => handleStaticValueChange(e.target.value),
3989
2271
  placeholder: "\u8F93\u5165\u503C",
3990
2272
  type: "text",
@@ -3999,94 +2281,96 @@
3999
2281
  const ds = dataSources.find(d => d.id === currentValue.datasourceId);
4000
2282
  return {
4001
2283
  icon: /*#__PURE__*/React.createElement(Link2, {
4002
- className: cn(styles$h.triggerIcon, styles$h.triggerIconPrimary)
2284
+ className: cn(styles$g.triggerIcon, styles$g.triggerIconPrimary)
4003
2285
  }),
4004
2286
  text: `${ds?.name ?? currentValue.datasourceId}${currentValue.datasourcePath ? `.${currentValue.datasourcePath}` : ''}`
4005
2287
  };
4006
2288
  }
4007
2289
  return {
4008
2290
  icon: /*#__PURE__*/React.createElement(FileBraces, {
4009
- className: cn(styles$h.triggerIcon, styles$h.triggerIconMuted)
2291
+ className: cn(styles$g.triggerIcon, styles$g.triggerIconMuted)
4010
2292
  }),
4011
2293
  text: '静态数据'
4012
2294
  };
4013
2295
  }, [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 : '')
2296
+ return /*#__PURE__*/React.createElement(Popover, {
2297
+ onClose: () => setOpen(false),
2298
+ open: open,
2299
+ trigger: /*#__PURE__*/React.createElement("button", {
2300
+ "aria-label": "Data binding",
2301
+ className: styles$g.trigger,
2302
+ onClick: () => setOpen(true),
2303
+ type: "button"
2304
+ }, bindingStatus.icon, /*#__PURE__*/React.createElement("span", {
2305
+ className: styles$g.triggerText
2306
+ }, bindingStatus.text)),
2307
+ width: 300
4026
2308
  }, /*#__PURE__*/React.createElement("div", {
4027
- className: styles$h.tabsList,
2309
+ className: styles$g.popoverContent
2310
+ }, /*#__PURE__*/React.createElement("div", {
2311
+ className: styles$g.tabsList,
4028
2312
  role: "tablist"
4029
2313
  }, /*#__PURE__*/React.createElement("button", {
4030
2314
  "aria-selected": activeTab === 'static',
4031
- className: cn(styles$h.tabTrigger, activeTab === 'static' ? styles$h.tabTriggerActive : ''),
2315
+ className: cn(styles$g.tabTrigger, activeTab === 'static' ? styles$g.tabTriggerActive : ''),
4032
2316
  onClick: () => handleTypeChange('static'),
4033
2317
  role: "tab",
4034
2318
  type: "button"
4035
2319
  }, /*#__PURE__*/React.createElement(FileBraces, {
4036
- className: styles$h.tabTriggerIcon
2320
+ className: styles$g.tabTriggerIcon
4037
2321
  }), "\u9759\u6001\u6570\u636E"), /*#__PURE__*/React.createElement("button", {
4038
2322
  "aria-selected": activeTab === 'datasource',
4039
- className: cn(styles$h.tabTrigger, activeTab === 'datasource' ? styles$h.tabTriggerActive : ''),
2323
+ className: cn(styles$g.tabTrigger, activeTab === 'datasource' ? styles$g.tabTriggerActive : ''),
4040
2324
  onClick: () => handleTypeChange('datasource'),
4041
2325
  role: "tab",
4042
2326
  type: "button"
4043
2327
  }, /*#__PURE__*/React.createElement(Database, {
4044
- className: styles$h.tabTriggerIcon
2328
+ className: styles$g.tabTriggerIcon
4045
2329
  }), "\u6570\u636E\u6E90")), /*#__PURE__*/React.createElement("div", {
4046
- className: cn(styles$h.tabContent, activeTab === 'static' ? styles$h.tabContentActive : ''),
2330
+ className: cn(styles$g.tabContent, activeTab === 'static' ? styles$g.tabContentActive : ''),
4047
2331
  role: "tabpanel"
4048
2332
  }, /*#__PURE__*/React.createElement("div", {
4049
- className: styles$h.section
2333
+ className: styles$g.section
4050
2334
  }, /*#__PURE__*/React.createElement("span", {
4051
- className: styles$h.sectionLabel
2335
+ className: styles$g.sectionLabel
4052
2336
  }, "\u503C (", dataType, ")"), renderStaticInput)), /*#__PURE__*/React.createElement("div", {
4053
- className: cn(styles$h.tabContent, activeTab === 'datasource' ? styles$h.tabContentActive : ''),
2337
+ className: cn(styles$g.tabContent, activeTab === 'datasource' ? styles$g.tabContentActive : ''),
4054
2338
  role: "tabpanel"
4055
2339
  }, /*#__PURE__*/React.createElement("div", {
4056
- className: styles$h.section
2340
+ className: styles$g.section
4057
2341
  }, /*#__PURE__*/React.createElement("span", {
4058
- className: styles$h.sectionLabel
2342
+ className: styles$g.sectionLabel
4059
2343
  }, "\u6570\u636E\u6E90"), dataSources.length > 0 ? /*#__PURE__*/React.createElement("div", {
4060
- className: styles$h.datasourceList
2344
+ className: styles$g.datasourceList
4061
2345
  }, dataSources.map(ds => /*#__PURE__*/React.createElement("button", {
4062
- className: cn(styles$h.datasourceButton, currentValue.datasourceId === ds.id ? styles$h.datasourceButtonActive : ''),
2346
+ className: cn(styles$g.datasourceButton, currentValue.datasourceId === ds.id ? styles$g.datasourceButtonActive : ''),
4063
2347
  key: ds.id,
4064
2348
  onClick: () => handleDatasourceChange(ds.id),
4065
2349
  type: "button"
4066
2350
  }, /*#__PURE__*/React.createElement(Database, {
4067
- className: styles$h.datasourceIcon
2351
+ className: styles$g.datasourceIcon
4068
2352
  }), ds.name))) : /*#__PURE__*/React.createElement("div", {
4069
- className: styles$h.emptyState
2353
+ className: styles$g.emptyState
4070
2354
  }, "\u6682\u65E0\u53EF\u7528\u6570\u636E\u6E90"), currentValue.datasourceId ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
4071
- className: styles$h.sectionLabel
2355
+ className: styles$g.sectionLabel
4072
2356
  }, "\u6570\u636E\u8DEF\u5F84"), /*#__PURE__*/React.createElement("input", {
4073
- className: cn(styles$h.input, styles$h.inputMono),
2357
+ className: cn(styles$g.input, styles$g.inputMono),
4074
2358
  onChange: e => handlePathChange(e.target.value),
4075
2359
  placeholder: "data.list[0].name",
4076
2360
  type: "text",
4077
2361
  value: currentValue.datasourcePath ?? ''
4078
2362
  }), /*#__PURE__*/React.createElement("span", {
4079
- className: styles$h.hint
2363
+ className: styles$g.hint
4080
2364
  }, "\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
2365
+ className: styles$g.sectionLabel
4082
2366
  }, "\u6570\u636E\u9884\u89C8"), /*#__PURE__*/React.createElement("div", {
4083
- className: styles$h.preview
2367
+ className: styles$g.preview
4084
2368
  }, "\u7ED1\u5B9A\u540E\u53EF\u5728\u9884\u89C8\u6A21\u5F0F\u67E5\u770B\u6570\u636E")) : null))));
4085
2369
  };
4086
2370
 
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"};
2371
+ 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
2372
 
4089
- const defaultValue$2 = {
2373
+ const defaultValue$1 = {
4090
2374
  mappings: []
4091
2375
  };
4092
2376
  const DataMappingSetter = props => {
@@ -4097,22 +2381,8 @@
4097
2381
  targetFields,
4098
2382
  sourceFields = []
4099
2383
  } = props;
4100
- const currentValue = value ?? initialValue ?? defaultValue$2;
2384
+ const currentValue = value ?? initialValue ?? defaultValue$1;
4101
2385
  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
2386
 
4117
2387
  // 获取字段的映射
4118
2388
  const getMapping = React$1.useCallback(targetField => currentValue.mappings.find(m => m.targetField === targetField), [currentValue.mappings]);
@@ -4148,47 +2418,47 @@
4148
2418
 
4149
2419
  // 统计已映射字段数
4150
2420
  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 : '')
2421
+ return /*#__PURE__*/React.createElement(Popover, {
2422
+ onClose: () => setOpen(false),
2423
+ open: open,
2424
+ trigger: /*#__PURE__*/React.createElement("button", {
2425
+ "aria-label": "Data mapping",
2426
+ className: styles$f.trigger,
2427
+ onClick: () => setOpen(true),
2428
+ type: "button"
2429
+ }, /*#__PURE__*/React.createElement(Settings2, {
2430
+ className: styles$f.triggerIcon
2431
+ }), /*#__PURE__*/React.createElement("span", {
2432
+ className: styles$f.triggerText
2433
+ }, "\u5B57\u6BB5\u6620\u5C04 (", mappedCount, "/", targetFields.length, ")")),
2434
+ width: 320
4165
2435
  }, /*#__PURE__*/React.createElement("div", {
4166
- className: styles$g.content
2436
+ className: styles$f.popoverContent
4167
2437
  }, /*#__PURE__*/React.createElement("div", {
4168
- className: styles$g.header
2438
+ className: styles$f.header
4169
2439
  }, /*#__PURE__*/React.createElement("span", {
4170
- className: styles$g.headerTitle
2440
+ className: styles$f.headerTitle
4171
2441
  }, "\u5B57\u6BB5\u6620\u5C04\u914D\u7F6E"), /*#__PURE__*/React.createElement("span", {
4172
- className: styles$g.headerCount
2442
+ className: styles$f.headerCount
4173
2443
  }, mappedCount, "/", targetFields.length, " \u5DF2\u6620\u5C04")), /*#__PURE__*/React.createElement("div", {
4174
- className: styles$g.mappingList
2444
+ className: styles$f.mappingList
4175
2445
  }, targetFields.map(field => {
4176
2446
  const mapping = getMapping(field.name);
4177
2447
  return /*#__PURE__*/React.createElement("div", {
4178
- className: styles$g.mappingItem,
2448
+ className: styles$f.mappingItem,
4179
2449
  key: field.name
4180
2450
  }, /*#__PURE__*/React.createElement("div", {
4181
- className: styles$g.mappingHeader
2451
+ className: styles$f.mappingHeader
4182
2452
  }, /*#__PURE__*/React.createElement("span", {
4183
- className: styles$g.mappingTitle
2453
+ className: styles$f.mappingTitle
4184
2454
  }, field.label, field.required ? /*#__PURE__*/React.createElement("span", {
4185
- className: styles$g.mappingRequired
2455
+ className: styles$f.mappingRequired
4186
2456
  }, "*") : null), /*#__PURE__*/React.createElement("span", {
4187
- className: styles$g.mappingType
2457
+ className: styles$f.mappingType
4188
2458
  }, field.type)), /*#__PURE__*/React.createElement("div", {
4189
- className: styles$g.mappingRow
2459
+ className: styles$f.mappingRow
4190
2460
  }, sourceFields.length > 0 ? /*#__PURE__*/React.createElement("select", {
4191
- className: styles$g.select,
2461
+ className: styles$f.select,
4192
2462
  onChange: e => updateMapping(field.name, {
4193
2463
  sourceField: e.target.value
4194
2464
  }),
@@ -4199,7 +2469,7 @@
4199
2469
  key: sf,
4200
2470
  value: sf
4201
2471
  }, sf))) : /*#__PURE__*/React.createElement("input", {
4202
- className: styles$g.input,
2472
+ className: styles$f.input,
4203
2473
  onChange: e => updateMapping(field.name, {
4204
2474
  sourceField: e.target.value
4205
2475
  }),
@@ -4207,15 +2477,15 @@
4207
2477
  type: "text",
4208
2478
  value: mapping?.sourceField ?? ''
4209
2479
  }), /*#__PURE__*/React.createElement(ArrowRight, {
4210
- className: styles$g.arrowIcon
2480
+ className: styles$f.arrowIcon
4211
2481
  }), /*#__PURE__*/React.createElement("div", {
4212
- className: styles$g.targetField
2482
+ className: styles$f.targetField
4213
2483
  }, field.name)), mapping?.sourceField ? /*#__PURE__*/React.createElement("div", {
4214
- className: styles$g.transformRow
2484
+ className: styles$f.transformRow
4215
2485
  }, /*#__PURE__*/React.createElement(Code, {
4216
- className: styles$g.transformIcon
2486
+ className: styles$f.transformIcon
4217
2487
  }), /*#__PURE__*/React.createElement("input", {
4218
- className: styles$g.transformInput,
2488
+ className: styles$f.transformInput,
4219
2489
  onChange: e => updateMapping(field.name, {
4220
2490
  transform: e.target.value
4221
2491
  }),
@@ -4223,236 +2493,13 @@
4223
2493
  type: "text",
4224
2494
  value: mapping?.transform ?? ''
4225
2495
  })) : null, mapping?.sourceField ? /*#__PURE__*/React.createElement("button", {
4226
- className: styles$g.clearButton,
2496
+ className: styles$f.clearButton,
4227
2497
  onClick: () => clearMapping(field.name),
4228
2498
  type: "button"
4229
2499
  }, "\u6E05\u9664\u6620\u5C04") : null);
4230
2500
  })), /*#__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));
2501
+ className: styles$f.helpText
2502
+ }, /*#__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
2503
  };
4457
2504
 
4458
2505
  var styles$e = {"container":"es-container-CUmyq","textarea":"es-textarea-hn1hD","textareaError":"es-textareaError-O2GWs","error":"es-error-wjKcS"};
@@ -4735,7 +2782,7 @@
4735
2782
  }, option.label)));
4736
2783
  };
4737
2784
 
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"};
2785
+ 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
2786
 
4740
2787
  const SelectSetter = props => {
4741
2788
  const {
@@ -4746,22 +2793,8 @@
4746
2793
  onChange
4747
2794
  } = props;
4748
2795
  const [open, setOpen] = React$1.useState(false);
4749
- const containerRef = React$1.useRef(null);
4750
2796
  const currentValue = value ?? initialValue ?? '';
4751
2797
  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
2798
  const handleSelect = (optionValue, disabled) => {
4766
2799
  if (disabled) {
4767
2800
  return;
@@ -4769,21 +2802,22 @@
4769
2802
  onChange(optionValue);
4770
2803
  setOpen(false);
4771
2804
  };
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 : ''),
2805
+ return /*#__PURE__*/React.createElement(Popover, {
2806
+ onClose: () => setOpen(false),
2807
+ open: open,
2808
+ trigger: /*#__PURE__*/React.createElement("button", {
2809
+ "aria-expanded": open,
2810
+ "aria-haspopup": "listbox",
2811
+ className: styles$8.trigger,
2812
+ onClick: () => setOpen(true),
2813
+ type: "button"
2814
+ }, /*#__PURE__*/React.createElement("span", {
2815
+ className: cn(styles$8.triggerValue, selectedOption ? '' : styles$8.placeholder)
2816
+ }, selectedOption?.label || placeholder || '请选择'), /*#__PURE__*/React.createElement(ChevronDown, {
2817
+ className: cn(styles$8.chevron, open ? styles$8.chevronOpen : '')
2818
+ }))
2819
+ }, /*#__PURE__*/React.createElement("div", {
2820
+ className: styles$8.dropdown,
4787
2821
  role: "listbox"
4788
2822
  }, options.map(option => /*#__PURE__*/React.createElement("button", {
4789
2823
  "aria-selected": option.value === currentValue,
@@ -5276,7 +3310,6 @@
5276
3310
  TabSetter,
5277
3311
  SpacingSetter,
5278
3312
  AlignSetter,
5279
- IconSetter,
5280
3313
  DataBindingSetter,
5281
3314
  DataMappingSetter,
5282
3315
  SelectSetter,
@@ -5293,11 +3326,11 @@
5293
3326
  exports.ColorSetter = ColorSetter;
5294
3327
  exports.DataBindingSetter = DataBindingSetter;
5295
3328
  exports.DataMappingSetter = DataMappingSetter;
5296
- exports.IconSetter = IconSetter;
5297
3329
  exports.JsonSetter = JsonSetter;
5298
3330
  exports.NodeIdSetter = NodeIdSetter;
5299
3331
  exports.NumberSetter = NumberSetter;
5300
3332
  exports.ObjectSetter = ObjectSetter;
3333
+ exports.Popover = Popover;
5301
3334
  exports.RectSetter = RectSetter;
5302
3335
  exports.SegmentedSetter = SegmentedSetter;
5303
3336
  exports.SelectSetter = SelectSetter;