@omegagrid/core 0.10.2 → 0.10.4

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 (317) hide show
  1. package/dist/common/actions.d.ts +16 -0
  2. package/dist/common/actions.d.ts.map +1 -0
  3. package/dist/common/actions.js +14 -0
  4. package/dist/common/actions.js.map +1 -0
  5. package/dist/common/colors.d.ts +39 -0
  6. package/dist/common/colors.d.ts.map +1 -0
  7. package/dist/common/colors.js +59 -0
  8. package/dist/common/colors.js.map +1 -0
  9. package/dist/common/csv.d.ts +23 -0
  10. package/dist/common/csv.d.ts.map +1 -0
  11. package/dist/common/csv.js +93 -0
  12. package/dist/common/csv.js.map +1 -0
  13. package/dist/common/dates.d.ts +32 -0
  14. package/dist/common/dates.d.ts.map +1 -0
  15. package/dist/common/dates.js +172 -0
  16. package/dist/common/dates.js.map +1 -0
  17. package/dist/common/device.d.ts +2 -0
  18. package/dist/common/device.d.ts.map +1 -0
  19. package/dist/common/device.js +13 -0
  20. package/dist/common/device.js.map +1 -0
  21. package/dist/common/dom.d.ts +90 -0
  22. package/dist/common/dom.d.ts.map +1 -0
  23. package/dist/common/dom.js +308 -0
  24. package/dist/common/dom.js.map +1 -0
  25. package/dist/common/events.d.ts +15 -0
  26. package/dist/common/events.d.ts.map +1 -0
  27. package/dist/common/events.js +33 -0
  28. package/dist/common/events.js.map +1 -0
  29. package/dist/common/html.d.ts +3 -0
  30. package/dist/common/html.d.ts.map +1 -0
  31. package/dist/common/html.js +25 -0
  32. package/dist/common/html.js.map +1 -0
  33. package/dist/common/index.d.ts +19 -0
  34. package/dist/common/index.d.ts.map +1 -0
  35. package/dist/common/index.js +19 -0
  36. package/dist/common/index.js.map +1 -0
  37. package/dist/common/linkedList.d.ts +24 -0
  38. package/dist/common/linkedList.d.ts.map +1 -0
  39. package/dist/common/linkedList.js +65 -0
  40. package/dist/common/linkedList.js.map +1 -0
  41. package/dist/common/loaders.d.ts +17 -0
  42. package/dist/common/loaders.d.ts.map +1 -0
  43. package/dist/common/loaders.js +54 -0
  44. package/dist/common/loaders.js.map +1 -0
  45. package/dist/common/logger.d.ts +25 -0
  46. package/dist/common/logger.d.ts.map +1 -0
  47. package/dist/common/logger.js +57 -0
  48. package/dist/common/logger.js.map +1 -0
  49. package/dist/common/matrix.d.ts +6 -0
  50. package/dist/common/matrix.d.ts.map +1 -0
  51. package/dist/common/matrix.js +17 -0
  52. package/dist/common/matrix.js.map +1 -0
  53. package/dist/common/numbers.d.ts +26 -0
  54. package/dist/common/numbers.d.ts.map +1 -0
  55. package/dist/common/numbers.js +239 -0
  56. package/dist/common/numbers.js.map +1 -0
  57. package/dist/common/options.d.ts +17 -0
  58. package/dist/common/options.d.ts.map +1 -0
  59. package/dist/common/options.js +29 -0
  60. package/dist/common/options.js.map +1 -0
  61. package/dist/common/paper.d.ts +8 -0
  62. package/dist/common/paper.d.ts.map +1 -0
  63. package/dist/common/paper.js +17 -0
  64. package/dist/common/paper.js.map +1 -0
  65. package/dist/common/shortcutManager.d.ts +17 -0
  66. package/dist/common/shortcutManager.d.ts.map +1 -0
  67. package/dist/common/shortcutManager.js +49 -0
  68. package/dist/common/shortcutManager.js.map +1 -0
  69. package/dist/common/tree.d.ts +87 -0
  70. package/dist/common/tree.d.ts.map +1 -0
  71. package/dist/common/tree.js +204 -0
  72. package/dist/common/tree.js.map +1 -0
  73. package/dist/common/utils.d.ts +30 -0
  74. package/dist/common/utils.d.ts.map +1 -0
  75. package/dist/common/utils.js +136 -0
  76. package/dist/common/utils.js.map +1 -0
  77. package/dist/constants.d.ts +48 -0
  78. package/dist/constants.d.ts.map +1 -0
  79. package/dist/constants.js +24 -0
  80. package/dist/constants.js.map +1 -0
  81. package/dist/index.d.ts +8 -0
  82. package/dist/index.d.ts.map +1 -0
  83. package/dist/index.js +8 -0
  84. package/dist/index.js.map +1 -0
  85. package/dist/model/adapter.d.ts +8 -0
  86. package/dist/model/adapter.d.ts.map +1 -0
  87. package/dist/model/adapter.js +13 -0
  88. package/dist/model/adapter.js.map +1 -0
  89. package/dist/model/component.d.ts +19 -0
  90. package/dist/model/component.d.ts.map +1 -0
  91. package/dist/model/component.js +84 -0
  92. package/dist/model/component.js.map +1 -0
  93. package/dist/model/componentSlice.d.ts +8 -0
  94. package/dist/model/componentSlice.d.ts.map +1 -0
  95. package/dist/model/componentSlice.js +10 -0
  96. package/dist/model/componentSlice.js.map +1 -0
  97. package/dist/model/componentStore.d.ts +12 -0
  98. package/dist/model/componentStore.d.ts.map +1 -0
  99. package/dist/model/componentStore.js +26 -0
  100. package/dist/model/componentStore.js.map +1 -0
  101. package/dist/model/index.d.ts +6 -0
  102. package/dist/model/index.d.ts.map +1 -0
  103. package/dist/model/index.js +6 -0
  104. package/dist/model/index.js.map +1 -0
  105. package/dist/model/plugins.d.ts +13 -0
  106. package/dist/model/plugins.d.ts.map +1 -0
  107. package/dist/model/plugins.js +27 -0
  108. package/dist/model/plugins.js.map +1 -0
  109. package/dist/themes/definitions/tmDark.d.ts +4 -0
  110. package/dist/themes/definitions/tmDark.d.ts.map +1 -0
  111. package/dist/themes/definitions/tmDark.js +83 -0
  112. package/dist/themes/definitions/tmDark.js.map +1 -0
  113. package/dist/themes/definitions/tmLight.d.ts +4 -0
  114. package/dist/themes/definitions/tmLight.d.ts.map +1 -0
  115. package/dist/themes/definitions/tmLight.js +83 -0
  116. package/dist/themes/definitions/tmLight.js.map +1 -0
  117. package/dist/themes/helpers.d.ts +7 -0
  118. package/dist/themes/helpers.d.ts.map +1 -0
  119. package/dist/themes/helpers.js +34 -0
  120. package/dist/themes/helpers.js.map +1 -0
  121. package/dist/themes/index.d.ts +18 -0
  122. package/dist/themes/index.d.ts.map +1 -0
  123. package/dist/themes/index.js +48 -0
  124. package/dist/themes/index.js.map +1 -0
  125. package/dist/themes/mixins.d.ts +10 -0
  126. package/dist/themes/mixins.d.ts.map +1 -0
  127. package/dist/themes/mixins.js +39 -0
  128. package/dist/themes/mixins.js.map +1 -0
  129. package/dist/themes/transformations.d.ts +9 -0
  130. package/dist/themes/transformations.d.ts.map +1 -0
  131. package/dist/themes/transformations.js +48 -0
  132. package/dist/themes/transformations.js.map +1 -0
  133. package/dist/types.d.ts +130 -0
  134. package/dist/types.d.ts.map +1 -0
  135. package/dist/types.js +12 -0
  136. package/dist/types.js.map +1 -0
  137. package/dist/ui/accordion.d.ts +16 -0
  138. package/dist/ui/accordion.d.ts.map +1 -0
  139. package/dist/ui/accordion.js +209 -0
  140. package/dist/ui/accordion.js.map +1 -0
  141. package/dist/ui/alert.d.ts +15 -0
  142. package/dist/ui/alert.d.ts.map +1 -0
  143. package/dist/ui/alert.js +101 -0
  144. package/dist/ui/alert.js.map +1 -0
  145. package/dist/ui/baseElement.d.ts +7 -0
  146. package/dist/ui/baseElement.d.ts.map +1 -0
  147. package/dist/ui/baseElement.js +10 -0
  148. package/dist/ui/baseElement.js.map +1 -0
  149. package/dist/ui/button.d.ts +21 -0
  150. package/dist/ui/button.d.ts.map +1 -0
  151. package/dist/ui/button.js +100 -0
  152. package/dist/ui/button.js.map +1 -0
  153. package/dist/ui/button.style.d.ts +2 -0
  154. package/dist/ui/button.style.d.ts.map +1 -0
  155. package/dist/ui/button.style.js +60 -0
  156. package/dist/ui/button.style.js.map +1 -0
  157. package/dist/ui/checkbox.d.ts +14 -0
  158. package/dist/ui/checkbox.d.ts.map +1 -0
  159. package/dist/ui/checkbox.js +47 -0
  160. package/dist/ui/checkbox.js.map +1 -0
  161. package/dist/ui/close.d.ts +6 -0
  162. package/dist/ui/close.d.ts.map +1 -0
  163. package/dist/ui/close.js +33 -0
  164. package/dist/ui/close.js.map +1 -0
  165. package/dist/ui/colorpicker.d.ts +24 -0
  166. package/dist/ui/colorpicker.d.ts.map +1 -0
  167. package/dist/ui/colorpicker.js +228 -0
  168. package/dist/ui/colorpicker.js.map +1 -0
  169. package/dist/ui/container.d.ts +39 -0
  170. package/dist/ui/container.d.ts.map +1 -0
  171. package/dist/ui/container.js +313 -0
  172. package/dist/ui/container.js.map +1 -0
  173. package/dist/ui/dropdown.d.ts +48 -0
  174. package/dist/ui/dropdown.d.ts.map +1 -0
  175. package/dist/ui/dropdown.js +300 -0
  176. package/dist/ui/dropdown.js.map +1 -0
  177. package/dist/ui/dropdownColorPicker.d.ts +12 -0
  178. package/dist/ui/dropdownColorPicker.d.ts.map +1 -0
  179. package/dist/ui/dropdownColorPicker.js +60 -0
  180. package/dist/ui/dropdownColorPicker.js.map +1 -0
  181. package/dist/ui/dropdownList.d.ts +8 -0
  182. package/dist/ui/dropdownList.d.ts.map +1 -0
  183. package/dist/ui/dropdownList.js +48 -0
  184. package/dist/ui/dropdownList.js.map +1 -0
  185. package/dist/ui/dropdownMenu.d.ts +11 -0
  186. package/dist/ui/dropdownMenu.d.ts.map +1 -0
  187. package/dist/ui/dropdownMenu.js +61 -0
  188. package/dist/ui/dropdownMenu.js.map +1 -0
  189. package/dist/ui/expander.d.ts +28 -0
  190. package/dist/ui/expander.d.ts.map +1 -0
  191. package/dist/ui/expander.js +144 -0
  192. package/dist/ui/expander.js.map +1 -0
  193. package/dist/ui/fileInput.d.ts +24 -0
  194. package/dist/ui/fileInput.d.ts.map +1 -0
  195. package/dist/ui/fileInput.js +130 -0
  196. package/dist/ui/fileInput.js.map +1 -0
  197. package/dist/ui/fileInput.style.d.ts +2 -0
  198. package/dist/ui/fileInput.style.d.ts.map +1 -0
  199. package/dist/ui/fileInput.style.js +73 -0
  200. package/dist/ui/fileInput.style.js.map +1 -0
  201. package/dist/ui/floatingWindow.d.ts +19 -0
  202. package/dist/ui/floatingWindow.d.ts.map +1 -0
  203. package/dist/ui/floatingWindow.js +87 -0
  204. package/dist/ui/floatingWindow.js.map +1 -0
  205. package/dist/ui/icon.d.ts +46 -0
  206. package/dist/ui/icon.d.ts.map +1 -0
  207. package/dist/ui/icon.js +189 -0
  208. package/dist/ui/icon.js.map +1 -0
  209. package/dist/ui/icon.style.d.ts +2 -0
  210. package/dist/ui/icon.style.d.ts.map +1 -0
  211. package/dist/ui/icon.style.js +556 -0
  212. package/dist/ui/icon.style.js.map +1 -0
  213. package/dist/ui/images.d.ts +2 -0
  214. package/dist/ui/images.d.ts.map +1 -0
  215. package/dist/ui/images.js +14 -0
  216. package/dist/ui/images.js.map +1 -0
  217. package/dist/ui/index.d.ts +32 -0
  218. package/dist/ui/index.d.ts.map +1 -0
  219. package/dist/ui/index.js +32 -0
  220. package/dist/ui/index.js.map +1 -0
  221. package/dist/ui/input.d.ts +12 -0
  222. package/dist/ui/input.d.ts.map +1 -0
  223. package/dist/ui/input.js +45 -0
  224. package/dist/ui/input.js.map +1 -0
  225. package/dist/ui/input.style.d.ts +2 -0
  226. package/dist/ui/input.style.d.ts.map +1 -0
  227. package/dist/ui/input.style.js +36 -0
  228. package/dist/ui/input.style.js.map +1 -0
  229. package/dist/ui/label.d.ts +16 -0
  230. package/dist/ui/label.d.ts.map +1 -0
  231. package/dist/ui/label.js +90 -0
  232. package/dist/ui/label.js.map +1 -0
  233. package/dist/ui/list.d.ts +87 -0
  234. package/dist/ui/list.d.ts.map +1 -0
  235. package/dist/ui/list.js +427 -0
  236. package/dist/ui/list.js.map +1 -0
  237. package/dist/ui/list.style.d.ts +2 -0
  238. package/dist/ui/list.style.d.ts.map +1 -0
  239. package/dist/ui/list.style.js +35 -0
  240. package/dist/ui/list.style.js.map +1 -0
  241. package/dist/ui/loader.d.ts +6 -0
  242. package/dist/ui/loader.d.ts.map +1 -0
  243. package/dist/ui/loader.js +25 -0
  244. package/dist/ui/loader.js.map +1 -0
  245. package/dist/ui/menu.d.ts +41 -0
  246. package/dist/ui/menu.d.ts.map +1 -0
  247. package/dist/ui/menu.js +154 -0
  248. package/dist/ui/menu.js.map +1 -0
  249. package/dist/ui/menu.style.d.ts +3 -0
  250. package/dist/ui/menu.style.d.ts.map +1 -0
  251. package/dist/ui/menu.style.js +50 -0
  252. package/dist/ui/menu.style.js.map +1 -0
  253. package/dist/ui/numericInput.d.ts +37 -0
  254. package/dist/ui/numericInput.d.ts.map +1 -0
  255. package/dist/ui/numericInput.js +175 -0
  256. package/dist/ui/numericInput.js.map +1 -0
  257. package/dist/ui/numericInput.style.d.ts +2 -0
  258. package/dist/ui/numericInput.style.d.ts.map +1 -0
  259. package/dist/ui/numericInput.style.js +29 -0
  260. package/dist/ui/numericInput.style.js.map +1 -0
  261. package/dist/ui/overlay.d.ts +17 -0
  262. package/dist/ui/overlay.d.ts.map +1 -0
  263. package/dist/ui/overlay.js +87 -0
  264. package/dist/ui/overlay.js.map +1 -0
  265. package/dist/ui/overlay.style.d.ts +2 -0
  266. package/dist/ui/overlay.style.d.ts.map +1 -0
  267. package/dist/ui/overlay.style.js +46 -0
  268. package/dist/ui/overlay.style.js.map +1 -0
  269. package/dist/ui/panel.d.ts +25 -0
  270. package/dist/ui/panel.d.ts.map +1 -0
  271. package/dist/ui/panel.js +151 -0
  272. package/dist/ui/panel.js.map +1 -0
  273. package/dist/ui/panel.style.d.ts +2 -0
  274. package/dist/ui/panel.style.d.ts.map +1 -0
  275. package/dist/ui/panel.style.js +73 -0
  276. package/dist/ui/panel.style.js.map +1 -0
  277. package/dist/ui/sizer.d.ts +53 -0
  278. package/dist/ui/sizer.d.ts.map +1 -0
  279. package/dist/ui/sizer.js +203 -0
  280. package/dist/ui/sizer.js.map +1 -0
  281. package/dist/ui/slider.d.ts +52 -0
  282. package/dist/ui/slider.d.ts.map +1 -0
  283. package/dist/ui/slider.js +213 -0
  284. package/dist/ui/slider.js.map +1 -0
  285. package/dist/ui/slider.style.d.ts +2 -0
  286. package/dist/ui/slider.style.d.ts.map +1 -0
  287. package/dist/ui/slider.style.js +61 -0
  288. package/dist/ui/slider.style.js.map +1 -0
  289. package/dist/ui/sortableList.d.ts +39 -0
  290. package/dist/ui/sortableList.d.ts.map +1 -0
  291. package/dist/ui/sortableList.js +167 -0
  292. package/dist/ui/sortableList.js.map +1 -0
  293. package/dist/ui/splitContainer.d.ts +52 -0
  294. package/dist/ui/splitContainer.d.ts.map +1 -0
  295. package/dist/ui/splitContainer.js +252 -0
  296. package/dist/ui/splitContainer.js.map +1 -0
  297. package/dist/ui/splitContainer.style.d.ts +2 -0
  298. package/dist/ui/splitContainer.style.d.ts.map +1 -0
  299. package/dist/ui/splitContainer.style.js +62 -0
  300. package/dist/ui/splitContainer.style.js.map +1 -0
  301. package/dist/ui/switch.d.ts +22 -0
  302. package/dist/ui/switch.d.ts.map +1 -0
  303. package/dist/ui/switch.js +83 -0
  304. package/dist/ui/switch.js.map +1 -0
  305. package/dist/ui/switch.style.d.ts +2 -0
  306. package/dist/ui/switch.style.d.ts.map +1 -0
  307. package/dist/ui/switch.style.js +149 -0
  308. package/dist/ui/switch.style.js.map +1 -0
  309. package/dist/ui/tooltip.d.ts +24 -0
  310. package/dist/ui/tooltip.d.ts.map +1 -0
  311. package/dist/ui/tooltip.js +143 -0
  312. package/dist/ui/tooltip.js.map +1 -0
  313. package/dist/ui/tooltip.style.d.ts +2 -0
  314. package/dist/ui/tooltip.style.d.ts.map +1 -0
  315. package/dist/ui/tooltip.style.js +112 -0
  316. package/dist/ui/tooltip.style.js.map +1 -0
  317. package/package.json +2 -2
