go-view-worker 0.0.1

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.
Files changed (198) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +221 -0
  3. package/dist/chunks/403-382550a8.js +42 -0
  4. package/dist/chunks/404-3d357d75.js +42 -0
  5. package/dist/chunks/500-96d14fb0.js +43 -0
  6. package/dist/chunks/StylesSetting-952ff564.js +338 -0
  7. package/dist/chunks/chartEditStore-a725b558.js +4975 -0
  8. package/dist/chunks/designStore-fe92c2ba.js +6268 -0
  9. package/dist/chunks/index-00b6339d.js +588 -0
  10. package/dist/chunks/index-0472b3a5.js +173 -0
  11. package/dist/chunks/index-097ae4b0.js +436 -0
  12. package/dist/chunks/index-09e62bb4.js +284 -0
  13. package/dist/chunks/index-1cb69ab6.js +136 -0
  14. package/dist/chunks/index-32d13283.js +26 -0
  15. package/dist/chunks/index-3fd591ea.js +81 -0
  16. package/dist/chunks/index-51458edb.js +143 -0
  17. package/dist/chunks/index-54f304ef.js +89 -0
  18. package/dist/chunks/index-62a7855c.js +51 -0
  19. package/dist/chunks/index-82d00e13.js +300 -0
  20. package/dist/chunks/index-9502bd7e.js +155 -0
  21. package/dist/chunks/index-95c5f0a0.js +1664 -0
  22. package/dist/chunks/index-a410a1d3.js +250 -0
  23. package/dist/chunks/index-da8ddb02.js +13 -0
  24. package/dist/chunks/index-de0a1234.js +482 -0
  25. package/dist/chunks/index-e31a7881.js +32 -0
  26. package/dist/chunks/index-f266153a.js +1985 -0
  27. package/dist/chunks/index-f97e5ffc.js +13 -0
  28. package/dist/chunks/index-fdf7dc1e.js +88 -0
  29. package/dist/chunks/index-fec9f9f8.js +368 -0
  30. package/dist/chunks/index.vue_vue_type_script_setup_true_lang-c6159a17.js +3357 -0
  31. package/dist/chunks/lodash-c80b695e.js +3680 -0
  32. package/dist/chunks/router-106a6abc.js +57 -0
  33. package/dist/chunks/useKeyboard.hook-da88451a.js +341 -0
  34. package/dist/chunks/useSyncUpdate.hook-5517a8ad.js +40 -0
  35. package/dist/chunks/useTargetData.hook-28a7e43b.js +12 -0
  36. package/dist/chunks/wrapper-4c15ca94.js +28 -0
  37. package/dist/favicon.ico +0 -0
  38. package/dist/go-view-worker.js +23 -0
  39. package/dist/init.js +688 -0
  40. package/dist/style.css +7 -0
  41. package/dist/types/packages/index.d.ts +12 -0
  42. package/dist/types/packages/init.d.ts +6 -0
  43. package/dist/types/packages/utils/resize.d.ts +1 -0
  44. package/dist/types/src/components/GoAppProvider/index.d.ts +3 -0
  45. package/dist/types/src/components/GoIconify/index.d.ts +3 -0
  46. package/dist/types/src/components/GoLoading/index.d.ts +5 -0
  47. package/dist/types/src/components/GoReload/index.d.ts +3 -0
  48. package/dist/types/src/components/GoSkeleton/index.d.ts +3 -0
  49. package/dist/types/src/components/GoSystemInfo/index.d.ts +3 -0
  50. package/dist/types/src/components/GoSystemSet/index.d.ts +3 -0
  51. package/dist/types/src/components/GoThemeSelect/index.d.ts +3 -0
  52. package/dist/types/src/components/GoUserInfo/index.d.ts +3 -0
  53. package/dist/types/src/components/Pages/ChartGlobImage/index.d.ts +3 -0
  54. package/dist/types/src/components/Pages/ChartItemSetting/index.d.ts +11 -0
  55. package/dist/types/src/components/Pages/Flipper/index.d.ts +4 -0
  56. package/dist/types/src/components/Pages/ThemeColorSelect/index.d.ts +3 -0
  57. package/dist/types/src/components/Pages/VChartItemSetting/index.d.ts +8 -0
  58. package/dist/types/src/components/Plugins/DialogContent/index.d.ts +3 -0
  59. package/dist/types/src/components/Plugins/LoadingContent/index.d.ts +3 -0
  60. package/dist/types/src/components/Plugins/MessageContent/index.d.ts +3 -0
  61. package/dist/types/src/components/Tips/MacOsControlBtn/index.d.ts +3 -0
  62. package/dist/types/src/directives/index.d.ts +2 -0
  63. package/dist/types/src/enums/editPageEnum.d.ts +55 -0
  64. package/dist/types/src/enums/eventEnum.d.ts +32 -0
  65. package/dist/types/src/enums/fileTypeEnum.d.ts +7 -0
  66. package/dist/types/src/enums/httpEnum.d.ts +96 -0
  67. package/dist/types/src/enums/pageEnum.d.ts +34 -0
  68. package/dist/types/src/enums/pluginEnum.d.ts +6 -0
  69. package/dist/types/src/enums/storageEnum.d.ts +10 -0
  70. package/dist/types/src/enums/styleEnum.d.ts +14 -0
  71. package/dist/types/src/hooks/index.d.ts +6 -0
  72. package/dist/types/src/hooks/useCanvasInitOptions.hook.d.ts +8 -0
  73. package/dist/types/src/hooks/useChartDataPondFetch.hook.d.ts +8 -0
  74. package/dist/types/src/hooks/useChartInteract.hook.d.ts +9 -0
  75. package/dist/types/src/hooks/useLang.hook.d.ts +126 -0
  76. package/dist/types/src/hooks/useLifeHandler.hook.d.ts +10 -0
  77. package/dist/types/src/hooks/usePreviewScale.hook.d.ts +32 -0
  78. package/dist/types/src/hooks/useTheme.hook.d.ts +7 -0
  79. package/dist/types/src/layout/components/LayoutFooter/index.d.ts +3 -0
  80. package/dist/types/src/layout/components/LayoutHeader/index.d.ts +3 -0
  81. package/dist/types/src/layout/components/LayoutHeaderPro/index.d.ts +3 -0
  82. package/dist/types/src/layout/components/LayoutMain/index.d.ts +3 -0
  83. package/dist/types/src/layout/components/LayoutTransitionMain/index.d.ts +3 -0
  84. package/dist/types/src/main.d.ts +1 -0
  85. package/dist/types/src/packages/chartConfiguration/echarts/axis.d.ts +24 -0
  86. package/dist/types/src/packages/chartConfiguration/echarts/index.d.ts +4 -0
  87. package/dist/types/src/packages/chartConfiguration/echarts/label.d.ts +10 -0
  88. package/dist/types/src/packages/chartConfiguration/echarts/legend.d.ts +18 -0
  89. package/dist/types/src/packages/chartConfiguration/echarts/line.d.ts +8 -0
  90. package/dist/types/src/packages/chartConfiguration/vcharts/index.d.ts +3 -0
  91. package/dist/types/src/packages/chartConfiguration/vcharts/label.d.ts +14 -0
  92. package/dist/types/src/packages/chartConfiguration/vcharts/legends.d.ts +27 -0
  93. package/dist/types/src/packages/chartConfiguration/vcharts/style.d.ts +18 -0
  94. package/dist/types/src/packages/components/Charts/Bars/BarCommon/config.d.ts +63 -0
  95. package/dist/types/src/packages/components/Charts/Bars/BarCommon/index.d.ts +3 -0
  96. package/dist/types/src/packages/components/Charts/Bars/index.d.ts +2 -0
  97. package/dist/types/src/packages/components/Charts/index.d.ts +8 -0
  98. package/dist/types/src/packages/components/Photos/Private/index.d.ts +17 -0
  99. package/dist/types/src/packages/components/Photos/Share/index.d.ts +14 -0
  100. package/dist/types/src/packages/components/Photos/index.d.ts +9 -0
  101. package/dist/types/src/packages/index.d.ts +214 -0
  102. package/dist/types/src/packages/public/index.d.ts +2 -0
  103. package/dist/types/src/packages/public/publicConfig.d.ts +81 -0
  104. package/dist/types/src/packages/public/vChart.d.ts +14 -0
  105. package/dist/types/src/plugins/customComponents.d.ts +7 -0
  106. package/dist/types/src/plugins/directives.d.ts +7 -0
  107. package/dist/types/src/plugins/icon.d.ts +111 -0
  108. package/dist/types/src/plugins/index.d.ts +5 -0
  109. package/dist/types/src/plugins/initFunction.d.ts +4 -0
  110. package/dist/types/src/plugins/naive.d.ts +3 -0
  111. package/dist/types/src/router/base.d.ts +7 -0
  112. package/dist/types/src/router/constant.d.ts +5 -0
  113. package/dist/types/src/router/index.d.ts +6 -0
  114. package/dist/types/src/router/modules/chart.route.d.ts +4 -0
  115. package/dist/types/src/router/modules/index.d.ts +5 -0
  116. package/dist/types/src/router/modules/preview.route.d.ts +4 -0
  117. package/dist/types/src/router/router-guards.d.ts +3 -0
  118. package/dist/types/src/router/types.d.ts +26 -0
  119. package/dist/types/src/settings/animations/index.d.ts +7 -0
  120. package/dist/types/src/settings/chartThemes/index.d.ts +195 -0
  121. package/dist/types/src/settings/designSetting.d.ts +33 -0
  122. package/dist/types/src/settings/pathConst.d.ts +3 -0
  123. package/dist/types/src/settings/systemSetting.d.ts +11 -0
  124. package/dist/types/src/settings/vchartThemes/index.d.ts +139 -0
  125. package/dist/types/src/store/index.d.ts +5 -0
  126. package/dist/types/src/store/modules/chartEditStore/chartEditStore.d.ts +215 -0
  127. package/dist/types/src/store/modules/chartHistoryStore/chartHistoryDefine.d.ts +20 -0
  128. package/dist/types/src/store/modules/chartHistoryStore/chartHistoryStore.d.ts +79 -0
  129. package/dist/types/src/store/modules/chartLayoutStore/chartLayoutStore.d.ts +36 -0
  130. package/dist/types/src/store/modules/designStore/designStore.d.ts +20 -0
  131. package/dist/types/src/store/modules/globalConfigStore/globalConfigStore.d.ts +183 -0
  132. package/dist/types/src/store/modules/langStore/langStore.d.ts +6 -0
  133. package/dist/types/src/store/modules/packagesStore/packagesStore.d.ts +10 -0
  134. package/dist/types/src/store/modules/settingStore/settingStore.d.ts +31 -0
  135. package/dist/types/src/utils/components.d.ts +13 -0
  136. package/dist/types/src/utils/file.d.ts +19 -0
  137. package/dist/types/src/utils/index.d.ts +8 -0
  138. package/dist/types/src/utils/plugin.d.ts +30 -0
  139. package/dist/types/src/utils/router.d.ts +77 -0
  140. package/dist/types/src/utils/storage.d.ts +35 -0
  141. package/dist/types/src/utils/style.d.ts +154 -0
  142. package/dist/types/src/utils/type.d.ts +8 -0
  143. package/dist/types/src/utils/utils.d.ts +128 -0
  144. package/dist/types/src/views/chart/ContentBox/index.d.ts +3 -0
  145. package/dist/types/src/views/chart/ContentCharts/components/ChartsItemBox/index.d.ts +3 -0
  146. package/dist/types/src/views/chart/ContentCharts/components/ChartsOptionContent/index.d.ts +3 -0
  147. package/dist/types/src/views/chart/ContentCharts/components/ChartsSearch/index.d.ts +3 -0
  148. package/dist/types/src/views/chart/ContentCharts/hooks/useAside.hook.d.ts +11 -0
  149. package/dist/types/src/views/chart/ContentCharts/hooks/useLayout.hook.d.ts +10 -0
  150. package/dist/types/src/views/chart/ContentCharts/index.d.ts +3 -0
  151. package/dist/types/src/views/chart/ContentConfigurations/components/CanvasPage/components/CreateColorRender/index.d.ts +3 -0
  152. package/dist/types/src/views/chart/ContentConfigurations/components/CanvasPage/components/CreateColorRenderChart/barOptions.d.ts +2 -0
  153. package/dist/types/src/views/chart/ContentConfigurations/components/CanvasPage/components/CreateColorRenderChart/index.d.ts +3 -0
  154. package/dist/types/src/views/chart/ContentConfigurations/components/CanvasPage/components/CreateColorRenderChart/lineOptions.d.ts +2 -0
  155. package/dist/types/src/views/chart/ContentConfigurations/components/CanvasPage/index.d.ts +3 -0
  156. package/dist/types/src/views/chart/ContentConfigurations/components/hooks/useTargetData.hook.d.ts +57 -0
  157. package/dist/types/src/views/chart/ContentConfigurations/index.d.ts +3 -0
  158. package/dist/types/src/views/chart/ContentEdit/components/EditAlignLine/index.d.ts +3 -0
  159. package/dist/types/src/views/chart/ContentEdit/components/EditBottom/index.d.ts +3 -0
  160. package/dist/types/src/views/chart/ContentEdit/components/EditGroup/index.d.ts +3 -0
  161. package/dist/types/src/views/chart/ContentEdit/components/EditHistory/index.d.ts +3 -0
  162. package/dist/types/src/views/chart/ContentEdit/components/EditRange/index.d.ts +3 -0
  163. package/dist/types/src/views/chart/ContentEdit/components/EditRule/index.d.ts +3 -0
  164. package/dist/types/src/views/chart/ContentEdit/components/EditSelect/index.d.ts +3 -0
  165. package/dist/types/src/views/chart/ContentEdit/components/EditShapeBox/index.d.ts +3 -0
  166. package/dist/types/src/views/chart/ContentEdit/components/EditShortcutKey/index.d.ts +3 -0
  167. package/dist/types/src/views/chart/ContentEdit/components/EditTools/hooks/useFile.hooks.d.ts +9 -0
  168. package/dist/types/src/views/chart/ContentEdit/components/EditTools/hooks/useSyncUpdate.hook.d.ts +3 -0
  169. package/dist/types/src/views/chart/ContentEdit/components/EditTools/index.d.ts +3 -0
  170. package/dist/types/src/views/chart/ContentEdit/components/EditTools/utils/index.d.ts +1 -0
  171. package/dist/types/src/views/chart/ContentEdit/components/EditWatermark/index.d.ts +3 -0
  172. package/dist/types/src/views/chart/ContentEdit/hooks/useDrag.hook.d.ts +13 -0
  173. package/dist/types/src/views/chart/ContentEdit/hooks/useLayout.hook.d.ts +1 -0
  174. package/dist/types/src/views/chart/ContentEdit/hooks/useStyle.hook.d.ts +17 -0
  175. package/dist/types/src/views/chart/ContentEdit/index.d.ts +3 -0
  176. package/dist/types/src/views/chart/ContentHeader/headerLeftBtn/index.d.ts +3 -0
  177. package/dist/types/src/views/chart/ContentHeader/headerRightBtn/index.d.ts +3 -0
  178. package/dist/types/src/views/chart/ContentHeader/headerTitle/index.d.ts +3 -0
  179. package/dist/types/src/views/chart/ContentLayers/components/LayersGroupListItem/index.d.ts +3 -0
  180. package/dist/types/src/views/chart/ContentLayers/components/LayersListItem/index.d.ts +3 -0
  181. package/dist/types/src/views/chart/ContentLayers/components/LayersStatus/index.d.ts +3 -0
  182. package/dist/types/src/views/chart/ContentLayers/enums.d.ts +0 -0
  183. package/dist/types/src/views/chart/ContentLayers/index.d.ts +3 -0
  184. package/dist/types/src/views/chart/ContentLoad/index.d.ts +3 -0
  185. package/dist/types/src/views/chart/hooks/useContextMenu.hook.d.ts +12 -0
  186. package/dist/types/src/views/chart/hooks/useKeyboard.hook.d.ts +38 -0
  187. package/dist/types/src/views/chart/hooks/useSync.hook.d.ts +5 -0
  188. package/dist/types/src/views/preview/components/PreviewRenderGroup/index.d.ts +3 -0
  189. package/dist/types/src/views/preview/components/PreviewRenderList/index.d.ts +3 -0
  190. package/dist/types/src/views/preview/hooks/useComInstall.hook.d.ts +5 -0
  191. package/dist/types/src/views/preview/hooks/useScale.hook.d.ts +17 -0
  192. package/dist/types/src/views/preview/hooks/useStore.hook.d.ts +3 -0
  193. package/dist/types/src/views/preview/utils/drag.d.ts +1 -0
  194. package/dist/types/src/views/preview/utils/index.d.ts +4 -0
  195. package/dist/types/src/views/preview/utils/keyboard.d.ts +1 -0
  196. package/dist/types/src/views/preview/utils/storage.d.ts +6 -0
  197. package/dist/types/src/views/preview/utils/style.d.ts +26 -0
  198. package/package.json +99 -0