@@ -0,0 +1,556 @@
1
+ import { css } from 'lit';
2
+ export const style = css `
3
+ :host {
4
+ --fa-font-solid: normal 900 1em/1 "Font Awesome 7 Free";
5
+ --fa-font-regular: normal 400 1em/1 "Font Awesome 7 Free";
6
+ --fa-font-light: normal 300 1em/1 "Font Awesome 7 Pro";
7
+ --fa-font-thin: normal 100 1em/1 "Font Awesome 7 Pro";
8
+ --fa-font-duotone: normal 900 1em/1 "Font Awesome 7 Duotone";
9
+ --fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 7 Duotone";
10
+ --fa-font-duotone-light: normal 300 1em/1 "Font Awesome 7 Duotone";
11
+ --fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 7 Duotone";
12
+ --fa-font-brands: normal 400 1em/1 "Font Awesome 7 Brands";
13
+ --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 7 Sharp";
14
+ --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 7 Sharp";
15
+ --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 7 Sharp";
16
+ --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 7 Sharp";
17
+ --fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 7 Sharp Duotone";
18
+ --fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 7 Sharp Duotone";
19
+ --fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 7 Sharp Duotone";
20
+ --fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 7 Sharp Duotone";
21
+ --fa-font-slab-regular: normal 400 1em/1 "Font Awesome 7 Slab";
22
+ --fa-font-slab-press-regular: normal 400 1em/1 "Font Awesome 7 Slab Press";
23
+ --fa-font-whiteboard-semibold: normal 600 1em/1 "Font Awesome 7 Whiteboard";
24
+ --fa-font-thumbprint-light: normal 300 1em/1 "Font Awesome 7 Thumbprint";
25
+ --fa-font-notdog-solid: normal 900 1em/1 "Font Awesome 7 Notdog";
26
+ --fa-font-notdog-duo-solid: normal 900 1em/1 "Font Awesome 7 Notdog Duo";
27
+ --fa-font-etch-solid: normal 900 1em/1 "Font Awesome 7 Etch";
28
+ --fa-font-jelly-regular: normal 400 1em/1 "Font Awesome 7 Jelly";
29
+ --fa-font-jelly-fill-regular: normal 400 1em/1 "Font Awesome 7 Jelly Fill";
30
+ --fa-font-jelly-duo-regular: normal 400 1em/1 "Font Awesome 7 Jelly Duo";
31
+ --fa-font-chisel-regular: normal 400 1em/1 "Font Awesome 7 Chisel";
32
+ }
33
+
34
+ .svg-inline--fa {
35
+ box-sizing: content-box;
36
+ display: var(--fa-display, inline-block);
37
+ height: 1em;
38
+ overflow: visible;
39
+ vertical-align: -0.125em;
40
+ width: var(--fa-width, 1.25em);
41
+ }
42
+ .svg-inline--fa.fa-2xs {
43
+ vertical-align: 0.1em;
44
+ }
45
+ .svg-inline--fa.fa-xs {
46
+ vertical-align: 0em;
47
+ }
48
+ .svg-inline--fa.fa-sm {
49
+ vertical-align: -0.0714285714em;
50
+ }
51
+ .svg-inline--fa.fa-lg {
52
+ vertical-align: -0.2em;
53
+ }
54
+ .svg-inline--fa.fa-xl {
55
+ vertical-align: -0.25em;
56
+ }
57
+ .svg-inline--fa.fa-2xl {
58
+ vertical-align: -0.3125em;
59
+ }
60
+ .svg-inline--fa.fa-pull-left,
61
+ .svg-inline--fa .fa-pull-start {
62
+ float: inline-start;
63
+ margin-inline-end: var(--fa-pull-margin, 0.3em);
64
+ }
65
+ .svg-inline--fa.fa-pull-right,
66
+ .svg-inline--fa .fa-pull-end {
67
+ float: inline-end;
68
+ margin-inline-start: var(--fa-pull-margin, 0.3em);
69
+ }
70
+ .svg-inline--fa.fa-li {
71
+ width: var(--fa-li-width, 2em);
72
+ inset-inline-start: calc(-1 * var(--fa-li-width, 2em));
73
+ inset-block-start: 0.25em; /* syncing vertical alignment with Web Font rendering */
74
+ }
75
+
76
+ .fa-layers-counter, .fa-layers-text {
77
+ display: inline-block;
78
+ position: absolute;
79
+ text-align: center;
80
+ }
81
+
82
+ .fa-layers {
83
+ display: inline-block;
84
+ height: 1em;
85
+ position: relative;
86
+ text-align: center;
87
+ vertical-align: -0.125em;
88
+ width: var(--fa-width, 1.25em);
89
+ }
90
+ .fa-layers .svg-inline--fa {
91
+ inset: 0;
92
+ margin: auto;
93
+ position: absolute;
94
+ transform-origin: center center;
95
+ }
96
+
97
+ .fa-layers-text {
98
+ left: 50%;
99
+ top: 50%;
100
+ transform: translate(-50%, -50%);
101
+ transform-origin: center center;
102
+ }
103
+
104
+ .fa-layers-counter {
105
+ background-color: var(--fa-counter-background-color, #ff253a);
106
+ border-radius: var(--fa-counter-border-radius, 1em);
107
+ box-sizing: border-box;
108
+ color: var(--fa-inverse, #fff);
109
+ line-height: var(--fa-counter-line-height, 1);
110
+ max-width: var(--fa-counter-max-width, 5em);
111
+ min-width: var(--fa-counter-min-width, 1.5em);
112
+ overflow: hidden;
113
+ padding: var(--fa-counter-padding, 0.25em 0.5em);
114
+ right: var(--fa-right, 0);
115
+ text-overflow: ellipsis;
116
+ top: var(--fa-top, 0);
117
+ transform: scale(var(--fa-counter-scale, 0.25));
118
+ transform-origin: top right;
119
+ }
120
+
121
+ .fa-layers-bottom-right {
122
+ bottom: var(--fa-bottom, 0);
123
+ right: var(--fa-right, 0);
124
+ top: auto;
125
+ transform: scale(var(--fa-layers-scale, 0.25));
126
+ transform-origin: bottom right;
127
+ }
128
+
129
+ .fa-layers-bottom-left {
130
+ bottom: var(--fa-bottom, 0);
131
+ left: var(--fa-left, 0);
132
+ right: auto;
133
+ top: auto;
134
+ transform: scale(var(--fa-layers-scale, 0.25));
135
+ transform-origin: bottom left;
136
+ }
137
+
138
+ .fa-layers-top-right {
139
+ top: var(--fa-top, 0);
140
+ right: var(--fa-right, 0);
141
+ transform: scale(var(--fa-layers-scale, 0.25));
142
+ transform-origin: top right;
143
+ }
144
+
145
+ .fa-layers-top-left {
146
+ left: var(--fa-left, 0);
147
+ right: auto;
148
+ top: var(--fa-top, 0);
149
+ transform: scale(var(--fa-layers-scale, 0.25));
150
+ transform-origin: top left;
151
+ }
152
+
153
+ .fa-1x {
154
+ font-size: 1em;
155
+ }
156
+
157
+ .fa-2x {
158
+ font-size: 2em;
159
+ }
160
+
161
+ .fa-3x {
162
+ font-size: 3em;
163
+ }
164
+
165
+ .fa-4x {
166
+ font-size: 4em;
167
+ }
168
+
169
+ .fa-5x {
170
+ font-size: 5em;
171
+ }
172
+
173
+ .fa-6x {
174
+ font-size: 6em;
175
+ }
176
+
177
+ .fa-7x {
178
+ font-size: 7em;
179
+ }
180
+
181
+ .fa-8x {
182
+ font-size: 8em;
183
+ }
184
+
185
+ .fa-9x {
186
+ font-size: 9em;
187
+ }
188
+
189
+ .fa-10x {
190
+ font-size: 10em;
191
+ }
192
+
193
+ .fa-2xs {
194
+ font-size: calc(10 / 16 * 1em); /* converts a 10px size into an em-based value that's relative to the scale's 16px base */
195
+ line-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it's parent */
196
+ vertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
197
+ }
198
+
199
+ .fa-xs {
200
+ font-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that's relative to the scale's 16px base */
201
+ line-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it's parent */
202
+ vertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
203
+ }
204
+
205
+ .fa-sm {
206
+ font-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that's relative to the scale's 16px base */
207
+ line-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it's parent */
208
+ vertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
209
+ }
210
+
211
+ .fa-lg {
212
+ font-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that's relative to the scale's 16px base */
213
+ line-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it's parent */
214
+ vertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
215
+ }
216
+
217
+ .fa-xl {
218
+ font-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that's relative to the scale's 16px base */
219
+ line-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it's parent */
220
+ vertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
221
+ }
222
+
223
+ .fa-2xl {
224
+ font-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that's relative to the scale's 16px base */
225
+ line-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it's parent */
226
+ vertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */
227
+ }
228
+
229
+ .fa-width-auto {
230
+ --fa-width: auto;
231
+ }
232
+
233
+ .fa-fw,
234
+ .fa-width-fixed {
235
+ --fa-width: 1.25em;
236
+ }
237
+
238
+ .fa-ul {
239
+ list-style-type: none;
240
+ margin-inline-start: var(--fa-li-margin, 2.5em);
241
+ padding-inline-start: 0;
242
+ }
243
+ .fa-ul > li {
244
+ position: relative;
245
+ }
246
+
247
+ .fa-li {
248
+ inset-inline-start: calc(-1 * var(--fa-li-width, 2em));
249
+ position: absolute;
250
+ text-align: center;
251
+ width: var(--fa-li-width, 2em);
252
+ line-height: inherit;
253
+ }
254
+
255
+ /* Heads Up: Bordered Icons will not be supported in the future!
256
+ - This feature will be deprecated in the next major release of Font Awesome (v8)!
257
+ - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8.
258
+ */
259
+ /* Notes:
260
+ * --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size)
261
+ * --@{v.$css-prefix}-border-padding =
262
+ ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it's vertical alignment)
263
+ ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon)
264
+ */
265
+ .fa-border {
266
+ border-color: var(--fa-border-color, #eee);
267
+ border-radius: var(--fa-border-radius, 0.1em);
268
+ border-style: var(--fa-border-style, solid);
269
+ border-width: var(--fa-border-width, 0.0625em);
270
+ box-sizing: var(--fa-border-box-sizing, content-box);
271
+ padding: var(--fa-border-padding, 0.1875em 0.25em);
272
+ }
273
+
274
+ .fa-pull-left,
275
+ .fa-pull-start {
276
+ float: inline-start;
277
+ margin-inline-end: var(--fa-pull-margin, 0.3em);
278
+ }
279
+
280
+ .fa-pull-right,
281
+ .fa-pull-end {
282
+ float: inline-end;
283
+ margin-inline-start: var(--fa-pull-margin, 0.3em);
284
+ }
285
+
286
+ .fa-beat {
287
+ animation-name: fa-beat;
288
+ animation-delay: var(--fa-animation-delay, 0s);
289
+ animation-direction: var(--fa-animation-direction, normal);
290
+ animation-duration: var(--fa-animation-duration, 1s);
291
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
292
+ animation-timing-function: var(--fa-animation-timing, ease-in-out);
293
+ }
294
+
295
+ .fa-bounce {
296
+ animation-name: fa-bounce;
297
+ animation-delay: var(--fa-animation-delay, 0s);
298
+ animation-direction: var(--fa-animation-direction, normal);
299
+ animation-duration: var(--fa-animation-duration, 1s);
300
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
301
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
302
+ }
303
+
304
+ .fa-fade {
305
+ animation-name: fa-fade;
306
+ animation-delay: var(--fa-animation-delay, 0s);
307
+ animation-direction: var(--fa-animation-direction, normal);
308
+ animation-duration: var(--fa-animation-duration, 1s);
309
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
310
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
311
+ }
312
+
313
+ .fa-beat-fade {
314
+ animation-name: fa-beat-fade;
315
+ animation-delay: var(--fa-animation-delay, 0s);
316
+ animation-direction: var(--fa-animation-direction, normal);
317
+ animation-duration: var(--fa-animation-duration, 1s);
318
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
319
+ animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
320
+ }
321
+
322
+ .fa-flip {
323
+ animation-name: fa-flip;
324
+ animation-delay: var(--fa-animation-delay, 0s);
325
+ animation-direction: var(--fa-animation-direction, normal);
326
+ animation-duration: var(--fa-animation-duration, 1s);
327
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
328
+ animation-timing-function: var(--fa-animation-timing, ease-in-out);
329
+ }
330
+
331
+ .fa-shake {
332
+ animation-name: fa-shake;
333
+ animation-delay: var(--fa-animation-delay, 0s);
334
+ animation-direction: var(--fa-animation-direction, normal);
335
+ animation-duration: var(--fa-animation-duration, 1s);
336
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
337
+ animation-timing-function: var(--fa-animation-timing, linear);
338
+ }
339
+
340
+ .fa-spin {
341
+ animation-name: fa-spin;
342
+ animation-delay: var(--fa-animation-delay, 0s);
343
+ animation-direction: var(--fa-animation-direction, normal);
344
+ animation-duration: var(--fa-animation-duration, 2s);
345
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
346
+ animation-timing-function: var(--fa-animation-timing, linear);
347
+ }
348
+
349
+ .fa-spin-reverse {
350
+ --fa-animation-direction: reverse;
351
+ }
352
+
353
+ .fa-pulse,
354
+ .fa-spin-pulse {
355
+ animation-name: fa-spin;
356
+ animation-direction: var(--fa-animation-direction, normal);
357
+ animation-duration: var(--fa-animation-duration, 1s);
358
+ animation-iteration-count: var(--fa-animation-iteration-count, infinite);
359
+ animation-timing-function: var(--fa-animation-timing, steps(8));
360
+ }
361
+
362
+ /*
363
+ @media (prefers-reduced-motion: reduce) {
364
+ .fa-beat,
365
+ .fa-bounce,
366
+ .fa-fade,
367
+ .fa-beat-fade,
368
+ .fa-flip,
369
+ .fa-pulse,
370
+ .fa-shake,
371
+ .fa-spin,
372
+ .fa-spin-pulse {
373
+ animation: none !important;
374
+ transition: none !important;
375
+ }
376
+ }
377
+ */
378
+
379
+ @keyframes fa-beat {
380
+ 0%, 90% {
381
+ transform: scale(1);
382
+ }
383
+ 45% {
384
+ transform: scale(var(--fa-beat-scale, 1.25));
385
+ }
386
+ }
387
+ @keyframes fa-bounce {
388
+ 0% {
389
+ transform: scale(1, 1) translateY(0);
390
+ }
391
+ 10% {
392
+ transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
393
+ }
394
+ 30% {
395
+ transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
396
+ }
397
+ 50% {
398
+ transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
399
+ }
400
+ 57% {
401
+ transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
402
+ }
403
+ 64% {
404
+ transform: scale(1, 1) translateY(0);
405
+ }
406
+ 100% {
407
+ transform: scale(1, 1) translateY(0);
408
+ }
409
+ }
410
+ @keyframes fa-fade {
411
+ 50% {
412
+ opacity: var(--fa-fade-opacity, 0.4);
413
+ }
414
+ }
415
+ @keyframes fa-beat-fade {
416
+ 0%, 100% {
417
+ opacity: var(--fa-beat-fade-opacity, 0.4);
418
+ transform: scale(1);
419
+ }
420
+ 50% {
421
+ opacity: 1;
422
+ transform: scale(var(--fa-beat-fade-scale, 1.125));
423
+ }
424
+ }
425
+ @keyframes fa-flip {
426
+ 50% {
427
+ transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
428
+ }
429
+ }
430
+ @keyframes fa-shake {
431
+ 0% {
432
+ transform: rotate(-15deg);
433
+ }
434
+ 4% {
435
+ transform: rotate(15deg);
436
+ }
437
+ 8%, 24% {
438
+ transform: rotate(-18deg);
439
+ }
440
+ 12%, 28% {
441
+ transform: rotate(18deg);
442
+ }
443
+ 16% {
444
+ transform: rotate(-22deg);
445
+ }
446
+ 20% {
447
+ transform: rotate(22deg);
448
+ }
449
+ 32% {
450
+ transform: rotate(-12deg);
451
+ }
452
+ 36% {
453
+ transform: rotate(12deg);
454
+ }
455
+ 40%, 100% {
456
+ transform: rotate(0deg);
457
+ }
458
+ }
459
+ @keyframes fa-spin {
460
+ 0% {
461
+ transform: rotate(0deg);
462
+ }
463
+ 100% {
464
+ transform: rotate(360deg);
465
+ }
466
+ }
467
+ .fa-rotate-90 {
468
+ transform: rotate(90deg);
469
+ }
470
+
471
+ .fa-rotate-180 {
472
+ transform: rotate(180deg);
473
+ }
474
+
475
+ .fa-rotate-270 {
476
+ transform: rotate(270deg);
477
+ }
478
+
479
+ .fa-flip-horizontal {
480
+ transform: scale(-1, 1);
481
+ }
482
+
483
+ .fa-flip-vertical {
484
+ transform: scale(1, -1);
485
+ }
486
+
487
+ .fa-flip-both,
488
+ .fa-flip-horizontal.fa-flip-vertical {
489
+ transform: scale(-1, -1);
490
+ }
491
+
492
+ .fa-rotate-by {
493
+ transform: rotate(var(--fa-rotate-angle, 0));
494
+ }
495
+
496
+ .svg-inline--fa .fa-primary {
497
+ fill: var(--fa-primary-color, currentColor);
498
+ opacity: var(--fa-primary-opacity, 1);
499
+ }
500
+
501
+ .svg-inline--fa .fa-secondary {
502
+ fill: var(--fa-secondary-color, currentColor);
503
+ opacity: var(--fa-secondary-opacity, 0.4);
504
+ }
505
+
506
+ .svg-inline--fa.fa-swap-opacity .fa-primary {
507
+ opacity: var(--fa-secondary-opacity, 0.4);
508
+ }
509
+
510
+ .svg-inline--fa.fa-swap-opacity .fa-secondary {
511
+ opacity: var(--fa-primary-opacity, 1);
512
+ }
513
+
514
+ .svg-inline--fa mask .fa-primary,
515
+ .svg-inline--fa mask .fa-secondary {
516
+ fill: black;
517
+ }
518
+
519
+ .svg-inline--fa.fa-inverse {
520
+ fill: var(--fa-inverse, #fff);
521
+ }
522
+
523
+ .fa-stack {
524
+ display: inline-block;
525
+ height: 2em;
526
+ line-height: 2em;
527
+ position: relative;
528
+ vertical-align: middle;
529
+ width: 2.5em;
530
+ }
531
+
532
+ .fa-inverse {
533
+ color: var(--fa-inverse, #fff);
534
+ }
535
+
536
+ .svg-inline--fa.fa-stack-1x {
537
+ height: 1em;
538
+ width: 1.25em;
539
+ }
540
+ .svg-inline--fa.fa-stack-2x {
541
+ height: 2em;
542
+ width: 2.5em;
543
+ }
544
+
545
+ .fa-stack-1x,
546
+ .fa-stack-2x {
547
+ bottom: 0;
548
+ left: 0;
549
+ margin: auto;
550
+ position: absolute;
551
+ right: 0;
552
+ top: 0;
553
+ z-index: var(--fa-stack-z-index, auto);
554
+ }
555
+ `;
556
+ //# sourceMappingURL=icon.style.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon.style.js","sourceRoot":"","sources":["../../src/ui/icon.style.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE1B,MAAM,CAAC,MAAM,KAAK,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyiBvB,CAAC","sourcesContent":["import { css } from 'lit';\n\nexport const style = css`\n\t:host {\n\t\t--fa-font-solid: normal 900 1em/1 \"Font Awesome 7 Free\";\n\t\t--fa-font-regular: normal 400 1em/1 \"Font Awesome 7 Free\";\n\t\t--fa-font-light: normal 300 1em/1 \"Font Awesome 7 Pro\";\n\t\t--fa-font-thin: normal 100 1em/1 \"Font Awesome 7 Pro\";\n\t\t--fa-font-duotone: normal 900 1em/1 \"Font Awesome 7 Duotone\";\n\t\t--fa-font-duotone-regular: normal 400 1em/1 \"Font Awesome 7 Duotone\";\n\t\t--fa-font-duotone-light: normal 300 1em/1 \"Font Awesome 7 Duotone\";\n\t\t--fa-font-duotone-thin: normal 100 1em/1 \"Font Awesome 7 Duotone\";\n\t\t--fa-font-brands: normal 400 1em/1 \"Font Awesome 7 Brands\";\n\t\t--fa-font-sharp-solid: normal 900 1em/1 \"Font Awesome 7 Sharp\";\n\t\t--fa-font-sharp-regular: normal 400 1em/1 \"Font Awesome 7 Sharp\";\n\t\t--fa-font-sharp-light: normal 300 1em/1 \"Font Awesome 7 Sharp\";\n\t\t--fa-font-sharp-thin: normal 100 1em/1 \"Font Awesome 7 Sharp\";\n\t\t--fa-font-sharp-duotone-solid: normal 900 1em/1 \"Font Awesome 7 Sharp Duotone\";\n\t\t--fa-font-sharp-duotone-regular: normal 400 1em/1 \"Font Awesome 7 Sharp Duotone\";\n\t\t--fa-font-sharp-duotone-light: normal 300 1em/1 \"Font Awesome 7 Sharp Duotone\";\n\t\t--fa-font-sharp-duotone-thin: normal 100 1em/1 \"Font Awesome 7 Sharp Duotone\";\n\t\t--fa-font-slab-regular: normal 400 1em/1 \"Font Awesome 7 Slab\";\n\t\t--fa-font-slab-press-regular: normal 400 1em/1 \"Font Awesome 7 Slab Press\";\n\t\t--fa-font-whiteboard-semibold: normal 600 1em/1 \"Font Awesome 7 Whiteboard\";\n\t\t--fa-font-thumbprint-light: normal 300 1em/1 \"Font Awesome 7 Thumbprint\";\n\t\t--fa-font-notdog-solid: normal 900 1em/1 \"Font Awesome 7 Notdog\";\n\t\t--fa-font-notdog-duo-solid: normal 900 1em/1 \"Font Awesome 7 Notdog Duo\";\n\t\t--fa-font-etch-solid: normal 900 1em/1 \"Font Awesome 7 Etch\";\n\t\t--fa-font-jelly-regular: normal 400 1em/1 \"Font Awesome 7 Jelly\";\n\t\t--fa-font-jelly-fill-regular: normal 400 1em/1 \"Font Awesome 7 Jelly Fill\";\n\t\t--fa-font-jelly-duo-regular: normal 400 1em/1 \"Font Awesome 7 Jelly Duo\";\n\t\t--fa-font-chisel-regular: normal 400 1em/1 \"Font Awesome 7 Chisel\";\n\t}\n\n\t.svg-inline--fa {\n\t\tbox-sizing: content-box;\n\t\tdisplay: var(--fa-display, inline-block);\n\t\theight: 1em;\n\t\toverflow: visible;\n\t\tvertical-align: -0.125em;\n\t\twidth: var(--fa-width, 1.25em);\n\t}\n\t.svg-inline--fa.fa-2xs {\n\t\tvertical-align: 0.1em;\n\t}\n\t.svg-inline--fa.fa-xs {\n\t\tvertical-align: 0em;\n\t}\n\t.svg-inline--fa.fa-sm {\n\t\tvertical-align: -0.0714285714em;\n\t}\n\t.svg-inline--fa.fa-lg {\n\t\tvertical-align: -0.2em;\n\t}\n\t.svg-inline--fa.fa-xl {\n\t\tvertical-align: -0.25em;\n\t}\n\t.svg-inline--fa.fa-2xl {\n\t\tvertical-align: -0.3125em;\n\t}\n\t.svg-inline--fa.fa-pull-left,\n\t.svg-inline--fa .fa-pull-start {\n\t\tfloat: inline-start;\n\t\tmargin-inline-end: var(--fa-pull-margin, 0.3em);\n\t}\n\t.svg-inline--fa.fa-pull-right,\n\t.svg-inline--fa .fa-pull-end {\n\t\tfloat: inline-end;\n\t\tmargin-inline-start: var(--fa-pull-margin, 0.3em);\n\t}\n\t.svg-inline--fa.fa-li {\n\t\twidth: var(--fa-li-width, 2em);\n\t\tinset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n\t\tinset-block-start: 0.25em; /* syncing vertical alignment with Web Font rendering */\n\t}\n\n\t.fa-layers-counter, .fa-layers-text {\n\t\tdisplay: inline-block;\n\t\tposition: absolute;\n\t\ttext-align: center;\n\t}\n\n\t.fa-layers {\n\t\tdisplay: inline-block;\n\t\theight: 1em;\n\t\tposition: relative;\n\t\ttext-align: center;\n\t\tvertical-align: -0.125em;\n\t\twidth: var(--fa-width, 1.25em);\n\t}\n\t.fa-layers .svg-inline--fa {\n\t\tinset: 0;\n\t\tmargin: auto;\n\t\tposition: absolute;\n\t\ttransform-origin: center center;\n\t}\n\n\t.fa-layers-text {\n\t\tleft: 50%;\n\t\ttop: 50%;\n\t\ttransform: translate(-50%, -50%);\n\t\ttransform-origin: center center;\n\t}\n\n\t.fa-layers-counter {\n\t\tbackground-color: var(--fa-counter-background-color, #ff253a);\n\t\tborder-radius: var(--fa-counter-border-radius, 1em);\n\t\tbox-sizing: border-box;\n\t\tcolor: var(--fa-inverse, #fff);\n\t\tline-height: var(--fa-counter-line-height, 1);\n\t\tmax-width: var(--fa-counter-max-width, 5em);\n\t\tmin-width: var(--fa-counter-min-width, 1.5em);\n\t\toverflow: hidden;\n\t\tpadding: var(--fa-counter-padding, 0.25em 0.5em);\n\t\tright: var(--fa-right, 0);\n\t\ttext-overflow: ellipsis;\n\t\ttop: var(--fa-top, 0);\n\t\ttransform: scale(var(--fa-counter-scale, 0.25));\n\t\ttransform-origin: top right;\n\t}\n\n\t.fa-layers-bottom-right {\n\t\tbottom: var(--fa-bottom, 0);\n\t\tright: var(--fa-right, 0);\n\t\ttop: auto;\n\t\ttransform: scale(var(--fa-layers-scale, 0.25));\n\t\ttransform-origin: bottom right;\n\t}\n\n\t.fa-layers-bottom-left {\n\t\tbottom: var(--fa-bottom, 0);\n\t\tleft: var(--fa-left, 0);\n\t\tright: auto;\n\t\ttop: auto;\n\t\ttransform: scale(var(--fa-layers-scale, 0.25));\n\t\ttransform-origin: bottom left;\n\t}\n\n\t.fa-layers-top-right {\n\t\ttop: var(--fa-top, 0);\n\t\tright: var(--fa-right, 0);\n\t\ttransform: scale(var(--fa-layers-scale, 0.25));\n\t\ttransform-origin: top right;\n\t}\n\n\t.fa-layers-top-left {\n\t\tleft: var(--fa-left, 0);\n\t\tright: auto;\n\t\ttop: var(--fa-top, 0);\n\t\ttransform: scale(var(--fa-layers-scale, 0.25));\n\t\ttransform-origin: top left;\n\t}\n\n\t.fa-1x {\n\t\tfont-size: 1em;\n\t}\n\n\t.fa-2x {\n\t\tfont-size: 2em;\n\t}\n\n\t.fa-3x {\n\t\tfont-size: 3em;\n\t}\n\n\t.fa-4x {\n\t\tfont-size: 4em;\n\t}\n\n\t.fa-5x {\n\t\tfont-size: 5em;\n\t}\n\n\t.fa-6x {\n\t\tfont-size: 6em;\n\t}\n\n\t.fa-7x {\n\t\tfont-size: 7em;\n\t}\n\n\t.fa-8x {\n\t\tfont-size: 8em;\n\t}\n\n\t.fa-9x {\n\t\tfont-size: 9em;\n\t}\n\n\t.fa-10x {\n\t\tfont-size: 10em;\n\t}\n\n\t.fa-2xs {\n\t\tfont-size: calc(10 / 16 * 1em); /* converts a 10px size into an em-based value that's relative to the scale's 16px base */\n\t\tline-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it's parent */\n\t\tvertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n\t}\n\n\t.fa-xs {\n\t\tfont-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that's relative to the scale's 16px base */\n\t\tline-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it's parent */\n\t\tvertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n\t}\n\n\t.fa-sm {\n\t\tfont-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that's relative to the scale's 16px base */\n\t\tline-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it's parent */\n\t\tvertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n\t}\n\n\t.fa-lg {\n\t\tfont-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that's relative to the scale's 16px base */\n\t\tline-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it's parent */\n\t\tvertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n\t}\n\n\t.fa-xl {\n\t\tfont-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that's relative to the scale's 16px base */\n\t\tline-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it's parent */\n\t\tvertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n\t}\n\n\t.fa-2xl {\n\t\tfont-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that's relative to the scale's 16px base */\n\t\tline-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it's parent */\n\t\tvertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n\t}\n\n\t.fa-width-auto {\n\t\t--fa-width: auto;\n\t}\n\n\t.fa-fw,\n\t.fa-width-fixed {\n\t\t--fa-width: 1.25em;\n\t}\n\n\t.fa-ul {\n\t\tlist-style-type: none;\n\t\tmargin-inline-start: var(--fa-li-margin, 2.5em);\n\t\tpadding-inline-start: 0;\n\t}\n\t.fa-ul > li {\n\t\tposition: relative;\n\t}\n\n\t.fa-li {\n\t\tinset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n\t\tposition: absolute;\n\t\ttext-align: center;\n\t\twidth: var(--fa-li-width, 2em);\n\t\tline-height: inherit;\n\t}\n\n\t/* Heads Up: Bordered Icons will not be supported in the future!\n\t\t- This feature will be deprecated in the next major release of Font Awesome (v8)!\n\t\t- You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8.\n\t*/\n\t/* Notes:\n\t* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size)\n\t* --@{v.$css-prefix}-border-padding =\n\t\t** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it's vertical alignment)\n\t\t** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon)\n\t*/\n\t.fa-border {\n\t\tborder-color: var(--fa-border-color, #eee);\n\t\tborder-radius: var(--fa-border-radius, 0.1em);\n\t\tborder-style: var(--fa-border-style, solid);\n\t\tborder-width: var(--fa-border-width, 0.0625em);\n\t\tbox-sizing: var(--fa-border-box-sizing, content-box);\n\t\tpadding: var(--fa-border-padding, 0.1875em 0.25em);\n\t}\n\n\t.fa-pull-left,\n\t.fa-pull-start {\n\t\tfloat: inline-start;\n\t\tmargin-inline-end: var(--fa-pull-margin, 0.3em);\n\t}\n\n\t.fa-pull-right,\n\t.fa-pull-end {\n\t\tfloat: inline-end;\n\t\tmargin-inline-start: var(--fa-pull-margin, 0.3em);\n\t}\n\n\t.fa-beat {\n\t\tanimation-name: fa-beat;\n\t\tanimation-delay: var(--fa-animation-delay, 0s);\n\t\tanimation-direction: var(--fa-animation-direction, normal);\n\t\tanimation-duration: var(--fa-animation-duration, 1s);\n\t\tanimation-iteration-count: var(--fa-animation-iteration-count, infinite);\n\t\tanimation-timing-function: var(--fa-animation-timing, ease-in-out);\n\t}\n\n\t.fa-bounce {\n\t\tanimation-name: fa-bounce;\n\t\tanimation-delay: var(--fa-animation-delay, 0s);\n\t\tanimation-direction: var(--fa-animation-direction, normal);\n\t\tanimation-duration: var(--fa-animation-duration, 1s);\n\t\tanimation-iteration-count: var(--fa-animation-iteration-count, infinite);\n\t\tanimation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n\t}\n\n\t.fa-fade {\n\t\tanimation-name: fa-fade;\n\t\tanimation-delay: var(--fa-animation-delay, 0s);\n\t\tanimation-direction: var(--fa-animation-direction, normal);\n\t\tanimation-duration: var(--fa-animation-duration, 1s);\n\t\tanimation-iteration-count: var(--fa-animation-iteration-count, infinite);\n\t\tanimation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n\t}\n\n\t.fa-beat-fade {\n\t\tanimation-name: fa-beat-fade;\n\t\tanimation-delay: var(--fa-animation-delay, 0s);\n\t\tanimation-direction: var(--fa-animation-direction, normal);\n\t\tanimation-duration: var(--fa-animation-duration, 1s);\n\t\tanimation-iteration-count: var(--fa-animation-iteration-count, infinite);\n\t\tanimation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n\t}\n\n\t.fa-flip {\n\t\tanimation-name: fa-flip;\n\t\tanimation-delay: var(--fa-animation-delay, 0s);\n\t\tanimation-direction: var(--fa-animation-direction, normal);\n\t\tanimation-duration: var(--fa-animation-duration, 1s);\n\t\tanimation-iteration-count: var(--fa-animation-iteration-count, infinite);\n\t\tanimation-timing-function: var(--fa-animation-timing, ease-in-out);\n\t}\n\n\t.fa-shake {\n\t\tanimation-name: fa-shake;\n\t\tanimation-delay: var(--fa-animation-delay, 0s);\n\t\tanimation-direction: var(--fa-animation-direction, normal);\n\t\tanimation-duration: var(--fa-animation-duration, 1s);\n\t\tanimation-iteration-count: var(--fa-animation-iteration-count, infinite);\n\t\tanimation-timing-function: var(--fa-animation-timing, linear);\n\t}\n\n\t.fa-spin {\n\t\tanimation-name: fa-spin;\n\t\tanimation-delay: var(--fa-animation-delay, 0s);\n\t\tanimation-direction: var(--fa-animation-direction, normal);\n\t\tanimation-duration: var(--fa-animation-duration, 2s);\n\t\tanimation-iteration-count: var(--fa-animation-iteration-count, infinite);\n\t\tanimation-timing-function: var(--fa-animation-timing, linear);\n\t}\n\n\t.fa-spin-reverse {\n\t\t--fa-animation-direction: reverse;\n\t}\n\n\t.fa-pulse,\n\t.fa-spin-pulse {\n\t\tanimation-name: fa-spin;\n\t\tanimation-direction: var(--fa-animation-direction, normal);\n\t\tanimation-duration: var(--fa-animation-duration, 1s);\n\t\tanimation-iteration-count: var(--fa-animation-iteration-count, infinite);\n\t\tanimation-timing-function: var(--fa-animation-timing, steps(8));\n\t}\n\n\t/*\n\t@media (prefers-reduced-motion: reduce) {\n\t\t.fa-beat,\n\t\t.fa-bounce,\n\t\t.fa-fade,\n\t\t.fa-beat-fade,\n\t\t.fa-flip,\n\t\t.fa-pulse,\n\t\t.fa-shake,\n\t\t.fa-spin,\n\t\t.fa-spin-pulse {\n\t\t\tanimation: none !important;\n\t\t\ttransition: none !important;\n\t\t}\n\t}\n\t*/\n\t\n\t@keyframes fa-beat {\n\t\t0%, 90% {\n\t\t\ttransform: scale(1);\n\t\t}\n\t\t45% {\n\t\t\ttransform: scale(var(--fa-beat-scale, 1.25));\n\t\t}\n\t}\n\t@keyframes fa-bounce {\n\t\t0% {\n\t\t\ttransform: scale(1, 1) translateY(0);\n\t\t}\n\t\t10% {\n\t\t\ttransform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n\t\t}\n\t\t30% {\n\t\t\ttransform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n\t\t}\n\t\t50% {\n\t\t\ttransform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n\t\t}\n\t\t57% {\n\t\t\ttransform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n\t\t}\n\t\t64% {\n\t\t\ttransform: scale(1, 1) translateY(0);\n\t\t}\n\t\t100% {\n\t\t\ttransform: scale(1, 1) translateY(0);\n\t\t}\n\t}\n\t@keyframes fa-fade {\n\t\t50% {\n\t\t\topacity: var(--fa-fade-opacity, 0.4);\n\t\t}\n\t}\n\t@keyframes fa-beat-fade {\n\t\t0%, 100% {\n\t\t\topacity: var(--fa-beat-fade-opacity, 0.4);\n\t\t\ttransform: scale(1);\n\t\t}\n\t\t50% {\n\t\t\topacity: 1;\n\t\t\ttransform: scale(var(--fa-beat-fade-scale, 1.125));\n\t\t}\n\t}\n\t@keyframes fa-flip {\n\t\t50% {\n\t\t\ttransform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n\t\t}\n\t}\n\t@keyframes fa-shake {\n\t\t0% {\n\t\t\ttransform: rotate(-15deg);\n\t\t}\n\t\t4% {\n\t\t\ttransform: rotate(15deg);\n\t\t}\n\t\t8%, 24% {\n\t\t\ttransform: rotate(-18deg);\n\t\t}\n\t\t12%, 28% {\n\t\t\ttransform: rotate(18deg);\n\t\t}\n\t\t16% {\n\t\t\ttransform: rotate(-22deg);\n\t\t}\n\t\t20% {\n\t\t\ttransform: rotate(22deg);\n\t\t}\n\t\t32% {\n\t\t\ttransform: rotate(-12deg);\n\t\t}\n\t\t36% {\n\t\t\ttransform: rotate(12deg);\n\t\t}\n\t\t40%, 100% {\n\t\t\ttransform: rotate(0deg);\n\t\t}\n\t}\n\t@keyframes fa-spin {\n\t\t0% {\n\t\t\ttransform: rotate(0deg);\n\t\t}\n\t\t100% {\n\t\t\ttransform: rotate(360deg);\n\t\t}\n\t}\n\t.fa-rotate-90 {\n\t\ttransform: rotate(90deg);\n\t}\n\n\t.fa-rotate-180 {\n\t\ttransform: rotate(180deg);\n\t}\n\n\t.fa-rotate-270 {\n\t\ttransform: rotate(270deg);\n\t}\n\n\t.fa-flip-horizontal {\n\t\ttransform: scale(-1, 1);\n\t}\n\n\t.fa-flip-vertical {\n\t\ttransform: scale(1, -1);\n\t}\n\n\t.fa-flip-both,\n\t.fa-flip-horizontal.fa-flip-vertical {\n\t\ttransform: scale(-1, -1);\n\t}\n\n\t.fa-rotate-by {\n\t\ttransform: rotate(var(--fa-rotate-angle, 0));\n\t}\n\n\t.svg-inline--fa .fa-primary {\n\t\tfill: var(--fa-primary-color, currentColor);\n\t\topacity: var(--fa-primary-opacity, 1);\n\t}\n\n\t.svg-inline--fa .fa-secondary {\n\t\tfill: var(--fa-secondary-color, currentColor);\n\t\topacity: var(--fa-secondary-opacity, 0.4);\n\t}\n\n\t.svg-inline--fa.fa-swap-opacity .fa-primary {\n\t\topacity: var(--fa-secondary-opacity, 0.4);\n\t}\n\n\t.svg-inline--fa.fa-swap-opacity .fa-secondary {\n\t\topacity: var(--fa-primary-opacity, 1);\n\t}\n\n\t.svg-inline--fa mask .fa-primary,\n\t.svg-inline--fa mask .fa-secondary {\n\t\tfill: black;\n\t}\n\n\t.svg-inline--fa.fa-inverse {\n\t\tfill: var(--fa-inverse, #fff);\n\t}\n\n\t.fa-stack {\n\t\tdisplay: inline-block;\n\t\theight: 2em;\n\t\tline-height: 2em;\n\t\tposition: relative;\n\t\tvertical-align: middle;\n\t\twidth: 2.5em;\n\t}\n\n\t.fa-inverse {\n\t\tcolor: var(--fa-inverse, #fff);\n\t}\n\n\t.svg-inline--fa.fa-stack-1x {\n\t\theight: 1em;\n\t\twidth: 1.25em;\n\t}\n\t.svg-inline--fa.fa-stack-2x {\n\t\theight: 2em;\n\t\twidth: 2.5em;\n\t}\n\n\t.fa-stack-1x,\n\t.fa-stack-2x {\n\t\tbottom: 0;\n\t\tleft: 0;\n\t\tmargin: auto;\n\t\tposition: absolute;\n\t\tright: 0;\n\t\ttop: 0;\n\t\tz-index: var(--fa-stack-z-index, auto);\n\t}\n`;\n"]}
@@ -0,0 +1,2 @@
1
+ export declare const images: Record<string, string>;
2
+ //# sourceMappingURL=images.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"images.d.ts","sourceRoot":"","sources":["../../src/ui/images.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAYzC,CAAA"}
@@ -0,0 +1,14 @@
1
+ export const images = {
2
+ "filter": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTMuODUzIDU0Ljg3QzEwLjQ3IDQwLjkgMjQuNTQgMzIgNDAgMzJINDcyQzQ4Ny41IDMyIDUwMS41IDQwLjkgNTA4LjEgNTQuODdDNTE0LjggNjguODQgNTEyLjcgODUuMzcgNTAyLjEgOTcuMzNMMzIwIDMyMC45VjQ0OEMzMjAgNDYwLjEgMzEzLjIgNDcxLjIgMzAyLjMgNDc2LjZDMjkxLjUgNDgyIDI3OC41IDQ4MC45IDI2OC44IDQ3My42TDIwNC44IDQyNS42QzE5Ni43IDQxOS42IDE5MiA0MTAuMSAxOTIgNDAwVjMyMC45TDkuMDQyIDk3LjMzQy0uNzQ1IDg1LjM3LTIuNzY1IDY4Ljg0IDMuODU0IDU0Ljg3TDMuODUzIDU0Ljg3eiIvPjwvc3ZnPg==",
3
+ "cross": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTMxMC42IDM2MS40YzEyLjUgMTIuNSAxMi41IDMyLjc1IDAgNDUuMjVDMzA0LjQgNDEyLjkgMjk2LjIgNDE2IDI4OCA0MTZzLTE2LjM4LTMuMTI1LTIyLjYyLTkuMzc1TDE2MCAzMDEuM0w1NC42MyA0MDYuNkM0OC4zOCA0MTIuOSA0MC4xOSA0MTYgMzIgNDE2UzE1LjYzIDQxMi45IDkuMzc1IDQwNi42Yy0xMi41LTEyLjUtMTIuNS0zMi43NSAwLTQ1LjI1bDEwNS40LTEwNS40TDkuMzc1IDE1MC42Yy0xMi41LTEyLjUtMTIuNS0zMi43NSAwLTQ1LjI1czMyLjc1LTEyLjUgNDUuMjUgMEwxNjAgMjEwLjhsMTA1LjQtMTA1LjRjMTIuNS0xMi41IDMyLjc1LTEyLjUgNDUuMjUgMHMxMi41IDMyLjc1IDAgNDUuMjVsLTEwNS40IDEwNS40TDMxMC42IDM2MS40eiIvPjwvc3ZnPg==",
4
+ "square": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNMzg0IDMyQzQxOS4zIDMyIDQ0OCA2MC42NSA0NDggOTZWNDE2QzQ0OCA0NTEuMyA0MTkuMyA0ODAgMzg0IDQ4MEg2NEMyOC42NSA0ODAgMCA0NTEuMyAwIDQxNlY5NkMwIDYwLjY1IDI4LjY1IDMyIDY0IDMySDM4NHpNMzg0IDgwSDY0QzU1LjE2IDgwIDQ4IDg3LjE2IDQ4IDk2VjQxNkM0OCA0MjQuOCA1NS4xNiA0MzIgNjQgNDMySDM4NEMzOTIuOCA0MzIgNDAwIDQyNC44IDQwMCA0MTZWOTZDNDAwIDg3LjE2IDM5Mi44IDgwIDM4NCA4MHoiLz48L3N2Zz4=",
5
+ "square-solid": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTAgOTZDMCA2MC42NSAyOC42NSAzMiA2NCAzMkgzODRDNDE5LjMgMzIgNDQ4IDYwLjY1IDQ0OCA5NlY0MTZDNDQ4IDQ1MS4zIDQxOS4zIDQ4MCAzODQgNDgwSDY0QzI4LjY1IDQ4MCAwIDQ1MS4zIDAgNDE2Vjk2eiIvPjwvc3ZnPg==",
6
+ "square-check": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTM4NCAzMkM0MTkuMyAzMiA0NDggNjAuNjUgNDQ4IDk2VjQxNkM0NDggNDUxLjMgNDE5LjMgNDgwIDM4NCA0ODBINjRDMjguNjUgNDgwIDAgNDUxLjMgMCA0MTZWOTZDMCA2MC42NSAyOC42NSAzMiA2NCAzMkgzODR6TTMzOS44IDIxMS44QzM1MC43IDIwMC45IDM1MC43IDE4My4xIDMzOS44IDE3Mi4yQzMyOC45IDE2MS4zIDMxMS4xIDE2MS4zIDMwMC4yIDE3Mi4yTDE5MiAyODAuNEwxNDcuOCAyMzYuMkMxMzYuOSAyMjUuMyAxMTkuMSAyMjUuMyAxMDguMiAyMzYuMkM5Ny4yNyAyNDcuMSA5Ny4yNyAyNjQuOSAxMDguMiAyNzUuOEwxNzIuMiAzMzkuOEMxODMuMSAzNTAuNyAyMDAuOSAzNTAuNyAyMTEuOCAzMzkuOEwzMzkuOCAyMTEuOHoiLz48L3N2Zz4=",
7
+ "square-xmark-solid": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNNjQgMzJDMjguNyAzMiAwIDYwLjcgMCA5NlY0MTZjMCAzNS4zIDI4LjcgNjQgNjQgNjRIMzg0YzM1LjMgMCA2NC0yOC43IDY0LTY0Vjk2YzAtMzUuMy0yOC43LTY0LTY0LTY0SDY0em03OSAxNDNjOS40LTkuNCAyNC42LTkuNCAzMy45IDBsNDcgNDcgNDctNDdjOS40LTkuNCAyNC42LTkuNCAzMy45IDBzOS40IDI0LjYgMCAzMy45bC00NyA0NyA0NyA0N2M5LjQgOS40IDkuNCAyNC42IDAgMzMuOXMtMjQuNiA5LjQtMzMuOSAwbC00Ny00Ny00NyA0N2MtOS40IDkuNC0yNC42IDkuNC0zMy45IDBzLTkuNC0yNC42IDAtMzMuOWw0Ny00Ny00Ny00N2MtOS40LTkuNC05LjQtMjQuNiAwLTMzLjl6Ii8+PC9zdmc+",
8
+ "square-minus-solid": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNNjQgMzJDMjguNyAzMiAwIDYwLjcgMCA5NlY0MTZjMCAzNS4zIDI4LjcgNjQgNjQgNjRIMzg0YzM1LjMgMCA2NC0yOC43IDY0LTY0Vjk2YzAtMzUuMy0yOC43LTY0LTY0LTY0SDY0em04OCAyMDBIMjk2YzEzLjMgMCAyNCAxMC43IDI0IDI0cy0xMC43IDI0LTI0IDI0SDE1MmMtMTMuMyAwLTI0LTEwLjctMjQtMjRzMTAuNy0yNCAyNC0yNHoiLz48L3N2Zz4=",
9
+ "minus": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTQwMCAyODhoLTM1MmMtMTcuNjkgMC0zMi0xNC4zMi0zMi0zMi4wMXMxNC4zMS0zMS45OSAzMi0zMS45OWgzNTJjMTcuNjkgMCAzMiAxNC4zIDMyIDMxLjk5UzQxNy43IDI4OCA0MDAgMjg4eiIvPjwvc3ZnPg==",
10
+ "plus": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTQzMiAyNTZjMCAxNy42OS0xNC4zMyAzMi4wMS0zMiAzMi4wMUgyNTZ2MTQ0YzAgMTcuNjktMTQuMzMgMzEuOTktMzIgMzEuOTlzLTMyLTE0LjMtMzItMzEuOTl2LTE0NEg0OGMtMTcuNjcgMC0zMi0xNC4zMi0zMi0zMi4wMXMxNC4zMy0zMS45OSAzMi0zMS45OUgxOTJ2LTE0NGMwLTE3LjY5IDE0LjMzLTMyLjAxIDMyLTMyLjAxczMyIDE0LjMyIDMyIDMyLjAxdjE0NGgxNDRDNDE3LjcgMjI0IDQzMiAyMzguMyA0MzIgMjU2eiIvPjwvc3ZnPg==",
11
+ "caret-down": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNMTM3LjQgMzc0LjZjMTIuNSAxMi41IDMyLjggMTIuNSA0NS4zIDBsMTI4LTEyOGM5LjItOS4yIDExLjktMjIuOSA2LjktMzQuOXMtMTYuNi0xOS44LTI5LjYtMTkuOEwzMiAxOTJjLTEyLjkgMC0yNC42IDcuOC0yOS42IDE5LjhzLTIuMiAyNS43IDYuOSAzNC45bDEyOCAxMjh6Ii8+PC9zdmc+",
12
+ "hourglass": "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMzg0IDUxMiI+PCEtLSEgRm9udCBBd2Vzb21lIEZyZWUgNi40LjAgYnkgQGZvbnRhd2Vzb21lIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20gTGljZW5zZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tL2xpY2Vuc2UgKENvbW1lcmNpYWwgTGljZW5zZSkgQ29weXJpZ2h0IDIwMjMgRm9udGljb25zLCBJbmMuIC0tPjxwYXRoIGQ9Ik0wIDMyQzAgMTQuMyAxNC4zIDAgMzIgMEg2NCAzMjBoMzJjMTcuNyAwIDMyIDE0LjMgMzIgMzJzLTE0LjMgMzItMzIgMzJWNzVjMCA0Mi40LTE2LjkgODMuMS00Ni45IDExMy4xTDIzNy4zIDI1Nmw2Ny45IDY3LjljMzAgMzAgNDYuOSA3MC43IDQ2LjkgMTEzLjF2MTFjMTcuNyAwIDMyIDE0LjMgMzIgMzJzLTE0LjMgMzItMzIgMzJIMzIwIDY0IDMyYy0xNy43IDAtMzItMTQuMy0zMi0zMnMxNC4zLTMyIDMyLTMyVjQzN2MwLTQyLjQgMTYuOS04My4xIDQ2LjktMTEzLjFMMTQ2LjcgMjU2IDc4LjkgMTg4LjFDNDguOSAxNTguMSAzMiAxMTcuNCAzMiA3NVY2NEMxNC4zIDY0IDAgNDkuNyAwIDMyek05NiA2NFY3NWMwIDI1LjUgMTAuMSA0OS45IDI4LjEgNjcuOUwxOTIgMjEwLjdsNjcuOS02Ny45YzE4LTE4IDI4LjEtNDIuNCAyOC4xLTY3LjlWNjRIOTZ6bTAgMzg0SDI4OFY0MzdjMC0yNS41LTEwLjEtNDkuOS0yOC4xLTY3LjlMMTkyIDMwMS4zbC02Ny45IDY3LjljLTE4IDE4LTI4LjEgNDIuNC0yOC4xIDY3Ljl2MTF6Ii8+PC9zdmc+",
13
+ };
14
+ //# sourceMappingURL=images.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"images.js","sourceRoot":"","sources":["../../src/ui/images.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,MAAM,GAA2B;IAC7C,QAAQ,EAAE,0xBAA0xB;IACpyB,OAAO,EAAE,s3BAAs3B;IAC/3B,QAAQ,EAAE,0pBAA0pB;IACpqB,cAAc,EAAE,0iBAA0iB;IAC1jB,cAAc,EAAE,02BAA02B;IAC13B,oBAAoB,EAAE,0wBAA0wB;IAChyB,oBAAoB,EAAE,8kBAA8kB;IACpmB,OAAO,EAAE,0hBAA0hB;IACniB,MAAM,EAAE,0sBAA0sB;IACltB,YAAY,EAAE,8hBAA8hB;IAC5iB,WAAW,EAAE,khCAAkhC;CAC/hC,CAAA","sourcesContent":["export const images: Record<string, string> = {\t\n\t\"filter\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTMuODUzIDU0Ljg3QzEwLjQ3IDQwLjkgMjQuNTQgMzIgNDAgMzJINDcyQzQ4Ny41IDMyIDUwMS41IDQwLjkgNTA4LjEgNTQuODdDNTE0LjggNjguODQgNTEyLjcgODUuMzcgNTAyLjEgOTcuMzNMMzIwIDMyMC45VjQ0OEMzMjAgNDYwLjEgMzEzLjIgNDcxLjIgMzAyLjMgNDc2LjZDMjkxLjUgNDgyIDI3OC41IDQ4MC45IDI2OC44IDQ3My42TDIwNC44IDQyNS42QzE5Ni43IDQxOS42IDE5MiA0MTAuMSAxOTIgNDAwVjMyMC45TDkuMDQyIDk3LjMzQy0uNzQ1IDg1LjM3LTIuNzY1IDY4Ljg0IDMuODU0IDU0Ljg3TDMuODUzIDU0Ljg3eiIvPjwvc3ZnPg==\",\n\t\"cross\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTMxMC42IDM2MS40YzEyLjUgMTIuNSAxMi41IDMyLjc1IDAgNDUuMjVDMzA0LjQgNDEyLjkgMjk2LjIgNDE2IDI4OCA0MTZzLTE2LjM4LTMuMTI1LTIyLjYyLTkuMzc1TDE2MCAzMDEuM0w1NC42MyA0MDYuNkM0OC4zOCA0MTIuOSA0MC4xOSA0MTYgMzIgNDE2UzE1LjYzIDQxMi45IDkuMzc1IDQwNi42Yy0xMi41LTEyLjUtMTIuNS0zMi43NSAwLTQ1LjI1bDEwNS40LTEwNS40TDkuMzc1IDE1MC42Yy0xMi41LTEyLjUtMTIuNS0zMi43NSAwLTQ1LjI1czMyLjc1LTEyLjUgNDUuMjUgMEwxNjAgMjEwLjhsMTA1LjQtMTA1LjRjMTIuNS0xMi41IDMyLjc1LTEyLjUgNDUuMjUgMHMxMi41IDMyLjc1IDAgNDUuMjVsLTEwNS40IDEwNS40TDMxMC42IDM2MS40eiIvPjwvc3ZnPg==\",\n\t\"square\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNMzg0IDMyQzQxOS4zIDMyIDQ0OCA2MC42NSA0NDggOTZWNDE2QzQ0OCA0NTEuMyA0MTkuMyA0ODAgMzg0IDQ4MEg2NEMyOC42NSA0ODAgMCA0NTEuMyAwIDQxNlY5NkMwIDYwLjY1IDI4LjY1IDMyIDY0IDMySDM4NHpNMzg0IDgwSDY0QzU1LjE2IDgwIDQ4IDg3LjE2IDQ4IDk2VjQxNkM0OCA0MjQuOCA1NS4xNiA0MzIgNjQgNDMySDM4NEMzOTIuOCA0MzIgNDAwIDQyNC44IDQwMCA0MTZWOTZDNDAwIDg3LjE2IDM5Mi44IDgwIDM4NCA4MHoiLz48L3N2Zz4=\",\n\t\"square-solid\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTAgOTZDMCA2MC42NSAyOC42NSAzMiA2NCAzMkgzODRDNDE5LjMgMzIgNDQ4IDYwLjY1IDQ0OCA5NlY0MTZDNDQ4IDQ1MS4zIDQxOS4zIDQ4MCAzODQgNDgwSDY0QzI4LjY1IDQ4MCAwIDQ1MS4zIDAgNDE2Vjk2eiIvPjwvc3ZnPg==\",\n\t\"square-check\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTM4NCAzMkM0MTkuMyAzMiA0NDggNjAuNjUgNDQ4IDk2VjQxNkM0NDggNDUxLjMgNDE5LjMgNDgwIDM4NCA0ODBINjRDMjguNjUgNDgwIDAgNDUxLjMgMCA0MTZWOTZDMCA2MC42NSAyOC42NSAzMiA2NCAzMkgzODR6TTMzOS44IDIxMS44QzM1MC43IDIwMC45IDM1MC43IDE4My4xIDMzOS44IDE3Mi4yQzMyOC45IDE2MS4zIDMxMS4xIDE2MS4zIDMwMC4yIDE3Mi4yTDE5MiAyODAuNEwxNDcuOCAyMzYuMkMxMzYuOSAyMjUuMyAxMTkuMSAyMjUuMyAxMDguMiAyMzYuMkM5Ny4yNyAyNDcuMSA5Ny4yNyAyNjQuOSAxMDguMiAyNzUuOEwxNzIuMiAzMzkuOEMxODMuMSAzNTAuNyAyMDAuOSAzNTAuNyAyMTEuOCAzMzkuOEwzMzkuOCAyMTEuOHoiLz48L3N2Zz4=\",\n\t\"square-xmark-solid\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNNjQgMzJDMjguNyAzMiAwIDYwLjcgMCA5NlY0MTZjMCAzNS4zIDI4LjcgNjQgNjQgNjRIMzg0YzM1LjMgMCA2NC0yOC43IDY0LTY0Vjk2YzAtMzUuMy0yOC43LTY0LTY0LTY0SDY0em03OSAxNDNjOS40LTkuNCAyNC42LTkuNCAzMy45IDBsNDcgNDcgNDctNDdjOS40LTkuNCAyNC42LTkuNCAzMy45IDBzOS40IDI0LjYgMCAzMy45bC00NyA0NyA0NyA0N2M5LjQgOS40IDkuNCAyNC42IDAgMzMuOXMtMjQuNiA5LjQtMzMuOSAwbC00Ny00Ny00NyA0N2MtOS40IDkuNC0yNC42IDkuNC0zMy45IDBzLTkuNC0yNC42IDAtMzMuOWw0Ny00Ny00Ny00N2MtOS40LTkuNC05LjQtMjQuNiAwLTMzLjl6Ii8+PC9zdmc+\",\n\t\"square-minus-solid\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNNjQgMzJDMjguNyAzMiAwIDYwLjcgMCA5NlY0MTZjMCAzNS4zIDI4LjcgNjQgNjQgNjRIMzg0YzM1LjMgMCA2NC0yOC43IDY0LTY0Vjk2YzAtMzUuMy0yOC43LTY0LTY0LTY0SDY0em04OCAyMDBIMjk2YzEzLjMgMCAyNCAxMC43IDI0IDI0cy0xMC43IDI0LTI0IDI0SDE1MmMtMTMuMyAwLTI0LTEwLjctMjQtMjRzMTAuNy0yNCAyNC0yNHoiLz48L3N2Zz4=\",\n\t\"minus\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTQwMCAyODhoLTM1MmMtMTcuNjkgMC0zMi0xNC4zMi0zMi0zMi4wMXMxNC4zMS0zMS45OSAzMi0zMS45OWgzNTJjMTcuNjkgMCAzMiAxNC4zIDMyIDMxLjk5UzQxNy43IDI4OCA0MDAgMjg4eiIvPjwvc3ZnPg==\",\n\t\"plus\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgRnJlZSA2LjEuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIChJY29uczogQ0MgQlkgNC4wLCBGb250czogU0lMIE9GTCAxLjEsIENvZGU6IE1JVCBMaWNlbnNlKSBDb3B5cmlnaHQgMjAyMiBGb250aWNvbnMsIEluYy4gLS0+PHBhdGggZD0iTTQzMiAyNTZjMCAxNy42OS0xNC4zMyAzMi4wMS0zMiAzMi4wMUgyNTZ2MTQ0YzAgMTcuNjktMTQuMzMgMzEuOTktMzIgMzEuOTlzLTMyLTE0LjMtMzItMzEuOTl2LTE0NEg0OGMtMTcuNjcgMC0zMi0xNC4zMi0zMi0zMi4wMXMxNC4zMy0zMS45OSAzMi0zMS45OUgxOTJ2LTE0NGMwLTE3LjY5IDE0LjMzLTMyLjAxIDMyLTMyLjAxczMyIDE0LjMyIDMyIDMyLjAxdjE0NGgxNDRDNDE3LjcgMjI0IDQzMiAyMzguMyA0MzIgMjU2eiIvPjwvc3ZnPg==\",\n\t\"caret-down\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4xIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNMTM3LjQgMzc0LjZjMTIuNSAxMi41IDMyLjggMTIuNSA0NS4zIDBsMTI4LTEyOGM5LjItOS4yIDExLjktMjIuOSA2LjktMzQuOXMtMTYuNi0xOS44LTI5LjYtMTkuOEwzMiAxOTJjLTEyLjkgMC0yNC42IDcuOC0yOS42IDE5LjhzLTIuMiAyNS43IDYuOSAzNC45bDEyOCAxMjh6Ii8+PC9zdmc+\",\n\t\"hourglass\": \"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMzg0IDUxMiI+PCEtLSEgRm9udCBBd2Vzb21lIEZyZWUgNi40LjAgYnkgQGZvbnRhd2Vzb21lIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20gTGljZW5zZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tL2xpY2Vuc2UgKENvbW1lcmNpYWwgTGljZW5zZSkgQ29weXJpZ2h0IDIwMjMgRm9udGljb25zLCBJbmMuIC0tPjxwYXRoIGQ9Ik0wIDMyQzAgMTQuMyAxNC4zIDAgMzIgMEg2NCAzMjBoMzJjMTcuNyAwIDMyIDE0LjMgMzIgMzJzLTE0LjMgMzItMzIgMzJWNzVjMCA0Mi40LTE2LjkgODMuMS00Ni45IDExMy4xTDIzNy4zIDI1Nmw2Ny45IDY3LjljMzAgMzAgNDYuOSA3MC43IDQ2LjkgMTEzLjF2MTFjMTcuNyAwIDMyIDE0LjMgMzIgMzJzLTE0LjMgMzItMzIgMzJIMzIwIDY0IDMyYy0xNy43IDAtMzItMTQuMy0zMi0zMnMxNC4zLTMyIDMyLTMyVjQzN2MwLTQyLjQgMTYuOS04My4xIDQ2LjktMTEzLjFMMTQ2LjcgMjU2IDc4LjkgMTg4LjFDNDguOSAxNTguMSAzMiAxMTcuNCAzMiA3NVY2NEMxNC4zIDY0IDAgNDkuNyAwIDMyek05NiA2NFY3NWMwIDI1LjUgMTAuMSA0OS45IDI4LjEgNjcuOUwxOTIgMjEwLjdsNjcuOS02Ny45YzE4LTE4IDI4LjEtNDIuNCAyOC4xLTY3LjlWNjRIOTZ6bTAgMzg0SDI4OFY0MzdjMC0yNS41LTEwLjEtNDkuOS0yOC4xLTY3LjlMMTkyIDMwMS4zbC02Ny45IDY3LjljLTE4IDE4LTI4LjEgNDIuNC0yOC4xIDY3Ljl2MTF6Ii8+PC9zdmc+\",\n}"]}
@@ -0,0 +1,32 @@
1
+ export * from './accordion';
2
+ export * from './alert';
3
+ export * from './baseElement';
4
+ export * from './button';
5
+ export * from './close';
6
+ export * from './checkbox';
7
+ export * from './container';
8
+ export * from './colorpicker';
9
+ export * from './dropdown';
10
+ export * from './dropdownColorPicker';
11
+ export * from './dropdownList';
12
+ export * from './dropdownMenu';
13
+ export * from './expander';
14
+ export * from './floatingWindow';
15
+ export * from './icon';
16
+ export * from './images';
17
+ export * from './input';
18
+ export * from './label';
19
+ export * from './fileInput';
20
+ export * from './numericInput';
21
+ export * from './list';
22
+ export * from './menu';
23
+ export * from './overlay';
24
+ export * from './panel';
25
+ export * from './sizer';
26
+ export * from './splitContainer';
27
+ export * from './slider';
28
+ export * from './sortableList';
29
+ export * from './switch';
30
+ export * from './tooltip';
31
+ export * from './loader';
32
+ //# sourceMappingURL=index.d.ts.map