@@ -0,0 +1,4975 @@
1
+ var X = Object.defineProperty;
2
+ var Z = (t, e, o) => e in t ? X(t, e, { enumerable: !0, configurable: !0, writable: !0, value: o }) : t[e] = o;
3
+ var v = (t, e, o) => (Z(t, typeof e != "symbol" ? e + "" : e, o), o);
4
+ import { defineComponent as r, openBlock as l, createBlock as c, createVNode as n, createElementBlock as u, createElementVNode as i, toRaw as J } from "vue";
5
+ import { defineStore as U } from "pinia";
6
+ import { w as Q, T as tt, C as et, U as ot, V as nt, g as rt, W as lt, s as st, S as ct, X as it, Y as at, Z as ht, $ as dt, a0 as ut, a1 as wt, x as N, a2 as _t, a3 as gt, a4 as pt, a5 as xt, a6 as vt, M as y, a7 as ft } from "./designStore-fe92c2ba.js";
7
+ import "vue-router";
8
+ import "naive-ui";
9
+ function P(t) {
10
+ return typeof t == "string";
11
+ }
12
+ function R(t) {
13
+ return Array.isArray(t);
14
+ }
15
+ var kt = tt, Ct = 1, mt = 4;
16
+ function $t(t) {
17
+ return kt(t, Ct | mt);
18
+ }
19
+ var Mt = $t;
20
+ const B = /* @__PURE__ */ Q(Mt), Lt = [
21
+ "#5470c6",
22
+ "#91cc75",
23
+ "#fac858",
24
+ "#ee6666",
25
+ "#73c0de",
26
+ "#3ba272",
27
+ "#fc8452",
28
+ "#9a60b4",
29
+ "#ea7ccc"
30
+ ], zt = "暗淡", At = {
31
+ color: Lt,
32
+ name: zt
33
+ }, St = [
34
+ "#4992ff",
35
+ "#7cffb2",
36
+ "#fddd60",
37
+ "#ff6e76",
38
+ "#58d9f9",
39
+ "#05c091",
40
+ "#ff8a45",
41
+ "#8d48e3",
42
+ "#dd79ff"
43
+ ], It = "明亮", Tt = {
44
+ color: St,
45
+ name: It
46
+ }, Ht = [
47
+ "#fc97af",
48
+ "#87f7cf",
49
+ "#f7f494",
50
+ "#72ccff",
51
+ "#f7c5a0",
52
+ "#d4a4eb",
53
+ "#d2f5a6",
54
+ "#76f2f2"
55
+ ], Ot = "粉青", Bt = {
56
+ color: Ht,
57
+ name: Ot
58
+ }, bt = [
59
+ "#893448",
60
+ "#d95850",
61
+ "#eb8146",
62
+ "#ffb248",
63
+ "#f2d643",
64
+ "#ebdba4"
65
+ ], Dt = "橘红", Vt = {
66
+ color: bt,
67
+ name: Dt
68
+ }, yt = [
69
+ "#2ec7c9",
70
+ "#b6a2de",
71
+ "#5ab1ef",
72
+ "#ffb980",
73
+ "#d87a80",
74
+ "#8d98b3",
75
+ "#e5cf0d",
76
+ "#97b552",
77
+ "#95706d",
78
+ "#dc69aa",
79
+ "#07a2a4",
80
+ "#9a7fd1",
81
+ "#588dd5",
82
+ "#f5994e",
83
+ "#c05050",
84
+ "#59678c",
85
+ "#c9ab00",
86
+ "#7eb00a",
87
+ "#6f5553",
88
+ "#c14089"
89
+ ], Rt = "马卡龙", Et = {
90
+ color: yt,
91
+ name: Rt
92
+ }, Nt = [
93
+ "#9b8bba",
94
+ "#e098c7",
95
+ "#8fd3e8",
96
+ "#71669e",
97
+ "#cc70af",
98
+ "#7cb4cc"
99
+ ], Pt = "深紫", Gt = {
100
+ color: Nt,
101
+ name: Pt
102
+ }, Ut = [
103
+ "#e01f54",
104
+ "#5e4ea5",
105
+ "#f5e8c8",
106
+ "#b8d2c7",
107
+ "#c6b38e",
108
+ "#a4d8c2",
109
+ "#f3d999",
110
+ "#d3758f",
111
+ "#dcc392",
112
+ "#2e4783",
113
+ "#82b6e9",
114
+ "#ff6347",
115
+ "#a092f1",
116
+ "#0a915d",
117
+ "#eaf889",
118
+ "#6699FF",
119
+ "#ff6666",
120
+ "#3cb371",
121
+ "#d5b158",
122
+ "#38b6b6"
123
+ ], jt = "罗马红", Ft = {
124
+ color: Ut,
125
+ name: jt
126
+ }, qt = [
127
+ "#c12e34",
128
+ "#e6b600",
129
+ "#0098d9",
130
+ "#2b821d",
131
+ "#005eaa",
132
+ "#339ca8",
133
+ "#cda819",
134
+ "#32a487"
135
+ ], Wt = "深色", Yt = {
136
+ color: qt,
137
+ name: Wt
138
+ }, Kt = [
139
+ "#d87c7c",
140
+ "#919e8b",
141
+ "#d7ab82",
142
+ "#6e7074",
143
+ "#61a0a8",
144
+ "#efa18d",
145
+ "#787464",
146
+ "#cc7e63",
147
+ "#724e58",
148
+ "#4b565b"
149
+ ], Xt = "复古", Zt = {
150
+ color: Kt,
151
+ name: Xt
152
+ }, Jt = [
153
+ "#3fb1e3",
154
+ "#6be6c1",
155
+ "#626c91",
156
+ "#a0a7e6",
157
+ "#c4ebad",
158
+ "#96dee8"
159
+ ], Qt = "蓝绿", t0 = {
160
+ color: Jt,
161
+ name: Qt
162
+ }, e0 = [
163
+ "#516b91",
164
+ "#59c4e6",
165
+ "#edafda",
166
+ "#93b7e3",
167
+ "#a5e7f0",
168
+ "#cbb0e3"
169
+ ], o0 = "灰粉", n0 = {
170
+ color: e0,
171
+ name: o0
172
+ }, r0 = [
173
+ "#4ea397",
174
+ "#22c3aa",
175
+ "#7bd9a5",
176
+ "#d0648a",
177
+ "#f58db2",
178
+ "#f2b3c9"
179
+ ], l0 = "青草", s0 = {
180
+ color: r0,
181
+ name: l0
182
+ }, c0 = {
183
+ show: !0,
184
+ textStyle: {
185
+ color: "#BFBFBF",
186
+ fontSize: 18
187
+ },
188
+ subtextStyle: {
189
+ color: "#A2A2A2",
190
+ fontSize: 14
191
+ }
192
+ }, i0 = {
193
+ show: !0,
194
+ name: "",
195
+ nameGap: 15,
196
+ nameTextStyle: {
197
+ color: "#B9B8CE",
198
+ fontSize: 12
199
+ },
200
+ inverse: !1,
201
+ axisLabel: {
202
+ show: !0,
203
+ fontSize: 12,
204
+ color: "#B9B8CE",
205
+ rotate: 0
206
+ },
207
+ position: "bottom",
208
+ axisLine: {
209
+ show: !0,
210
+ lineStyle: {
211
+ color: "#B9B8CE",
212
+ width: 1
213
+ },
214
+ onZero: !0
215
+ },
216
+ axisTick: {
217
+ show: !0,
218
+ length: 5
219
+ },
220
+ splitLine: {
221
+ show: !1,
222
+ lineStyle: {
223
+ color: "#484753",
224
+ width: 1,
225
+ type: "solid"
226
+ }
227
+ }
228
+ }, a0 = {
229
+ show: !0,
230
+ name: "",
231
+ nameGap: 15,
232
+ nameTextStyle: {
233
+ color: "#B9B8CE",
234
+ fontSize: 12
235
+ },
236
+ inverse: !1,
237
+ axisLabel: {
238
+ show: !0,
239
+ fontSize: 12,
240
+ color: "#B9B8CE",
241
+ rotate: 0
242
+ },
243
+ position: "left",
244
+ axisLine: {
245
+ show: !0,
246
+ lineStyle: {
247
+ color: "#B9B8CE",
248
+ width: 1
249
+ },
250
+ onZero: !0
251
+ },
252
+ axisTick: {
253
+ show: !0,
254
+ length: 5
255
+ },
256
+ splitLine: {
257
+ show: !0,
258
+ lineStyle: {
259
+ color: "#484753",
260
+ width: 1,
261
+ type: "solid"
262
+ }
263
+ }
264
+ }, h0 = {
265
+ show: !0,
266
+ type: "scroll",
267
+ x: "center",
268
+ y: "top",
269
+ icon: "circle",
270
+ orient: "horizontal",
271
+ textStyle: {
272
+ color: "#B9B8CE",
273
+ fontSize: 18
274
+ },
275
+ itemHeight: 15,
276
+ itemWidth: 15,
277
+ pageTextStyle: {
278
+ color: "#B9B8CE"
279
+ }
280
+ }, d0 = {
281
+ show: !1,
282
+ left: "10%",
283
+ top: "60",
284
+ right: "10%",
285
+ bottom: "60"
286
+ }, u0 = {
287
+ title: c0,
288
+ xAxis: i0,
289
+ yAxis: a0,
290
+ legend: h0,
291
+ grid: d0
292
+ }, M3 = {
293
+ dark: Tt,
294
+ customed: At,
295
+ macarons: Et,
296
+ walden: t0,
297
+ purplePassion: Gt,
298
+ vintage: Zt,
299
+ chalk: Bt,
300
+ westeros: n0,
301
+ wonderland: s0,
302
+ essos: Vt,
303
+ shine: Yt,
304
+ roma: Ft
305
+ }, w0 = "dark", L3 = ["#232324", "#2a2a2b", "#313132", "#373739", "#757575", "#e0e0e0", "#eeeeee", "#fafafa"], _0 = { ...u0, dataset: null, renderer: "svg" }, g0 = {
306
+ xmlns: "http://www.w3.org/2000/svg",
307
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
308
+ viewBox: "0 0 512 512"
309
+ }, p0 = /* @__PURE__ */ n(
310
+ "path",
311
+ {
312
+ fill: "none",
313
+ stroke: "currentColor",
314
+ "stroke-linecap": "round",
315
+ "stroke-linejoin": "round",
316
+ "stroke-width": "32",
317
+ d: "M256 112v288"
318
+ },
319
+ null,
320
+ -1
321
+ /* HOISTED */
322
+ ), x0 = /* @__PURE__ */ n(
323
+ "path",
324
+ {
325
+ fill: "none",
326
+ stroke: "currentColor",
327
+ "stroke-linecap": "round",
328
+ "stroke-linejoin": "round",
329
+ "stroke-width": "32",
330
+ d: "M400 256H112"
331
+ },
332
+ null,
333
+ -1
334
+ /* HOISTED */
335
+ ), v0 = r({
336
+ name: "Add",
337
+ render: function(e, o) {
338
+ return l(), c("svg", g0, [p0, x0]);
339
+ }
340
+ }), f0 = {
341
+ xmlns: "http://www.w3.org/2000/svg",
342
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
343
+ viewBox: "0 0 512 512"
344
+ }, k0 = /* @__PURE__ */ n(
345
+ "path",
346
+ {
347
+ d: "M407.72 224c-3.4 0-14.79.1-18 .3l-64.9 1.7a1.83 1.83 0 0 1-1.69-.9L193.55 67.56a9 9 0 0 0-6.66-3.56H160l73 161a2.35 2.35 0 0 1-2.26 3.35l-121.69 1.8a8.06 8.06 0 0 1-6.6-3.1l-37-45c-3-3.9-8.62-6-13.51-6H33.08c-1.29 0-1.1 1.21-.75 2.43l19.84 71.42a16.3 16.3 0 0 1 0 11.9L32.31 333c-.59 1.95-.52 3 1.77 3H52c8.14 0 9.25-1.06 13.41-6.3l37.7-45.7a8.19 8.19 0 0 1 6.6-3.1l120.68 2.7a2.7 2.7 0 0 1 2.43 3.74L160 448h26.64a9 9 0 0 0 6.65-3.55L323.14 287c.39-.6 2-.9 2.69-.9l63.9 1.7c3.3.2 14.59.3 18 .3C452 288.1 480 275.93 480 256s-27.88-32-72.28-32z",
348
+ fill: "none",
349
+ stroke: "currentColor",
350
+ "stroke-linecap": "round",
351
+ "stroke-linejoin": "round",
352
+ "stroke-width": "32"
353
+ },
354
+ null,
355
+ -1
356
+ /* HOISTED */
357
+ ), C0 = r({
358
+ name: "AirplaneOutline",
359
+ render: function(e, o) {
360
+ return l(), c("svg", f0, [k0]);
361
+ }
362
+ }), m0 = {
363
+ xmlns: "http://www.w3.org/2000/svg",
364
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
365
+ viewBox: "0 0 512 512"
366
+ }, $0 = /* @__PURE__ */ n(
367
+ "path",
368
+ {
369
+ d: "M368 96H144a16 16 0 0 1 0-32h224a16 16 0 0 1 0 32z",
370
+ fill: "currentColor"
371
+ },
372
+ null,
373
+ -1
374
+ /* HOISTED */
375
+ ), M0 = /* @__PURE__ */ n(
376
+ "path",
377
+ {
378
+ d: "M400 144H112a16 16 0 0 1 0-32h288a16 16 0 0 1 0 32z",
379
+ fill: "currentColor"
380
+ },
381
+ null,
382
+ -1
383
+ /* HOISTED */
384
+ ), L0 = /* @__PURE__ */ n(
385
+ "path",
386
+ {
387
+ d: "M419.13 448H92.87A44.92 44.92 0 0 1 48 403.13V204.87A44.92 44.92 0 0 1 92.87 160h326.26A44.92 44.92 0 0 1 464 204.87v198.26A44.92 44.92 0 0 1 419.13 448z",
388
+ fill: "currentColor"
389
+ },
390
+ null,
391
+ -1
392
+ /* HOISTED */
393
+ ), z0 = r({
394
+ name: "Albums",
395
+ render: function(e, o) {
396
+ return l(), c("svg", m0, [$0, M0, L0]);
397
+ }
398
+ }), A0 = {
399
+ xmlns: "http://www.w3.org/2000/svg",
400
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
401
+ viewBox: "0 0 512 512"
402
+ }, S0 = /* @__PURE__ */ n(
403
+ "path",
404
+ {
405
+ d: "M456 128a40 40 0 0 0-37.23 54.6l-84.17 84.17a39.86 39.86 0 0 0-29.2 0l-60.17-60.17a40 40 0 1 0-74.46 0L70.6 306.77a40 40 0 1 0 22.63 22.63L193.4 229.23a39.86 39.86 0 0 0 29.2 0l60.17 60.17a40 40 0 1 0 74.46 0l84.17-84.17A40 40 0 1 0 456 128z",
406
+ fill: "currentColor"
407
+ },
408
+ null,
409
+ -1
410
+ /* HOISTED */
411
+ ), I0 = r({
412
+ name: "Analytics",
413
+ render: function(e, o) {
414
+ return l(), c("svg", A0, [S0]);
415
+ }
416
+ }), T0 = {
417
+ xmlns: "http://www.w3.org/2000/svg",
418
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
419
+ viewBox: "0 0 512 512"
420
+ }, H0 = /* @__PURE__ */ n(
421
+ "path",
422
+ {
423
+ fill: "none",
424
+ stroke: "currentColor",
425
+ "stroke-linecap": "round",
426
+ "stroke-linejoin": "round",
427
+ "stroke-width": "48",
428
+ d: "M244 400L100 256l144-144"
429
+ },
430
+ null,
431
+ -1
432
+ /* HOISTED */
433
+ ), O0 = /* @__PURE__ */ n(
434
+ "path",
435
+ {
436
+ fill: "none",
437
+ stroke: "currentColor",
438
+ "stroke-linecap": "round",
439
+ "stroke-linejoin": "round",
440
+ "stroke-width": "48",
441
+ d: "M120 256h292"
442
+ },
443
+ null,
444
+ -1
445
+ /* HOISTED */
446
+ ), B0 = r({
447
+ name: "ArrowBack",
448
+ render: function(e, o) {
449
+ return l(), c("svg", T0, [H0, O0]);
450
+ }
451
+ }), b0 = {
452
+ xmlns: "http://www.w3.org/2000/svg",
453
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
454
+ viewBox: "0 0 512 512"
455
+ }, D0 = /* @__PURE__ */ n(
456
+ "path",
457
+ {
458
+ fill: "none",
459
+ stroke: "currentColor",
460
+ "stroke-linecap": "round",
461
+ "stroke-linejoin": "round",
462
+ "stroke-width": "48",
463
+ d: "M112 268l144 144l144-144"
464
+ },
465
+ null,
466
+ -1
467
+ /* HOISTED */
468
+ ), V0 = /* @__PURE__ */ n(
469
+ "path",
470
+ {
471
+ fill: "none",
472
+ stroke: "currentColor",
473
+ "stroke-linecap": "round",
474
+ "stroke-linejoin": "round",
475
+ "stroke-width": "48",
476
+ d: "M256 392V100"
477
+ },
478
+ null,
479
+ -1
480
+ /* HOISTED */
481
+ ), y0 = r({
482
+ name: "ArrowDown",
483
+ render: function(e, o) {
484
+ return l(), c("svg", b0, [D0, V0]);
485
+ }
486
+ }), R0 = {
487
+ xmlns: "http://www.w3.org/2000/svg",
488
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
489
+ viewBox: "0 0 512 512"
490
+ }, E0 = /* @__PURE__ */ n(
491
+ "path",
492
+ {
493
+ fill: "none",
494
+ stroke: "currentColor",
495
+ "stroke-linecap": "round",
496
+ "stroke-linejoin": "round",
497
+ "stroke-width": "48",
498
+ d: "M268 112l144 144l-144 144"
499
+ },
500
+ null,
501
+ -1
502
+ /* HOISTED */
503
+ ), N0 = /* @__PURE__ */ n(
504
+ "path",
505
+ {
506
+ fill: "none",
507
+ stroke: "currentColor",
508
+ "stroke-linecap": "round",
509
+ "stroke-linejoin": "round",
510
+ "stroke-width": "48",
511
+ d: "M392 256H100"
512
+ },
513
+ null,
514
+ -1
515
+ /* HOISTED */
516
+ ), P0 = r({
517
+ name: "ArrowForward",
518
+ render: function(e, o) {
519
+ return l(), c("svg", R0, [E0, N0]);
520
+ }
521
+ }), G0 = {
522
+ xmlns: "http://www.w3.org/2000/svg",
523
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
524
+ viewBox: "0 0 512 512"
525
+ }, U0 = /* @__PURE__ */ n(
526
+ "path",
527
+ {
528
+ d: "M480 496H48a32 32 0 0 1-32-32V32a16 16 0 0 1 32 0v432h432a16 16 0 0 1 0 32z",
529
+ fill: "currentColor"
530
+ },
531
+ null,
532
+ -1
533
+ /* HOISTED */
534
+ ), j0 = /* @__PURE__ */ n(
535
+ "path",
536
+ {
537
+ d: "M156 432h-40a36 36 0 0 1-36-36V244a36 36 0 0 1 36-36h40a36 36 0 0 1 36 36v152a36 36 0 0 1-36 36z",
538
+ fill: "currentColor"
539
+ },
540
+ null,
541
+ -1
542
+ /* HOISTED */
543
+ ), F0 = /* @__PURE__ */ n(
544
+ "path",
545
+ {
546
+ d: "M300 432h-40a36 36 0 0 1-36-36V196a36 36 0 0 1 36-36h40a36 36 0 0 1 36 36v200a36 36 0 0 1-36 36z",
547
+ fill: "currentColor"
548
+ },
549
+ null,
550
+ -1
551
+ /* HOISTED */
552
+ ), q0 = /* @__PURE__ */ n(
553
+ "path",
554
+ {
555
+ d: "M443.64 432h-40a36 36 0 0 1-36-36V132a36 36 0 0 1 36-36h40a36 36 0 0 1 36 36v264a36 36 0 0 1-36 36z",
556
+ fill: "currentColor"
557
+ },
558
+ null,
559
+ -1
560
+ /* HOISTED */
561
+ ), W0 = r({
562
+ name: "BarChart",
563
+ render: function(e, o) {
564
+ return l(), c("svg", G0, [U0, j0, F0, q0]);
565
+ }
566
+ }), Y0 = {
567
+ xmlns: "http://www.w3.org/2000/svg",
568
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
569
+ viewBox: "0 0 512 512"
570
+ }, K0 = /* @__PURE__ */ n(
571
+ "rect",
572
+ {
573
+ x: "48",
574
+ y: "64",
575
+ width: "416",
576
+ height: "384",
577
+ rx: "48",
578
+ ry: "48",
579
+ fill: "none",
580
+ stroke: "currentColor",
581
+ "stroke-linejoin": "round",
582
+ "stroke-width": "32"
583
+ },
584
+ null,
585
+ -1
586
+ /* HOISTED */
587
+ ), X0 = /* @__PURE__ */ n(
588
+ "path",
589
+ {
590
+ d: "M397.82 64H114.18C77.69 64 48 94.15 48 131.2V176h16c0-16 16-32 32-32h320c16 0 32 16 32 32h16v-44.8c0-37.05-29.69-67.2-66.18-67.2z",
591
+ fill: "currentColor"
592
+ },
593
+ null,
594
+ -1
595
+ /* HOISTED */
596
+ ), Z0 = r({
597
+ name: "BrowsersOutline",
598
+ render: function(e, o) {
599
+ return l(), c("svg", Y0, [K0, X0]);
600
+ }
601
+ }), J0 = {
602
+ xmlns: "http://www.w3.org/2000/svg",
603
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
604
+ viewBox: "0 0 512 512"
605
+ }, Q0 = /* @__PURE__ */ n(
606
+ "path",
607
+ {
608
+ d: "M32 376a56 56 0 0 0 56 56h336a56 56 0 0 0 56-56V222H32zm66-76a30 30 0 0 1 30-30h48a30 30 0 0 1 30 30v20a30 30 0 0 1-30 30h-48a30 30 0 0 1-30-30z",
609
+ fill: "currentColor"
610
+ },
611
+ null,
612
+ -1
613
+ /* HOISTED */
614
+ ), t1 = /* @__PURE__ */ n(
615
+ "path",
616
+ {
617
+ d: "M424 80H88a56 56 0 0 0-56 56v26h448v-26a56 56 0 0 0-56-56z",
618
+ fill: "currentColor"
619
+ },
620
+ null,
621
+ -1
622
+ /* HOISTED */
623
+ ), e1 = r({
624
+ name: "Card",
625
+ render: function(e, o) {
626
+ return l(), c("svg", J0, [Q0, t1]);
627
+ }
628
+ }), o1 = {
629
+ xmlns: "http://www.w3.org/2000/svg",
630
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
631
+ viewBox: "0 0 512 512"
632
+ }, n1 = /* @__PURE__ */ n(
633
+ "path",
634
+ {
635
+ d: "M408 48H104a72.08 72.08 0 0 0-72 72v192a72.08 72.08 0 0 0 72 72h24v64a16 16 0 0 0 26.25 12.29L245.74 384H408a72.08 72.08 0 0 0 72-72V120a72.08 72.08 0 0 0-72-72zM160 248a32 32 0 1 1 32-32a32 32 0 0 1-32 32zm96 0a32 32 0 1 1 32-32a32 32 0 0 1-32 32zm96 0a32 32 0 1 1 32-32a32 32 0 0 1-32 32z",
636
+ fill: "currentColor"
637
+ },
638
+ null,
639
+ -1
640
+ /* HOISTED */
641
+ ), r1 = r({
642
+ name: "ChatboxEllipses",
643
+ render: function(e, o) {
644
+ return l(), c("svg", o1, [n1]);
645
+ }
646
+ }), l1 = {
647
+ xmlns: "http://www.w3.org/2000/svg",
648
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
649
+ viewBox: "0 0 512 512"
650
+ }, s1 = /* @__PURE__ */ n(
651
+ "path",
652
+ {
653
+ fill: "none",
654
+ stroke: "currentColor",
655
+ "stroke-linecap": "round",
656
+ "stroke-linejoin": "round",
657
+ "stroke-width": "48",
658
+ d: "M328 112L184 256l144 144"
659
+ },
660
+ null,
661
+ -1
662
+ /* HOISTED */
663
+ ), c1 = r({
664
+ name: "ChevronBackOutline",
665
+ render: function(e, o) {
666
+ return l(), c("svg", l1, [s1]);
667
+ }
668
+ }), i1 = {
669
+ xmlns: "http://www.w3.org/2000/svg",
670
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
671
+ viewBox: "0 0 512 512"
672
+ }, a1 = /* @__PURE__ */ n(
673
+ "path",
674
+ {
675
+ fill: "none",
676
+ stroke: "currentColor",
677
+ "stroke-linecap": "round",
678
+ "stroke-linejoin": "round",
679
+ "stroke-width": "48",
680
+ d: "M112 184l144 144l144-144"
681
+ },
682
+ null,
683
+ -1
684
+ /* HOISTED */
685
+ ), h1 = r({
686
+ name: "ChevronDown",
687
+ render: function(e, o) {
688
+ return l(), c("svg", i1, [a1]);
689
+ }
690
+ }), d1 = {
691
+ xmlns: "http://www.w3.org/2000/svg",
692
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
693
+ viewBox: "0 0 512 512"
694
+ }, u1 = /* @__PURE__ */ n(
695
+ "path",
696
+ {
697
+ fill: "none",
698
+ stroke: "currentColor",
699
+ "stroke-linecap": "round",
700
+ "stroke-linejoin": "round",
701
+ "stroke-width": "48",
702
+ d: "M112 184l144 144l144-144"
703
+ },
704
+ null,
705
+ -1
706
+ /* HOISTED */
707
+ ), w1 = r({
708
+ name: "ChevronDownOutline",
709
+ render: function(e, o) {
710
+ return l(), c("svg", d1, [u1]);
711
+ }
712
+ }), _1 = {
713
+ xmlns: "http://www.w3.org/2000/svg",
714
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
715
+ viewBox: "0 0 512 512"
716
+ }, g1 = /* @__PURE__ */ n(
717
+ "path",
718
+ {
719
+ fill: "none",
720
+ stroke: "currentColor",
721
+ "stroke-linecap": "round",
722
+ "stroke-linejoin": "round",
723
+ "stroke-width": "48",
724
+ d: "M184 112l144 144l-144 144"
725
+ },
726
+ null,
727
+ -1
728
+ /* HOISTED */
729
+ ), p1 = r({
730
+ name: "ChevronForward",
731
+ render: function(e, o) {
732
+ return l(), c("svg", _1, [g1]);
733
+ }
734
+ }), x1 = {
735
+ xmlns: "http://www.w3.org/2000/svg",
736
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
737
+ viewBox: "0 0 512 512"
738
+ }, v1 = /* @__PURE__ */ n(
739
+ "path",
740
+ {
741
+ fill: "none",
742
+ stroke: "currentColor",
743
+ "stroke-linecap": "round",
744
+ "stroke-linejoin": "round",
745
+ "stroke-width": "48",
746
+ d: "M112 328l144-144l144 144"
747
+ },
748
+ null,
749
+ -1
750
+ /* HOISTED */
751
+ ), f1 = r({
752
+ name: "ChevronUp",
753
+ render: function(e, o) {
754
+ return l(), c("svg", x1, [v1]);
755
+ }
756
+ }), k1 = {
757
+ xmlns: "http://www.w3.org/2000/svg",
758
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
759
+ viewBox: "0 0 512 512"
760
+ }, C1 = /* @__PURE__ */ n(
761
+ "path",
762
+ {
763
+ fill: "none",
764
+ stroke: "currentColor",
765
+ "stroke-linecap": "round",
766
+ "stroke-linejoin": "round",
767
+ "stroke-width": "48",
768
+ d: "M112 328l144-144l144 144"
769
+ },
770
+ null,
771
+ -1
772
+ /* HOISTED */
773
+ ), m1 = r({
774
+ name: "ChevronUpOutline",
775
+ render: function(e, o) {
776
+ return l(), c("svg", k1, [C1]);
777
+ }
778
+ }), $1 = {
779
+ xmlns: "http://www.w3.org/2000/svg",
780
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
781
+ viewBox: "0 0 512 512"
782
+ }, M1 = /* @__PURE__ */ n(
783
+ "path",
784
+ {
785
+ d: "M336 64h32a48 48 0 0 1 48 48v320a48 48 0 0 1-48 48H144a48 48 0 0 1-48-48V112a48 48 0 0 1 48-48h32",
786
+ fill: "none",
787
+ stroke: "currentColor",
788
+ "stroke-linejoin": "round",
789
+ "stroke-width": "32"
790
+ },
791
+ null,
792
+ -1
793
+ /* HOISTED */
794
+ ), L1 = /* @__PURE__ */ n(
795
+ "rect",
796
+ {
797
+ x: "176",
798
+ y: "32",
799
+ width: "160",
800
+ height: "64",
801
+ rx: "26.13",
802
+ ry: "26.13",
803
+ fill: "none",
804
+ stroke: "currentColor",
805
+ "stroke-linejoin": "round",
806
+ "stroke-width": "32"
807
+ },
808
+ null,
809
+ -1
810
+ /* HOISTED */
811
+ ), z1 = r({
812
+ name: "ClipboardOutline",
813
+ render: function(e, o) {
814
+ return l(), c("svg", $1, [M1, L1]);
815
+ }
816
+ }), A1 = {
817
+ xmlns: "http://www.w3.org/2000/svg",
818
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
819
+ viewBox: "0 0 512 512"
820
+ }, S1 = /* @__PURE__ */ n(
821
+ "path",
822
+ {
823
+ d: "M289.94 256l95-95A24 24 0 0 0 351 127l-95 95l-95-95a24 24 0 0 0-34 34l95 95l-95 95a24 24 0 1 0 34 34l95-95l95 95a24 24 0 0 0 34-34z",
824
+ fill: "currentColor"
825
+ },
826
+ null,
827
+ -1
828
+ /* HOISTED */
829
+ ), I1 = r({
830
+ name: "Close",
831
+ render: function(e, o) {
832
+ return l(), c("svg", A1, [S1]);
833
+ }
834
+ }), T1 = {
835
+ xmlns: "http://www.w3.org/2000/svg",
836
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
837
+ viewBox: "0 0 512 512"
838
+ }, H1 = /* @__PURE__ */ n(
839
+ "path",
840
+ {
841
+ d: "M160 389a20.91 20.91 0 0 1-13.82-5.2l-128-112a21 21 0 0 1 0-31.6l128-112a21 21 0 0 1 27.66 31.61L63.89 256l109.94 96.19A21 21 0 0 1 160 389z",
842
+ fill: "currentColor"
843
+ },
844
+ null,
845
+ -1
846
+ /* HOISTED */
847
+ ), O1 = /* @__PURE__ */ n(
848
+ "path",
849
+ {
850
+ d: "M352 389a21 21 0 0 1-13.84-36.81L448.11 256l-109.94-96.19a21 21 0 0 1 27.66-31.61l128 112a21 21 0 0 1 0 31.6l-128 112A20.89 20.89 0 0 1 352 389z",
851
+ fill: "currentColor"
852
+ },
853
+ null,
854
+ -1
855
+ /* HOISTED */
856
+ ), B1 = /* @__PURE__ */ n(
857
+ "path",
858
+ {
859
+ d: "M208 437a21 21 0 0 1-20.12-27l96-320a21 21 0 1 1 40.23 12l-96 320A21 21 0 0 1 208 437z",
860
+ fill: "currentColor"
861
+ },
862
+ null,
863
+ -1
864
+ /* HOISTED */
865
+ ), b1 = r({
866
+ name: "CodeSlash",
867
+ render: function(e, o) {
868
+ return l(), c("svg", T1, [H1, O1, B1]);
869
+ }
870
+ }), D1 = {
871
+ xmlns: "http://www.w3.org/2000/svg",
872
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
873
+ viewBox: "0 0 512 512"
874
+ }, V1 = /* @__PURE__ */ n(
875
+ "path",
876
+ {
877
+ d: "M441 336.2l-.06-.05c-9.93-9.18-22.78-11.34-32.16-12.92l-.69-.12c-9.05-1.49-10.48-2.5-14.58-6.17c-2.44-2.17-5.35-5.65-5.35-9.94s2.91-7.77 5.34-9.94l30.28-26.87c25.92-22.91 40.2-53.66 40.2-86.59s-14.25-63.68-40.2-86.6c-35.89-31.59-85-49-138.37-49C223.72 48 162 71.37 116 112.11c-43.87 38.77-68 90.71-68 146.24s24.16 107.47 68 146.23c21.75 19.24 47.49 34.18 76.52 44.42a266.17 266.17 0 0 0 86.87 15h1.81c61 0 119.09-20.57 159.39-56.4c9.7-8.56 15.15-20.83 15.34-34.56c.21-14.17-5.37-27.95-14.93-36.84zM112 208a32 32 0 1 1 32 32a32 32 0 0 1-32-32zm40 135a32 32 0 1 1 32-32a32 32 0 0 1-32 32zm40-199a32 32 0 1 1 32 32a32 32 0 0 1-32-32zm64 271a48 48 0 1 1 48-48a48 48 0 0 1-48 48zm72-239a32 32 0 1 1 32-32a32 32 0 0 1-32 32z",
878
+ fill: "currentColor"
879
+ },
880
+ null,
881
+ -1
882
+ /* HOISTED */
883
+ ), y1 = r({
884
+ name: "ColorPalette",
885
+ render: function(e, o) {
886
+ return l(), c("svg", D1, [V1]);
887
+ }
888
+ }), R1 = {
889
+ xmlns: "http://www.w3.org/2000/svg",
890
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
891
+ viewBox: "0 0 512 512"
892
+ }, E1 = /* @__PURE__ */ n(
893
+ "path",
894
+ {
895
+ d: "M96 208H48c-8.8 0-16-7.2-16-16s7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16z",
896
+ fill: "currentColor"
897
+ },
898
+ null,
899
+ -1
900
+ /* HOISTED */
901
+ ), N1 = /* @__PURE__ */ n(
902
+ "path",
903
+ {
904
+ d: "M124.1 140.1c-4.2 0-8.3-1.7-11.3-4.7l-33.9-33.9c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l33.9 33.9c6.3 6.2 6.3 16.4 0 22.6c-3 3-7 4.7-11.3 4.7z",
905
+ fill: "currentColor"
906
+ },
907
+ null,
908
+ -1
909
+ /* HOISTED */
910
+ ), P1 = /* @__PURE__ */ n(
911
+ "path",
912
+ {
913
+ d: "M192 112c-8.8 0-16-7.2-16-16V48c0-8.8 7.2-16 16-16s16 7.2 16 16v48c0 8.8-7.2 16-16 16z",
914
+ fill: "currentColor"
915
+ },
916
+ null,
917
+ -1
918
+ /* HOISTED */
919
+ ), G1 = /* @__PURE__ */ n(
920
+ "path",
921
+ {
922
+ d: "M259.9 140.1c-8.8 0-16-7.2-16-16c0-4.2 1.7-8.3 4.7-11.3l33.9-33.9c6.2-6.2 16.4-6.2 22.6 0c6.2 6.2 6.2 16.4 0 22.6l-33.9 33.9c-3 3-7.1 4.7-11.3 4.7z",
923
+ fill: "currentColor"
924
+ },
925
+ null,
926
+ -1
927
+ /* HOISTED */
928
+ ), U1 = /* @__PURE__ */ n(
929
+ "path",
930
+ {
931
+ d: "M90.2 309.8c-8.8 0-16-7.2-16-16c0-4.2 1.7-8.3 4.7-11.3l33.9-33.9c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-33.9 33.9c-3 3-7.1 4.7-11.3 4.7z",
932
+ fill: "currentColor"
933
+ },
934
+ null,
935
+ -1
936
+ /* HOISTED */
937
+ ), j1 = /* @__PURE__ */ n(
938
+ "path",
939
+ {
940
+ d: "M234.2 167c-18.4-18.7-48.5-19-67.2-.7s-19 48.5-.7 67.2l.7.7l39.5 39.5c3.1 3.1 8.2 3.1 11.3 0l55.9-55.9c3.1-3.1 3.1-8.2 0-11.3L234.2 167z",
941
+ fill: "currentColor"
942
+ },
943
+ null,
944
+ -1
945
+ /* HOISTED */
946
+ ), F1 = /* @__PURE__ */ n(
947
+ "path",
948
+ {
949
+ d: "M457 389.8L307.6 240.4c-3.1-3.1-8.2-3.1-11.3 0l-55.9 55.9c-3.1 3.1-3.1 8.2 0 11.3L389.8 457c18.4 18.7 48.5 19 67.2.7c18.7-18.4 19-48.5.7-67.2c-.2-.2-.4-.5-.7-.7z",
950
+ fill: "currentColor"
951
+ },
952
+ null,
953
+ -1
954
+ /* HOISTED */
955
+ ), q1 = r({
956
+ name: "ColorWand",
957
+ render: function(e, o) {
958
+ return l(), c("svg", R1, [E1, N1, P1, G1, U1, j1, F1]);
959
+ }
960
+ }), W1 = {
961
+ xmlns: "http://www.w3.org/2000/svg",
962
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
963
+ viewBox: "0 0 512 512"
964
+ }, Y1 = /* @__PURE__ */ n(
965
+ "path",
966
+ {
967
+ d: "M503.58 126.2a16.85 16.85 0 0 0-27.07-4.55l-51.15 51.15a11.15 11.15 0 0 1-15.66 0l-22.48-22.48a11.17 11.17 0 0 1 0-15.67l50.88-50.89a16.85 16.85 0 0 0-5.27-27.4c-39.71-17-89.08-7.45-120 23.29c-26.81 26.61-34.83 68-22 113.7a11 11 0 0 1-3.16 11.1L114.77 365.1a56.76 56.76 0 1 0 80.14 80.18L357 272.08a11 11 0 0 1 10.9-3.17c45 12 86 4 112.43-22c15.2-15 25.81-36.17 29.89-59.71c3.83-22.2 1.41-44.44-6.64-61z",
968
+ fill: "currentColor"
969
+ },
970
+ null,
971
+ -1
972
+ /* HOISTED */
973
+ ), K1 = /* @__PURE__ */ n(
974
+ "path",
975
+ {
976
+ d: "M437.33 378.41c-13.94-11.59-43.72-38.4-74.07-66.22l-66.07 70.61c28.24 30 53.8 57.85 65 70.88l.07.08A30 30 0 0 0 383.72 464h1.1a30.11 30.11 0 0 0 21-8.62l.07-.07l33.43-33.37a29.46 29.46 0 0 0-2-43.53z",
977
+ fill: "currentColor"
978
+ },
979
+ null,
980
+ -1
981
+ /* HOISTED */
982
+ ), X1 = /* @__PURE__ */ n(
983
+ "path",
984
+ {
985
+ d: "M118.54 214.55a20.48 20.48 0 0 0-3-10.76a2.76 2.76 0 0 1 2.62-4.22h.06c.84.09 5.33.74 11.7 4.61c4.73 2.87 18.23 12.08 41.73 35.54a34.23 34.23 0 0 0 7.22 22.12l66.23-61.55a33.73 33.73 0 0 0-21.6-9.2a2.65 2.65 0 0 1-.21-.26l-.65-.69l-24.54-33.84a28.45 28.45 0 0 1-4-26.11a35.23 35.23 0 0 1 11.78-16.35c5.69-4.41 18.53-9.72 29.44-10.62a52.92 52.92 0 0 1 15.19.94a65.57 65.57 0 0 1 7.06 2.13a15.46 15.46 0 0 0 2.15.63a16 16 0 0 0 16.38-25.06c-.26-.35-1.32-1.79-2.89-3.73a91.85 91.85 0 0 0-9.6-10.36c-8.15-7.36-29.27-19.77-57-19.77a123.13 123.13 0 0 0-46.3 9c-38.37 15.45-63.47 36.58-75.01 47.79l-.09.09A222.14 222.14 0 0 0 63.7 129.5a27 27 0 0 0-4.7 11.77a7.33 7.33 0 0 1-7.71 6.17H50.2a20.65 20.65 0 0 0-14.59 5.9L6.16 182.05l-.32.32a20.89 20.89 0 0 0-.24 28.72c.19.2.37.39.57.58L53.67 258a21 21 0 0 0 14.65 6a20.65 20.65 0 0 0 14.59-5.9l29.46-28.79a20.51 20.51 0 0 0 6.17-14.76z",
986
+ fill: "currentColor"
987
+ },
988
+ null,
989
+ -1
990
+ /* HOISTED */
991
+ ), Z1 = r({
992
+ name: "Construct",
993
+ render: function(e, o) {
994
+ return l(), c("svg", W1, [Y1, K1, X1]);
995
+ }
996
+ }), J1 = {
997
+ xmlns: "http://www.w3.org/2000/svg",
998
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
999
+ viewBox: "0 0 512 512"
1000
+ }, Q1 = /* @__PURE__ */ n(
1001
+ "rect",
1002
+ {
1003
+ x: "128",
1004
+ y: "128",
1005
+ width: "336",
1006
+ height: "336",
1007
+ rx: "57",
1008
+ ry: "57",
1009
+ fill: "none",
1010
+ stroke: "currentColor",
1011
+ "stroke-linejoin": "round",
1012
+ "stroke-width": "32"
1013
+ },
1014
+ null,
1015
+ -1
1016
+ /* HOISTED */
1017
+ ), t2 = /* @__PURE__ */ n(
1018
+ "path",
1019
+ {
1020
+ d: "M383.5 128l.5-24a56.16 56.16 0 0 0-56-56H112a64.19 64.19 0 0 0-64 64v216a56.16 56.16 0 0 0 56 56h24",
1021
+ fill: "none",
1022
+ stroke: "currentColor",
1023
+ "stroke-linecap": "round",
1024
+ "stroke-linejoin": "round",
1025
+ "stroke-width": "32"
1026
+ },
1027
+ null,
1028
+ -1
1029
+ /* HOISTED */
1030
+ ), e2 = r({
1031
+ name: "CopyOutline",
1032
+ render: function(e, o) {
1033
+ return l(), c("svg", J1, [Q1, t2]);
1034
+ }
1035
+ }), o2 = {
1036
+ xmlns: "http://www.w3.org/2000/svg",
1037
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1038
+ viewBox: "0 0 512 512"
1039
+ }, n2 = /* @__PURE__ */ n(
1040
+ "path",
1041
+ {
1042
+ d: "M459.94 53.25a16.06 16.06 0 0 0-23.22-.56L424.35 65a8 8 0 0 0 0 11.31l11.34 11.32a8 8 0 0 0 11.34 0l12.06-12c6.1-6.09 6.67-16.01.85-22.38z",
1043
+ fill: "currentColor"
1044
+ },
1045
+ null,
1046
+ -1
1047
+ /* HOISTED */
1048
+ ), r2 = /* @__PURE__ */ n(
1049
+ "path",
1050
+ {
1051
+ d: "M399.34 90L218.82 270.2a9 9 0 0 0-2.31 3.93L208.16 299a3.91 3.91 0 0 0 4.86 4.86l24.85-8.35a9 9 0 0 0 3.93-2.31L422 112.66a9 9 0 0 0 0-12.66l-9.95-10a9 9 0 0 0-12.71 0z",
1052
+ fill: "currentColor"
1053
+ },
1054
+ null,
1055
+ -1
1056
+ /* HOISTED */
1057
+ ), l2 = /* @__PURE__ */ n(
1058
+ "path",
1059
+ {
1060
+ d: "M386.34 193.66L264.45 315.79A41.08 41.08 0 0 1 247.58 326l-25.9 8.67a35.92 35.92 0 0 1-44.33-44.33l8.67-25.9a41.08 41.08 0 0 1 10.19-16.87l122.13-121.91a8 8 0 0 0-5.65-13.66H104a56 56 0 0 0-56 56v240a56 56 0 0 0 56 56h240a56 56 0 0 0 56-56V199.31a8 8 0 0 0-13.66-5.65z",
1061
+ fill: "currentColor"
1062
+ },
1063
+ null,
1064
+ -1
1065
+ /* HOISTED */
1066
+ ), s2 = r({
1067
+ name: "Create",
1068
+ render: function(e, o) {
1069
+ return l(), c("svg", o2, [n2, r2, l2]);
1070
+ }
1071
+ }), c2 = {
1072
+ xmlns: "http://www.w3.org/2000/svg",
1073
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1074
+ viewBox: "0 0 512 512"
1075
+ }, i2 = /* @__PURE__ */ n(
1076
+ "path",
1077
+ {
1078
+ d: "M103.48 224a71.64 71.64 0 0 0 44.76-15.66l41.5 16.89l6.82-12.63a39.15 39.15 0 0 1 4.32-6.37l14.22-14.42l-41.17-24.94A72 72 0 1 0 103.48 224zm0-112a40 40 0 1 1-40 40a40 40 0 0 1 40-40z",
1079
+ fill: "currentColor"
1080
+ },
1081
+ null,
1082
+ -1
1083
+ /* HOISTED */
1084
+ ), a2 = /* @__PURE__ */ n(
1085
+ "path",
1086
+ {
1087
+ d: "M480 169l-5.52-12.58c-4.48-10.42-14.74-16-32.78-17.85c-10.12-1-26.95-1.24-49.69 3.81c-20 4.45-122.14 28.2-164.95 58.62c-20.25 14.39-24.06 33.67-27.06 49.16c-2.78 14.14-5 25.31-18 35c-15 11.14-27.27 16.38-33.58 18.6a71.74 71.74 0 1 0 24.79 38zm-224.52 87a16 16 0 1 1 16-16a16 16 0 0 1-16 16zm-152 144a40 40 0 1 1 40-40a40 40 0 0 1-40 40z",
1088
+ fill: "currentColor"
1089
+ },
1090
+ null,
1091
+ -1
1092
+ /* HOISTED */
1093
+ ), h2 = /* @__PURE__ */ n(
1094
+ "path",
1095
+ {
1096
+ d: "M343.79 259.87l-83.74 48.18l27.63 13.08l3.62 1.74C310 331.92 359.74 356 410.53 359c3.89.23 7.47.34 10.78.34C442 359.31 453 354 459.75 350L480 336z",
1097
+ fill: "currentColor"
1098
+ },
1099
+ null,
1100
+ -1
1101
+ /* HOISTED */
1102
+ ), d2 = r({
1103
+ name: "Cut",
1104
+ render: function(e, o) {
1105
+ return l(), c("svg", c2, [i2, a2, h2]);
1106
+ }
1107
+ }), u2 = {
1108
+ xmlns: "http://www.w3.org/2000/svg",
1109
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1110
+ viewBox: "0 0 512 512"
1111
+ }, w2 = /* @__PURE__ */ n(
1112
+ "rect",
1113
+ {
1114
+ x: "32",
1115
+ y: "64",
1116
+ width: "448",
1117
+ height: "320",
1118
+ rx: "32",
1119
+ ry: "32",
1120
+ fill: "none",
1121
+ stroke: "currentColor",
1122
+ "stroke-linejoin": "round",
1123
+ "stroke-width": "32"
1124
+ },
1125
+ null,
1126
+ -1
1127
+ /* HOISTED */
1128
+ ), _2 = /* @__PURE__ */ n(
1129
+ "path",
1130
+ {
1131
+ stroke: "currentColor",
1132
+ "stroke-linecap": "round",
1133
+ "stroke-linejoin": "round",
1134
+ "stroke-width": "32",
1135
+ d: "M304 448l-8-64h-80l-8 64h96z",
1136
+ fill: "currentColor"
1137
+ },
1138
+ null,
1139
+ -1
1140
+ /* HOISTED */
1141
+ ), g2 = /* @__PURE__ */ n(
1142
+ "path",
1143
+ {
1144
+ fill: "none",
1145
+ stroke: "currentColor",
1146
+ "stroke-linecap": "round",
1147
+ "stroke-linejoin": "round",
1148
+ "stroke-width": "32",
1149
+ d: "M368 448H144"
1150
+ },
1151
+ null,
1152
+ -1
1153
+ /* HOISTED */
1154
+ ), p2 = /* @__PURE__ */ n(
1155
+ "path",
1156
+ {
1157
+ d: "M32 304v48a32.09 32.09 0 0 0 32 32h384a32.09 32.09 0 0 0 32-32v-48zm224 64a16 16 0 1 1 16-16a16 16 0 0 1-16 16z",
1158
+ fill: "currentColor"
1159
+ },
1160
+ null,
1161
+ -1
1162
+ /* HOISTED */
1163
+ ), x2 = r({
1164
+ name: "DesktopOutline",
1165
+ render: function(e, o) {
1166
+ return l(), c("svg", u2, [w2, _2, g2, p2]);
1167
+ }
1168
+ }), v2 = {
1169
+ xmlns: "http://www.w3.org/2000/svg",
1170
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1171
+ viewBox: "0 0 512 512"
1172
+ }, f2 = /* @__PURE__ */ n(
1173
+ "path",
1174
+ {
1175
+ d: "M428 224H288a48 48 0 0 1-48-48V36a4 4 0 0 0-4-4h-92a64 64 0 0 0-64 64v320a64 64 0 0 0 64 64h224a64 64 0 0 0 64-64V228a4 4 0 0 0-4-4zm-92 160H176a16 16 0 0 1 0-32h160a16 16 0 0 1 0 32zm0-80H176a16 16 0 0 1 0-32h160a16 16 0 0 1 0 32z",
1176
+ fill: "currentColor"
1177
+ },
1178
+ null,
1179
+ -1
1180
+ /* HOISTED */
1181
+ ), k2 = /* @__PURE__ */ n(
1182
+ "path",
1183
+ {
1184
+ d: "M419.22 188.59L275.41 44.78a2 2 0 0 0-3.41 1.41V176a16 16 0 0 0 16 16h129.81a2 2 0 0 0 1.41-3.41z",
1185
+ fill: "currentColor"
1186
+ },
1187
+ null,
1188
+ -1
1189
+ /* HOISTED */
1190
+ ), C2 = r({
1191
+ name: "DocumentText",
1192
+ render: function(e, o) {
1193
+ return l(), c("svg", v2, [f2, k2]);
1194
+ }
1195
+ }), m2 = {
1196
+ xmlns: "http://www.w3.org/2000/svg",
1197
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1198
+ viewBox: "0 0 512 512"
1199
+ }, $2 = /* @__PURE__ */ n(
1200
+ "path",
1201
+ {
1202
+ d: "M376 160H272v153.37l52.69-52.68a16 16 0 0 1 22.62 22.62l-80 80a16 16 0 0 1-22.62 0l-80-80a16 16 0 0 1 22.62-22.62L240 313.37V160H136a56.06 56.06 0 0 0-56 56v208a56.06 56.06 0 0 0 56 56h240a56.06 56.06 0 0 0 56-56V216a56.06 56.06 0 0 0-56-56z",
1203
+ fill: "currentColor"
1204
+ },
1205
+ null,
1206
+ -1
1207
+ /* HOISTED */
1208
+ ), M2 = /* @__PURE__ */ n(
1209
+ "path",
1210
+ {
1211
+ d: "M272 48a16 16 0 0 0-32 0v112h32z",
1212
+ fill: "currentColor"
1213
+ },
1214
+ null,
1215
+ -1
1216
+ /* HOISTED */
1217
+ ), L2 = r({
1218
+ name: "Download",
1219
+ render: function(e, o) {
1220
+ return l(), c("svg", m2, [$2, M2]);
1221
+ }
1222
+ }), z2 = {
1223
+ xmlns: "http://www.w3.org/2000/svg",
1224
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1225
+ viewBox: "0 0 512 512"
1226
+ }, A2 = /* @__PURE__ */ n(
1227
+ "path",
1228
+ {
1229
+ d: "M336 176h40a40 40 0 0 1 40 40v208a40 40 0 0 1-40 40H136a40 40 0 0 1-40-40V216a40 40 0 0 1 40-40h40",
1230
+ fill: "none",
1231
+ stroke: "currentColor",
1232
+ "stroke-linecap": "round",
1233
+ "stroke-linejoin": "round",
1234
+ "stroke-width": "32"
1235
+ },
1236
+ null,
1237
+ -1
1238
+ /* HOISTED */
1239
+ ), S2 = /* @__PURE__ */ n(
1240
+ "path",
1241
+ {
1242
+ fill: "none",
1243
+ stroke: "currentColor",
1244
+ "stroke-linecap": "round",
1245
+ "stroke-linejoin": "round",
1246
+ "stroke-width": "32",
1247
+ d: "M176 272l80 80l80-80"
1248
+ },
1249
+ null,
1250
+ -1
1251
+ /* HOISTED */
1252
+ ), I2 = /* @__PURE__ */ n(
1253
+ "path",
1254
+ {
1255
+ fill: "none",
1256
+ stroke: "currentColor",
1257
+ "stroke-linecap": "round",
1258
+ "stroke-linejoin": "round",
1259
+ "stroke-width": "32",
1260
+ d: "M256 48v288"
1261
+ },
1262
+ null,
1263
+ -1
1264
+ /* HOISTED */
1265
+ ), T2 = r({
1266
+ name: "DownloadOutline",
1267
+ render: function(e, o) {
1268
+ return l(), c("svg", z2, [A2, S2, I2]);
1269
+ }
1270
+ }), H2 = {
1271
+ xmlns: "http://www.w3.org/2000/svg",
1272
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1273
+ viewBox: "0 0 512 512"
1274
+ }, O2 = /* @__PURE__ */ n(
1275
+ "path",
1276
+ {
1277
+ d: "M408 112H184a72 72 0 0 0-72 72v224a72 72 0 0 0 72 72h224a72 72 0 0 0 72-72V184a72 72 0 0 0-72-72zm-32.45 200H312v63.55c0 8.61-6.62 16-15.23 16.43A16 16 0 0 1 280 376v-64h-63.55c-8.61 0-16-6.62-16.43-15.23A16 16 0 0 1 216 280h64v-63.55c0-8.61 6.62-16 15.23-16.43A16 16 0 0 1 312 216v64h64a16 16 0 0 1 16 16.77c-.42 8.61-7.84 15.23-16.45 15.23z",
1278
+ fill: "currentColor"
1279
+ },
1280
+ null,
1281
+ -1
1282
+ /* HOISTED */
1283
+ ), B2 = /* @__PURE__ */ n(
1284
+ "path",
1285
+ {
1286
+ d: "M395.88 80A72.12 72.12 0 0 0 328 32H104a72 72 0 0 0-72 72v224a72.12 72.12 0 0 0 48 67.88V160a80 80 0 0 1 80-80z",
1287
+ fill: "currentColor"
1288
+ },
1289
+ null,
1290
+ -1
1291
+ /* HOISTED */
1292
+ ), b2 = r({
1293
+ name: "Duplicate",
1294
+ render: function(e, o) {
1295
+ return l(), c("svg", H2, [O2, B2]);
1296
+ }
1297
+ }), D2 = {
1298
+ xmlns: "http://www.w3.org/2000/svg",
1299
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1300
+ viewBox: "0 0 512 512"
1301
+ }, V2 = /* @__PURE__ */ n(
1302
+ "rect",
1303
+ {
1304
+ x: "128",
1305
+ y: "128",
1306
+ width: "336",
1307
+ height: "336",
1308
+ rx: "57",
1309
+ ry: "57",
1310
+ fill: "none",
1311
+ stroke: "currentColor",
1312
+ "stroke-linejoin": "round",
1313
+ "stroke-width": "32"
1314
+ },
1315
+ null,
1316
+ -1
1317
+ /* HOISTED */
1318
+ ), y2 = /* @__PURE__ */ n(
1319
+ "path",
1320
+ {
1321
+ d: "M383.5 128l.5-24a56.16 56.16 0 0 0-56-56H112a64.19 64.19 0 0 0-64 64v216a56.16 56.16 0 0 0 56 56h24",
1322
+ fill: "none",
1323
+ stroke: "currentColor",
1324
+ "stroke-linecap": "round",
1325
+ "stroke-linejoin": "round",
1326
+ "stroke-width": "32"
1327
+ },
1328
+ null,
1329
+ -1
1330
+ /* HOISTED */
1331
+ ), R2 = /* @__PURE__ */ n(
1332
+ "path",
1333
+ {
1334
+ fill: "none",
1335
+ stroke: "currentColor",
1336
+ "stroke-linecap": "round",
1337
+ "stroke-linejoin": "round",
1338
+ "stroke-width": "32",
1339
+ d: "M296 216v160"
1340
+ },
1341
+ null,
1342
+ -1
1343
+ /* HOISTED */
1344
+ ), E2 = /* @__PURE__ */ n(
1345
+ "path",
1346
+ {
1347
+ fill: "none",
1348
+ stroke: "currentColor",
1349
+ "stroke-linecap": "round",
1350
+ "stroke-linejoin": "round",
1351
+ "stroke-width": "32",
1352
+ d: "M376 296H216"
1353
+ },
1354
+ null,
1355
+ -1
1356
+ /* HOISTED */
1357
+ ), N2 = r({
1358
+ name: "DuplicateOutline",
1359
+ render: function(e, o) {
1360
+ return l(), c("svg", D2, [V2, y2, R2, E2]);
1361
+ }
1362
+ }), P2 = {
1363
+ xmlns: "http://www.w3.org/2000/svg",
1364
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1365
+ viewBox: "0 0 512 512"
1366
+ }, G2 = /* @__PURE__ */ n(
1367
+ "circle",
1368
+ {
1369
+ cx: "256",
1370
+ cy: "256",
1371
+ r: "48",
1372
+ fill: "currentColor"
1373
+ },
1374
+ null,
1375
+ -1
1376
+ /* HOISTED */
1377
+ ), U2 = /* @__PURE__ */ n(
1378
+ "circle",
1379
+ {
1380
+ cx: "416",
1381
+ cy: "256",
1382
+ r: "48",
1383
+ fill: "currentColor"
1384
+ },
1385
+ null,
1386
+ -1
1387
+ /* HOISTED */
1388
+ ), j2 = /* @__PURE__ */ n(
1389
+ "circle",
1390
+ {
1391
+ cx: "96",
1392
+ cy: "256",
1393
+ r: "48",
1394
+ fill: "currentColor"
1395
+ },
1396
+ null,
1397
+ -1
1398
+ /* HOISTED */
1399
+ ), F2 = r({
1400
+ name: "EllipsisHorizontalSharp",
1401
+ render: function(e, o) {
1402
+ return l(), c("svg", P2, [G2, U2, j2]);
1403
+ }
1404
+ }), q2 = {
1405
+ xmlns: "http://www.w3.org/2000/svg",
1406
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1407
+ viewBox: "0 0 512 512"
1408
+ }, W2 = /* @__PURE__ */ n(
1409
+ "path",
1410
+ {
1411
+ d: "M432 448a15.92 15.92 0 0 1-11.31-4.69l-352-352a16 16 0 0 1 22.62-22.62l352 352A16 16 0 0 1 432 448z",
1412
+ fill: "currentColor"
1413
+ },
1414
+ null,
1415
+ -1
1416
+ /* HOISTED */
1417
+ ), Y2 = /* @__PURE__ */ n(
1418
+ "path",
1419
+ {
1420
+ d: "M255.66 384c-41.49 0-81.5-12.28-118.92-36.5c-34.07-22-64.74-53.51-88.7-91v-.08c19.94-28.57 41.78-52.73 65.24-72.21a2 2 0 0 0 .14-2.94L93.5 161.38a2 2 0 0 0-2.71-.12c-24.92 21-48.05 46.76-69.08 76.92a31.92 31.92 0 0 0-.64 35.54c26.41 41.33 60.4 76.14 98.28 100.65C162 402 207.9 416 255.66 416a239.13 239.13 0 0 0 75.8-12.58a2 2 0 0 0 .77-3.31l-21.58-21.58a4 4 0 0 0-3.83-1a204.8 204.8 0 0 1-51.16 6.47z",
1421
+ fill: "currentColor"
1422
+ },
1423
+ null,
1424
+ -1
1425
+ /* HOISTED */
1426
+ ), K2 = /* @__PURE__ */ n(
1427
+ "path",
1428
+ {
1429
+ d: "M490.84 238.6c-26.46-40.92-60.79-75.68-99.27-100.53C349 110.55 302 96 255.66 96a227.34 227.34 0 0 0-74.89 12.83a2 2 0 0 0-.75 3.31l21.55 21.55a4 4 0 0 0 3.88 1a192.82 192.82 0 0 1 50.21-6.69c40.69 0 80.58 12.43 118.55 37c34.71 22.4 65.74 53.88 89.76 91a.13.13 0 0 1 0 .16a310.72 310.72 0 0 1-64.12 72.73a2 2 0 0 0-.15 2.95l19.9 19.89a2 2 0 0 0 2.7.13a343.49 343.49 0 0 0 68.64-78.48a32.2 32.2 0 0 0-.1-34.78z",
1430
+ fill: "currentColor"
1431
+ },
1432
+ null,
1433
+ -1
1434
+ /* HOISTED */
1435
+ ), X2 = /* @__PURE__ */ n(
1436
+ "path",
1437
+ {
1438
+ d: "M256 160a95.88 95.88 0 0 0-21.37 2.4a2 2 0 0 0-1 3.38l112.59 112.56a2 2 0 0 0 3.38-1A96 96 0 0 0 256 160z",
1439
+ fill: "currentColor"
1440
+ },
1441
+ null,
1442
+ -1
1443
+ /* HOISTED */
1444
+ ), Z2 = /* @__PURE__ */ n(
1445
+ "path",
1446
+ {
1447
+ d: "M165.78 233.66a2 2 0 0 0-3.38 1a96 96 0 0 0 115 115a2 2 0 0 0 1-3.38z",
1448
+ fill: "currentColor"
1449
+ },
1450
+ null,
1451
+ -1
1452
+ /* HOISTED */
1453
+ ), J2 = r({
1454
+ name: "EyeOffOutline",
1455
+ render: function(e, o) {
1456
+ return l(), c("svg", q2, [W2, Y2, K2, X2, Z2]);
1457
+ }
1458
+ }), Q2 = {
1459
+ xmlns: "http://www.w3.org/2000/svg",
1460
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1461
+ viewBox: "0 0 512 512"
1462
+ }, te = /* @__PURE__ */ n(
1463
+ "path",
1464
+ {
1465
+ d: "M255.66 112c-77.94 0-157.89 45.11-220.83 135.33a16 16 0 0 0-.27 17.77C82.92 340.8 161.8 400 255.66 400c92.84 0 173.34-59.38 221.79-135.25a16.14 16.14 0 0 0 0-17.47C428.89 172.28 347.8 112 255.66 112z",
1466
+ fill: "none",
1467
+ stroke: "currentColor",
1468
+ "stroke-linecap": "round",
1469
+ "stroke-linejoin": "round",
1470
+ "stroke-width": "32"
1471
+ },
1472
+ null,
1473
+ -1
1474
+ /* HOISTED */
1475
+ ), ee = /* @__PURE__ */ n(
1476
+ "circle",
1477
+ {
1478
+ cx: "256",
1479
+ cy: "256",
1480
+ r: "80",
1481
+ fill: "none",
1482
+ stroke: "currentColor",
1483
+ "stroke-miterlimit": "10",
1484
+ "stroke-width": "32"
1485
+ },
1486
+ null,
1487
+ -1
1488
+ /* HOISTED */
1489
+ ), oe = r({
1490
+ name: "EyeOutline",
1491
+ render: function(e, o) {
1492
+ return l(), c("svg", Q2, [te, ee]);
1493
+ }
1494
+ }), ne = {
1495
+ xmlns: "http://www.w3.org/2000/svg",
1496
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1497
+ viewBox: "0 0 512 512"
1498
+ }, re = /* @__PURE__ */ n(
1499
+ "path",
1500
+ {
1501
+ d: "M512 256c0-16.54-14.27-46.76-45.61-74a207.06 207.06 0 0 0-60.28-36.12a3.15 3.15 0 0 0-3.93 1.56c-.15.29-.3.57-.47.86l-9.59 15.9a183.24 183.24 0 0 0 .07 183.78l.23.39l8.74 16a4 4 0 0 0 4.94 1.82C479.63 337.42 512 281.49 512 256zm-93.92-.14a16 16 0 1 1 13.79-13.79a16 16 0 0 1-13.79 13.79z",
1502
+ fill: "currentColor"
1503
+ },
1504
+ null,
1505
+ -1
1506
+ /* HOISTED */
1507
+ ), le = /* @__PURE__ */ n(
1508
+ "path",
1509
+ {
1510
+ d: "M335.45 256a214.8 214.8 0 0 1 29.08-108l.12-.21l4.62-7.67a4 4 0 0 0-2.59-6a284.29 284.29 0 0 0-39.26-5.39a7.94 7.94 0 0 1-4.29-1.6c-19.28-14.66-57.5-40.3-96.46-46.89a16 16 0 0 0-18 20.18l10.62 37.17a4 4 0 0 1-2.42 4.84c-36.85 13.69-68.59 38.75-91.74 57.85a8 8 0 0 1-10.06.06q-4.72-3.75-9.69-7.39c-39.64-28.95-86.21-32.76-88.17-32.9a16 16 0 0 0-16.83 19.4c.42 1.93 9.19 40.69 31.7 71.61a8.09 8.09 0 0 1 0 9.55C9.57 291.52.8 330.29.38 332.22a16 16 0 0 0 16.83 19.4c2-.14 48.53-4 88.12-32.88q4.85-3.56 9.47-7.22a8 8 0 0 1 10.06.07c23.25 19.19 55.05 44.28 92 58a4 4 0 0 1 2.42 4.83l-10.66 37.18a16 16 0 0 0 18 20.18c17.16-2.9 51.88-12.86 96.05-46.83a8.15 8.15 0 0 1 4.36-1.65a287.36 287.36 0 0 0 39.22-5.3a4 4 0 0 0 2.69-5.83l-4.51-8.29A214.81 214.81 0 0 1 335.45 256z",
1511
+ fill: "currentColor"
1512
+ },
1513
+ null,
1514
+ -1
1515
+ /* HOISTED */
1516
+ ), se = r({
1517
+ name: "Fish",
1518
+ render: function(e, o) {
1519
+ return l(), c("svg", ne, [re, le]);
1520
+ }
1521
+ }), ce = {
1522
+ xmlns: "http://www.w3.org/2000/svg",
1523
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1524
+ viewBox: "0 0 512 512"
1525
+ }, ie = /* @__PURE__ */ n(
1526
+ "path",
1527
+ {
1528
+ d: "M194.82 496a18.36 18.36 0 0 1-18.1-21.53v-.11L204.83 320H96a16 16 0 0 1-12.44-26.06L302.73 23a18.45 18.45 0 0 1 32.8 13.71c0 .3-.08.59-.13.89L307.19 192H416a16 16 0 0 1 12.44 26.06L209.24 489a18.45 18.45 0 0 1-14.42 7z",
1529
+ fill: "currentColor"
1530
+ },
1531
+ null,
1532
+ -1
1533
+ /* HOISTED */
1534
+ ), ae = r({
1535
+ name: "Flash",
1536
+ render: function(e, o) {
1537
+ return l(), c("svg", ce, [ie]);
1538
+ }
1539
+ }), he = {
1540
+ xmlns: "http://www.w3.org/2000/svg",
1541
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1542
+ viewBox: "0 0 512 512"
1543
+ }, de = /* @__PURE__ */ n(
1544
+ "path",
1545
+ {
1546
+ d: "M496 152a56 56 0 0 0-56-56H220.11a23.89 23.89 0 0 1-13.31-4L179 73.41A55.77 55.77 0 0 0 147.89 64H72a56 56 0 0 0-56 56v48a8 8 0 0 0 8 8h464a8 8 0 0 0 8-8z",
1547
+ fill: "currentColor"
1548
+ },
1549
+ null,
1550
+ -1
1551
+ /* HOISTED */
1552
+ ), ue = /* @__PURE__ */ n(
1553
+ "path",
1554
+ {
1555
+ d: "M16 392a56 56 0 0 0 56 56h368a56 56 0 0 0 56-56V216a8 8 0 0 0-8-8H24a8 8 0 0 0-8 8z",
1556
+ fill: "currentColor"
1557
+ },
1558
+ null,
1559
+ -1
1560
+ /* HOISTED */
1561
+ ), we = r({
1562
+ name: "Folder",
1563
+ render: function(e, o) {
1564
+ return l(), c("svg", he, [de, ue]);
1565
+ }
1566
+ }), _e = {
1567
+ xmlns: "http://www.w3.org/2000/svg",
1568
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1569
+ viewBox: "0 0 512 512"
1570
+ }, ge = /* @__PURE__ */ n(
1571
+ "path",
1572
+ {
1573
+ d: "M408 96H252.11a23.89 23.89 0 0 1-13.31-4L211 73.41A55.77 55.77 0 0 0 179.89 64H104a56.06 56.06 0 0 0-56 56v24h416c0-30.88-25.12-48-56-48z",
1574
+ fill: "currentColor"
1575
+ },
1576
+ null,
1577
+ -1
1578
+ /* HOISTED */
1579
+ ), pe = /* @__PURE__ */ n(
1580
+ "path",
1581
+ {
1582
+ d: "M423.75 448H88.25a56 56 0 0 1-55.93-55.15L16.18 228.11v-.28A48 48 0 0 1 64 176h384.1a48 48 0 0 1 47.8 51.83v.28l-16.22 164.74A56 56 0 0 1 423.75 448zm56.15-221.45z",
1583
+ fill: "currentColor"
1584
+ },
1585
+ null,
1586
+ -1
1587
+ /* HOISTED */
1588
+ ), xe = r({
1589
+ name: "FolderOpen",
1590
+ render: function(e, o) {
1591
+ return l(), c("svg", _e, [ge, pe]);
1592
+ }
1593
+ }), ve = {
1594
+ xmlns: "http://www.w3.org/2000/svg",
1595
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1596
+ viewBox: "0 0 512 512"
1597
+ }, fe = /* @__PURE__ */ n(
1598
+ "path",
1599
+ {
1600
+ d: "M204 240H68a36 36 0 0 1-36-36V68a36 36 0 0 1 36-36h136a36 36 0 0 1 36 36v136a36 36 0 0 1-36 36z",
1601
+ fill: "currentColor"
1602
+ },
1603
+ null,
1604
+ -1
1605
+ /* HOISTED */
1606
+ ), ke = /* @__PURE__ */ n(
1607
+ "path",
1608
+ {
1609
+ d: "M444 240H308a36 36 0 0 1-36-36V68a36 36 0 0 1 36-36h136a36 36 0 0 1 36 36v136a36 36 0 0 1-36 36z",
1610
+ fill: "currentColor"
1611
+ },
1612
+ null,
1613
+ -1
1614
+ /* HOISTED */
1615
+ ), Ce = /* @__PURE__ */ n(
1616
+ "path",
1617
+ {
1618
+ d: "M204 480H68a36 36 0 0 1-36-36V308a36 36 0 0 1 36-36h136a36 36 0 0 1 36 36v136a36 36 0 0 1-36 36z",
1619
+ fill: "currentColor"
1620
+ },
1621
+ null,
1622
+ -1
1623
+ /* HOISTED */
1624
+ ), me = /* @__PURE__ */ n(
1625
+ "path",
1626
+ {
1627
+ d: "M444 480H308a36 36 0 0 1-36-36V308a36 36 0 0 1 36-36h136a36 36 0 0 1 36 36v136a36 36 0 0 1-36 36z",
1628
+ fill: "currentColor"
1629
+ },
1630
+ null,
1631
+ -1
1632
+ /* HOISTED */
1633
+ ), $e = r({
1634
+ name: "Grid",
1635
+ render: function(e, o) {
1636
+ return l(), c("svg", ve, [fe, ke, Ce, me]);
1637
+ }
1638
+ }), Me = {
1639
+ xmlns: "http://www.w3.org/2000/svg",
1640
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1641
+ viewBox: "0 0 512 512"
1642
+ }, Le = /* @__PURE__ */ n(
1643
+ "path",
1644
+ {
1645
+ d: "M277.42 247a24.68 24.68 0 0 0-4.08-5.47L255 223.44a21.63 21.63 0 0 0-6.56-4.57a20.93 20.93 0 0 0-23.28 4.27c-6.36 6.26-18 17.68-39 38.43C146 301.3 71.43 367.89 37.71 396.29a16 16 0 0 0-1.09 23.54l39 39.43a16.13 16.13 0 0 0 23.67-.89c29.24-34.37 96.3-109 136-148.23c20.39-20.06 31.82-31.58 38.29-37.94a21.76 21.76 0 0 0 3.84-25.2z",
1646
+ fill: "none",
1647
+ stroke: "currentColor",
1648
+ "stroke-linecap": "round",
1649
+ "stroke-linejoin": "round",
1650
+ "stroke-width": "32"
1651
+ },
1652
+ null,
1653
+ -1
1654
+ /* HOISTED */
1655
+ ), ze = /* @__PURE__ */ n(
1656
+ "path",
1657
+ {
1658
+ d: "M478.43 201l-34.31-34a5.44 5.44 0 0 0-4-1.59a5.59 5.59 0 0 0-4 1.59h0a11.41 11.41 0 0 1-9.55 3.27c-4.48-.49-9.25-1.88-12.33-4.86c-7-6.86 1.09-20.36-5.07-29a242.88 242.88 0 0 0-23.08-26.72c-7.06-7-34.81-33.47-81.55-52.53a123.79 123.79 0 0 0-47-9.24c-26.35 0-46.61 11.76-54 18.51c-5.88 5.32-12 13.77-12 13.77a91.29 91.29 0 0 1 10.81-3.2a79.53 79.53 0 0 1 23.28-1.49C241.19 76.8 259.94 84.1 270 92c16.21 13 23.18 30.39 24.27 52.83c.8 16.69-15.23 37.76-30.44 54.94a7.85 7.85 0 0 0 .4 10.83l21.24 21.23a8 8 0 0 0 11.14.1c13.93-13.51 31.09-28.47 40.82-34.46s17.58-7.68 21.35-8.09a35.71 35.71 0 0 1 21.3 4.62a13.65 13.65 0 0 1 3.08 2.38c6.46 6.56 6.07 17.28-.5 23.74l-2 1.89a5.5 5.5 0 0 0 0 7.84l34.31 34a5.5 5.5 0 0 0 4 1.58a5.65 5.65 0 0 0 4-1.58L478.43 209a5.82 5.82 0 0 0 0-8z",
1659
+ fill: "none",
1660
+ stroke: "currentColor",
1661
+ "stroke-linecap": "round",
1662
+ "stroke-linejoin": "round",
1663
+ "stroke-width": "32"
1664
+ },
1665
+ null,
1666
+ -1
1667
+ /* HOISTED */
1668
+ ), Ae = r({
1669
+ name: "HammerOutline",
1670
+ render: function(e, o) {
1671
+ return l(), c("svg", Me, [Le, ze]);
1672
+ }
1673
+ }), Se = {
1674
+ xmlns: "http://www.w3.org/2000/svg",
1675
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1676
+ viewBox: "0 0 512 512"
1677
+ }, Ie = /* @__PURE__ */ n(
1678
+ "path",
1679
+ {
1680
+ d: "M256 80a176 176 0 1 0 176 176A176 176 0 0 0 256 80z",
1681
+ fill: "none",
1682
+ stroke: "currentColor",
1683
+ "stroke-miterlimit": "10",
1684
+ "stroke-width": "32"
1685
+ },
1686
+ null,
1687
+ -1
1688
+ /* HOISTED */
1689
+ ), Te = /* @__PURE__ */ n(
1690
+ "path",
1691
+ {
1692
+ d: "M200 202.29s.84-17.5 19.57-32.57C230.68 160.77 244 158.18 256 158c10.93-.14 20.69 1.67 26.53 4.45c10 4.76 29.47 16.38 29.47 41.09c0 26-17 37.81-36.37 50.8S251 281.43 251 296",
1693
+ fill: "none",
1694
+ stroke: "currentColor",
1695
+ "stroke-linecap": "round",
1696
+ "stroke-miterlimit": "10",
1697
+ "stroke-width": "28"
1698
+ },
1699
+ null,
1700
+ -1
1701
+ /* HOISTED */
1702
+ ), He = /* @__PURE__ */ n(
1703
+ "circle",
1704
+ {
1705
+ cx: "250",
1706
+ cy: "348",
1707
+ r: "20",
1708
+ fill: "currentColor"
1709
+ },
1710
+ null,
1711
+ -1
1712
+ /* HOISTED */
1713
+ ), Oe = r({
1714
+ name: "HelpCircleOutline",
1715
+ render: function(e, o) {
1716
+ return l(), c("svg", Se, [Ie, Te, He]);
1717
+ }
1718
+ }), Be = {
1719
+ xmlns: "http://www.w3.org/2000/svg",
1720
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1721
+ viewBox: "0 0 512 512"
1722
+ }, be = /* @__PURE__ */ n(
1723
+ "path",
1724
+ {
1725
+ d: "M261.56 101.28a8 8 0 0 0-11.06 0L66.4 277.15a8 8 0 0 0-2.47 5.79L63.9 448a32 32 0 0 0 32 32H192a16 16 0 0 0 16-16V328a8 8 0 0 1 8-8h80a8 8 0 0 1 8 8v136a16 16 0 0 0 16 16h96.06a32 32 0 0 0 32-32V282.94a8 8 0 0 0-2.47-5.79z",
1726
+ fill: "currentColor"
1727
+ },
1728
+ null,
1729
+ -1
1730
+ /* HOISTED */
1731
+ ), De = /* @__PURE__ */ n(
1732
+ "path",
1733
+ {
1734
+ d: "M490.91 244.15l-74.8-71.56V64a16 16 0 0 0-16-16h-48a16 16 0 0 0-16 16v32l-57.92-55.38C272.77 35.14 264.71 32 256 32c-8.68 0-16.72 3.14-22.14 8.63l-212.7 203.5c-6.22 6-7 15.87-1.34 22.37A16 16 0 0 0 43 267.56L250.5 69.28a8 8 0 0 1 11.06 0l207.52 198.28a16 16 0 0 0 22.59-.44c6.14-6.36 5.63-16.86-.76-22.97z",
1735
+ fill: "currentColor"
1736
+ },
1737
+ null,
1738
+ -1
1739
+ /* HOISTED */
1740
+ ), Ve = r({
1741
+ name: "Home",
1742
+ render: function(e, o) {
1743
+ return l(), c("svg", Be, [be, De]);
1744
+ }
1745
+ }), ye = {
1746
+ xmlns: "http://www.w3.org/2000/svg",
1747
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1748
+ viewBox: "0 0 512 512"
1749
+ }, Re = /* @__PURE__ */ n(
1750
+ "rect",
1751
+ {
1752
+ x: "48",
1753
+ y: "80",
1754
+ width: "416",
1755
+ height: "352",
1756
+ rx: "48",
1757
+ ry: "48",
1758
+ fill: "none",
1759
+ stroke: "currentColor",
1760
+ "stroke-linejoin": "round",
1761
+ "stroke-width": "32"
1762
+ },
1763
+ null,
1764
+ -1
1765
+ /* HOISTED */
1766
+ ), Ee = /* @__PURE__ */ n(
1767
+ "circle",
1768
+ {
1769
+ cx: "336",
1770
+ cy: "176",
1771
+ r: "32",
1772
+ fill: "none",
1773
+ stroke: "currentColor",
1774
+ "stroke-miterlimit": "10",
1775
+ "stroke-width": "32"
1776
+ },
1777
+ null,
1778
+ -1
1779
+ /* HOISTED */
1780
+ ), Ne = /* @__PURE__ */ n(
1781
+ "path",
1782
+ {
1783
+ d: "M304 335.79l-90.66-90.49a32 32 0 0 0-43.87-1.3L48 352",
1784
+ fill: "none",
1785
+ stroke: "currentColor",
1786
+ "stroke-linecap": "round",
1787
+ "stroke-linejoin": "round",
1788
+ "stroke-width": "32"
1789
+ },
1790
+ null,
1791
+ -1
1792
+ /* HOISTED */
1793
+ ), Pe = /* @__PURE__ */ n(
1794
+ "path",
1795
+ {
1796
+ d: "M224 432l123.34-123.34a32 32 0 0 1 43.11-2L464 368",
1797
+ fill: "none",
1798
+ stroke: "currentColor",
1799
+ "stroke-linecap": "round",
1800
+ "stroke-linejoin": "round",
1801
+ "stroke-width": "32"
1802
+ },
1803
+ null,
1804
+ -1
1805
+ /* HOISTED */
1806
+ ), Ge = r({
1807
+ name: "ImageOutline",
1808
+ render: function(e, o) {
1809
+ return l(), c("svg", ye, [Re, Ee, Ne, Pe]);
1810
+ }
1811
+ }), Ue = {
1812
+ xmlns: "http://www.w3.org/2000/svg",
1813
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1814
+ viewBox: "0 0 512 512"
1815
+ }, je = /* @__PURE__ */ n(
1816
+ "path",
1817
+ {
1818
+ d: "M450.29 112H142c-34 0-62 27.51-62 61.33v245.34c0 33.82 28 61.33 62 61.33h308c34 0 62-26.18 62-60V173.33c0-33.82-27.68-61.33-61.71-61.33zm-77.15 61.34a46 46 0 1 1-46.28 46a46.19 46.19 0 0 1 46.28-46.01zm-231.55 276c-17 0-29.86-13.75-29.86-30.66v-64.83l90.46-80.79a46.54 46.54 0 0 1 63.44 1.83L328.27 337l-113 112.33zM480 418.67a30.67 30.67 0 0 1-30.71 30.66H259L376.08 333a46.24 46.24 0 0 1 59.44-.16L480 370.59z",
1819
+ fill: "currentColor"
1820
+ },
1821
+ null,
1822
+ -1
1823
+ /* HOISTED */
1824
+ ), Fe = /* @__PURE__ */ n(
1825
+ "path",
1826
+ {
1827
+ d: "M384 32H64A64 64 0 0 0 0 96v256a64.11 64.11 0 0 0 48 62V152a72 72 0 0 1 72-72h326a64.11 64.11 0 0 0-62-48z",
1828
+ fill: "currentColor"
1829
+ },
1830
+ null,
1831
+ -1
1832
+ /* HOISTED */
1833
+ ), qe = r({
1834
+ name: "Images",
1835
+ render: function(e, o) {
1836
+ return l(), c("svg", Ue, [je, Fe]);
1837
+ }
1838
+ }), We = {
1839
+ xmlns: "http://www.w3.org/2000/svg",
1840
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1841
+ viewBox: "0 0 512 512"
1842
+ }, Ye = /* @__PURE__ */ n(
1843
+ "path",
1844
+ {
1845
+ d: "M248 64C146.39 64 64 146.39 64 248s82.39 184 184 184s184-82.39 184-184S349.61 64 248 64z",
1846
+ fill: "none",
1847
+ stroke: "currentColor",
1848
+ "stroke-miterlimit": "10",
1849
+ "stroke-width": "32"
1850
+ },
1851
+ null,
1852
+ -1
1853
+ /* HOISTED */
1854
+ ), Ke = /* @__PURE__ */ n(
1855
+ "path",
1856
+ {
1857
+ fill: "none",
1858
+ stroke: "currentColor",
1859
+ "stroke-linecap": "round",
1860
+ "stroke-linejoin": "round",
1861
+ "stroke-width": "32",
1862
+ d: "M220 220h32v116"
1863
+ },
1864
+ null,
1865
+ -1
1866
+ /* HOISTED */
1867
+ ), Xe = /* @__PURE__ */ n(
1868
+ "path",
1869
+ {
1870
+ fill: "none",
1871
+ stroke: "currentColor",
1872
+ "stroke-linecap": "round",
1873
+ "stroke-miterlimit": "10",
1874
+ "stroke-width": "32",
1875
+ d: "M208 340h88"
1876
+ },
1877
+ null,
1878
+ -1
1879
+ /* HOISTED */
1880
+ ), Ze = /* @__PURE__ */ n(
1881
+ "path",
1882
+ {
1883
+ d: "M248 130a26 26 0 1 0 26 26a26 26 0 0 0-26-26z",
1884
+ fill: "currentColor"
1885
+ },
1886
+ null,
1887
+ -1
1888
+ /* HOISTED */
1889
+ ), Je = r({
1890
+ name: "InformationCircleOutline",
1891
+ render: function(e, o) {
1892
+ return l(), c("svg", We, [Ye, Ke, Xe, Ze]);
1893
+ }
1894
+ }), Qe = {
1895
+ xmlns: "http://www.w3.org/2000/svg",
1896
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1897
+ viewBox: "0 0 512 512"
1898
+ }, to = /* @__PURE__ */ n(
1899
+ "path",
1900
+ {
1901
+ d: "M478.33 433.6l-90-218a22 22 0 0 0-40.67 0l-90 218a22 22 0 1 0 40.67 16.79L316.66 406h102.67l18.33 44.39A22 22 0 0 0 458 464a22 22 0 0 0 20.32-30.4zM334.83 362L368 281.65L401.17 362z",
1902
+ fill: "currentColor"
1903
+ },
1904
+ null,
1905
+ -1
1906
+ /* HOISTED */
1907
+ ), eo = /* @__PURE__ */ n(
1908
+ "path",
1909
+ {
1910
+ d: "M267.84 342.92a22 22 0 0 0-4.89-30.7c-.2-.15-15-11.13-36.49-34.73c39.65-53.68 62.11-114.75 71.27-143.49H330a22 22 0 0 0 0-44H214V70a22 22 0 0 0-44 0v20H54a22 22 0 0 0 0 44h197.25c-9.52 26.95-27.05 69.5-53.79 108.36c-31.41-41.68-43.08-68.65-43.17-68.87a22 22 0 0 0-40.58 17c.58 1.38 14.55 34.23 52.86 83.93c.92 1.19 1.83 2.35 2.74 3.51c-39.24 44.35-77.74 71.86-93.85 80.74a22 22 0 1 0 21.07 38.63c2.16-1.18 48.6-26.89 101.63-85.59c22.52 24.08 38 35.44 38.93 36.1a22 22 0 0 0 30.75-4.9z",
1911
+ fill: "currentColor"
1912
+ },
1913
+ null,
1914
+ -1
1915
+ /* HOISTED */
1916
+ ), oo = r({
1917
+ name: "Language",
1918
+ render: function(e, o) {
1919
+ return l(), c("svg", Qe, [to, eo]);
1920
+ }
1921
+ }), no = {
1922
+ xmlns: "http://www.w3.org/2000/svg",
1923
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1924
+ viewBox: "0 0 512 512"
1925
+ }, ro = /* @__PURE__ */ n(
1926
+ "path",
1927
+ {
1928
+ d: "M256 256c-13.47 0-26.94-2.39-37.44-7.17l-148-67.49C63.79 178.26 48 169.25 48 152.24s15.79-26 22.58-29.12l149.28-68.07c20.57-9.4 51.61-9.4 72.19 0l149.37 68.07c6.79 3.09 22.58 12.1 22.58 29.12s-15.79 26-22.58 29.11l-148 67.48C282.94 253.61 269.47 256 256 256zm176.76-100.86z",
1929
+ fill: "currentColor"
1930
+ },
1931
+ null,
1932
+ -1
1933
+ /* HOISTED */
1934
+ ), lo = /* @__PURE__ */ n(
1935
+ "path",
1936
+ {
1937
+ d: "M441.36 226.81L426.27 220l-38.77 17.74l-94 43c-10.5 4.8-24 7.19-37.44 7.19s-26.93-2.39-37.42-7.19l-94.07-43L85.79 220l-15.22 6.84C63.79 229.93 48 239 48 256s15.79 26.08 22.56 29.17l148 67.63C229 357.6 242.49 360 256 360s26.94-2.4 37.44-7.19l147.87-67.61c6.81-3.09 22.69-12.11 22.69-29.2s-15.77-26.07-22.64-29.19z",
1938
+ fill: "currentColor"
1939
+ },
1940
+ null,
1941
+ -1
1942
+ /* HOISTED */
1943
+ ), so = /* @__PURE__ */ n(
1944
+ "path",
1945
+ {
1946
+ d: "M441.36 330.8l-15.09-6.8l-38.77 17.73l-94 42.95c-10.5 4.78-24 7.18-37.44 7.18s-26.93-2.39-37.42-7.18l-94.07-43L85.79 324l-15.22 6.84C63.79 333.93 48 343 48 360s15.79 26.07 22.56 29.15l148 67.59C229 461.52 242.54 464 256 464s26.88-2.48 37.38-7.27l147.92-67.57c6.82-3.08 22.7-12.1 22.7-29.16s-15.77-26.07-22.64-29.2z",
1947
+ fill: "currentColor"
1948
+ },
1949
+ null,
1950
+ -1
1951
+ /* HOISTED */
1952
+ ), co = r({
1953
+ name: "Layers",
1954
+ render: function(e, o) {
1955
+ return l(), c("svg", no, [ro, lo, so]);
1956
+ }
1957
+ }), io = {
1958
+ xmlns: "http://www.w3.org/2000/svg",
1959
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1960
+ viewBox: "0 0 512 512"
1961
+ }, ao = /* @__PURE__ */ n(
1962
+ "path",
1963
+ {
1964
+ d: "M161.35 242a16 16 0 0 1 22.62-.68c73.63 69.36 147.51 111.56 234.45 133.07c11.73-32 12.77-67.22 2.64-101.58c-13.44-45.59-44.74-85.31-90.49-114.86c-40.84-26.38-81.66-33.25-121.15-39.89c-49.82-8.38-96.88-16.3-141.79-63.85c-5-5.26-11.81-7.37-18.32-5.66c-7.44 2-12.43 7.88-14.82 17.6c-5.6 22.75-2 86.51 13.75 153.82c25.29 108.14 65.65 162.86 95.06 189.73c38 34.69 87.62 53.9 136.93 53.9a186 186 0 0 0 27.77-2.04c41.71-6.32 76.43-27.27 96-57.75c-89.49-23.28-165.94-67.55-242-139.16a16 16 0 0 1-.65-22.65z",
1965
+ fill: "currentColor"
1966
+ },
1967
+ null,
1968
+ -1
1969
+ /* HOISTED */
1970
+ ), ho = /* @__PURE__ */ n(
1971
+ "path",
1972
+ {
1973
+ d: "M467.43 384.19c-16.83-2.59-33.13-5.84-49-9.77a157.71 157.71 0 0 1-12.13 25.68c-.73 1.25-1.5 2.49-2.29 3.71a584.21 584.21 0 0 0 58.56 12a16 16 0 1 0 4.87-31.62z",
1974
+ fill: "currentColor"
1975
+ },
1976
+ null,
1977
+ -1
1978
+ /* HOISTED */
1979
+ ), uo = r({
1980
+ name: "Leaf",
1981
+ render: function(e, o) {
1982
+ return l(), c("svg", io, [ao, ho]);
1983
+ }
1984
+ }), wo = {
1985
+ xmlns: "http://www.w3.org/2000/svg",
1986
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
1987
+ viewBox: "0 0 512 512"
1988
+ }, _o = /* @__PURE__ */ n(
1989
+ "path",
1990
+ {
1991
+ fill: "none",
1992
+ stroke: "currentColor",
1993
+ "stroke-linecap": "round",
1994
+ "stroke-linejoin": "round",
1995
+ "stroke-width": "48",
1996
+ d: "M160 144h288"
1997
+ },
1998
+ null,
1999
+ -1
2000
+ /* HOISTED */
2001
+ ), go = /* @__PURE__ */ n(
2002
+ "path",
2003
+ {
2004
+ fill: "none",
2005
+ stroke: "currentColor",
2006
+ "stroke-linecap": "round",
2007
+ "stroke-linejoin": "round",
2008
+ "stroke-width": "48",
2009
+ d: "M160 256h288"
2010
+ },
2011
+ null,
2012
+ -1
2013
+ /* HOISTED */
2014
+ ), po = /* @__PURE__ */ n(
2015
+ "path",
2016
+ {
2017
+ fill: "none",
2018
+ stroke: "currentColor",
2019
+ "stroke-linecap": "round",
2020
+ "stroke-linejoin": "round",
2021
+ "stroke-width": "48",
2022
+ d: "M160 368h288"
2023
+ },
2024
+ null,
2025
+ -1
2026
+ /* HOISTED */
2027
+ ), xo = /* @__PURE__ */ n(
2028
+ "circle",
2029
+ {
2030
+ cx: "80",
2031
+ cy: "144",
2032
+ r: "16",
2033
+ fill: "none",
2034
+ stroke: "currentColor",
2035
+ "stroke-linecap": "round",
2036
+ "stroke-linejoin": "round",
2037
+ "stroke-width": "32"
2038
+ },
2039
+ null,
2040
+ -1
2041
+ /* HOISTED */
2042
+ ), vo = /* @__PURE__ */ n(
2043
+ "circle",
2044
+ {
2045
+ cx: "80",
2046
+ cy: "256",
2047
+ r: "16",
2048
+ fill: "none",
2049
+ stroke: "currentColor",
2050
+ "stroke-linecap": "round",
2051
+ "stroke-linejoin": "round",
2052
+ "stroke-width": "32"
2053
+ },
2054
+ null,
2055
+ -1
2056
+ /* HOISTED */
2057
+ ), fo = /* @__PURE__ */ n(
2058
+ "circle",
2059
+ {
2060
+ cx: "80",
2061
+ cy: "368",
2062
+ r: "16",
2063
+ fill: "none",
2064
+ stroke: "currentColor",
2065
+ "stroke-linecap": "round",
2066
+ "stroke-linejoin": "round",
2067
+ "stroke-width": "32"
2068
+ },
2069
+ null,
2070
+ -1
2071
+ /* HOISTED */
2072
+ ), ko = r({
2073
+ name: "List",
2074
+ render: function(e, o) {
2075
+ return l(), c("svg", wo, [_o, go, po, xo, vo, fo]);
2076
+ }
2077
+ }), Co = {
2078
+ xmlns: "http://www.w3.org/2000/svg",
2079
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2080
+ viewBox: "0 0 512 512"
2081
+ }, mo = /* @__PURE__ */ n(
2082
+ "path",
2083
+ {
2084
+ d: "M336 208v-95a80 80 0 0 0-160 0v95",
2085
+ fill: "none",
2086
+ stroke: "currentColor",
2087
+ "stroke-linecap": "round",
2088
+ "stroke-linejoin": "round",
2089
+ "stroke-width": "32"
2090
+ },
2091
+ null,
2092
+ -1
2093
+ /* HOISTED */
2094
+ ), $o = /* @__PURE__ */ n(
2095
+ "rect",
2096
+ {
2097
+ x: "96",
2098
+ y: "208",
2099
+ width: "320",
2100
+ height: "272",
2101
+ rx: "48",
2102
+ ry: "48",
2103
+ fill: "none",
2104
+ stroke: "currentColor",
2105
+ "stroke-linecap": "round",
2106
+ "stroke-linejoin": "round",
2107
+ "stroke-width": "32"
2108
+ },
2109
+ null,
2110
+ -1
2111
+ /* HOISTED */
2112
+ ), Mo = r({
2113
+ name: "LockClosedOutline",
2114
+ render: function(e, o) {
2115
+ return l(), c("svg", Co, [mo, $o]);
2116
+ }
2117
+ }), Lo = {
2118
+ xmlns: "http://www.w3.org/2000/svg",
2119
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2120
+ viewBox: "0 0 512 512"
2121
+ }, zo = /* @__PURE__ */ n(
2122
+ "path",
2123
+ {
2124
+ d: "M336 112a80 80 0 0 0-160 0v96",
2125
+ fill: "none",
2126
+ stroke: "currentColor",
2127
+ "stroke-linecap": "round",
2128
+ "stroke-linejoin": "round",
2129
+ "stroke-width": "32"
2130
+ },
2131
+ null,
2132
+ -1
2133
+ /* HOISTED */
2134
+ ), Ao = /* @__PURE__ */ n(
2135
+ "rect",
2136
+ {
2137
+ x: "96",
2138
+ y: "208",
2139
+ width: "320",
2140
+ height: "272",
2141
+ rx: "48",
2142
+ ry: "48",
2143
+ fill: "none",
2144
+ stroke: "currentColor",
2145
+ "stroke-linecap": "round",
2146
+ "stroke-linejoin": "round",
2147
+ "stroke-width": "32"
2148
+ },
2149
+ null,
2150
+ -1
2151
+ /* HOISTED */
2152
+ ), So = r({
2153
+ name: "LockOpenOutline",
2154
+ render: function(e, o) {
2155
+ return l(), c("svg", Lo, [zo, Ao]);
2156
+ }
2157
+ }), Io = {
2158
+ xmlns: "http://www.w3.org/2000/svg",
2159
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2160
+ viewBox: "0 0 512 512"
2161
+ }, To = /* @__PURE__ */ n(
2162
+ "path",
2163
+ {
2164
+ d: "M304 336v40a40 40 0 0 1-40 40H104a40 40 0 0 1-40-40V136a40 40 0 0 1 40-40h152c22.09 0 48 17.91 48 40v40",
2165
+ fill: "none",
2166
+ stroke: "currentColor",
2167
+ "stroke-linecap": "round",
2168
+ "stroke-linejoin": "round",
2169
+ "stroke-width": "32"
2170
+ },
2171
+ null,
2172
+ -1
2173
+ /* HOISTED */
2174
+ ), Ho = /* @__PURE__ */ n(
2175
+ "path",
2176
+ {
2177
+ fill: "none",
2178
+ stroke: "currentColor",
2179
+ "stroke-linecap": "round",
2180
+ "stroke-linejoin": "round",
2181
+ "stroke-width": "32",
2182
+ d: "M368 336l80-80l-80-80"
2183
+ },
2184
+ null,
2185
+ -1
2186
+ /* HOISTED */
2187
+ ), Oo = /* @__PURE__ */ n(
2188
+ "path",
2189
+ {
2190
+ fill: "none",
2191
+ stroke: "currentColor",
2192
+ "stroke-linecap": "round",
2193
+ "stroke-linejoin": "round",
2194
+ "stroke-width": "32",
2195
+ d: "M176 256h256"
2196
+ },
2197
+ null,
2198
+ -1
2199
+ /* HOISTED */
2200
+ ), Bo = r({
2201
+ name: "LogOutOutline",
2202
+ render: function(e, o) {
2203
+ return l(), c("svg", Io, [To, Ho, Oo]);
2204
+ }
2205
+ }), bo = {
2206
+ xmlns: "http://www.w3.org/2000/svg",
2207
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2208
+ viewBox: "0 0 512 512"
2209
+ }, Do = /* @__PURE__ */ n(
2210
+ "path",
2211
+ {
2212
+ d: "M264 480A232 232 0 0 1 32 248c0-94 54-178.28 137.61-214.67a16 16 0 0 1 21.06 21.06C181.07 76.43 176 104.66 176 136c0 110.28 89.72 200 200 200c31.34 0 59.57-5.07 81.61-14.67a16 16 0 0 1 21.06 21.06C442.28 426 358 480 264 480z",
2213
+ fill: "currentColor"
2214
+ },
2215
+ null,
2216
+ -1
2217
+ /* HOISTED */
2218
+ ), Vo = r({
2219
+ name: "Moon",
2220
+ render: function(e, o) {
2221
+ return l(), c("svg", bo, [Do]);
2222
+ }
2223
+ }), yo = {
2224
+ xmlns: "http://www.w3.org/2000/svg",
2225
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2226
+ viewBox: "0 0 512 512"
2227
+ }, Ro = /* @__PURE__ */ n(
2228
+ "path",
2229
+ {
2230
+ fill: "none",
2231
+ stroke: "currentColor",
2232
+ "stroke-linecap": "round",
2233
+ "stroke-linejoin": "round",
2234
+ "stroke-width": "44",
2235
+ d: "M358.62 129.28L86.49 402.08L70 442l39.92-16.49l272.8-272.13l-24.1-24.1z"
2236
+ },
2237
+ null,
2238
+ -1
2239
+ /* HOISTED */
2240
+ ), Eo = /* @__PURE__ */ n(
2241
+ "path",
2242
+ {
2243
+ d: "M413.07 74.84l-11.79 11.78l24.1 24.1l11.79-11.79a16.51 16.51 0 0 0 0-23.34l-.75-.75a16.51 16.51 0 0 0-23.35 0z",
2244
+ fill: "none",
2245
+ stroke: "currentColor",
2246
+ "stroke-linecap": "round",
2247
+ "stroke-linejoin": "round",
2248
+ "stroke-width": "44"
2249
+ },
2250
+ null,
2251
+ -1
2252
+ /* HOISTED */
2253
+ ), No = r({
2254
+ name: "Pencil",
2255
+ render: function(e, o) {
2256
+ return l(), c("svg", yo, [Ro, Eo]);
2257
+ }
2258
+ }), Po = {
2259
+ xmlns: "http://www.w3.org/2000/svg",
2260
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2261
+ viewBox: "0 0 512 512"
2262
+ }, Go = /* @__PURE__ */ n(
2263
+ "path",
2264
+ {
2265
+ d: "M332.64 64.58C313.18 43.57 286 32 256 32c-30.16 0-57.43 11.5-76.8 32.38c-19.58 21.11-29.12 49.8-26.88 80.78C156.76 206.28 203.27 256 256 256s99.16-49.71 103.67-110.82c2.27-30.7-7.33-59.33-27.03-80.6z",
2266
+ fill: "currentColor"
2267
+ },
2268
+ null,
2269
+ -1
2270
+ /* HOISTED */
2271
+ ), Uo = /* @__PURE__ */ n(
2272
+ "path",
2273
+ {
2274
+ d: "M432 480H80a31 31 0 0 1-24.2-11.13c-6.5-7.77-9.12-18.38-7.18-29.11C57.06 392.94 83.4 353.61 124.8 326c36.78-24.51 83.37-38 131.2-38s94.42 13.5 131.2 38c41.4 27.6 67.74 66.93 76.18 113.75c1.94 10.73-.68 21.34-7.18 29.11A31 31 0 0 1 432 480z",
2275
+ fill: "currentColor"
2276
+ },
2277
+ null,
2278
+ -1
2279
+ /* HOISTED */
2280
+ ), jo = r({
2281
+ name: "Person",
2282
+ render: function(e, o) {
2283
+ return l(), c("svg", Po, [Go, Uo]);
2284
+ }
2285
+ }), Fo = {
2286
+ xmlns: "http://www.w3.org/2000/svg",
2287
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2288
+ viewBox: "0 0 512 512"
2289
+ }, qo = /* @__PURE__ */ n(
2290
+ "path",
2291
+ {
2292
+ d: "M344 144c-3.92 52.87-44 96-88 96s-84.15-43.12-88-96c-4-55 35-96 88-96s92 42 88 96z",
2293
+ fill: "none",
2294
+ stroke: "currentColor",
2295
+ "stroke-linecap": "round",
2296
+ "stroke-linejoin": "round",
2297
+ "stroke-width": "32"
2298
+ },
2299
+ null,
2300
+ -1
2301
+ /* HOISTED */
2302
+ ), Wo = /* @__PURE__ */ n(
2303
+ "path",
2304
+ {
2305
+ d: "M256 304c-87 0-175.3 48-191.64 138.6C62.39 453.52 68.57 464 80 464h352c11.44 0 17.62-10.48 15.65-21.4C431.3 352 343 304 256 304z",
2306
+ fill: "none",
2307
+ stroke: "currentColor",
2308
+ "stroke-miterlimit": "10",
2309
+ "stroke-width": "32"
2310
+ },
2311
+ null,
2312
+ -1
2313
+ /* HOISTED */
2314
+ ), Yo = r({
2315
+ name: "PersonOutline",
2316
+ render: function(e, o) {
2317
+ return l(), c("svg", Fo, [qo, Wo]);
2318
+ }
2319
+ }), Ko = {
2320
+ xmlns: "http://www.w3.org/2000/svg",
2321
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2322
+ viewBox: "0 0 512 512"
2323
+ }, Xo = /* @__PURE__ */ n(
2324
+ "path",
2325
+ {
2326
+ d: "M96.85 286.62a8 8 0 0 0-12.53 8.25C102.07 373.28 172.3 432 256 432a175.31 175.31 0 0 0 52.41-8a8 8 0 0 0 .79-15a1120 1120 0 0 1-109.48-55.61a1126.24 1126.24 0 0 1-102.87-66.77z",
2327
+ fill: "currentColor"
2328
+ },
2329
+ null,
2330
+ -1
2331
+ /* HOISTED */
2332
+ ), Zo = /* @__PURE__ */ n(
2333
+ "path",
2334
+ {
2335
+ d: "M492.72 339.51c-4.19-5.58-9.11-11.44-14.7-17.53a15.83 15.83 0 0 0-26.56 5.13c0 .16-.11.31-.17.47a15.75 15.75 0 0 0 3.15 16.06c22.74 25 26.42 38.51 25.48 41.36c-2 2.23-17.05 6.89-58.15-3.53q-8.83-2.24-19.32-5.46q-6.76-2.08-13.79-4.49a176.76 176.76 0 0 0 19.54-27.25c.17-.29.35-.58.52-.88A175.39 175.39 0 0 0 432 256a178.87 178.87 0 0 0-1-19c-9.57-88.17-84.4-157-175-157a175.37 175.37 0 0 0-106.4 35.89a177.4 177.4 0 0 0-45.83 51.84c-.16.29-.34.58-.51.87a175.48 175.48 0 0 0-13.83 30.52q-5.59-4.87-10.79-9.67c-5.39-5-10.17-9.63-14.42-14c-29.57-30.26-33.09-45.61-32.16-48.45c2-2.23 15.54-5.87 48.62 1.31A15.82 15.82 0 0 0 96.22 123l.36-.44a15.74 15.74 0 0 0-8.67-25.43A237.38 237.38 0 0 0 64.13 93c-30.72-3.53-50.83 2.52-59.78 18c-3.24 5.58-6.35 15.09-2.72 28.6C7 159.66 26.14 184 53.23 209.5c8.63 8.13 18.06 16.37 28.12 24.64c7.32 6 15 12.06 22.9 18.08q7.91 6 16.15 12T137.1 276c25.41 17.61 52.26 34.52 78.59 49.69q14.34 8.26 28.64 16t28.37 14.81c21.9 11 43.35 20.92 63.86 29.43q13.19 5.48 25.81 10.16c11.89 4.42 23.37 8.31 34.31 11.59l1.1.33c25.73 7.66 47.42 11.69 64.48 12H464c21.64 0 36.3-6.38 43.58-19c9.09-15.62 4.08-36.32-14.86-61.5z",
2336
+ fill: "currentColor"
2337
+ },
2338
+ null,
2339
+ -1
2340
+ /* HOISTED */
2341
+ ), Jo = r({
2342
+ name: "Planet",
2343
+ render: function(e, o) {
2344
+ return l(), c("svg", Ko, [Xo, Zo]);
2345
+ }
2346
+ }), Qo = {
2347
+ xmlns: "http://www.w3.org/2000/svg",
2348
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2349
+ viewBox: "0 0 512 512"
2350
+ }, tn = /* @__PURE__ */ n(
2351
+ "path",
2352
+ {
2353
+ d: "M487.83 319.44L295.63 36.88a48 48 0 0 0-79.26 0L24.17 319.44a47.1 47.1 0 0 0 16.93 68.13l192.2 102.75a48.05 48.05 0 0 0 45.4 0l192.2-102.75a47.1 47.1 0 0 0 16.93-68.13zm-431.26 41a16.12 16.12 0 0 1-8-10.38a16.8 16.8 0 0 1 2.37-13.62L232.66 69.26c2.18-3.21 7.34-1.72 7.34 2.13v374c0 5.9-6.54 9.63-11.87 6.78z",
2354
+ fill: "currentColor"
2355
+ },
2356
+ null,
2357
+ -1
2358
+ /* HOISTED */
2359
+ ), en = r({
2360
+ name: "Prism",
2361
+ render: function(e, o) {
2362
+ return l(), c("svg", Qo, [tn]);
2363
+ }
2364
+ }), on = {
2365
+ xmlns: "http://www.w3.org/2000/svg",
2366
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2367
+ viewBox: "0 0 512 512"
2368
+ }, nn = /* @__PURE__ */ n(
2369
+ "path",
2370
+ {
2371
+ d: "M432 272a48.09 48.09 0 0 0-45.25 32h-39.22l-28.35-85.06a16 16 0 0 0-30.56.66l-44.51 155.76l-52.33-314a16 16 0 0 0-31.3-1.25L99.51 304H48a16 16 0 0 0 0 32h64a16 16 0 0 0 15.52-12.12l45.34-181.37l51.36 308.12A16 16 0 0 0 239.1 464h.91a16 16 0 0 0 15.37-11.6l49.8-174.28l15.64 46.94A16 16 0 0 0 336 336h50.75A48 48 0 1 0 432 272z",
2372
+ fill: "currentColor"
2373
+ },
2374
+ null,
2375
+ -1
2376
+ /* HOISTED */
2377
+ ), rn = r({
2378
+ name: "Pulse",
2379
+ render: function(e, o) {
2380
+ return l(), c("svg", on, [nn]);
2381
+ }
2382
+ }), ln = {
2383
+ xmlns: "http://www.w3.org/2000/svg",
2384
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2385
+ viewBox: "0 0 512 512"
2386
+ }, sn = /* @__PURE__ */ n(
2387
+ "path",
2388
+ {
2389
+ fill: "none",
2390
+ stroke: "currentColor",
2391
+ "stroke-linecap": "round",
2392
+ "stroke-linejoin": "round",
2393
+ "stroke-width": "32",
2394
+ d: "M400 256H112"
2395
+ },
2396
+ null,
2397
+ -1
2398
+ /* HOISTED */
2399
+ ), cn = r({
2400
+ name: "Remove",
2401
+ render: function(e, o) {
2402
+ return l(), c("svg", ln, [sn]);
2403
+ }
2404
+ }), an = {
2405
+ xmlns: "http://www.w3.org/2000/svg",
2406
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2407
+ viewBox: "0 0 512 512"
2408
+ }, hn = /* @__PURE__ */ n(
2409
+ "path",
2410
+ {
2411
+ fill: "none",
2412
+ stroke: "currentColor",
2413
+ "stroke-linecap": "round",
2414
+ "stroke-linejoin": "round",
2415
+ "stroke-width": "32",
2416
+ d: "M304 96h112v112"
2417
+ },
2418
+ null,
2419
+ -1
2420
+ /* HOISTED */
2421
+ ), dn = /* @__PURE__ */ n(
2422
+ "path",
2423
+ {
2424
+ fill: "none",
2425
+ stroke: "currentColor",
2426
+ "stroke-linecap": "round",
2427
+ "stroke-linejoin": "round",
2428
+ "stroke-width": "32",
2429
+ d: "M405.77 106.2L111.98 400.02"
2430
+ },
2431
+ null,
2432
+ -1
2433
+ /* HOISTED */
2434
+ ), un = /* @__PURE__ */ n(
2435
+ "path",
2436
+ {
2437
+ fill: "none",
2438
+ stroke: "currentColor",
2439
+ "stroke-linecap": "round",
2440
+ "stroke-linejoin": "round",
2441
+ "stroke-width": "32",
2442
+ d: "M208 416H96V304"
2443
+ },
2444
+ null,
2445
+ -1
2446
+ /* HOISTED */
2447
+ ), wn = r({
2448
+ name: "Resize",
2449
+ render: function(e, o) {
2450
+ return l(), c("svg", an, [hn, dn, un]);
2451
+ }
2452
+ }), _n = {
2453
+ xmlns: "http://www.w3.org/2000/svg",
2454
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2455
+ viewBox: "0 0 512 512"
2456
+ }, gn = /* @__PURE__ */ n(
2457
+ "path",
2458
+ {
2459
+ d: "M328.85 156.79a26.69 26.69 0 1 0 18.88 7.81a26.6 26.6 0 0 0-18.88-7.81z",
2460
+ fill: "currentColor"
2461
+ },
2462
+ null,
2463
+ -1
2464
+ /* HOISTED */
2465
+ ), pn = /* @__PURE__ */ n(
2466
+ "path",
2467
+ {
2468
+ d: "M477.44 50.06a.29.29 0 0 1 0-.09a20.4 20.4 0 0 0-15.13-15.3c-29.8-7.27-76.68.48-128.63 21.28c-52.36 21-101.42 52-134.58 85.22A320.7 320.7 0 0 0 169.55 175c-22.33-1-42 2.18-58.57 9.41c-57.74 25.41-74.23 90.44-78.62 117.14a25 25 0 0 0 27.19 29h.13l64.32-7.02c.08.82.17 1.57.24 2.26a34.36 34.36 0 0 0 9.9 20.72l31.39 31.41a34.27 34.27 0 0 0 20.71 9.91l2.15.23l-7 64.24v.13A25 25 0 0 0 206 480a25.25 25.25 0 0 0 4.15-.34C237 475.34 302 459.05 327.34 401c7.17-16.46 10.34-36.05 9.45-58.34a314.78 314.78 0 0 0 33.95-29.55c33.43-33.26 64.53-81.92 85.31-133.52c20.69-51.36 28.48-98.59 21.39-129.53zM370.38 224.94a58.77 58.77 0 1 1 0-83.07a58.3 58.3 0 0 1 0 83.07z",
2469
+ fill: "currentColor"
2470
+ },
2471
+ null,
2472
+ -1
2473
+ /* HOISTED */
2474
+ ), xn = /* @__PURE__ */ n(
2475
+ "path",
2476
+ {
2477
+ d: "M161.93 386.44a16 16 0 0 0-11 2.67c-6.39 4.37-12.81 8.69-19.29 12.9c-13.11 8.52-28.79-6.44-21-20l12.15-21a16 16 0 0 0-15.16-24.91A61.25 61.25 0 0 0 72 353.56c-3.66 3.67-14.79 14.81-20.78 57.26A357.94 357.94 0 0 0 48 447.59A16 16 0 0 0 64 464h.4a359.87 359.87 0 0 0 36.8-3.2c42.47-6 53.61-17.14 57.27-20.8a60.49 60.49 0 0 0 17.39-35.74a16 16 0 0 0-13.93-17.82z",
2478
+ fill: "currentColor"
2479
+ },
2480
+ null,
2481
+ -1
2482
+ /* HOISTED */
2483
+ ), vn = r({
2484
+ name: "Rocket",
2485
+ render: function(e, o) {
2486
+ return l(), c("svg", _n, [gn, pn, xn]);
2487
+ }
2488
+ }), fn = {
2489
+ xmlns: "http://www.w3.org/2000/svg",
2490
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2491
+ viewBox: "0 0 512 512"
2492
+ }, kn = /* @__PURE__ */ n(
2493
+ "path",
2494
+ {
2495
+ d: "M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3zM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8z",
2496
+ fill: "currentColor"
2497
+ },
2498
+ null,
2499
+ -1
2500
+ /* HOISTED */
2501
+ ), Cn = r({
2502
+ name: "Search",
2503
+ render: function(e, o) {
2504
+ return l(), c("svg", fn, [kn]);
2505
+ }
2506
+ }), mn = {
2507
+ xmlns: "http://www.w3.org/2000/svg",
2508
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2509
+ viewBox: "0 0 512 512"
2510
+ }, $n = /* @__PURE__ */ n(
2511
+ "path",
2512
+ {
2513
+ d: "M476.59 227.05l-.16-.07L49.35 49.84A23.56 23.56 0 0 0 27.14 52A24.65 24.65 0 0 0 16 72.59v113.29a24 24 0 0 0 19.52 23.57l232.93 43.07a4 4 0 0 1 0 7.86L35.53 303.45A24 24 0 0 0 16 327v113.31A23.57 23.57 0 0 0 26.59 460a23.94 23.94 0 0 0 13.22 4a24.55 24.55 0 0 0 9.52-1.93L476.4 285.94l.19-.09a32 32 0 0 0 0-58.8z",
2514
+ fill: "currentColor"
2515
+ },
2516
+ null,
2517
+ -1
2518
+ /* HOISTED */
2519
+ ), Mn = r({
2520
+ name: "Send",
2521
+ render: function(e, o) {
2522
+ return l(), c("svg", mn, [$n]);
2523
+ }
2524
+ }), Ln = {
2525
+ xmlns: "http://www.w3.org/2000/svg",
2526
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2527
+ viewBox: "0 0 512 512"
2528
+ }, zn = /* @__PURE__ */ n(
2529
+ "path",
2530
+ {
2531
+ d: "M256 176a80 80 0 1 0 80 80a80.24 80.24 0 0 0-80-80zm172.72 80a165.53 165.53 0 0 1-1.64 22.34l48.69 38.12a11.59 11.59 0 0 1 2.63 14.78l-46.06 79.52a11.64 11.64 0 0 1-14.14 4.93l-57.25-23a176.56 176.56 0 0 1-38.82 22.67l-8.56 60.78a11.93 11.93 0 0 1-11.51 9.86h-92.12a12 12 0 0 1-11.51-9.53l-8.56-60.78A169.3 169.3 0 0 1 151.05 393L93.8 416a11.64 11.64 0 0 1-14.14-4.92L33.6 331.57a11.59 11.59 0 0 1 2.63-14.78l48.69-38.12A174.58 174.58 0 0 1 83.28 256a165.53 165.53 0 0 1 1.64-22.34l-48.69-38.12a11.59 11.59 0 0 1-2.63-14.78l46.06-79.52a11.64 11.64 0 0 1 14.14-4.93l57.25 23a176.56 176.56 0 0 1 38.82-22.67l8.56-60.78A11.93 11.93 0 0 1 209.94 26h92.12a12 12 0 0 1 11.51 9.53l8.56 60.78A169.3 169.3 0 0 1 361 119l57.2-23a11.64 11.64 0 0 1 14.14 4.92l46.06 79.52a11.59 11.59 0 0 1-2.63 14.78l-48.69 38.12a174.58 174.58 0 0 1 1.64 22.66z",
2532
+ fill: "currentColor"
2533
+ },
2534
+ null,
2535
+ -1
2536
+ /* HOISTED */
2537
+ ), An = r({
2538
+ name: "SettingsSharp",
2539
+ render: function(e, o) {
2540
+ return l(), c("svg", Ln, [zn]);
2541
+ }
2542
+ }), Sn = {
2543
+ xmlns: "http://www.w3.org/2000/svg",
2544
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2545
+ viewBox: "0 0 512 512"
2546
+ }, In = /* @__PURE__ */ n(
2547
+ "path",
2548
+ {
2549
+ d: "M376 176H272v145a16 16 0 0 1-32 0V176H136a56.06 56.06 0 0 0-56 56v192a56.06 56.06 0 0 0 56 56h240a56.06 56.06 0 0 0 56-56V232a56.06 56.06 0 0 0-56-56z",
2550
+ fill: "currentColor"
2551
+ },
2552
+ null,
2553
+ -1
2554
+ /* HOISTED */
2555
+ ), Tn = /* @__PURE__ */ n(
2556
+ "path",
2557
+ {
2558
+ d: "M272 86.63l52.69 52.68a16 16 0 0 0 22.62-22.62l-80-80a16 16 0 0 0-22.62 0l-80 80a16 16 0 0 0 22.62 22.62L240 86.63V176h32z",
2559
+ fill: "currentColor"
2560
+ },
2561
+ null,
2562
+ -1
2563
+ /* HOISTED */
2564
+ ), Hn = r({
2565
+ name: "Share",
2566
+ render: function(e, o) {
2567
+ return l(), c("svg", Sn, [In, Tn]);
2568
+ }
2569
+ }), On = {
2570
+ xmlns: "http://www.w3.org/2000/svg",
2571
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2572
+ viewBox: "0 0 512 512"
2573
+ }, Bn = /* @__PURE__ */ n(
2574
+ "path",
2575
+ {
2576
+ d: "M416 464H96a48.05 48.05 0 0 1-48-48V96a48.05 48.05 0 0 1 48-48h320a48.05 48.05 0 0 1 48 48v320a48.05 48.05 0 0 1-48 48z",
2577
+ fill: "currentColor"
2578
+ },
2579
+ null,
2580
+ -1
2581
+ /* HOISTED */
2582
+ ), bn = r({
2583
+ name: "Square",
2584
+ render: function(e, o) {
2585
+ return l(), c("svg", On, [Bn]);
2586
+ }
2587
+ }), Dn = {
2588
+ xmlns: "http://www.w3.org/2000/svg",
2589
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2590
+ viewBox: "0 0 512 512"
2591
+ }, Vn = /* @__PURE__ */ n(
2592
+ "path",
2593
+ {
2594
+ d: "M256 118a22 22 0 0 1-22-22V48a22 22 0 0 1 44 0v48a22 22 0 0 1-22 22z",
2595
+ fill: "currentColor"
2596
+ },
2597
+ null,
2598
+ -1
2599
+ /* HOISTED */
2600
+ ), yn = /* @__PURE__ */ n(
2601
+ "path",
2602
+ {
2603
+ d: "M256 486a22 22 0 0 1-22-22v-48a22 22 0 0 1 44 0v48a22 22 0 0 1-22 22z",
2604
+ fill: "currentColor"
2605
+ },
2606
+ null,
2607
+ -1
2608
+ /* HOISTED */
2609
+ ), Rn = /* @__PURE__ */ n(
2610
+ "path",
2611
+ {
2612
+ d: "M369.14 164.86a22 22 0 0 1-15.56-37.55l33.94-33.94a22 22 0 0 1 31.11 31.11l-33.94 33.94a21.93 21.93 0 0 1-15.55 6.44z",
2613
+ fill: "currentColor"
2614
+ },
2615
+ null,
2616
+ -1
2617
+ /* HOISTED */
2618
+ ), En = /* @__PURE__ */ n(
2619
+ "path",
2620
+ {
2621
+ d: "M108.92 425.08a22 22 0 0 1-15.55-37.56l33.94-33.94a22 22 0 1 1 31.11 31.11l-33.94 33.94a21.94 21.94 0 0 1-15.56 6.45z",
2622
+ fill: "currentColor"
2623
+ },
2624
+ null,
2625
+ -1
2626
+ /* HOISTED */
2627
+ ), Nn = /* @__PURE__ */ n(
2628
+ "path",
2629
+ {
2630
+ d: "M464 278h-48a22 22 0 0 1 0-44h48a22 22 0 0 1 0 44z",
2631
+ fill: "currentColor"
2632
+ },
2633
+ null,
2634
+ -1
2635
+ /* HOISTED */
2636
+ ), Pn = /* @__PURE__ */ n(
2637
+ "path",
2638
+ {
2639
+ d: "M96 278H48a22 22 0 0 1 0-44h48a22 22 0 0 1 0 44z",
2640
+ fill: "currentColor"
2641
+ },
2642
+ null,
2643
+ -1
2644
+ /* HOISTED */
2645
+ ), Gn = /* @__PURE__ */ n(
2646
+ "path",
2647
+ {
2648
+ d: "M403.08 425.08a21.94 21.94 0 0 1-15.56-6.45l-33.94-33.94a22 22 0 0 1 31.11-31.11l33.94 33.94a22 22 0 0 1-15.55 37.56z",
2649
+ fill: "currentColor"
2650
+ },
2651
+ null,
2652
+ -1
2653
+ /* HOISTED */
2654
+ ), Un = /* @__PURE__ */ n(
2655
+ "path",
2656
+ {
2657
+ d: "M142.86 164.86a21.89 21.89 0 0 1-15.55-6.44l-33.94-33.94a22 22 0 0 1 31.11-31.11l33.94 33.94a22 22 0 0 1-15.56 37.55z",
2658
+ fill: "currentColor"
2659
+ },
2660
+ null,
2661
+ -1
2662
+ /* HOISTED */
2663
+ ), jn = /* @__PURE__ */ n(
2664
+ "path",
2665
+ {
2666
+ d: "M256 358a102 102 0 1 1 102-102a102.12 102.12 0 0 1-102 102z",
2667
+ fill: "currentColor"
2668
+ },
2669
+ null,
2670
+ -1
2671
+ /* HOISTED */
2672
+ ), Fn = r({
2673
+ name: "Sunny",
2674
+ render: function(e, o) {
2675
+ return l(), c("svg", Dn, [Vn, yn, Rn, En, Nn, Pn, Gn, Un, jn]);
2676
+ }
2677
+ }), qn = {
2678
+ xmlns: "http://www.w3.org/2000/svg",
2679
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2680
+ viewBox: "0 0 512 512"
2681
+ }, Wn = /* @__PURE__ */ n(
2682
+ "path",
2683
+ {
2684
+ d: "M296 64h-80a7.91 7.91 0 0 0-8 8v24h96V72a7.91 7.91 0 0 0-8-8z",
2685
+ fill: "none"
2686
+ },
2687
+ null,
2688
+ -1
2689
+ /* HOISTED */
2690
+ ), Yn = /* @__PURE__ */ n(
2691
+ "path",
2692
+ {
2693
+ d: "M432 96h-96V72a40 40 0 0 0-40-40h-80a40 40 0 0 0-40 40v24H80a16 16 0 0 0 0 32h17l19 304.92c1.42 26.85 22 47.08 48 47.08h184c26.13 0 46.3-19.78 48-47l19-305h17a16 16 0 0 0 0-32zM192.57 416H192a16 16 0 0 1-16-15.43l-8-224a16 16 0 1 1 32-1.14l8 224A16 16 0 0 1 192.57 416zM272 400a16 16 0 0 1-32 0V176a16 16 0 0 1 32 0zm32-304h-96V72a7.91 7.91 0 0 1 8-8h80a7.91 7.91 0 0 1 8 8zm32 304.57A16 16 0 0 1 320 416h-.58A16 16 0 0 1 304 399.43l8-224a16 16 0 1 1 32 1.14z",
2694
+ fill: "currentColor"
2695
+ },
2696
+ null,
2697
+ -1
2698
+ /* HOISTED */
2699
+ ), Kn = r({
2700
+ name: "Trash",
2701
+ render: function(e, o) {
2702
+ return l(), c("svg", qn, [Wn, Yn]);
2703
+ }
2704
+ }), Xn = {
2705
+ xmlns: "http://www.w3.org/2000/svg",
2706
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2707
+ viewBox: "0 0 512 512"
2708
+ }, Zn = /* @__PURE__ */ n(
2709
+ "rect",
2710
+ {
2711
+ x: "32",
2712
+ y: "96",
2713
+ width: "448",
2714
+ height: "272",
2715
+ rx: "32.14",
2716
+ ry: "32.14",
2717
+ fill: "none",
2718
+ stroke: "currentColor",
2719
+ "stroke-linejoin": "round",
2720
+ "stroke-width": "32"
2721
+ },
2722
+ null,
2723
+ -1
2724
+ /* HOISTED */
2725
+ ), Jn = /* @__PURE__ */ n(
2726
+ "path",
2727
+ {
2728
+ stroke: "currentColor",
2729
+ "stroke-linecap": "round",
2730
+ "stroke-miterlimit": "10",
2731
+ "stroke-width": "32",
2732
+ d: "M128 416h256",
2733
+ fill: "currentColor"
2734
+ },
2735
+ null,
2736
+ -1
2737
+ /* HOISTED */
2738
+ ), Qn = r({
2739
+ name: "TvOutline",
2740
+ render: function(e, o) {
2741
+ return l(), c("svg", Xn, [Zn, Jn]);
2742
+ }
2743
+ }), tr = {
2744
+ xmlns: "http://www.w3.org/2000/svg",
2745
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2746
+ viewBox: "0 0 32 32"
2747
+ }, er = /* @__PURE__ */ i(
2748
+ "path",
2749
+ {
2750
+ d: "M24 18h-7v-4h3a2.002 2.002 0 0 0 2-2V8a2.002 2.002 0 0 0-2-2h-3V2h-2v4h-3a2.002 2.002 0 0 0-2 2v4a2.002 2.002 0 0 0 2 2h3v4H8a2.002 2.002 0 0 0-2 2v4a2.002 2.002 0 0 0 2 2h7v4h2v-4h7a2.002 2.002 0 0 0 2-2v-4a2.002 2.002 0 0 0-2-2zM12 8h8v4h-8zm12 16H8v-4h16z",
2751
+ fill: "currentColor"
2752
+ },
2753
+ null,
2754
+ -1
2755
+ /* HOISTED */
2756
+ ), or = [er], nr = r({
2757
+ name: "AlignHorizontalCenter",
2758
+ render: function(e, o) {
2759
+ return l(), u("svg", tr, or);
2760
+ }
2761
+ }), rr = {
2762
+ xmlns: "http://www.w3.org/2000/svg",
2763
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2764
+ viewBox: "0 0 32 32"
2765
+ }, lr = /* @__PURE__ */ i(
2766
+ "path",
2767
+ {
2768
+ d: "M26 26H11a2.002 2.002 0 0 1-2-2v-4a2.002 2.002 0 0 1 2-2h15a2.002 2.002 0 0 1 2 2v4a2.002 2.002 0 0 1-2 2zm0-6.001L11 20v4h15z",
2769
+ fill: "currentColor"
2770
+ },
2771
+ null,
2772
+ -1
2773
+ /* HOISTED */
2774
+ ), sr = /* @__PURE__ */ i(
2775
+ "path",
2776
+ {
2777
+ d: "M18 14h-7a2.002 2.002 0 0 1-2-2V8a2.002 2.002 0 0 1 2-2h7a2.002 2.002 0 0 1 2 2v4a2.002 2.002 0 0 1-2 2zm0-6.001L11 8v4h7z",
2778
+ fill: "currentColor"
2779
+ },
2780
+ null,
2781
+ -1
2782
+ /* HOISTED */
2783
+ ), cr = /* @__PURE__ */ i(
2784
+ "path",
2785
+ {
2786
+ d: "M4 2h2v28H4z",
2787
+ fill: "currentColor"
2788
+ },
2789
+ null,
2790
+ -1
2791
+ /* HOISTED */
2792
+ ), ir = [lr, sr, cr], ar = r({
2793
+ name: "AlignHorizontalLeft",
2794
+ render: function(e, o) {
2795
+ return l(), u("svg", rr, ir);
2796
+ }
2797
+ }), hr = {
2798
+ xmlns: "http://www.w3.org/2000/svg",
2799
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2800
+ viewBox: "0 0 32 32"
2801
+ }, dr = /* @__PURE__ */ i(
2802
+ "path",
2803
+ {
2804
+ d: "M4 24v-4a2.002 2.002 0 0 1 2-2h15a2.002 2.002 0 0 1 2 2v4a2.002 2.002 0 0 1-2 2H6a2.002 2.002 0 0 1-2-2zm2 0h15v-4l-15-.001z",
2805
+ fill: "currentColor"
2806
+ },
2807
+ null,
2808
+ -1
2809
+ /* HOISTED */
2810
+ ), ur = /* @__PURE__ */ i(
2811
+ "path",
2812
+ {
2813
+ d: "M12 12V8a2.002 2.002 0 0 1 2-2h7a2.002 2.002 0 0 1 2 2v4a2.002 2.002 0 0 1-2 2h-7a2.002 2.002 0 0 1-2-2zm2 0h7V8l-7-.001z",
2814
+ fill: "currentColor"
2815
+ },
2816
+ null,
2817
+ -1
2818
+ /* HOISTED */
2819
+ ), wr = /* @__PURE__ */ i(
2820
+ "path",
2821
+ {
2822
+ d: "M28 30h-2V2h2z",
2823
+ fill: "currentColor"
2824
+ },
2825
+ null,
2826
+ -1
2827
+ /* HOISTED */
2828
+ ), _r = [dr, ur, wr], gr = r({
2829
+ name: "AlignHorizontalRight",
2830
+ render: function(e, o) {
2831
+ return l(), u("svg", hr, _r);
2832
+ }
2833
+ }), pr = {
2834
+ xmlns: "http://www.w3.org/2000/svg",
2835
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2836
+ viewBox: "0 0 32 32"
2837
+ }, xr = /* @__PURE__ */ i(
2838
+ "path",
2839
+ {
2840
+ d: "M2 26h28v2H2z",
2841
+ fill: "currentColor"
2842
+ },
2843
+ null,
2844
+ -1
2845
+ /* HOISTED */
2846
+ ), vr = /* @__PURE__ */ i(
2847
+ "path",
2848
+ {
2849
+ d: "M24 23h-4a2.002 2.002 0 0 1-2-2v-7a2.002 2.002 0 0 1 2-2h4a2.002 2.002 0 0 1 2 2v7a2.002 2.002 0 0 1-2 2zm-4-9v7h4.001L24 14z",
2850
+ fill: "currentColor"
2851
+ },
2852
+ null,
2853
+ -1
2854
+ /* HOISTED */
2855
+ ), fr = /* @__PURE__ */ i(
2856
+ "path",
2857
+ {
2858
+ d: "M12 23H8a2.002 2.002 0 0 1-2-2V6a2.002 2.002 0 0 1 2-2h4a2.002 2.002 0 0 1 2 2v15a2.002 2.002 0 0 1-2 2zM8 6v15h4.001L12 6z",
2859
+ fill: "currentColor"
2860
+ },
2861
+ null,
2862
+ -1
2863
+ /* HOISTED */
2864
+ ), kr = [xr, vr, fr], Cr = r({
2865
+ name: "AlignVerticalBottom",
2866
+ render: function(e, o) {
2867
+ return l(), u("svg", pr, kr);
2868
+ }
2869
+ }), mr = {
2870
+ xmlns: "http://www.w3.org/2000/svg",
2871
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2872
+ viewBox: "0 0 32 32"
2873
+ }, $r = /* @__PURE__ */ i(
2874
+ "path",
2875
+ {
2876
+ d: "M30 15h-4v-3a2.002 2.002 0 0 0-2-2h-4a2.002 2.002 0 0 0-2 2v3h-4V8a2.002 2.002 0 0 0-2-2H8a2.002 2.002 0 0 0-2 2v7H2v2h4v7a2.002 2.002 0 0 0 2 2h4a2.002 2.002 0 0 0 2-2v-7h4v3a2.002 2.002 0 0 0 2 2h4a2.002 2.002 0 0 0 2-2v-3h4zM8 24V8h4l.001 16zm12-4v-8h4l.001 8z",
2877
+ fill: "currentColor"
2878
+ },
2879
+ null,
2880
+ -1
2881
+ /* HOISTED */
2882
+ ), Mr = [$r], Lr = r({
2883
+ name: "AlignVerticalCenter",
2884
+ render: function(e, o) {
2885
+ return l(), u("svg", mr, Mr);
2886
+ }
2887
+ }), zr = {
2888
+ xmlns: "http://www.w3.org/2000/svg",
2889
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2890
+ viewBox: "0 0 32 32"
2891
+ }, Ar = /* @__PURE__ */ i(
2892
+ "path",
2893
+ {
2894
+ d: "M24 20h-4a2.002 2.002 0 0 1-2-2v-7a2.002 2.002 0 0 1 2-2h4a2.002 2.002 0 0 1 2 2v7a2.002 2.002 0 0 1-2 2zm-4-9v7h4.001L24 11z",
2895
+ fill: "currentColor"
2896
+ },
2897
+ null,
2898
+ -1
2899
+ /* HOISTED */
2900
+ ), Sr = /* @__PURE__ */ i(
2901
+ "path",
2902
+ {
2903
+ d: "M12 28H8a2.002 2.002 0 0 1-2-2V11a2.002 2.002 0 0 1 2-2h4a2.002 2.002 0 0 1 2 2v15a2.002 2.002 0 0 1-2 2zM8 11v15h4.001L12 11z",
2904
+ fill: "currentColor"
2905
+ },
2906
+ null,
2907
+ -1
2908
+ /* HOISTED */
2909
+ ), Ir = /* @__PURE__ */ i(
2910
+ "path",
2911
+ {
2912
+ d: "M2 4h28v2H2z",
2913
+ fill: "currentColor"
2914
+ },
2915
+ null,
2916
+ -1
2917
+ /* HOISTED */
2918
+ ), Tr = [Ar, Sr, Ir], Hr = r({
2919
+ name: "AlignVerticalTop",
2920
+ render: function(e, o) {
2921
+ return l(), u("svg", zr, Tr);
2922
+ }
2923
+ }), Or = {
2924
+ xmlns: "http://www.w3.org/2000/svg",
2925
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2926
+ viewBox: "0 0 32 32"
2927
+ }, Br = /* @__PURE__ */ i(
2928
+ "path",
2929
+ {
2930
+ d: "M13 4H4v9.01h2V6h7V4z",
2931
+ fill: "currentColor"
2932
+ },
2933
+ null,
2934
+ -1
2935
+ /* HOISTED */
2936
+ ), br = /* @__PURE__ */ i(
2937
+ "path",
2938
+ {
2939
+ d: "M29.49 13.12l-9-5a1 1 0 0 0-1 0l-9 5A1 1 0 0 0 10 14v10a1 1 0 0 0 .52.87l9 5A1 1 0 0 0 20 30a1.05 1.05 0 0 0 .49-.13l9-5A1 1 0 0 0 30 24V14a1 1 0 0 0-.51-.88zM19 27.3l-7-3.89v-7.72l7 3.89zm1-9.45L13.06 14L20 10.14L26.94 14zm8 5.56l-7 3.89v-7.72l7-3.89z",
2940
+ fill: "currentColor"
2941
+ },
2942
+ null,
2943
+ -1
2944
+ /* HOISTED */
2945
+ ), Dr = [Br, br], Vr = r({
2946
+ name: "Carbon3DCursor",
2947
+ render: function(e, o) {
2948
+ return l(), u("svg", Or, Dr);
2949
+ }
2950
+ }), yr = {
2951
+ xmlns: "http://www.w3.org/2000/svg",
2952
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2953
+ viewBox: "0 0 32 32"
2954
+ }, Rr = /* @__PURE__ */ i(
2955
+ "path",
2956
+ {
2957
+ d: "M21.49 13.115l-9-5a1 1 0 0 0-1 0l-9 5A1.008 1.008 0 0 0 2 14v9.995a1 1 0 0 0 .52.87l9 5A1.004 1.004 0 0 0 12 30a1.056 1.056 0 0 0 .49-.135l9-5A.992.992 0 0 0 22 24V14a1.008 1.008 0 0 0-.51-.885zM11 27.295l-7-3.89v-7.72l7 3.89zm1-9.45L5.06 14L12 10.135l6.94 3.86zm8 5.56l-7 3.89v-7.72l7-3.89z",
2958
+ fill: "currentColor"
2959
+ },
2960
+ null,
2961
+ -1
2962
+ /* HOISTED */
2963
+ ), Er = /* @__PURE__ */ i(
2964
+ "path",
2965
+ {
2966
+ d: "M30 6h-4V2h-2v4h-4v2h4v4h2V8h4V6z",
2967
+ fill: "currentColor"
2968
+ },
2969
+ null,
2970
+ -1
2971
+ /* HOISTED */
2972
+ ), Nr = [Rr, Er], Pr = r({
2973
+ name: "Carbon3DSoftware",
2974
+ render: function(e, o) {
2975
+ return l(), u("svg", yr, Nr);
2976
+ }
2977
+ }), Gr = {
2978
+ xmlns: "http://www.w3.org/2000/svg",
2979
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2980
+ viewBox: "0 0 32 32"
2981
+ }, Ur = /* @__PURE__ */ i(
2982
+ "path",
2983
+ {
2984
+ d: "M16 4a12 12 0 1 0 12 12A12 12 0 0 0 16 4zm10 11h-9V6.05A10 10 0 0 1 26 15zM15.42 26A10 10 0 0 1 15 6.05v9a2 2 0 0 0 2 2h9A10 10 0 0 1 15.42 26z",
2985
+ fill: "currentColor"
2986
+ },
2987
+ null,
2988
+ -1
2989
+ /* HOISTED */
2990
+ ), jr = [Ur], Fr = r({
2991
+ name: "ChartPie",
2992
+ render: function(e, o) {
2993
+ return l(), u("svg", Gr, jr);
2994
+ }
2995
+ }), qr = {
2996
+ xmlns: "http://www.w3.org/2000/svg",
2997
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
2998
+ viewBox: "0 0 32 32"
2999
+ }, Wr = /* @__PURE__ */ i(
3000
+ "path",
3001
+ {
3002
+ d: "M25.82 10H30V8h-4.18a3 3 0 0 0-5.64 0H13V5H5v3H2v2h3v3h8v-3h7.18A3 3 0 0 0 22 11.82v7.32A4 4 0 0 0 19.14 22H2v2h17.14a4 4 0 0 0 7.72 0H30v-2h-3.14A4 4 0 0 0 24 19.14v-7.32A3 3 0 0 0 25.82 10zM11 11H7V7h4zm14 12a2 2 0 1 1-2-2a2 2 0 0 1 2 2z",
3003
+ fill: "currentColor"
3004
+ },
3005
+ null,
3006
+ -1
3007
+ /* HOISTED */
3008
+ ), Yr = [Wr], F = r({
3009
+ name: "ComposerEdit",
3010
+ render: function(e, o) {
3011
+ return l(), u("svg", qr, Yr);
3012
+ }
3013
+ }), Kr = {
3014
+ xmlns: "http://www.w3.org/2000/svg",
3015
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3016
+ viewBox: "0 0 32 32"
3017
+ }, Xr = /* @__PURE__ */ i(
3018
+ "path",
3019
+ {
3020
+ d: "M10 30H4a2 2 0 0 1-2-2V16a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2zM4 16v12h6V16z",
3021
+ fill: "currentColor"
3022
+ },
3023
+ null,
3024
+ -1
3025
+ /* HOISTED */
3026
+ ), Zr = /* @__PURE__ */ i(
3027
+ "path",
3028
+ {
3029
+ d: "M28 4H6a2 2 0 0 0-2 2v6h2V6h22v14H14v2h2v4h-2v2h9v-2h-5v-4h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z",
3030
+ fill: "currentColor"
3031
+ },
3032
+ null,
3033
+ -1
3034
+ /* HOISTED */
3035
+ ), Jr = [Xr, Zr], Qr = r({
3036
+ name: "Devices",
3037
+ render: function(e, o) {
3038
+ return l(), u("svg", Kr, Jr);
3039
+ }
3040
+ }), tl = {
3041
+ xmlns: "http://www.w3.org/2000/svg",
3042
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3043
+ viewBox: "0 0 32 32"
3044
+ }, el = /* @__PURE__ */ i(
3045
+ "path",
3046
+ {
3047
+ d: "M28 6v20H4V6h24m0-2H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h24a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z",
3048
+ fill: "currentColor"
3049
+ },
3050
+ null,
3051
+ -1
3052
+ /* HOISTED */
3053
+ ), ol = /* @__PURE__ */ i(
3054
+ "path",
3055
+ {
3056
+ d: "M6 8h10v2H6z",
3057
+ fill: "currentColor"
3058
+ },
3059
+ null,
3060
+ -1
3061
+ /* HOISTED */
3062
+ ), nl = /* @__PURE__ */ i(
3063
+ "path",
3064
+ {
3065
+ d: "M6 12h10v2H6z",
3066
+ fill: "currentColor"
3067
+ },
3068
+ null,
3069
+ -1
3070
+ /* HOISTED */
3071
+ ), rl = /* @__PURE__ */ i(
3072
+ "path",
3073
+ {
3074
+ d: "M6 16h6v2H6z",
3075
+ fill: "currentColor"
3076
+ },
3077
+ null,
3078
+ -1
3079
+ /* HOISTED */
3080
+ ), ll = [el, ol, nl, rl], sl = r({
3081
+ name: "DicomOverlay",
3082
+ render: function(e, o) {
3083
+ return l(), u("svg", tl, ll);
3084
+ }
3085
+ }), cl = {
3086
+ xmlns: "http://www.w3.org/2000/svg",
3087
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3088
+ viewBox: "0 0 32 32"
3089
+ }, il = /* @__PURE__ */ i(
3090
+ "path",
3091
+ {
3092
+ d: "M30 24h-4v-4h-2v4h-4v2h4v4h2v-4h4v-2z",
3093
+ fill: "currentColor"
3094
+ },
3095
+ null,
3096
+ -1
3097
+ /* HOISTED */
3098
+ ), al = /* @__PURE__ */ i(
3099
+ "path",
3100
+ {
3101
+ d: "M16 28H8V4h8v6a2.006 2.006 0 0 0 2 2h6v4h2v-6a.91.91 0 0 0-.3-.7l-7-7A.909.909 0 0 0 18 2H8a2.006 2.006 0 0 0-2 2v24a2.006 2.006 0 0 0 2 2h8zm2-23.6l5.6 5.6H18z",
3102
+ fill: "currentColor"
3103
+ },
3104
+ null,
3105
+ -1
3106
+ /* HOISTED */
3107
+ ), hl = [il, al], dl = r({
3108
+ name: "DocumentAdd",
3109
+ render: function(e, o) {
3110
+ return l(), u("svg", cl, hl);
3111
+ }
3112
+ }), ul = {
3113
+ xmlns: "http://www.w3.org/2000/svg",
3114
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3115
+ viewBox: "0 0 32 32"
3116
+ }, wl = /* @__PURE__ */ i(
3117
+ "path",
3118
+ {
3119
+ d: "M30 25l-1.414-1.414L26 26.172V18h-2v8.172l-2.586-2.586L20 25l5 5l5-5z",
3120
+ fill: "currentColor"
3121
+ },
3122
+ null,
3123
+ -1
3124
+ /* HOISTED */
3125
+ ), _l = /* @__PURE__ */ i(
3126
+ "path",
3127
+ {
3128
+ d: "M18 28H8V4h8v6a2.006 2.006 0 0 0 2 2h6v3h2v-5a.91.91 0 0 0-.3-.7l-7-7A.909.909 0 0 0 18 2H8a2.006 2.006 0 0 0-2 2v24a2.006 2.006 0 0 0 2 2h10zm0-23.6l5.6 5.6H18z",
3129
+ fill: "currentColor"
3130
+ },
3131
+ null,
3132
+ -1
3133
+ /* HOISTED */
3134
+ ), gl = [wl, _l], pl = r({
3135
+ name: "DocumentDownload",
3136
+ render: function(e, o) {
3137
+ return l(), u("svg", ul, gl);
3138
+ }
3139
+ }), xl = {
3140
+ xmlns: "http://www.w3.org/2000/svg",
3141
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3142
+ viewBox: "0 0 32 32"
3143
+ }, vl = /* @__PURE__ */ i(
3144
+ "path",
3145
+ {
3146
+ d: "M16 18L6 8l1.4-1.4l8.6 8.6l8.6-8.6L26 8z",
3147
+ fill: "currentColor"
3148
+ },
3149
+ null,
3150
+ -1
3151
+ /* HOISTED */
3152
+ ), fl = /* @__PURE__ */ i(
3153
+ "path",
3154
+ {
3155
+ d: "M4 22h24v2H4z",
3156
+ fill: "currentColor"
3157
+ },
3158
+ null,
3159
+ -1
3160
+ /* HOISTED */
3161
+ ), kl = [vl, fl], Cl = r({
3162
+ name: "DownToBottom",
3163
+ render: function(e, o) {
3164
+ return l(), u("svg", xl, kl);
3165
+ }
3166
+ }), ml = {
3167
+ xmlns: "http://www.w3.org/2000/svg",
3168
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3169
+ viewBox: "0 0 32 32"
3170
+ }, $l = /* @__PURE__ */ i(
3171
+ "path",
3172
+ {
3173
+ d: "M2 26h28v2H2z",
3174
+ fill: "currentColor"
3175
+ },
3176
+ null,
3177
+ -1
3178
+ /* HOISTED */
3179
+ ), Ml = /* @__PURE__ */ i(
3180
+ "path",
3181
+ {
3182
+ d: "M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z",
3183
+ fill: "currentColor"
3184
+ },
3185
+ null,
3186
+ -1
3187
+ /* HOISTED */
3188
+ ), Ll = [$l, Ml], zl = r({
3189
+ name: "Edit",
3190
+ render: function(e, o) {
3191
+ return l(), u("svg", ml, Ll);
3192
+ }
3193
+ }), Al = {
3194
+ xmlns: "http://www.w3.org/2000/svg",
3195
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3196
+ viewBox: "0 0 32 32"
3197
+ }, Sl = /* @__PURE__ */ i(
3198
+ "path",
3199
+ {
3200
+ d: "M18 28h-4a2 2 0 0 1-2-2v-7.59L4.59 11A2 2 0 0 1 4 9.59V6a2 2 0 0 1 2-2h20a2 2 0 0 1 2 2v3.59a2 2 0 0 1-.59 1.41L20 18.41V26a2 2 0 0 1-2 2zM6 6v3.59l8 8V26h4v-8.41l8-8V6z",
3201
+ fill: "currentColor"
3202
+ },
3203
+ null,
3204
+ -1
3205
+ /* HOISTED */
3206
+ ), Il = [Sl], q = r({
3207
+ name: "Filter",
3208
+ render: function(e, o) {
3209
+ return l(), u("svg", Al, Il);
3210
+ }
3211
+ }), Tl = {
3212
+ xmlns: "http://www.w3.org/2000/svg",
3213
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3214
+ viewBox: "0 0 32 32"
3215
+ }, Hl = /* @__PURE__ */ i(
3216
+ "path",
3217
+ {
3218
+ d: "M26 6H4v3.17l7.41 7.42l.59.58V26h4v-2h2v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-8l-7.41-7.41A2 2 0 0 1 2 9.17V6a2 2 0 0 1 2-2h22z",
3219
+ fill: "currentColor"
3220
+ },
3221
+ null,
3222
+ -1
3223
+ /* HOISTED */
3224
+ ), Ol = /* @__PURE__ */ i(
3225
+ "path",
3226
+ {
3227
+ d: "M29.71 11.29l-3-3a1 1 0 0 0-1.42 0L16 17.59V22h4.41l9.3-9.29a1 1 0 0 0 0-1.42zM19.59 20H18v-1.59l5-5L24.59 15zM26 13.59L24.41 12L26 10.41L27.59 12z",
3228
+ fill: "currentColor"
3229
+ },
3230
+ null,
3231
+ -1
3232
+ /* HOISTED */
3233
+ ), Bl = [Hl, Ol], bl = r({
3234
+ name: "FilterEdit",
3235
+ render: function(e, o) {
3236
+ return l(), u("svg", Tl, Bl);
3237
+ }
3238
+ }), Dl = {
3239
+ xmlns: "http://www.w3.org/2000/svg",
3240
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3241
+ viewBox: "0 0 32 32"
3242
+ }, Vl = /* @__PURE__ */ i(
3243
+ "path",
3244
+ {
3245
+ d: "M11 10l1.41 1.41L15 8.83v14.34l-2.59-2.58L11 22l5 5l5-5l-1.41-1.41L17 23.17V8.83l2.59 2.58L21 10l-5-5l-5 5z",
3246
+ fill: "currentColor"
3247
+ },
3248
+ null,
3249
+ -1
3250
+ /* HOISTED */
3251
+ ), yl = /* @__PURE__ */ i(
3252
+ "path",
3253
+ {
3254
+ d: "M28 30H4a2.002 2.002 0 0 1-2-2V4a2.002 2.002 0 0 1 2-2h24a2.002 2.002 0 0 1 2 2v24a2.002 2.002 0 0 1-2 2zM4 4v24h24V4z",
3255
+ fill: "currentColor"
3256
+ },
3257
+ null,
3258
+ -1
3259
+ /* HOISTED */
3260
+ ), Rl = [Vl, yl], El = r({
3261
+ name: "FitToHeight",
3262
+ render: function(e, o) {
3263
+ return l(), u("svg", Dl, Rl);
3264
+ }
3265
+ }), Nl = {
3266
+ xmlns: "http://www.w3.org/2000/svg",
3267
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3268
+ viewBox: "0 0 32 32"
3269
+ }, Pl = /* @__PURE__ */ i(
3270
+ "path",
3271
+ {
3272
+ d: "M22 16h2V8h-8v2h6v6z",
3273
+ fill: "currentColor"
3274
+ },
3275
+ null,
3276
+ -1
3277
+ /* HOISTED */
3278
+ ), Gl = /* @__PURE__ */ i(
3279
+ "path",
3280
+ {
3281
+ d: "M8 24h8v-2h-6v-6H8v8z",
3282
+ fill: "currentColor"
3283
+ },
3284
+ null,
3285
+ -1
3286
+ /* HOISTED */
3287
+ ), Ul = /* @__PURE__ */ i(
3288
+ "path",
3289
+ {
3290
+ d: "M26 28H6a2.002 2.002 0 0 1-2-2V6a2.002 2.002 0 0 1 2-2h20a2.002 2.002 0 0 1 2 2v20a2.002 2.002 0 0 1-2 2zM6 6v20h20.001L26 6z",
3291
+ fill: "currentColor"
3292
+ },
3293
+ null,
3294
+ -1
3295
+ /* HOISTED */
3296
+ ), jl = [Pl, Gl, Ul], Fl = r({
3297
+ name: "FitToScreen",
3298
+ render: function(e, o) {
3299
+ return l(), u("svg", Nl, jl);
3300
+ }
3301
+ }), ql = {
3302
+ xmlns: "http://www.w3.org/2000/svg",
3303
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3304
+ viewBox: "0 0 32 32"
3305
+ }, Wl = /* @__PURE__ */ i(
3306
+ "path",
3307
+ {
3308
+ d: "M22 11l-1.41 1.41L23.17 15H8.83l2.58-2.59L10 11l-5 5l5 5l1.41-1.41L8.83 17h14.34l-2.58 2.59L22 21l5-5l-5-5z",
3309
+ fill: "currentColor"
3310
+ },
3311
+ null,
3312
+ -1
3313
+ /* HOISTED */
3314
+ ), Yl = /* @__PURE__ */ i(
3315
+ "path",
3316
+ {
3317
+ d: "M28 30H4a2.002 2.002 0 0 1-2-2V4a2.002 2.002 0 0 1 2-2h24a2.002 2.002 0 0 1 2 2v24a2.002 2.002 0 0 1-2 2zM4 4v24h24V4z",
3318
+ fill: "currentColor"
3319
+ },
3320
+ null,
3321
+ -1
3322
+ /* HOISTED */
3323
+ ), Kl = [Wl, Yl], Xl = r({
3324
+ name: "FitToWidth",
3325
+ render: function(e, o) {
3326
+ return l(), u("svg", ql, Kl);
3327
+ }
3328
+ }), Zl = {
3329
+ xmlns: "http://www.w3.org/2000/svg",
3330
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3331
+ viewBox: "0 0 32 32"
3332
+ }, Jl = /* @__PURE__ */ i(
3333
+ "path",
3334
+ {
3335
+ d: "M28 30h-6a2.002 2.002 0 0 1-2-2v-6a2.002 2.002 0 0 1 2-2h6a2.002 2.002 0 0 1 2 2v6a2.002 2.002 0 0 1-2 2zm-6-8h-.001L22 28h6v-6z",
3336
+ fill: "currentColor"
3337
+ },
3338
+ null,
3339
+ -1
3340
+ /* HOISTED */
3341
+ ), Ql = /* @__PURE__ */ i(
3342
+ "path",
3343
+ {
3344
+ d: "M18 26h-6a3.003 3.003 0 0 1-3-3v-4h2v4a1.001 1.001 0 0 0 1 1h6z",
3345
+ fill: "currentColor"
3346
+ },
3347
+ null,
3348
+ -1
3349
+ /* HOISTED */
3350
+ ), ts = /* @__PURE__ */ i(
3351
+ "path",
3352
+ {
3353
+ d: "M26 18h-2v-3a1.001 1.001 0 0 0-1-1h-5v-2h5a3.003 3.003 0 0 1 3 3z",
3354
+ fill: "currentColor"
3355
+ },
3356
+ null,
3357
+ -1
3358
+ /* HOISTED */
3359
+ ), es = /* @__PURE__ */ i(
3360
+ "path",
3361
+ {
3362
+ d: "M15 18a.999.999 0 0 1-.497-.132L10 15.288l-4.503 2.58a1 1 0 0 1-1.471-1.094l1.061-4.572l-2.818-3.02a1 1 0 0 1 .566-1.668l4.2-.702l2.066-4.25a1 1 0 0 1 1.788-.02l2.204 4.27l4.077.702a1 1 0 0 1 .561 1.668l-2.818 3.02l1.06 4.572A1 1 0 0 1 15 18zm-5-5s.343.18.497.269l3.01 1.724l-.784-3.377l2.282-2.445l-3.233-.557l-1.745-3.382l-1.644 3.382l-3.381.565l2.274 2.437l-.784 3.377l3.01-1.724C9.658 13.18 10 13 10 13z",
3363
+ fill: "currentColor"
3364
+ },
3365
+ null,
3366
+ -1
3367
+ /* HOISTED */
3368
+ ), os = [Jl, Ql, ts, es], ns = r({
3369
+ name: "GraphicalDataFlow",
3370
+ render: function(e, o) {
3371
+ return l(), u("svg", Zl, os);
3372
+ }
3373
+ }), rs = {
3374
+ xmlns: "http://www.w3.org/2000/svg",
3375
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3376
+ viewBox: "0 0 32 32"
3377
+ }, ls = /* @__PURE__ */ i(
3378
+ "path",
3379
+ {
3380
+ d: "M26 24.005H6a2.002 2.002 0 0 1-2-2v-14a2.002 2.002 0 0 1 2-2h20a2.002 2.002 0 0 1 2 2v14a2.003 2.003 0 0 1-2 2zm-20-16v14h20v-14z",
3381
+ fill: "currentColor"
3382
+ },
3383
+ null,
3384
+ -1
3385
+ /* HOISTED */
3386
+ ), ss = /* @__PURE__ */ i(
3387
+ "path",
3388
+ {
3389
+ d: "M2 26.005h28v2H2z",
3390
+ fill: "currentColor"
3391
+ },
3392
+ null,
3393
+ -1
3394
+ /* HOISTED */
3395
+ ), cs = [ls, ss], is = r({
3396
+ name: "Laptop",
3397
+ render: function(e, o) {
3398
+ return l(), u("svg", rs, cs);
3399
+ }
3400
+ }), as = {
3401
+ xmlns: "http://www.w3.org/2000/svg",
3402
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3403
+ viewBox: "0 0 32 32"
3404
+ }, hs = /* @__PURE__ */ i(
3405
+ "path",
3406
+ {
3407
+ d: "M28 20h-2v2h2v6H4v-6h10v-2H4a2.002 2.002 0 0 0-2 2v6a2.002 2.002 0 0 0 2 2h24a2.002 2.002 0 0 0 2-2v-6a2.002 2.002 0 0 0-2-2z",
3408
+ fill: "currentColor"
3409
+ },
3410
+ null,
3411
+ -1
3412
+ /* HOISTED */
3413
+ ), ds = /* @__PURE__ */ i(
3414
+ "circle",
3415
+ {
3416
+ cx: "7",
3417
+ cy: "25",
3418
+ r: "1",
3419
+ fill: "currentColor"
3420
+ },
3421
+ null,
3422
+ -1
3423
+ /* HOISTED */
3424
+ ), us = /* @__PURE__ */ i(
3425
+ "path",
3426
+ {
3427
+ d: "M30 8h-8v6h-6v8h8v-6h6zm-8 12h-4v-4h4zm6-6h-4v-4h4z",
3428
+ fill: "currentColor"
3429
+ },
3430
+ null,
3431
+ -1
3432
+ /* HOISTED */
3433
+ ), ws = /* @__PURE__ */ i(
3434
+ "path",
3435
+ {
3436
+ d: "M18 10h-8V2h8zm-6-2h4V4h-4z",
3437
+ fill: "currentColor"
3438
+ },
3439
+ null,
3440
+ -1
3441
+ /* HOISTED */
3442
+ ), _s = [hs, ds, us, ws], gs = r({
3443
+ name: "ObjectStorage",
3444
+ render: function(e, o) {
3445
+ return l(), u("svg", as, _s);
3446
+ }
3447
+ }), ps = {
3448
+ xmlns: "http://www.w3.org/2000/svg",
3449
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3450
+ viewBox: "0 0 32 32"
3451
+ }, xs = /* @__PURE__ */ i(
3452
+ "path",
3453
+ {
3454
+ d: "M28.83 23.17L23 17.33V13a1 1 0 0 0-.29-.71l-10-10a1 1 0 0 0-1.42 0l-9 9a1 1 0 0 0 0 1.42l10 10A1 1 0 0 0 13 23h4.34l5.83 5.84a4 4 0 0 0 5.66-5.66zM6 10.41l2.29 2.3l1.42-1.42L7.41 9L9 7.41l4.29 4.3l1.42-1.42L10.41 6L12 4.41L18.59 11L11 18.59L4.41 12zm21.41 17a2 2 0 0 1-2.82 0l-6.13-6.12a1.8 1.8 0 0 0-.71-.29h-4.34l-1-1L20 12.41l1 1v4.34a1 1 0 0 0 .29.7l6.12 6.14a2 2 0 0 1 0 2.82z",
3455
+ fill: "currentColor"
3456
+ },
3457
+ null,
3458
+ -1
3459
+ /* HOISTED */
3460
+ ), vs = [xs], fs = r({
3461
+ name: "PaintBrush",
3462
+ render: function(e, o) {
3463
+ return l(), u("svg", ps, vs);
3464
+ }
3465
+ }), ks = {
3466
+ xmlns: "http://www.w3.org/2000/svg",
3467
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3468
+ viewBox: "0 0 32 32"
3469
+ }, Cs = /* @__PURE__ */ i(
3470
+ "path",
3471
+ {
3472
+ d: "M12 30H4a2.002 2.002 0 0 1-2-2v-4a2.002 2.002 0 0 1 2-2h8a2.002 2.002 0 0 1 2 2v4a2.002 2.002 0 0 1-2 2zm-8-6v4h8v-4z",
3473
+ fill: "currentColor"
3474
+ },
3475
+ null,
3476
+ -1
3477
+ /* HOISTED */
3478
+ ), ms = /* @__PURE__ */ i(
3479
+ "path",
3480
+ {
3481
+ d: "M28 20H12a2.002 2.002 0 0 1-2-2v-4a2.002 2.002 0 0 1 2-2h16a2.002 2.002 0 0 1 2 2v4a2.002 2.002 0 0 1-2 2zm-16-6v4h16v-4z",
3482
+ fill: "currentColor"
3483
+ },
3484
+ null,
3485
+ -1
3486
+ /* HOISTED */
3487
+ ), $s = /* @__PURE__ */ i(
3488
+ "path",
3489
+ {
3490
+ d: "M16 10H4a2.002 2.002 0 0 1-2-2V4a2.002 2.002 0 0 1 2-2h12a2.002 2.002 0 0 1 2 2v4a2.002 2.002 0 0 1-2 2zM4 4v4h12V4z",
3491
+ fill: "currentColor"
3492
+ },
3493
+ null,
3494
+ -1
3495
+ /* HOISTED */
3496
+ ), Ms = [Cs, ms, $s], Ls = r({
3497
+ name: "Roadmap",
3498
+ render: function(e, o) {
3499
+ return l(), u("svg", ks, Ms);
3500
+ }
3501
+ }), zs = {
3502
+ xmlns: "http://www.w3.org/2000/svg",
3503
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3504
+ viewBox: "0 0 32 32"
3505
+ }, As = /* @__PURE__ */ i(
3506
+ "path",
3507
+ {
3508
+ d: "M13 17H7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2zm-6 8v-6h6v6z",
3509
+ fill: "currentColor"
3510
+ },
3511
+ null,
3512
+ -1
3513
+ /* HOISTED */
3514
+ ), Ss = /* @__PURE__ */ i(
3515
+ "path",
3516
+ {
3517
+ d: "M19 21v2h6a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H11a2 2 0 0 0-2 2v6h2V7h14v14",
3518
+ fill: "currentColor"
3519
+ },
3520
+ null,
3521
+ -1
3522
+ /* HOISTED */
3523
+ ), Is = [As, Ss], Ts = r({
3524
+ name: "Scale",
3525
+ render: function(e, o) {
3526
+ return l(), u("svg", zs, Is);
3527
+ }
3528
+ }), Hs = {
3529
+ xmlns: "http://www.w3.org/2000/svg",
3530
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3531
+ viewBox: "0 0 32 32"
3532
+ }, Os = /* @__PURE__ */ i(
3533
+ "path",
3534
+ {
3535
+ d: "M20 22h2l-5-12h-2l-5 12h2l1.24-3h5.53zm-5.93-5l1.82-4.42h.25L18 17z",
3536
+ fill: "currentColor"
3537
+ },
3538
+ null,
3539
+ -1
3540
+ /* HOISTED */
3541
+ ), Bs = /* @__PURE__ */ i(
3542
+ "path",
3543
+ {
3544
+ d: "M12 28H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h20a2 2 0 0 1 2 2v11h-2V6H6v20h6z",
3545
+ fill: "currentColor"
3546
+ },
3547
+ null,
3548
+ -1
3549
+ /* HOISTED */
3550
+ ), bs = /* @__PURE__ */ i(
3551
+ "path",
3552
+ {
3553
+ d: "M23 27.18l-2.59-2.59L19 26l4 4l7-7l-1.41-1.41L23 27.18z",
3554
+ fill: "currentColor"
3555
+ },
3556
+ null,
3557
+ -1
3558
+ /* HOISTED */
3559
+ ), Ds = [Os, Bs, bs], Vs = r({
3560
+ name: "SpellCheck",
3561
+ render: function(e, o) {
3562
+ return l(), u("svg", Hs, Ds);
3563
+ }
3564
+ }), ys = {
3565
+ xmlns: "http://www.w3.org/2000/svg",
3566
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3567
+ viewBox: "0 0 32 32"
3568
+ }, Rs = /* @__PURE__ */ i(
3569
+ "path",
3570
+ {
3571
+ d: "M15 28H4a2 2 0 0 1-2-2V11a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v15a2 2 0 0 1-2 2zM4 11v15h11V11z",
3572
+ fill: "currentColor"
3573
+ },
3574
+ null,
3575
+ -1
3576
+ /* HOISTED */
3577
+ ), Es = /* @__PURE__ */ i(
3578
+ "path",
3579
+ {
3580
+ d: "M26 6l-1.41 1.41L27 10h-5V6a2 2 0 0 0-2-2H10v2h10v14h2v-8h5l-2.41 2.59L26 16l5-5z",
3581
+ fill: "currentColor"
3582
+ },
3583
+ null,
3584
+ -1
3585
+ /* HOISTED */
3586
+ ), Ns = [Rs, Es], Ps = r({
3587
+ name: "StackedMove",
3588
+ render: function(e, o) {
3589
+ return l(), u("svg", ys, Ns);
3590
+ }
3591
+ }), Gs = {
3592
+ xmlns: "http://www.w3.org/2000/svg",
3593
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3594
+ viewBox: "0 0 32 32"
3595
+ }, Us = /* @__PURE__ */ i(
3596
+ "path",
3597
+ {
3598
+ d: "M30 10.68l-2-6A1 1 0 0 0 27 4H5a1 1 0 0 0-1 .68l-2 6A1.19 1.19 0 0 0 2 11v6a1 1 0 0 0 1 1h1v10h2V18h6v10h16V18h1a1 1 0 0 0 1-1v-6a1.19 1.19 0 0 0 0-.32zM26 26H14v-8h12zm2-10h-4v-4h-2v4h-5v-4h-2v4h-5v-4H8v4H4v-4.84L5.72 6h20.56L28 11.16z",
3599
+ fill: "currentColor"
3600
+ },
3601
+ null,
3602
+ -1
3603
+ /* HOISTED */
3604
+ ), js = [Us], Fs = r({
3605
+ name: "Store",
3606
+ render: function(e, o) {
3607
+ return l(), u("svg", Gs, js);
3608
+ }
3609
+ }), qs = {
3610
+ xmlns: "http://www.w3.org/2000/svg",
3611
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3612
+ viewBox: "0 0 32 32"
3613
+ }, Ws = /* @__PURE__ */ i(
3614
+ "path",
3615
+ {
3616
+ d: "M27 3H5a2 2 0 0 0-2 2v22a2 2 0 0 0 2 2h22a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm0 2v4H5V5zm-10 6h10v7H17zm-2 7H5v-7h10zM5 20h10v7H5zm12 7v-7h10v7z",
3617
+ fill: "currentColor"
3618
+ },
3619
+ null,
3620
+ -1
3621
+ /* HOISTED */
3622
+ ), Ys = [Ws], Ks = r({
3623
+ name: "TableSplit",
3624
+ render: function(e, o) {
3625
+ return l(), u("svg", qs, Ys);
3626
+ }
3627
+ }), Xs = {
3628
+ xmlns: "http://www.w3.org/2000/svg",
3629
+ "xmlns:xlink": "http://www.w3.org/1999/xlink",
3630
+ viewBox: "0 0 32 32"
3631
+ }, Zs = /* @__PURE__ */ i(
3632
+ "path",
3633
+ {
3634
+ d: "M16 14L6 24l1.4 1.4l8.6-8.6l8.6 8.6L26 24z",
3635
+ fill: "currentColor"
3636
+ },
3637
+ null,
3638
+ -1
3639
+ /* HOISTED */
3640
+ ), Js = /* @__PURE__ */ i(
3641
+ "path",
3642
+ {
3643
+ d: "M4 8h24v2H4z",
3644
+ fill: "currentColor"
3645
+ },
3646
+ null,
3647
+ -1
3648
+ /* HOISTED */
3649
+ ), Qs = [Zs, Js], t3 = r({
3650
+ name: "UpToTop",
3651
+ render: function(e, o) {
3652
+ return l(), u("svg", Xs, Qs);
3653
+ }
3654
+ }), e3 = {
3655
+ // 新增
3656
+ AddIcon: v0,
3657
+ // 帮助(问号)
3658
+ HelpOutlineIcon: Oe,
3659
+ // 添加
3660
+ DuplicateIcon: b2,
3661
+ // 添加 Outline
3662
+ DuplicateOutlineIcon: N2,
3663
+ // 代码
3664
+ CodeSlashIcon: b1,
3665
+ // 修改代码
3666
+ CreateIcon: s2,
3667
+ // 事件(火箭)
3668
+ RocketIcon: vn,
3669
+ // 退出
3670
+ LogOutOutlineIcon: Bo,
3671
+ // 锁
3672
+ LockOpenOutlineIcon: So,
3673
+ LockClosedOutlineIcon: Mo,
3674
+ // 人
3675
+ PersonIcon: jo,
3676
+ // 人2
3677
+ PersonOutlineIcon: Yo,
3678
+ // 更多(省略号)
3679
+ ChatboxEllipsesIcon: r1,
3680
+ // 月亮
3681
+ MoonIcon: Vo,
3682
+ // 太阳
3683
+ SunnyIcon: Fn,
3684
+ // 关闭
3685
+ CloseIcon: I1,
3686
+ // 移除(最小化)
3687
+ RemoveIcon: cn,
3688
+ // 调整(最大化)
3689
+ ResizeIcon: wn,
3690
+ // 省略号
3691
+ EllipsisHorizontalCircleSharpIcon: F2,
3692
+ // 复制
3693
+ CopyIcon: e2,
3694
+ // 删除(垃圾桶)
3695
+ TrashIcon: Kn,
3696
+ // 编辑1(笔)
3697
+ PencilIcon: No,
3698
+ // 编辑2(锤子)
3699
+ HammerIcon: Ae,
3700
+ // 电脑
3701
+ DesktopOutlineIcon: x2,
3702
+ // 下载
3703
+ DownloadIcon: L2,
3704
+ DownloadOutlineIcon: T2,
3705
+ // 导出
3706
+ ShareIcon: Hn,
3707
+ // 导出
3708
+ SendIcon: Mn,
3709
+ // 信息
3710
+ InformationCircleIcon: Je,
3711
+ // 项目
3712
+ GridIcon: $e,
3713
+ // 电脑1
3714
+ TvOutlineIcon: Qn,
3715
+ // 预览,浏览器
3716
+ BrowsersOutlineIcon: Z0,
3717
+ // 文档
3718
+ DocumentTextIcon: C2,
3719
+ // 语言
3720
+ LanguageIcon: oo,
3721
+ // 新项目(鱼)
3722
+ FishIcon: se,
3723
+ // 图表
3724
+ BarChartIcon: W0,
3725
+ // 图层
3726
+ LayersIcon: co,
3727
+ // 组件详情设置(三棱镜)
3728
+ PrismIcon: en,
3729
+ // 正方体
3730
+ ConstructIcon: Z1,
3731
+ // 折叠/回退
3732
+ ChevronBackOutlineIcon: c1,
3733
+ // 后端数据(闪电)
3734
+ FlashIcon: ae,
3735
+ // 设置(齿轮)
3736
+ SettingsSharpIcon: An,
3737
+ // 回退
3738
+ HomeIcon: Ve,
3739
+ // 控件(卡片)
3740
+ CardIcon: e1,
3741
+ // 上移
3742
+ ChevronUpIcon: f1,
3743
+ // 下移
3744
+ ChevronDownIcon: h1,
3745
+ // 剪贴板
3746
+ ClipboardOutlineIcon: z1,
3747
+ // 剪贴
3748
+ CutIcon: d2,
3749
+ // 正方形
3750
+ SquareIcon: bn,
3751
+ // 色彩选择
3752
+ ColorPaletteIcon: y1,
3753
+ ZAxisIcon: F,
3754
+ // 气球
3755
+ LeafIcon: uo,
3756
+ // 颜色
3757
+ ColorWandIcon: q1,
3758
+ // 撤回
3759
+ ArrowBackIcon: B0,
3760
+ // 前进
3761
+ ArrowForwardIcon: P0,
3762
+ // 向下
3763
+ ArrowDownIcon: y0,
3764
+ // 狗爪
3765
+ PawIcon: Jo,
3766
+ // 搜索(放大镜)
3767
+ SearchIcon: Cn,
3768
+ // 过滤器
3769
+ FilterIcon: q,
3770
+ // 向上
3771
+ ChevronUpOutlineIcon: m1,
3772
+ // 向下
3773
+ ChevronDownOutlineIcon: w1,
3774
+ // 脉搏
3775
+ PulseIcon: rn,
3776
+ // 文件夹
3777
+ FolderIcon: we,
3778
+ // 文件夹打开
3779
+ FolderOpenIcon: xe,
3780
+ // 图片
3781
+ ImageIcon: Ge,
3782
+ // 多个图片
3783
+ ImagesIcon: qe,
3784
+ // 列表
3785
+ ListIcon: ko,
3786
+ // 眼睛
3787
+ EyeOutlineIcon: oe,
3788
+ EyeOffOutlineIcon: J2,
3789
+ // 图表列表
3790
+ AlbumsIcon: z0,
3791
+ // 分析
3792
+ AnalyticsIcon: I0,
3793
+ // 飞机
3794
+ AirPlaneOutlineIcon: C0,
3795
+ // 向右
3796
+ ChevronForwardIcon: p1
3797
+ }, o3 = {
3798
+ // 图表
3799
+ RoadmapIcon: Ls,
3800
+ // 信息
3801
+ SpellCheckIcon: Vs,
3802
+ // 表格
3803
+ TableSplitIcon: Ks,
3804
+ // 装饰
3805
+ GraphicalDataFlowIcon: ns,
3806
+ // 项目
3807
+ DevicesIcon: Qr,
3808
+ // 模板市场
3809
+ StoreIcon: Fs,
3810
+ // 我的模板
3811
+ ObjectStorageIcon: gs,
3812
+ // 键盘
3813
+ DicomOverlayIcon: sl,
3814
+ // 置顶
3815
+ UpToTopIcon: t3,
3816
+ // 置底
3817
+ DownToBottomIcon: Cl,
3818
+ // 移动
3819
+ StackedMoveIcon: Ps,
3820
+ // 清空剪切板(刷子)
3821
+ PaintBrushIcon: fs,
3822
+ // 坐标轴
3823
+ ZAxisIcon: F,
3824
+ AlignHorizontalLeftIcon: ar,
3825
+ AlignVerticalCenterIcon: Lr,
3826
+ AlignVerticalTopIcon: Hr,
3827
+ AlignHorizontalCenterIcon: nr,
3828
+ AlignHorizontalRightIcon: gr,
3829
+ AlignVerticalBottomIcon: Cr,
3830
+ // 添加文件
3831
+ DocumentAddIcon: dl,
3832
+ // 下载文件
3833
+ DocumentDownloadIcon: pl,
3834
+ // 预览展示方式
3835
+ ScaleIcon: Ts,
3836
+ FitToScreenIcon: Fl,
3837
+ FitToHeightIcon: El,
3838
+ FitToWidthIcon: Xl,
3839
+ // 成组
3840
+ Carbon3DCursorIcon: Vr,
3841
+ // 解组
3842
+ Carbon3DSoftwareIcon: Pr,
3843
+ // 过滤器
3844
+ FilterIcon: q,
3845
+ FilterEditIcon: bl,
3846
+ // 图层
3847
+ LaptopIcon: is,
3848
+ // 柱状图
3849
+ ChartPieIcon: Fr,
3850
+ // 编辑
3851
+ EditIcon: zl
3852
+ }, n3 = {
3853
+ ionicons5: e3,
3854
+ carbon: o3
3855
+ };
3856
+ var H = /* @__PURE__ */ ((t) => (t.DELETE = "delete", t.WARNING = "warning", t.ERROR = "error", t.SUCCESS = "success", t))(H || {});
3857
+ const { InformationCircleIcon: r3 } = n3.ionicons5, m = () => {
3858
+ window.$loading.start();
3859
+ }, _ = () => {
3860
+ setTimeout(() => {
3861
+ window.$loading.finish();
3862
+ });
3863
+ }, z = () => {
3864
+ setTimeout(() => {
3865
+ window.$loading.error();
3866
+ });
3867
+ }, z3 = (t) => {
3868
+ const {
3869
+ type: e,
3870
+ title: o,
3871
+ message: s,
3872
+ positiveText: a,
3873
+ negativeText: g,
3874
+ closeNegativeText: p,
3875
+ isMaskClosable: h,
3876
+ onPositiveCallback: w,
3877
+ onNegativeCallback: M,
3878
+ promise: A,
3879
+ promiseResCallback: k,
3880
+ promiseRejCallback: $
3881
+ } = t, S = {
3882
+ // 自定义
3883
+ [H.DELETE]: {
3884
+ fn: window.$dialog.warning,
3885
+ message: s || "是否删除此数据?"
3886
+ },
3887
+ // 原有
3888
+ [H.WARNING]: {
3889
+ fn: window.$dialog.warning,
3890
+ message: s || "是否执行此操作?"
3891
+ },
3892
+ [H.ERROR]: {
3893
+ fn: window.$dialog.error,
3894
+ message: s || "是否执行此操作?"
3895
+ },
3896
+ [H.SUCCESS]: {
3897
+ fn: window.$dialog.success,
3898
+ message: s || "是否执行此操作?"
3899
+ }
3900
+ }, L = S[e || H.WARNING].fn({
3901
+ // 导入其余 NaiveUI 支持参数
3902
+ ...t,
3903
+ title: o || "提示",
3904
+ icon: et(r3, { size: ot }),
3905
+ content: S[e || H.WARNING].message,
3906
+ positiveText: a || "确定",
3907
+ negativeText: p ? void 0 : g || "取消",
3908
+ // 是否通过遮罩关闭
3909
+ maskClosable: h || nt,
3910
+ onPositiveClick: async () => {
3911
+ if (A && w) {
3912
+ L.loading = !0;
3913
+ try {
3914
+ const I = await w();
3915
+ k && k(I);
3916
+ } catch (I) {
3917
+ $ && $(I);
3918
+ }
3919
+ L.loading = !1;
3920
+ return;
3921
+ }
3922
+ w && w(L);
3923
+ },
3924
+ onNegativeClick: async () => {
3925
+ M && M(L);
3926
+ }
3927
+ });
3928
+ };
3929
+ var b = /* @__PURE__ */ ((t) => (t.ON_CLICK = "click", t.ON_DBL_CLICK = "dblclick", t.ON_MOUSE_ENTER = "mouseenter", t.ON_MOUSE_LEAVE = "mouseleave", t))(b || {}), G = /* @__PURE__ */ ((t) => (t.VNODE_MOUNTED = "vnodeMounted", t.VNODE_BEFORE_MOUNT = "vnodeBeforeMount", t))(G || {}), W = /* @__PURE__ */ ((t) => (t.DOCK = "dock", t.ASIDE = "aside", t))(W || {}), T = /* @__PURE__ */ ((t) => (t.HIDE_PACKAGE_ONE_CATEGORY = "hidePackageOneCategory", t.CHANGE_LANG_RELOAD = "changeLangReload", t.ASIDE_ALL_COLLAPSED = "asideAllCollapsed", t.CHART_MOVE_DISTANCE = "chartMoveDistance", t.CHART_ALIGN_RANGE = "chartAlignRange", t.CHART_TOOLS_STATUS = "chartToolsStatus", t.CHART_TOOLS_STATUS_HIDE = "chartToolsStatusHide", t))(T || {});
3930
+ const l3 = {
3931
+ // 侧边栏折叠是否隐藏全部
3932
+ [T.ASIDE_ALL_COLLAPSED]: !0,
3933
+ // 拖拽页面左侧表单分类只有一项的时候是否隐藏
3934
+ [T.HIDE_PACKAGE_ONE_CATEGORY]: !0,
3935
+ // 切换语言是否进行路由刷新
3936
+ [T.CHANGE_LANG_RELOAD]: !1,
3937
+ // 图表移动时按方向键移动的距离
3938
+ [T.CHART_MOVE_DISTANCE]: 5,
3939
+ // 图表拖拽时的吸附距离(px)
3940
+ [T.CHART_ALIGN_RANGE]: 10,
3941
+ // 图表工具栏状态(侧边工具状态)
3942
+ [T.CHART_TOOLS_STATUS]: W.ASIDE,
3943
+ // 图表工具栏状态隐藏(刚开始不隐藏)
3944
+ [T.CHART_TOOLS_STATUS_HIDE]: !1
3945
+ }, { GO_SYSTEM_SETTING_STORE: Y } = ct, s3 = rt(
3946
+ Y
3947
+ ), c3 = U({
3948
+ id: "useSettingStore",
3949
+ state: () => s3 || l3,
3950
+ getters: {
3951
+ getHidePackageOneCategory() {
3952
+ return this.hidePackageOneCategory;
3953
+ },
3954
+ getChangeLangReload() {
3955
+ return this.changeLangReload;
3956
+ },
3957
+ getAsideAllCollapsed() {
3958
+ return this.asideAllCollapsed;
3959
+ },
3960
+ getAsideCollapsedWidth() {
3961
+ return this.asideAllCollapsed ? 0 : lt;
3962
+ },
3963
+ getChartMoveDistance() {
3964
+ return this.chartMoveDistance;
3965
+ },
3966
+ getChartAlignRange() {
3967
+ return this.chartAlignRange;
3968
+ },
3969
+ getChartToolsStatus() {
3970
+ return this.chartToolsStatus;
3971
+ },
3972
+ getChartToolsStatusHide() {
3973
+ return this.chartToolsStatusHide;
3974
+ }
3975
+ },
3976
+ actions: {
3977
+ setItem(t, e) {
3978
+ this.$patch((o) => {
3979
+ o[t] = e;
3980
+ }), st(Y, this.$state);
3981
+ }
3982
+ }
3983
+ });
3984
+ var K = /* @__PURE__ */ ((t) => (t.ECHARTS = "echarts", t.VCHART = "VChart", t.NAIVE_UI = "naiveUI", t.COMMON = "common", t.STATIC = "static", t))(K || {});
3985
+ const A3 = [
3986
+ { label: "正常", value: "normal" },
3987
+ { label: "正片叠底", value: "multiply" },
3988
+ { label: "叠加", value: "overlay" },
3989
+ { label: "滤色", value: "screen" },
3990
+ { label: "变暗", value: "darken" },
3991
+ { label: "变亮", value: "lighten" },
3992
+ { label: "颜色减淡", value: "color-dodge" },
3993
+ { label: "颜色加深", value: "color-burn;" },
3994
+ { label: "强光", value: "hard-light" },
3995
+ { label: "柔光", value: "soft-light" },
3996
+ { label: "差值", value: "difference" },
3997
+ { label: "排除", value: "exclusion" },
3998
+ { label: "色相", value: "hue" },
3999
+ { label: "饱和度", value: "saturation" },
4000
+ { label: "颜色", value: "color" },
4001
+ { label: "亮度", value: "luminosity" }
4002
+ ];
4003
+ var i3 = /* @__PURE__ */ ((t) => (t.CHARTS = "Charts", t.PHOTOS = "Photos", t))(i3 || {}), a3 = /* @__PURE__ */ ((t) => (t.CHARTS = "图表", t.PHOTOS = "图片", t))(a3 || {}), h3 = /* @__PURE__ */ ((t) => (t[t.VIEW = 0] = "VIEW", t[t.CONFIG = 1] = "CONFIG", t))(h3 || {});
4004
+ const d3 = {
4005
+ requestDataType: it.STATIC,
4006
+ requestHttpType: at.GET,
4007
+ requestUrl: "",
4008
+ requestInterval: void 0,
4009
+ requestIntervalUnit: ht.SECOND,
4010
+ requestContentType: dt.DEFAULT,
4011
+ requestParamsBodyType: ut.NONE,
4012
+ requestSQLContent: {
4013
+ sql: "select * from where"
4014
+ },
4015
+ requestParams: {
4016
+ Body: {
4017
+ "form-data": {},
4018
+ "x-www-form-urlencoded": {},
4019
+ json: "",
4020
+ xml: ""
4021
+ },
4022
+ Header: {},
4023
+ Params: {}
4024
+ }
4025
+ };
4026
+ class u3 {
4027
+ constructor() {
4028
+ v(this, "id", N());
4029
+ v(this, "isGroup", !1);
4030
+ // 基本信息
4031
+ v(this, "attr", { ..._t, zIndex: -1 });
4032
+ // 基本样式
4033
+ v(this, "styles", {
4034
+ // 使用滤镜
4035
+ filterShow: !1,
4036
+ // 色相
4037
+ hueRotate: 0,
4038
+ // 饱和度
4039
+ saturate: 1,
4040
+ // 对比度
4041
+ contrast: 1,
4042
+ // 亮度
4043
+ brightness: 1,
4044
+ // 透明
4045
+ opacity: 1,
4046
+ // 旋转
4047
+ rotateZ: 0,
4048
+ rotateX: 0,
4049
+ rotateY: 0,
4050
+ // 倾斜
4051
+ skewX: 0,
4052
+ skewY: 0,
4053
+ // 混合模式
4054
+ blendMode: "normal",
4055
+ // 动画
4056
+ animations: []
4057
+ });
4058
+ // 预览
4059
+ v(this, "preview", {
4060
+ overFlowHidden: !1
4061
+ });
4062
+ // 状态
4063
+ v(this, "status", {
4064
+ lock: !1,
4065
+ hide: !1
4066
+ });
4067
+ // 请求
4068
+ v(this, "request", B(d3));
4069
+ // 数据过滤
4070
+ v(this, "filter");
4071
+ // 事件
4072
+ v(this, "events", {
4073
+ baseEvent: {
4074
+ [b.ON_CLICK]: void 0,
4075
+ [b.ON_DBL_CLICK]: void 0,
4076
+ [b.ON_MOUSE_ENTER]: void 0,
4077
+ [b.ON_MOUSE_LEAVE]: void 0
4078
+ },
4079
+ advancedEvents: {
4080
+ [G.VNODE_MOUNTED]: void 0,
4081
+ [G.VNODE_BEFORE_MOUNT]: void 0
4082
+ },
4083
+ interactEvents: []
4084
+ });
4085
+ }
4086
+ }
4087
+ class w3 extends u3 {
4088
+ constructor() {
4089
+ super(...arguments);
4090
+ // 成组
4091
+ v(this, "isGroup", !0);
4092
+ // 名称
4093
+ v(this, "chartConfig", {
4094
+ key: "group",
4095
+ chartKey: "group",
4096
+ conKey: "group",
4097
+ category: "group",
4098
+ categoryName: "group",
4099
+ package: "group",
4100
+ chartFrame: K.COMMON,
4101
+ title: wt,
4102
+ image: ""
4103
+ });
4104
+ // 组成员列表
4105
+ v(this, "groupList", []);
4106
+ // ---- 原有 ---
4107
+ // key
4108
+ v(this, "key", "group");
4109
+ // 配置
4110
+ v(this, "option", {});
4111
+ // 标识
4112
+ v(this, "id", N());
4113
+ // 基本信息
4114
+ v(this, "attr", { w: 0, h: 0, x: 0, y: 0, offsetX: 0, offsetY: 0, zIndex: -1 });
4115
+ }
4116
+ }
4117
+ var d = /* @__PURE__ */ ((t) => (t.ADD = "add", t.DELETE = "delete", t.UPDATE = "update", t.MOVE = "move", t.COPY = "copy", t.CUT = "cut", t.PASTE = "paste", t.TOP = "top", t.BOTTOM = "bottom", t.UP = "up", t.DOWN = "down", t.GROUP = "group", t.UN_GROUP = "unGroup", t.LOCK = "lock", t.UNLOCK = "unLock", t.HIDE = "hide", t.SHOW = "show", t))(d || {}), f = /* @__PURE__ */ ((t) => (t.CANVAS = "canvas", t.CHART = "chart", t))(f || {}), _3 = /* @__PURE__ */ ((t) => (t.BACK_STACK = "backStack", t.FORWARD_STACK = "forwardStack", t))(_3 || {}), D = /* @__PURE__ */ ((t) => (t.ID = "id", t.TARGET_TYPE = "targetType", t.ACTION_TYPE = "actionType", t.HISTORY_DATA = "historyData", t))(D || {});
4118
+ const g3 = U({
4119
+ id: "useChartHistoryStore",
4120
+ state: () => ({
4121
+ // 后退栈
4122
+ backStack: [],
4123
+ // 前进栈
4124
+ forwardStack: []
4125
+ }),
4126
+ getters: {
4127
+ getBackStack() {
4128
+ return this.backStack;
4129
+ },
4130
+ getForwardStack() {
4131
+ return this.forwardStack;
4132
+ }
4133
+ },
4134
+ actions: {
4135
+ /**
4136
+ * * 新增记录并插入栈
4137
+ * @param item 图表实例
4138
+ * @param actionType 动作类型
4139
+ * @param targetType 对象类型(默认图表)
4140
+ */
4141
+ createStackItem(t, e, o = f.CHART) {
4142
+ this.pushBackStackItem(
4143
+ Object.freeze({
4144
+ [D.ID]: (/* @__PURE__ */ new Date()).getTime().toString(),
4145
+ [D.HISTORY_DATA]: t,
4146
+ [D.ACTION_TYPE]: e,
4147
+ [D.TARGET_TYPE]: o
4148
+ })
4149
+ );
4150
+ },
4151
+ // * 画布初始化
4152
+ canvasInit(t) {
4153
+ this.createStackItem([t], d.ADD, f.CANVAS);
4154
+ },
4155
+ // * 推入后退栈
4156
+ pushBackStackItem(t, e = !1) {
4157
+ t instanceof Array ? this.backStack = [...this.backStack, ...t] : this.backStack.push(t), this.backStack.splice(0, this.backStack.length - gt), !e && this.clearForwardStack();
4158
+ },
4159
+ // * 推入前进栈
4160
+ pushForwardStack(t) {
4161
+ t instanceof Array ? this.forwardStack = [...this.forwardStack, ...t] : this.forwardStack.push(t);
4162
+ },
4163
+ // * 移出后退栈
4164
+ popBackStackItem() {
4165
+ if (this.backStack.length > 0)
4166
+ return this.backStack.pop();
4167
+ },
4168
+ // * 移出前进栈
4169
+ popForwardStack() {
4170
+ if (this.forwardStack.length > 0)
4171
+ return this.forwardStack.pop();
4172
+ },
4173
+ // * 清空前进栈
4174
+ clearForwardStack() {
4175
+ this.forwardStack = [];
4176
+ },
4177
+ // * 清空后退栈(保留初始化)
4178
+ clearBackStack() {
4179
+ const t = this.getBackStack[0];
4180
+ t ? this.backStack = [t] : this.backStack = [];
4181
+ },
4182
+ // * 撤回
4183
+ backAction() {
4184
+ try {
4185
+ if (m(), this.getBackStack.length > 1) {
4186
+ const t = this.popBackStackItem();
4187
+ if (!t) {
4188
+ _();
4189
+ return;
4190
+ }
4191
+ return this.pushForwardStack(t), _(), t;
4192
+ }
4193
+ _();
4194
+ } catch {
4195
+ z();
4196
+ }
4197
+ },
4198
+ // * 前进
4199
+ forwardAction() {
4200
+ try {
4201
+ if (m(), this.getForwardStack.length) {
4202
+ const t = this.popForwardStack();
4203
+ if (!t) {
4204
+ _();
4205
+ return;
4206
+ }
4207
+ return this.pushBackStackItem(t, !0), _(), t;
4208
+ }
4209
+ _();
4210
+ } catch {
4211
+ z();
4212
+ }
4213
+ },
4214
+ // * 新增组件记录
4215
+ createAddHistory(t) {
4216
+ this.createStackItem(t, d.ADD, f.CHART);
4217
+ },
4218
+ // * 更新属性记录(大小、图表属性)
4219
+ createUpdateHistory(t) {
4220
+ this.createStackItem(t, d.UPDATE, f.CHART);
4221
+ },
4222
+ // * 删除组件记录
4223
+ createDeleteHistory(t) {
4224
+ this.createStackItem(t, d.DELETE, f.CHART);
4225
+ },
4226
+ // * 移动组件记录
4227
+ createMoveHistory(t) {
4228
+ this.createStackItem(t, d.MOVE, f.CHART);
4229
+ },
4230
+ // * 改变层级组件记录
4231
+ createLayerHistory(t, e) {
4232
+ this.createStackItem(t, e, f.CHART);
4233
+ },
4234
+ // * 剪切组件记录
4235
+ createPasteHistory(t) {
4236
+ this.createStackItem(t, d.CUT, f.CHART);
4237
+ },
4238
+ // * 创建分组
4239
+ createGroupHistory(t) {
4240
+ this.createStackItem(t, d.GROUP, f.CHART);
4241
+ },
4242
+ // * 解除分组
4243
+ createUnGroupHistory(t) {
4244
+ this.createStackItem(t, d.UN_GROUP, f.CHART);
4245
+ },
4246
+ // * 锁定记录
4247
+ createLockHistory(t) {
4248
+ this.createStackItem(t, d.LOCK, f.CHART);
4249
+ },
4250
+ // * 解锁记录
4251
+ createUnLockHistory(t) {
4252
+ this.createStackItem(t, d.UNLOCK, f.CHART);
4253
+ },
4254
+ // * 隐藏记录
4255
+ createHideHistory(t) {
4256
+ this.createStackItem(t, d.HIDE, f.CHART);
4257
+ },
4258
+ // * 展示记录
4259
+ createShowHistory(t) {
4260
+ this.createStackItem(t, d.SHOW, f.CHART);
4261
+ }
4262
+ }
4263
+ });
4264
+ var j = /* @__PURE__ */ ((t) => (t.EDIT_LAYOUT_DOM = "editLayoutDom", t.EDIT_CONTENT_DOM = "editContentDom", t.OFFSET = "offset", t.SCALE = "scale", t.USER_SCALE = "userScale", t.LOCK_SCALE = "lockScale", t.IS_CREATE = "isCreate", t.IS_DRAG = "isDrag", t.IS_SELECT = "isSelect", t.IS_CODE_EDIT = "isCodeEdit", t))(j || {}), p3 = /* @__PURE__ */ ((t) => (t.PROJECT_NAME = "projectName", t.WIDTH = "width", t.HEIGHT = "height", t.CHART_THEME_COLOR = "chartThemeColor", t.CHART_CUSTOM_THEME_COLOR_INFO = "chartCustomThemeColorInfo", t.CHART_THEME_SETTING = "chartThemeSetting", t.VCHART_THEME_NAME = "vChartThemeName", t.BACKGROUND = "background", t.BACKGROUND_IMAGE = "backgroundImage", t.SELECT_COLOR = "selectColor", t.PREVIEW_SCALE_TYPE = "previewScaleType", t))(p3 || {}), j = /* @__PURE__ */ ((t) => (t.START_X = "startX", t.START_Y = "startY", t.X = "x", t.Y = "y", t))(j || {}), E = /* @__PURE__ */ ((t) => (t.EDIT_RANGE = "editRange", t.EDIT_CANVAS = "editCanvas", t.RIGHT_MENU_SHOW = "rightMenuShow", t.MOUSE_POSITION = "mousePosition", t.TARGET_CHART = "targetChart", t.RECORD_CHART = "recordChart", t.EDIT_CANVAS_CONFIG = "editCanvasConfig", t.REQUEST_GLOBAL_CONFIG = "requestGlobalConfig", t.COMPONENT_LIST = "componentList", t))(E || {});
4265
+ const C = () => g3(), x3 = () => c3(), S3 = U({
4266
+ id: "useChartEditStore",
4267
+ state: () => ({
4268
+ // 画布属性
4269
+ editCanvas: {
4270
+ // 编辑区域 Dom
4271
+ editLayoutDom: null,
4272
+ editContentDom: null,
4273
+ // 偏移量
4274
+ offset: 20,
4275
+ // 系统控制缩放
4276
+ scale: 1,
4277
+ // 用户控制的缩放
4278
+ userScale: 1,
4279
+ // 锁定缩放
4280
+ lockScale: !1,
4281
+ // 初始化
4282
+ isCreate: !1,
4283
+ // 拖拽中
4284
+ isDrag: !1,
4285
+ // 框选中
4286
+ isSelect: !1,
4287
+ // 代码编辑中
4288
+ isCodeEdit: !1
4289
+ },
4290
+ // 右键菜单
4291
+ rightMenuShow: !1,
4292
+ // 鼠标定位
4293
+ mousePosition: {
4294
+ startX: 0,
4295
+ startY: 0,
4296
+ x: 0,
4297
+ y: 0
4298
+ },
4299
+ // 目标图表
4300
+ targetChart: {
4301
+ hoverId: void 0,
4302
+ selectId: []
4303
+ },
4304
+ // 记录临时数据(复制等)
4305
+ recordChart: void 0,
4306
+ // -----------------------
4307
+ // 画布属性(需存储给后端)
4308
+ editCanvasConfig: {
4309
+ // 项目名称
4310
+ projectName: void 0,
4311
+ // 默认宽度
4312
+ width: 1920,
4313
+ // 默认高度
4314
+ height: 1080,
4315
+ // 启用滤镜
4316
+ filterShow: !1,
4317
+ // 色相
4318
+ hueRotate: 0,
4319
+ // 饱和度
4320
+ saturate: 1,
4321
+ // 对比度
4322
+ contrast: 1,
4323
+ // 亮度
4324
+ brightness: 1,
4325
+ // 透明度
4326
+ opacity: 1,
4327
+ // 变换(暂不更改)
4328
+ rotateZ: 0,
4329
+ rotateX: 0,
4330
+ rotateY: 0,
4331
+ skewX: 0,
4332
+ skewY: 0,
4333
+ // 混合模式
4334
+ blendMode: "normal",
4335
+ // 默认背景色
4336
+ background: void 0,
4337
+ backgroundImage: void 0,
4338
+ // 是否使用纯颜色
4339
+ selectColor: !0,
4340
+ // chart 主题色
4341
+ chartThemeColor: w0,
4342
+ // 自定义颜色列表
4343
+ chartCustomThemeColorInfo: void 0,
4344
+ // 全局配置
4345
+ chartThemeSetting: _0,
4346
+ // vChart 主题
4347
+ vChartThemeName: "vScreenVolcanoBlue",
4348
+ // 适配方式
4349
+ previewScaleType: pt
4350
+ },
4351
+ // 数据请求处理(需存储给后端)
4352
+ requestGlobalConfig: {
4353
+ requestDataPond: [],
4354
+ requestOriginUrl: "",
4355
+ requestInterval: xt,
4356
+ requestIntervalUnit: vt,
4357
+ requestParams: {
4358
+ Body: {
4359
+ "form-data": {},
4360
+ "x-www-form-urlencoded": {},
4361
+ json: "",
4362
+ xml: ""
4363
+ },
4364
+ Header: {},
4365
+ Params: {}
4366
+ }
4367
+ },
4368
+ // 图表数组(需存储给后端)
4369
+ componentList: []
4370
+ }),
4371
+ getters: {
4372
+ getMousePosition() {
4373
+ return this.mousePosition;
4374
+ },
4375
+ getRightMenuShow() {
4376
+ return this.rightMenuShow;
4377
+ },
4378
+ getEditCanvas() {
4379
+ return this.editCanvas;
4380
+ },
4381
+ getEditCanvasConfig() {
4382
+ return this.editCanvasConfig;
4383
+ },
4384
+ getTargetChart() {
4385
+ return this.targetChart;
4386
+ },
4387
+ getRecordChart() {
4388
+ return this.recordChart;
4389
+ },
4390
+ getRequestGlobalConfig() {
4391
+ return this.requestGlobalConfig;
4392
+ },
4393
+ getComponentList() {
4394
+ return this.componentList;
4395
+ }
4396
+ },
4397
+ actions: {
4398
+ // * 获取需要存储的数据项
4399
+ getStorageInfo() {
4400
+ return {
4401
+ [E.EDIT_CANVAS_CONFIG]: this.getEditCanvasConfig,
4402
+ [E.COMPONENT_LIST]: this.getComponentList,
4403
+ [E.REQUEST_GLOBAL_CONFIG]: this.getRequestGlobalConfig
4404
+ };
4405
+ },
4406
+ // * 获取针对 componentList 顺序排过序的 selectId
4407
+ getSelectIdSortList(t) {
4408
+ if (!this.getTargetChart.selectId.length && !t)
4409
+ return [];
4410
+ const e = [];
4411
+ return this.getComponentList.forEach((o) => {
4412
+ t ? t.forEach((s) => {
4413
+ o.id === s && e.push(s);
4414
+ }) : this.getTargetChart.selectId.forEach((s) => {
4415
+ o.id === s && e.push(s);
4416
+ });
4417
+ }), e;
4418
+ },
4419
+ // * 设置 editCanvas 数据项
4420
+ setEditCanvas(t, e) {
4421
+ this.editCanvas[t] = e;
4422
+ },
4423
+ // * 设置 editCanvasConfig(需保存后端) 数据项
4424
+ setEditCanvasConfig(t, e) {
4425
+ this.editCanvasConfig[t] = e;
4426
+ },
4427
+ // * 设置右键菜单
4428
+ setRightMenuShow(t) {
4429
+ this.rightMenuShow = t;
4430
+ },
4431
+ // * 设置目标数据 hover
4432
+ setTargetHoverChart(t) {
4433
+ this.targetChart.hoverId = t;
4434
+ },
4435
+ // * 设置目标数据 select
4436
+ setTargetSelectChart(t, e = !1) {
4437
+ if (!this.targetChart.selectId.find((o) => o === t)) {
4438
+ if (!t) {
4439
+ this.targetChart.selectId = [];
4440
+ return;
4441
+ }
4442
+ if (e) {
4443
+ if (P(t)) {
4444
+ this.targetChart.selectId.push(t);
4445
+ return;
4446
+ }
4447
+ if (R(t)) {
4448
+ this.targetChart.selectId.push(...t);
4449
+ return;
4450
+ }
4451
+ } else {
4452
+ if (P(t)) {
4453
+ this.targetChart.selectId = [t];
4454
+ return;
4455
+ }
4456
+ if (R(t)) {
4457
+ this.targetChart.selectId = t;
4458
+ return;
4459
+ }
4460
+ }
4461
+ }
4462
+ },
4463
+ // * 设置记录数据
4464
+ setRecordChart(t) {
4465
+ this.recordChart = B(t);
4466
+ },
4467
+ // * 设置鼠标位置
4468
+ setMousePosition(t, e, o, s) {
4469
+ t && (this.mousePosition.x = t), e && (this.mousePosition.y = e), o && (this.mousePosition.startX = o), s && (this.mousePosition.startY = s);
4470
+ },
4471
+ // * 找到目标 id 数据的下标位置,id可为父级或子集数组(无则返回-1)
4472
+ fetchTargetIndex(t) {
4473
+ const e = t || this.getTargetChart.selectId.length && this.getTargetChart.selectId[0] || void 0;
4474
+ if (!e)
4475
+ return _(), -1;
4476
+ const o = this.componentList.findIndex((s) => s.id === e);
4477
+ if (o !== -1)
4478
+ return o;
4479
+ {
4480
+ const s = this.getComponentList.length;
4481
+ for (let a = 0; a < s; a++)
4482
+ if (this.getComponentList[a].isGroup) {
4483
+ for (const g of this.getComponentList[a].groupList)
4484
+ if (g.id === e)
4485
+ return a;
4486
+ }
4487
+ }
4488
+ return -1;
4489
+ },
4490
+ // * 统一格式化处理入参 id
4491
+ idPreFormat(t) {
4492
+ const e = [];
4493
+ return t ? (P(t) && e.push(t), R(t) && e.push(...t), e) : (e.push(...this.getTargetChart.selectId), e);
4494
+ },
4495
+ /**
4496
+ * * 新增组件列表
4497
+ * @param componentInstance 新图表实例
4498
+ * @param isHead 是否头部插入
4499
+ * @param isHistory 是否进行记录
4500
+ * @returns
4501
+ */
4502
+ addComponentList(t, e = !1, o = !1) {
4503
+ if (t instanceof Array) {
4504
+ t.forEach((s) => {
4505
+ this.addComponentList(s, e, o);
4506
+ });
4507
+ return;
4508
+ }
4509
+ if (o && C().createAddHistory([t]), e) {
4510
+ this.componentList.unshift(t);
4511
+ return;
4512
+ }
4513
+ this.componentList.push(t);
4514
+ },
4515
+ // * 删除组件
4516
+ removeComponentList(t, e = !0) {
4517
+ try {
4518
+ const o = this.idPreFormat(t), s = [];
4519
+ if (!o.length)
4520
+ return;
4521
+ m(), o.forEach((a) => {
4522
+ const g = this.fetchTargetIndex(a);
4523
+ g !== -1 && (s.push(this.getComponentList[g]), this.componentList.splice(g, 1));
4524
+ }), e && C().createDeleteHistory(s), _();
4525
+ return;
4526
+ } catch {
4527
+ z();
4528
+ }
4529
+ },
4530
+ // * 重置组件位置
4531
+ resetComponentPosition(t, e) {
4532
+ const o = this.fetchTargetIndex(t.id);
4533
+ if (o > -1) {
4534
+ const s = this.getComponentList[o];
4535
+ e ? s.attr = Object.assign(s.attr, {
4536
+ x: t.attr.x + t.attr.offsetX,
4537
+ y: t.attr.y + t.attr.offsetY
4538
+ }) : s.attr = Object.assign(s.attr, {
4539
+ x: t.attr.x,
4540
+ y: t.attr.y
4541
+ });
4542
+ }
4543
+ },
4544
+ // * 移动组件
4545
+ moveComponentList(t) {
4546
+ C().createMoveHistory(t);
4547
+ },
4548
+ // * 更新组件列表某一项的值
4549
+ updateComponentList(t, e) {
4550
+ t < 1 && t > this.getComponentList.length || (this.componentList[t] = e);
4551
+ },
4552
+ // * 设置页面样式属性
4553
+ setPageStyle(t, e) {
4554
+ const o = this.getEditCanvas.editContentDom;
4555
+ o && (o.style[t] = e);
4556
+ },
4557
+ // * 移动组件列表层级位置到两端
4558
+ setBothEnds(t = !1, e = !0) {
4559
+ try {
4560
+ if (this.getTargetChart.selectId.length > 1)
4561
+ return;
4562
+ m();
4563
+ const o = this.getComponentList.length;
4564
+ if (o < 2) {
4565
+ _();
4566
+ return;
4567
+ }
4568
+ const s = this.fetchTargetIndex(), a = this.getComponentList[s];
4569
+ if (s !== -1) {
4570
+ if (t && s === 0 || !t && s === o - 1) {
4571
+ _();
4572
+ return;
4573
+ }
4574
+ const g = (p, h) => {
4575
+ const w = B(p);
4576
+ return w.attr.zIndex = h, w;
4577
+ };
4578
+ e && C().createLayerHistory(
4579
+ [g(a, s)],
4580
+ t ? d.BOTTOM : d.TOP
4581
+ ), this.addComponentList(a, t), this.getComponentList.splice(t ? s + 1 : s, 1), _();
4582
+ return;
4583
+ }
4584
+ } catch {
4585
+ z();
4586
+ }
4587
+ },
4588
+ // * 置顶
4589
+ setTop(t = !0) {
4590
+ this.setBothEnds(!1, t);
4591
+ },
4592
+ // * 置底
4593
+ setBottom(t = !0) {
4594
+ this.setBothEnds(!0, t);
4595
+ },
4596
+ // * 上移/下移互换图表位置
4597
+ wrap(t = !1, e = !0) {
4598
+ try {
4599
+ if (this.getTargetChart.selectId.length > 1)
4600
+ return;
4601
+ m();
4602
+ const o = this.getComponentList.length;
4603
+ if (o < 2) {
4604
+ _();
4605
+ return;
4606
+ }
4607
+ const s = this.fetchTargetIndex();
4608
+ if (s !== -1) {
4609
+ if (t && s === 0 || !t && s === o - 1) {
4610
+ _();
4611
+ return;
4612
+ }
4613
+ const a = t ? s - 1 : s + 1, g = this.getComponentList[s], p = this.getComponentList[a];
4614
+ e && C().createLayerHistory(
4615
+ [g],
4616
+ t ? d.DOWN : d.UP
4617
+ ), this.updateComponentList(s, p), this.updateComponentList(a, g), _();
4618
+ return;
4619
+ }
4620
+ } catch {
4621
+ z();
4622
+ }
4623
+ },
4624
+ // * 图层上移
4625
+ setUp(t = !0) {
4626
+ this.wrap(!1, t);
4627
+ },
4628
+ // * 图层下移
4629
+ setDown(t = !0) {
4630
+ this.wrap(!0, t);
4631
+ },
4632
+ // * 复制
4633
+ setCopy(t = !1) {
4634
+ try {
4635
+ if (this.getTargetChart.selectId.length > 1 || document.getElementsByClassName("n-modal-body-wrapper").length)
4636
+ return;
4637
+ m();
4638
+ const e = this.fetchTargetIndex();
4639
+ if (e !== -1) {
4640
+ const o = {
4641
+ charts: this.getComponentList[e],
4642
+ type: t ? d.CUT : d.COPY
4643
+ };
4644
+ this.setRecordChart(o), window.$message.success(t ? "剪切图表成功" : "复制图表成功!"), _();
4645
+ }
4646
+ } catch {
4647
+ z();
4648
+ }
4649
+ },
4650
+ // * 剪切
4651
+ setCut() {
4652
+ this.setCopy(!0);
4653
+ },
4654
+ // * 粘贴
4655
+ setParse() {
4656
+ try {
4657
+ m();
4658
+ const t = this.getRecordChart;
4659
+ if (t === void 0) {
4660
+ _();
4661
+ return;
4662
+ }
4663
+ const e = (a) => (a = B(a), a.attr.x = this.getMousePosition.startX, a.attr.y = this.getMousePosition.startY, a.id = N(), a.isGroup && a.groupList.forEach((g) => {
4664
+ g.id = N();
4665
+ }), a), o = t.type === d.CUT;
4666
+ (Array.isArray(t.charts) ? t.charts : [t.charts]).forEach((a) => {
4667
+ this.addComponentList(e(a), void 0, !0), o && (this.setTargetSelectChart(a.id), this.removeComponentList(void 0, !0));
4668
+ }), o && this.setRecordChart(void 0), _();
4669
+ } catch {
4670
+ z();
4671
+ }
4672
+ },
4673
+ // * 撤回/前进 目标处理
4674
+ setBackAndSetForwardHandle(t, e = !1) {
4675
+ if (t.targetType === f.CANVAS) {
4676
+ this.editCanvas = t.historyData[0];
4677
+ return;
4678
+ }
4679
+ this.setTargetSelectChart();
4680
+ let o = t.historyData;
4681
+ R(o) && o.forEach((x) => {
4682
+ this.setTargetSelectChart(x.id, !0);
4683
+ });
4684
+ const s = t.actionType === d.ADD, a = t.actionType === d.DELETE;
4685
+ if (s || a) {
4686
+ if (s && e || a && !e) {
4687
+ o.forEach((x) => {
4688
+ this.addComponentList(x);
4689
+ });
4690
+ return;
4691
+ }
4692
+ o.forEach((x) => {
4693
+ this.removeComponentList(x.id, !1);
4694
+ });
4695
+ return;
4696
+ }
4697
+ if (t.actionType === d.MOVE) {
4698
+ o.forEach((x) => {
4699
+ this.resetComponentPosition(x, e);
4700
+ });
4701
+ return;
4702
+ }
4703
+ const p = t.actionType === d.TOP, h = t.actionType === d.BOTTOM;
4704
+ if (p || h) {
4705
+ if (!e) {
4706
+ p && this.getComponentList.pop(), h && this.getComponentList.shift(), this.getComponentList.splice(o[0].attr.zIndex, 0, o[0]);
4707
+ return;
4708
+ }
4709
+ p && this.setTop(!1), h && this.setBottom(!1);
4710
+ }
4711
+ const w = t.actionType === d.UP, M = t.actionType === d.DOWN;
4712
+ if (w || M) {
4713
+ if (w && e || M && !e) {
4714
+ this.setUp(!1);
4715
+ return;
4716
+ }
4717
+ this.setDown(!1);
4718
+ return;
4719
+ }
4720
+ const A = t.actionType === d.GROUP, k = t.actionType === d.UN_GROUP;
4721
+ if (A || k) {
4722
+ if (A && e || k && !e) {
4723
+ const x = [];
4724
+ o.length > 1 ? o.forEach((O) => {
4725
+ x.push(O.id);
4726
+ }) : o[0].groupList.forEach((V) => {
4727
+ x.unshift(V.id);
4728
+ }), this.setGroup(x, !1);
4729
+ return;
4730
+ }
4731
+ o.length > 1 ? this.setUnGroup([o[0].id], void 0, !1) : this.setUnGroup([o[0].groupList[0].id], void 0, !1);
4732
+ return;
4733
+ }
4734
+ const $ = t.actionType === d.LOCK, S = t.actionType === d.UNLOCK;
4735
+ if ($ || S) {
4736
+ if ($ && e || S && !e) {
4737
+ o.forEach((x) => {
4738
+ this.setLock(!x.status.lock, !1);
4739
+ });
4740
+ return;
4741
+ }
4742
+ o.forEach((x) => {
4743
+ this.setUnLock(!1);
4744
+ });
4745
+ return;
4746
+ }
4747
+ const L = t.actionType === d.HIDE, I = t.actionType === d.SHOW;
4748
+ if (L || I) {
4749
+ if (L && e || I && !e) {
4750
+ o.forEach((x) => {
4751
+ this.setHide(!x.status.hide, !1);
4752
+ });
4753
+ return;
4754
+ }
4755
+ o.forEach((x) => {
4756
+ this.setShow(!1);
4757
+ });
4758
+ return;
4759
+ }
4760
+ },
4761
+ // * 撤回
4762
+ setBack() {
4763
+ try {
4764
+ m();
4765
+ const t = C().backAction();
4766
+ if (!t) {
4767
+ _();
4768
+ return;
4769
+ }
4770
+ this.setBackAndSetForwardHandle(t), _();
4771
+ } catch {
4772
+ z();
4773
+ }
4774
+ },
4775
+ // * 前进
4776
+ setForward() {
4777
+ try {
4778
+ m();
4779
+ const t = C().forwardAction();
4780
+ if (!t) {
4781
+ _();
4782
+ return;
4783
+ }
4784
+ this.setBackAndSetForwardHandle(t, !0), _();
4785
+ } catch {
4786
+ z();
4787
+ }
4788
+ },
4789
+ // * 移动位置
4790
+ setMove(t) {
4791
+ const e = this.fetchTargetIndex();
4792
+ if (e === -1)
4793
+ return;
4794
+ const o = this.getComponentList[e].attr, s = x3().getChartMoveDistance;
4795
+ switch (t) {
4796
+ case y.ARROW_UP:
4797
+ o.y -= s;
4798
+ break;
4799
+ case y.ARROW_RIGHT:
4800
+ o.x += s;
4801
+ break;
4802
+ case y.ARROW_DOWN:
4803
+ o.y += s;
4804
+ break;
4805
+ case y.ARROW_LEFT:
4806
+ o.x -= s;
4807
+ break;
4808
+ }
4809
+ },
4810
+ // * 创建分组
4811
+ setGroup(t, e = !0) {
4812
+ try {
4813
+ let o = this.idPreFormat(t) || this.getTargetChart.selectId;
4814
+ if (o = this.getSelectIdSortList(o), o.length < 2)
4815
+ return;
4816
+ m();
4817
+ const s = new w3(), a = [], g = [], p = [];
4818
+ o.forEach((w) => {
4819
+ const M = this.fetchTargetIndex(w);
4820
+ M !== -1 && this.getComponentList[M].isGroup ? this.setUnGroup(
4821
+ [w],
4822
+ (A) => {
4823
+ A.forEach((k) => {
4824
+ this.addComponentList(k), p.push(k.id);
4825
+ });
4826
+ },
4827
+ !1
4828
+ ) : M !== -1 && p.push(w);
4829
+ });
4830
+ const h = {
4831
+ l: 0,
4832
+ t: 0,
4833
+ r: 0,
4834
+ b: 0
4835
+ };
4836
+ p.forEach((w, M) => {
4837
+ const A = this.componentList.splice(this.fetchTargetIndex(w), 1)[0], { x: k, y: $, w: S, h: L } = A.attr;
4838
+ if (M === 0)
4839
+ h.l = k, h.t = $, h.r = k + S, h.b = $ + L;
4840
+ else {
4841
+ const { l: I, t: x, r: O, b: V } = h;
4842
+ h.l = I > k ? k : I, h.t = x > $ ? $ : x, h.r = O < k + S ? k + S : O, h.b = V < $ + L ? $ + L : V;
4843
+ }
4844
+ a.push(A), g.push(J(A));
4845
+ }), e && C().createGroupHistory(g), a.forEach((w) => {
4846
+ w.attr.x = w.attr.x - h.l, w.attr.y = w.attr.y - h.t, s.groupList.push(w);
4847
+ }), s.attr.x = h.l, s.attr.y = h.t, s.attr.w = h.r - h.l, s.attr.h = h.b - h.t, this.addComponentList(s), this.setTargetSelectChart(s.id), _();
4848
+ } catch (o) {
4849
+ console.log(o), window.$message.error("创建分组失败,请联系管理员"), _();
4850
+ }
4851
+ },
4852
+ // * 解除分组
4853
+ setUnGroup(t, e, o = !0) {
4854
+ try {
4855
+ const s = t || this.getTargetChart.selectId;
4856
+ if (s.length !== 1)
4857
+ return;
4858
+ m();
4859
+ const a = (p) => {
4860
+ const h = this.getComponentList[p];
4861
+ h.isGroup && (o && C().createUnGroupHistory(B([h])), h.groupList.forEach((w) => {
4862
+ w.attr.x = w.attr.x + h.attr.x, w.attr.y = w.attr.y + h.attr.y, e || this.addComponentList(w);
4863
+ }), this.setTargetSelectChart(h.id), this.removeComponentList(h.id, !1), e && e(h.groupList));
4864
+ }, g = this.fetchTargetIndex(s[0]);
4865
+ g !== -1 && a(g), _();
4866
+ } catch (s) {
4867
+ console.log(s), window.$message.error("解除分组失败,请联系管理员"), _();
4868
+ }
4869
+ },
4870
+ // * 锁定
4871
+ setLock(t = !0, e = !0) {
4872
+ try {
4873
+ if (this.getTargetChart.selectId.length > 1)
4874
+ return;
4875
+ m();
4876
+ const o = this.fetchTargetIndex();
4877
+ if (o !== -1) {
4878
+ const s = this.getComponentList[o];
4879
+ s.status.lock = t, e && (t ? C().createLockHistory([s]) : C().createUnLockHistory([s])), this.updateComponentList(o, s), t && this.setTargetSelectChart(void 0), _();
4880
+ return;
4881
+ }
4882
+ } catch {
4883
+ z();
4884
+ }
4885
+ },
4886
+ // * 解除锁定
4887
+ setUnLock(t = !0) {
4888
+ this.setLock(!1, t);
4889
+ },
4890
+ // * 隐藏
4891
+ setHide(t = !0, e = !0) {
4892
+ try {
4893
+ if (this.getTargetChart.selectId.length > 1)
4894
+ return;
4895
+ m();
4896
+ const o = this.fetchTargetIndex();
4897
+ if (o !== -1) {
4898
+ const s = this.getComponentList[o];
4899
+ s.status.hide = t, e && (t ? C().createHideHistory([s]) : C().createShowHistory([s])), this.updateComponentList(o, s), _(), t && this.setTargetSelectChart(void 0);
4900
+ }
4901
+ } catch {
4902
+ z();
4903
+ }
4904
+ },
4905
+ // * 显示
4906
+ setShow(t = !0) {
4907
+ this.setHide(!1, t);
4908
+ },
4909
+ // ----------------
4910
+ // * 设置页面大小
4911
+ setPageSize(t) {
4912
+ this.setPageStyle("height", `${this.editCanvasConfig.height * t}px`), this.setPageStyle("width", `${this.editCanvasConfig.width * t}px`);
4913
+ },
4914
+ // * 计算缩放
4915
+ computedScale() {
4916
+ if (this.getEditCanvas.editLayoutDom) {
4917
+ const t = this.getEditCanvas.editLayoutDom.clientWidth - this.getEditCanvas.offset * 2 - 5, e = this.getEditCanvas.editLayoutDom.clientHeight - this.getEditCanvas.offset * 4, o = this.editCanvasConfig.width, s = this.editCanvasConfig.height, a = parseFloat((o / s).toFixed(5));
4918
+ if (parseFloat((t / e).toFixed(5)) > a) {
4919
+ const p = parseFloat((e * a / o).toFixed(5));
4920
+ this.setScale(p > 1 ? 1 : p);
4921
+ } else {
4922
+ const p = parseFloat((t / a / s).toFixed(5));
4923
+ this.setScale(p > 1 ? 1 : p);
4924
+ }
4925
+ } else
4926
+ window.$message.warning("请先创建画布,再进行缩放");
4927
+ },
4928
+ // * 监听缩放
4929
+ listenerScale() {
4930
+ const t = ft(this.computedScale, 200);
4931
+ return t(), window.addEventListener("resize", t), () => {
4932
+ window.removeEventListener("resize", t);
4933
+ };
4934
+ },
4935
+ /**
4936
+ * * 设置缩放
4937
+ * @param scale 0~1 number 缩放比例;
4938
+ * @param force boolean 强制缩放
4939
+ */
4940
+ setScale(t, e = !1) {
4941
+ (!this.getEditCanvas.lockScale || e) && (this.setPageSize(t), this.getEditCanvas.userScale = t, this.getEditCanvas.scale = t);
4942
+ }
4943
+ }
4944
+ });
4945
+ export {
4946
+ b as B,
4947
+ E as C,
4948
+ G as E,
4949
+ h3 as F,
4950
+ _3 as H,
4951
+ w3 as P,
4952
+ T as S,
4953
+ W as T,
4954
+ g3 as a,
4955
+ p3 as b,
4956
+ B as c,
4957
+ c3 as d,
4958
+ P as e,
4959
+ _ as f,
4960
+ z3 as g,
4961
+ z as h,
4962
+ n3 as i,
4963
+ i3 as j,
4964
+ a3 as k,
4965
+ m as l,
4966
+ M3 as m,
4967
+ K as n,
4968
+ u3 as o,
4969
+ j as p,
4970
+ d as q,
4971
+ f as r,
4972
+ L3 as s,
4973
+ A3 as t,
4974
+ S3 as u
4975
+ };