@ardium-pl/ui 5.0.0-alpha.106

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 (489) hide show
  1. package/README.md +25 -0
  2. package/fesm2022/ardium-pl-ui.mjs +18003 -0
  3. package/fesm2022/ardium-pl-ui.mjs.map +1 -0
  4. package/index.d.ts +5 -0
  5. package/lib/_internal/boolean-component.d.ts +65 -0
  6. package/lib/_internal/clear-button/clear-button.component.d.ts +7 -0
  7. package/lib/_internal/clear-button/clear-button.module.d.ts +8 -0
  8. package/lib/_internal/disablable-component.d.ts +24 -0
  9. package/lib/_internal/focusable-component.d.ts +56 -0
  10. package/lib/_internal/form-field-component.d.ts +22 -0
  11. package/lib/_internal/item-storages/dropdown-item-storage.d.ts +79 -0
  12. package/lib/_internal/item-storages/simple-item-storage.d.ts +167 -0
  13. package/lib/_internal/item-storages/simplest-item-storage.d.ts +75 -0
  14. package/lib/_internal/models/pagination.model.d.ts +49 -0
  15. package/lib/_internal/models/queue.d.ts +21 -0
  16. package/lib/_internal/ngmodel-component.d.ts +58 -0
  17. package/lib/_internal/public-api.d.ts +3 -0
  18. package/lib/_internal/selectable-list-component.d.ts +76 -0
  19. package/lib/_internal/utils/context-to-inputs.d.ts +3 -0
  20. package/lib/_internal/utils/date.utils.d.ts +21 -0
  21. package/lib/badge/badge.defaults.d.ts +13 -0
  22. package/lib/badge/badge.directive.d.ts +27 -0
  23. package/lib/badge/badge.module.d.ts +8 -0
  24. package/lib/badge/badge.types.d.ts +17 -0
  25. package/lib/badge/index.d.ts +4 -0
  26. package/lib/breakpoints/breakpoint.service.d.ts +12 -0
  27. package/lib/breakpoints/breakpoint.utils.d.ts +7 -0
  28. package/lib/breakpoints/breakpoints.d.ts +13 -0
  29. package/lib/breakpoints/index.d.ts +2 -0
  30. package/lib/buttons/_button-base.d.ts +25 -0
  31. package/lib/buttons/_button-base.defaults.d.ts +17 -0
  32. package/lib/buttons/button/button.component.d.ts +22 -0
  33. package/lib/buttons/button/button.defaults.d.ts +10 -0
  34. package/lib/buttons/button/button.directive.d.ts +23 -0
  35. package/lib/buttons/button/button.module.d.ts +9 -0
  36. package/lib/buttons/button/index.d.ts +4 -0
  37. package/lib/buttons/button-group/button-group.component.d.ts +25 -0
  38. package/lib/buttons/button-group/button-group.defaults.d.ts +7 -0
  39. package/lib/buttons/button-group/button-group.module.d.ts +8 -0
  40. package/lib/buttons/button-group/index.d.ts +3 -0
  41. package/lib/buttons/fab/fab.component.d.ts +13 -0
  42. package/lib/buttons/fab/fab.defaults.d.ts +8 -0
  43. package/lib/buttons/fab/fab.module.d.ts +8 -0
  44. package/lib/buttons/fab/index.d.ts +3 -0
  45. package/lib/buttons/general-button.types.d.ts +57 -0
  46. package/lib/buttons/icon-button/icon-button.component.d.ts +20 -0
  47. package/lib/buttons/icon-button/icon-button.defaults.d.ts +7 -0
  48. package/lib/buttons/icon-button/icon-button.module.d.ts +8 -0
  49. package/lib/buttons/icon-button/index.d.ts +3 -0
  50. package/lib/calendar/abstract-calendar.d.ts +135 -0
  51. package/lib/calendar/calendar.component.d.ts +15 -0
  52. package/lib/calendar/calendar.defaults.d.ts +34 -0
  53. package/lib/calendar/calendar.directives.d.ts +51 -0
  54. package/lib/calendar/calendar.internal-directives.d.ts +33 -0
  55. package/lib/calendar/calendar.internal-types.d.ts +5 -0
  56. package/lib/calendar/calendar.module.d.ts +10 -0
  57. package/lib/calendar/calendar.types.d.ts +111 -0
  58. package/lib/calendar/index.d.ts +8 -0
  59. package/lib/calendar/range-calendar.component.d.ts +17 -0
  60. package/lib/calendar/range-calendar.directives.d.ts +51 -0
  61. package/lib/calendar/range-calendar.module.d.ts +10 -0
  62. package/lib/calendar/views/calendar-views.module.d.ts +13 -0
  63. package/lib/calendar/views/days-view/days-view.component.d.ts +86 -0
  64. package/lib/calendar/views/days-view/days-view.helpers.d.ts +20 -0
  65. package/lib/calendar/views/months-view/months-view.component.d.ts +73 -0
  66. package/lib/calendar/views/months-view/months-view.helpers.d.ts +3 -0
  67. package/lib/calendar/views/years-view/years-view.component.d.ts +71 -0
  68. package/lib/calendar/views/years-view/years-view.helpers.d.ts +3 -0
  69. package/lib/card/card.children.d.ts +44 -0
  70. package/lib/card/card.component.d.ts +15 -0
  71. package/lib/card/card.defaults.d.ts +10 -0
  72. package/lib/card/card.module.d.ts +9 -0
  73. package/lib/card/card.types.d.ts +10 -0
  74. package/lib/card/index.d.ts +5 -0
  75. package/lib/checkbox/checkbox.component.d.ts +38 -0
  76. package/lib/checkbox/checkbox.defaults.d.ts +12 -0
  77. package/lib/checkbox/checkbox.directives.d.ts +15 -0
  78. package/lib/checkbox/checkbox.internal-directives.d.ts +10 -0
  79. package/lib/checkbox/checkbox.module.d.ts +10 -0
  80. package/lib/checkbox/checkbox.types.d.ts +22 -0
  81. package/lib/checkbox/index.d.ts +5 -0
  82. package/lib/checkbox-list/checkbox-list.component.d.ts +55 -0
  83. package/lib/checkbox-list/checkbox-list.defaults.d.ts +20 -0
  84. package/lib/checkbox-list/checkbox-list.directives.d.ts +16 -0
  85. package/lib/checkbox-list/checkbox-list.module.d.ts +11 -0
  86. package/lib/checkbox-list/checkbox-list.types.d.ts +11 -0
  87. package/lib/checkbox-list/index.d.ts +5 -0
  88. package/lib/chip/chip.component.d.ts +20 -0
  89. package/lib/chip/chip.defaults.d.ts +15 -0
  90. package/lib/chip/chip.module.d.ts +11 -0
  91. package/lib/chip/deletable-chip/deletable-chip.component.d.ts +23 -0
  92. package/lib/chip/deletable-chip/deletable-chip.defaults.d.ts +8 -0
  93. package/lib/chip/index.d.ts +7 -0
  94. package/lib/chip/selectable-chip/selectable-chip.component.d.ts +25 -0
  95. package/lib/chip/selectable-chip/selectable-chip.defaults.d.ts +9 -0
  96. package/lib/dialog/dialog.component.d.ts +47 -0
  97. package/lib/dialog/dialog.defaults.d.ts +19 -0
  98. package/lib/dialog/dialog.directives.d.ts +15 -0
  99. package/lib/dialog/dialog.module.d.ts +11 -0
  100. package/lib/dialog/dialog.types.d.ts +38 -0
  101. package/lib/dialog/index.d.ts +5 -0
  102. package/lib/divider/divider.component.d.ts +6 -0
  103. package/lib/divider/divider.defaults.d.ts +11 -0
  104. package/lib/divider/divider.directive.d.ts +18 -0
  105. package/lib/divider/divider.module.d.ts +9 -0
  106. package/lib/divider/divider.types.d.ts +5 -0
  107. package/lib/divider/index.d.ts +5 -0
  108. package/lib/dropdown-panel/dropdown-panel.component.d.ts +36 -0
  109. package/lib/dropdown-panel/dropdown-panel.defaults.d.ts +10 -0
  110. package/lib/dropdown-panel/dropdown-panel.module.d.ts +8 -0
  111. package/lib/dropdown-panel/dropdown-panel.types.d.ts +12 -0
  112. package/lib/dropdown-panel/index.d.ts +4 -0
  113. package/lib/file-inputs/file-drop-area/file-drop-area.component.d.ts +26 -0
  114. package/lib/file-inputs/file-drop-area/file-drop-area.defaults.d.ts +10 -0
  115. package/lib/file-inputs/file-drop-area/file-drop-area.directives.d.ts +21 -0
  116. package/lib/file-inputs/file-drop-area/file-drop-area.module.d.ts +12 -0
  117. package/lib/file-inputs/file-drop-area/index.d.ts +4 -0
  118. package/lib/file-inputs/file-input/file-input.component.d.ts +38 -0
  119. package/lib/file-inputs/file-input/file-input.defaults.d.ts +17 -0
  120. package/lib/file-inputs/file-input/file-input.directives.d.ts +46 -0
  121. package/lib/file-inputs/file-input/file-input.module.d.ts +13 -0
  122. package/lib/file-inputs/file-input/index.d.ts +4 -0
  123. package/lib/file-inputs/file-input-base.d.ts +60 -0
  124. package/lib/file-inputs/file-input-base.defaults.d.ts +7 -0
  125. package/lib/file-inputs/file-input-types.d.ts +41 -0
  126. package/lib/form-field/auto-error/auto-error.component.d.ts +19 -0
  127. package/lib/form-field/auto-error/auto-error.provider.d.ts +7 -0
  128. package/lib/form-field/error/error.component.d.ts +6 -0
  129. package/lib/form-field/error/error.directive.d.ts +9 -0
  130. package/lib/form-field/form-field-base.d.ts +30 -0
  131. package/lib/form-field/form-field-child.token.d.ts +8 -0
  132. package/lib/form-field/form-field-native-inputs.d.ts +17 -0
  133. package/lib/form-field/form-field.component.d.ts +7 -0
  134. package/lib/form-field/form-field.defaults.d.ts +11 -0
  135. package/lib/form-field/form-field.module.d.ts +17 -0
  136. package/lib/form-field/hint/hint.component.d.ts +6 -0
  137. package/lib/form-field/hint/hint.directive.d.ts +9 -0
  138. package/lib/form-field/hint-error/hint-error.component.d.ts +6 -0
  139. package/lib/form-field/hint-error/hint-error.directive.d.ts +9 -0
  140. package/lib/form-field/horizontal-form-field.component.d.ts +7 -0
  141. package/lib/form-field/index.d.ts +15 -0
  142. package/lib/form-field/label/label.component.d.ts +12 -0
  143. package/lib/form-field-frame/form-field-frame.component.d.ts +43 -0
  144. package/lib/form-field-frame/form-field-frame.defaults.d.ts +13 -0
  145. package/lib/form-field-frame/form-field-frame.directives.d.ts +15 -0
  146. package/lib/form-field-frame/form-field-frame.module.d.ts +9 -0
  147. package/lib/form-field-frame/form-field-frame.types.d.ts +10 -0
  148. package/lib/form-field-frame/index.d.ts +5 -0
  149. package/lib/grid/grid.component.d.ts +63 -0
  150. package/lib/grid/grid.defaults.d.ts +16 -0
  151. package/lib/grid/grid.module.d.ts +7 -0
  152. package/lib/grid/grid.types.d.ts +38 -0
  153. package/lib/grid/grid.utils.d.ts +20 -0
  154. package/lib/grid/index.d.ts +4 -0
  155. package/lib/icon/icon.component.d.ts +28 -0
  156. package/lib/icon/icon.defaults.d.ts +11 -0
  157. package/lib/icon/icon.module.d.ts +9 -0
  158. package/lib/icon/icon.pipe.d.ts +7 -0
  159. package/lib/icon/index.d.ts +4 -0
  160. package/lib/inputs/_simple-input-base.d.ts +67 -0
  161. package/lib/inputs/autocomplete-input/autocomplete-input.component.d.ts +69 -0
  162. package/lib/inputs/autocomplete-input/autocomplete-input.defaults.d.ts +18 -0
  163. package/lib/inputs/autocomplete-input/autocomplete-input.directives.d.ts +34 -0
  164. package/lib/inputs/autocomplete-input/autocomplete-input.module.d.ts +13 -0
  165. package/lib/inputs/autocomplete-input/index.d.ts +4 -0
  166. package/lib/inputs/date-input/abstract-date-input.d.ts +109 -0
  167. package/lib/inputs/date-input/date-input.component.d.ts +52 -0
  168. package/lib/inputs/date-input/date-input.defaults.d.ts +54 -0
  169. package/lib/inputs/date-input/date-input.directives.d.ts +83 -0
  170. package/lib/inputs/date-input/date-input.module.d.ts +17 -0
  171. package/lib/inputs/date-input/date-input.serializers.d.ts +5 -0
  172. package/lib/inputs/date-input/date-input.types.d.ts +17 -0
  173. package/lib/inputs/date-input/date-range-input.component.d.ts +36 -0
  174. package/lib/inputs/date-input/date-range-input.directives.d.ts +83 -0
  175. package/lib/inputs/date-input/date-range-input.module.d.ts +17 -0
  176. package/lib/inputs/date-input/index.d.ts +11 -0
  177. package/lib/inputs/date-input/multipage-date-range-input.component.d.ts +50 -0
  178. package/lib/inputs/date-input/multipage-date-range-input.directives.d.ts +83 -0
  179. package/lib/inputs/date-input/multipage-date-range-input.module.d.ts +17 -0
  180. package/lib/inputs/digit-input/digit-input.component.d.ts +62 -0
  181. package/lib/inputs/digit-input/digit-input.defaults.d.ts +16 -0
  182. package/lib/inputs/digit-input/digit-input.model.d.ts +27 -0
  183. package/lib/inputs/digit-input/digit-input.module.d.ts +9 -0
  184. package/lib/inputs/digit-input/digit-input.types.d.ts +30 -0
  185. package/lib/inputs/digit-input/digit-input.utils.d.ts +20 -0
  186. package/lib/inputs/digit-input/index.d.ts +4 -0
  187. package/lib/inputs/hex-input/hex-input.component.d.ts +57 -0
  188. package/lib/inputs/hex-input/hex-input.defaults.d.ts +22 -0
  189. package/lib/inputs/hex-input/hex-input.directives.d.ts +21 -0
  190. package/lib/inputs/hex-input/hex-input.model.d.ts +26 -0
  191. package/lib/inputs/hex-input/hex-input.module.d.ts +11 -0
  192. package/lib/inputs/hex-input/index.d.ts +4 -0
  193. package/lib/inputs/input/index.d.ts +4 -0
  194. package/lib/inputs/input/input.component.d.ts +15 -0
  195. package/lib/inputs/input/input.defaults.d.ts +9 -0
  196. package/lib/inputs/input/input.directives.d.ts +21 -0
  197. package/lib/inputs/input/input.module.d.ts +11 -0
  198. package/lib/inputs/input-transformers.d.ts +24 -0
  199. package/lib/inputs/input-types.d.ts +15 -0
  200. package/lib/inputs/input-utils.d.ts +66 -0
  201. package/lib/inputs/number-input/index.d.ts +4 -0
  202. package/lib/inputs/number-input/number-input.component.d.ts +78 -0
  203. package/lib/inputs/number-input/number-input.defaults.d.ts +28 -0
  204. package/lib/inputs/number-input/number-input.directives.d.ts +21 -0
  205. package/lib/inputs/number-input/number-input.module.d.ts +11 -0
  206. package/lib/inputs/number-input/number-input.types.d.ts +6 -0
  207. package/lib/inputs/password-input/index.d.ts +5 -0
  208. package/lib/inputs/password-input/password-input.component.d.ts +48 -0
  209. package/lib/inputs/password-input/password-input.defaults.d.ts +20 -0
  210. package/lib/inputs/password-input/password-input.directives.d.ts +28 -0
  211. package/lib/inputs/password-input/password-input.module.d.ts +11 -0
  212. package/lib/inputs/password-input/password-input.types.d.ts +3 -0
  213. package/lib/kbd/index.d.ts +5 -0
  214. package/lib/kbd/kbd.component.d.ts +15 -0
  215. package/lib/kbd/kbd.defaults.d.ts +8 -0
  216. package/lib/kbd/kbd.directive.d.ts +13 -0
  217. package/lib/kbd/kbd.module.d.ts +10 -0
  218. package/lib/kbd/kbd.pipe.d.ts +8 -0
  219. package/lib/kbd-shortcut/index.d.ts +3 -0
  220. package/lib/kbd-shortcut/kbd-shortcut.component.d.ts +18 -0
  221. package/lib/kbd-shortcut/kbd-shortcut.defaults.d.ts +8 -0
  222. package/lib/kbd-shortcut/kbd-shortcut.module.d.ts +9 -0
  223. package/lib/modal/index.d.ts +5 -0
  224. package/lib/modal/modal.component.d.ts +39 -0
  225. package/lib/modal/modal.defaults.d.ts +18 -0
  226. package/lib/modal/modal.directives.d.ts +8 -0
  227. package/lib/modal/modal.module.d.ts +12 -0
  228. package/lib/modal/modal.types.d.ts +3 -0
  229. package/lib/option/index.d.ts +2 -0
  230. package/lib/option/option.component.d.ts +25 -0
  231. package/lib/option/option.module.d.ts +8 -0
  232. package/lib/progress-bar/index.d.ts +4 -0
  233. package/lib/progress-bar/progress-bar.component.d.ts +18 -0
  234. package/lib/progress-bar/progress-bar.defaults.d.ts +13 -0
  235. package/lib/progress-bar/progress-bar.module.d.ts +8 -0
  236. package/lib/progress-bar/progress-bar.types.d.ts +22 -0
  237. package/lib/progress-circle/index.d.ts +5 -0
  238. package/lib/progress-circle/progress-circle.component.d.ts +25 -0
  239. package/lib/progress-circle/progress-circle.defaults.d.ts +15 -0
  240. package/lib/progress-circle/progress-circle.directive.d.ts +9 -0
  241. package/lib/progress-circle/progress-circle.module.d.ts +9 -0
  242. package/lib/progress-circle/progress-circle.types.d.ts +20 -0
  243. package/lib/radio/index.d.ts +4 -0
  244. package/lib/radio/radio/radio.component.d.ts +68 -0
  245. package/lib/radio/radio/radio.defaults.d.ts +8 -0
  246. package/lib/radio/radio-group.component.d.ts +40 -0
  247. package/lib/radio/radio.module.d.ts +9 -0
  248. package/lib/search-functions.d.ts +10 -0
  249. package/lib/segment/index.d.ts +5 -0
  250. package/lib/segment/segment.component.d.ts +40 -0
  251. package/lib/segment/segment.defaults.d.ts +18 -0
  252. package/lib/segment/segment.directives.d.ts +8 -0
  253. package/lib/segment/segment.module.d.ts +9 -0
  254. package/lib/segment/segment.types.d.ts +17 -0
  255. package/lib/select/index.d.ts +5 -0
  256. package/lib/select/select.component.d.ts +230 -0
  257. package/lib/select/select.defaults.d.ts +70 -0
  258. package/lib/select/select.directive.d.ts +95 -0
  259. package/lib/select/select.module.d.ts +14 -0
  260. package/lib/select/select.types.d.ts +60 -0
  261. package/lib/select/select.utils.d.ts +2 -0
  262. package/lib/slide-toggle/index.d.ts +4 -0
  263. package/lib/slide-toggle/slide-toggle.component.d.ts +21 -0
  264. package/lib/slide-toggle/slide-toggle.defaults.d.ts +14 -0
  265. package/lib/slide-toggle/slide-toggle.module.d.ts +8 -0
  266. package/lib/slide-toggle/slide-toggle.types.d.ts +5 -0
  267. package/lib/slider/abstract-slider.d.ts +96 -0
  268. package/lib/slider/index.d.ts +8 -0
  269. package/lib/slider/range-slider/range-slider.component.d.ts +37 -0
  270. package/lib/slider/range-slider/range-slider.module.d.ts +8 -0
  271. package/lib/slider/range-slider/range-slider.types.d.ts +6 -0
  272. package/lib/slider/slider.component.d.ts +24 -0
  273. package/lib/slider/slider.defaults.d.ts +6 -0
  274. package/lib/slider/slider.directive.d.ts +9 -0
  275. package/lib/slider/slider.module.d.ts +10 -0
  276. package/lib/slider/slider.types.d.ts +28 -0
  277. package/lib/snackbar/index.d.ts +4 -0
  278. package/lib/snackbar/snackbar-ref.d.ts +69 -0
  279. package/lib/snackbar/snackbar.component.d.ts +16 -0
  280. package/lib/snackbar/snackbar.service.d.ts +57 -0
  281. package/lib/snackbar/snackbar.token.d.ts +5 -0
  282. package/lib/snackbar/snackbar.types.d.ts +84 -0
  283. package/lib/spinner/index.d.ts +3 -0
  284. package/lib/spinner/spinner.component.d.ts +9 -0
  285. package/lib/spinner/spinner.defaults.d.ts +7 -0
  286. package/lib/spinner/spinner.module.d.ts +8 -0
  287. package/lib/stack/index.d.ts +3 -0
  288. package/lib/stack/stack.component.d.ts +26 -0
  289. package/lib/stack/stack.defaults.d.ts +14 -0
  290. package/lib/stack/stack.module.d.ts +7 -0
  291. package/lib/star/index.d.ts +5 -0
  292. package/lib/star/rating-display/index.d.ts +5 -0
  293. package/lib/star/rating-display/rating-display.component.d.ts +18 -0
  294. package/lib/star/rating-display/rating-display.defaults.d.ts +9 -0
  295. package/lib/star/rating-display/rating-display.directives.d.ts +9 -0
  296. package/lib/star/rating-display/rating-display.module.d.ts +10 -0
  297. package/lib/star/rating-display/rating-display.types.d.ts +8 -0
  298. package/lib/star/rating-input/index.d.ts +5 -0
  299. package/lib/star/rating-input/rating-input.component.d.ts +48 -0
  300. package/lib/star/rating-input/rating-input.defaults.d.ts +9 -0
  301. package/lib/star/rating-input/rating-input.directives.d.ts +9 -0
  302. package/lib/star/rating-input/rating-input.module.d.ts +10 -0
  303. package/lib/star/rating-input/rating-input.types.d.ts +12 -0
  304. package/lib/star/star-button/index.d.ts +5 -0
  305. package/lib/star/star-button/star-button.component.d.ts +26 -0
  306. package/lib/star/star-button/star-button.defaults.d.ts +10 -0
  307. package/lib/star/star-button/star-button.directives.d.ts +9 -0
  308. package/lib/star/star-button/star-button.module.d.ts +10 -0
  309. package/lib/star/star-button/star-button.types.d.ts +7 -0
  310. package/lib/star/star.component.d.ts +15 -0
  311. package/lib/star/star.defaults.d.ts +8 -0
  312. package/lib/star/star.directives.d.ts +9 -0
  313. package/lib/star/star.module.d.ts +10 -0
  314. package/lib/star/star.types.d.ts +33 -0
  315. package/lib/tabber/index.d.ts +6 -0
  316. package/lib/tabber/tab/tab.component.d.ts +27 -0
  317. package/lib/tabber/tabber.component.d.ts +44 -0
  318. package/lib/tabber/tabber.defaults.d.ts +14 -0
  319. package/lib/tabber/tabber.directives.d.ts +9 -0
  320. package/lib/tabber/tabber.module.d.ts +10 -0
  321. package/lib/tabber/tabber.types.d.ts +5 -0
  322. package/lib/table/index.d.ts +5 -0
  323. package/lib/table/table-item-storage.d.ts +273 -0
  324. package/lib/table/table.component.d.ts +111 -0
  325. package/lib/table/table.defaults.d.ts +50 -0
  326. package/lib/table/table.directives.d.ts +36 -0
  327. package/lib/table/table.module.d.ts +13 -0
  328. package/lib/table/table.types.d.ts +83 -0
  329. package/lib/table/utils.d.ts +4 -0
  330. package/lib/table-from-csv/index.d.ts +3 -0
  331. package/lib/table-from-csv/table-from-csv.component.d.ts +55 -0
  332. package/lib/table-from-csv/table-from-csv.defaults.d.ts +7 -0
  333. package/lib/table-from-csv/table-from-csv.module.d.ts +9 -0
  334. package/lib/table-pagination/index.d.ts +4 -0
  335. package/lib/table-pagination/table-pagination.component.d.ts +40 -0
  336. package/lib/table-pagination/table-pagination.defaults.d.ts +20 -0
  337. package/lib/table-pagination/table-pagination.module.d.ts +11 -0
  338. package/lib/table-pagination/table-pagination.types.d.ts +9 -0
  339. package/lib/text-list/index.d.ts +3 -0
  340. package/lib/text-list/text-list.component.d.ts +9 -0
  341. package/lib/text-list/text-list.module.d.ts +9 -0
  342. package/lib/text-list/text-list.pipe.d.ts +7 -0
  343. package/lib/types/alignment.types.d.ts +17 -0
  344. package/lib/types/button.types.d.ts +6 -0
  345. package/lib/types/colors.types.d.ts +71 -0
  346. package/lib/types/item-storage.types.d.ts +50 -0
  347. package/lib/types/theming.types.d.ts +62 -0
  348. package/lib/types/utility.types.d.ts +16 -0
  349. package/package.json +39 -0
  350. package/prebuilt-themes/default/badge.css +237 -0
  351. package/prebuilt-themes/default/badge.css.map +1 -0
  352. package/prebuilt-themes/default/buttons/button-group.css +19 -0
  353. package/prebuilt-themes/default/buttons/button-group.css.map +1 -0
  354. package/prebuilt-themes/default/buttons/button.css +339 -0
  355. package/prebuilt-themes/default/buttons/button.css.map +1 -0
  356. package/prebuilt-themes/default/buttons/fab.css +330 -0
  357. package/prebuilt-themes/default/buttons/fab.css.map +1 -0
  358. package/prebuilt-themes/default/buttons/icon-button.css +304 -0
  359. package/prebuilt-themes/default/buttons/icon-button.css.map +1 -0
  360. package/prebuilt-themes/default/calendar.css +393 -0
  361. package/prebuilt-themes/default/calendar.css.map +1 -0
  362. package/prebuilt-themes/default/card.css +154 -0
  363. package/prebuilt-themes/default/card.css.map +1 -0
  364. package/prebuilt-themes/default/checkbox-list.css +101 -0
  365. package/prebuilt-themes/default/checkbox-list.css.map +1 -0
  366. package/prebuilt-themes/default/checkbox.css +383 -0
  367. package/prebuilt-themes/default/checkbox.css.map +1 -0
  368. package/prebuilt-themes/default/chips.css +421 -0
  369. package/prebuilt-themes/default/chips.css.map +1 -0
  370. package/prebuilt-themes/default/color-display.css +37 -0
  371. package/prebuilt-themes/default/color-display.css.map +1 -0
  372. package/prebuilt-themes/default/color-picker.css +108 -0
  373. package/prebuilt-themes/default/color-picker.css.map +1 -0
  374. package/prebuilt-themes/default/core.css +112 -0
  375. package/prebuilt-themes/default/core.css.map +1 -0
  376. package/prebuilt-themes/default/dialog.css +22 -0
  377. package/prebuilt-themes/default/dialog.css.map +1 -0
  378. package/prebuilt-themes/default/divider.css +87 -0
  379. package/prebuilt-themes/default/divider.css.map +1 -0
  380. package/prebuilt-themes/default/dropdown-panel.css +45 -0
  381. package/prebuilt-themes/default/dropdown-panel.css.map +1 -0
  382. package/prebuilt-themes/default/file-drop-area.css +332 -0
  383. package/prebuilt-themes/default/file-drop-area.css.map +1 -0
  384. package/prebuilt-themes/default/form-field-frame.css +105 -0
  385. package/prebuilt-themes/default/form-field-frame.css.map +1 -0
  386. package/prebuilt-themes/default/form-field.css +153 -0
  387. package/prebuilt-themes/default/form-field.css.map +1 -0
  388. package/prebuilt-themes/default/inputs/autocomplete-input.css +198 -0
  389. package/prebuilt-themes/default/inputs/autocomplete-input.css.map +1 -0
  390. package/prebuilt-themes/default/inputs/color-input.css +108 -0
  391. package/prebuilt-themes/default/inputs/color-input.css.map +1 -0
  392. package/prebuilt-themes/default/inputs/date-input.css +152 -0
  393. package/prebuilt-themes/default/inputs/date-input.css.map +1 -0
  394. package/prebuilt-themes/default/inputs/digit-input.css +129 -0
  395. package/prebuilt-themes/default/inputs/digit-input.css.map +1 -0
  396. package/prebuilt-themes/default/inputs/file-input.css +399 -0
  397. package/prebuilt-themes/default/inputs/file-input.css.map +1 -0
  398. package/prebuilt-themes/default/inputs/hex-input.css +165 -0
  399. package/prebuilt-themes/default/inputs/hex-input.css.map +1 -0
  400. package/prebuilt-themes/default/inputs/input.css +152 -0
  401. package/prebuilt-themes/default/inputs/input.css.map +1 -0
  402. package/prebuilt-themes/default/inputs/number-input.css +230 -0
  403. package/prebuilt-themes/default/inputs/number-input.css.map +1 -0
  404. package/prebuilt-themes/default/inputs/password-input.css +132 -0
  405. package/prebuilt-themes/default/inputs/password-input.css.map +1 -0
  406. package/prebuilt-themes/default/kbd-shortcut.css +17 -0
  407. package/prebuilt-themes/default/kbd-shortcut.css.map +1 -0
  408. package/prebuilt-themes/default/kbd.css +29 -0
  409. package/prebuilt-themes/default/kbd.css.map +1 -0
  410. package/prebuilt-themes/default/modal.css +99 -0
  411. package/prebuilt-themes/default/modal.css.map +1 -0
  412. package/prebuilt-themes/default/progress-bar.css +286 -0
  413. package/prebuilt-themes/default/progress-bar.css.map +1 -0
  414. package/prebuilt-themes/default/progress-circle.css +181 -0
  415. package/prebuilt-themes/default/progress-circle.css.map +1 -0
  416. package/prebuilt-themes/default/radio.css +261 -0
  417. package/prebuilt-themes/default/radio.css.map +1 -0
  418. package/prebuilt-themes/default/segment.css +441 -0
  419. package/prebuilt-themes/default/segment.css.map +1 -0
  420. package/prebuilt-themes/default/select.css +322 -0
  421. package/prebuilt-themes/default/select.css.map +1 -0
  422. package/prebuilt-themes/default/slide-toggle.css +322 -0
  423. package/prebuilt-themes/default/slide-toggle.css.map +1 -0
  424. package/prebuilt-themes/default/slider.css +428 -0
  425. package/prebuilt-themes/default/slider.css.map +1 -0
  426. package/prebuilt-themes/default/snackbar.css +202 -0
  427. package/prebuilt-themes/default/snackbar.css.map +1 -0
  428. package/prebuilt-themes/default/spinner.css +164 -0
  429. package/prebuilt-themes/default/spinner.css.map +1 -0
  430. package/prebuilt-themes/default/stars.css +284 -0
  431. package/prebuilt-themes/default/stars.css.map +1 -0
  432. package/prebuilt-themes/default/tabber.css +253 -0
  433. package/prebuilt-themes/default/tabber.css.map +1 -0
  434. package/prebuilt-themes/default/table-pagination.css +60 -0
  435. package/prebuilt-themes/default/table-pagination.css.map +1 -0
  436. package/prebuilt-themes/default/table.css +467 -0
  437. package/prebuilt-themes/default/table.css.map +1 -0
  438. package/public-api.d.ts +59 -0
  439. package/themes/_variables.scss +124 -0
  440. package/themes/default/_clear-button.scss +78 -0
  441. package/themes/default/_coloring.scss +144 -0
  442. package/themes/default/_dropdown-arrow.scss +12 -0
  443. package/themes/default/_mixins.scss +91 -0
  444. package/themes/default/badge.scss +129 -0
  445. package/themes/default/buttons/_button-mixins.scss +152 -0
  446. package/themes/default/buttons/button-group.scss +19 -0
  447. package/themes/default/buttons/button.scss +119 -0
  448. package/themes/default/buttons/fab.scss +112 -0
  449. package/themes/default/buttons/icon-button.scss +91 -0
  450. package/themes/default/calendar.scss +298 -0
  451. package/themes/default/card.scss +181 -0
  452. package/themes/default/checkbox-list.scss +125 -0
  453. package/themes/default/checkbox.scss +123 -0
  454. package/themes/default/chips.scss +269 -0
  455. package/themes/default/color-display.scss +53 -0
  456. package/themes/default/color-picker.scss +113 -0
  457. package/themes/default/core.scss +129 -0
  458. package/themes/default/dialog.scss +25 -0
  459. package/themes/default/divider.scss +115 -0
  460. package/themes/default/dropdown-panel.scss +60 -0
  461. package/themes/default/file-drop-area.scss +221 -0
  462. package/themes/default/form-field-frame.scss +91 -0
  463. package/themes/default/form-field.scss +161 -0
  464. package/themes/default/inputs/_shared.scss +99 -0
  465. package/themes/default/inputs/autocomplete-input.scss +119 -0
  466. package/themes/default/inputs/color-input.scss +48 -0
  467. package/themes/default/inputs/date-input.scss +106 -0
  468. package/themes/default/inputs/digit-input.scss +138 -0
  469. package/themes/default/inputs/file-input.scss +187 -0
  470. package/themes/default/inputs/hex-input.scss +81 -0
  471. package/themes/default/inputs/input.scss +63 -0
  472. package/themes/default/inputs/number-input.scss +214 -0
  473. package/themes/default/inputs/password-input.scss +116 -0
  474. package/themes/default/kbd-shortcut.scss +21 -0
  475. package/themes/default/kbd.scss +40 -0
  476. package/themes/default/modal.scss +130 -0
  477. package/themes/default/progress-bar.scss +181 -0
  478. package/themes/default/progress-circle.scss +64 -0
  479. package/themes/default/radio.scss +154 -0
  480. package/themes/default/segment.scss +383 -0
  481. package/themes/default/select.scss +327 -0
  482. package/themes/default/slide-toggle.scss +228 -0
  483. package/themes/default/slider.scss +287 -0
  484. package/themes/default/snackbar.scss +78 -0
  485. package/themes/default/spinner.scss +31 -0
  486. package/themes/default/stars.scss +133 -0
  487. package/themes/default/tabber.scss +131 -0
  488. package/themes/default/table-pagination.scss +72 -0
  489. package/themes/default/table.scss +459 -0
@@ -0,0 +1,112 @@
1
+ @layer ard-ui {
2
+ :root {
3
+ --ard-bg: white;
4
+ --ard-bg-alt: black;
5
+ --ard-overlay: black;
6
+ --ard-overlay-rgb: 0, 0, 0;
7
+ --ard-bg-filled: #ebebeb;
8
+ --ard-bg-darker: #f7f7f7;
9
+ --ard-bg-filled-alt: #333;
10
+ --ard-text: rgba(0, 0, 0, 100%);
11
+ --ard-text2: rgba(0, 0, 0, 87%);
12
+ --ard-text3: rgba(0, 0, 0, 75%);
13
+ --ard-text-alt: rgba(255, 255, 255, 100%);
14
+ --ard-text2-alt: rgba(255, 255, 255, 87%);
15
+ --ard-text3-alt: rgba(255, 255, 255, 75%);
16
+ --ard-border: rgba(0, 0, 0, 40%);
17
+ --ard-border-dark: rgba(0, 0, 0, 70%);
18
+ --ard-border-light: rgba(0, 0, 0, 25%);
19
+ --ard-detail: rgba(0, 0, 0, 60%);
20
+ --ard-detail-light: rgba(0, 0, 0, 30%);
21
+ --ard-detail-ultralight: rgba(0, 0, 0, 12%);
22
+ --ard-detail-ultralight-solid: rgb(204, 204, 204);
23
+ --ard-lighten-overlay: rgba(255, 255, 255, 12.5%);
24
+ --ard-lighten-overlay-strong: rgba(255, 255, 255, 20%);
25
+ --ard-lighten-overlay-medium: rgba(255, 255, 255, 10%);
26
+ --ard-lighten-overlay-light: rgba(255, 255, 255, 5%);
27
+ --ard-darken-overlay: rgba(0, 0, 0, 12.5%);
28
+ --ard-darken-overlay-strong: rgba(0, 0, 0, 20%);
29
+ --ard-darken-overlay-medium-strong: rgba(0, 0, 0, 13%);
30
+ --ard-darken-overlay-medium: rgba(0, 0, 0, 10%);
31
+ --ard-darken-overlay-light: rgba(0, 0, 0, 5%);
32
+ --ard-darken-overlay-ultralight: rgba(0, 0, 0, 3%);
33
+ --ard-font-family: "Roboto", sans-serif;
34
+ --ard-font-family-mono: monospace;
35
+ --ard-readonly-cursor: default;
36
+ --ard-gold: #ffc107;
37
+ --ard-clear-button-size: 0.9rem;
38
+ --ard-dropdown-button-size: 0.4rem;
39
+ --ard-form-field-height: 2.3125rem;
40
+ --ard-form-field-height-compact: 1.6875rem;
41
+ --ard-form-field-font-size: 1rem;
42
+ --ard-form-field-font-size-compact: 1rem;
43
+ --ard-form-field-padding-top: 0;
44
+ --ard-form-field-padding-right: 0.375rem;
45
+ --ard-form-field-padding-bottom: 0;
46
+ --ard-form-field-padding-left: 0.375rem;
47
+ --ard-form-field-padding-top-compact: 0;
48
+ --ard-form-field-padding-right-compact: 0.375rem;
49
+ --ard-form-field-padding-bottom-compact: 0;
50
+ --ard-form-field-padding-left-compact: 0.375rem;
51
+ --ard-form-field-transitions-duration: 150ms;
52
+ --ard-form-field-hover-overlay-opacity: 3%;
53
+ --ard-form-field-focus-overlay-opacity: 6%;
54
+ --ard-form-field-disabled-opacity: 50%;
55
+ --ard-form-field-disabled-transparent-overlay-opacity: 4.5%;
56
+ --ard-rounded-corner-radius: 0.375rem;
57
+ --ard-grid-spacing-unit: 0.25rem;
58
+ --ard-primary-50: 234, 235, 243;
59
+ --ard-primary-100: 159, 167, 228;
60
+ --ard-primary-300: 78, 99, 219;
61
+ --ard-primary-500: 36, 56, 185;
62
+ --ard-primary-700: 27, 42, 128;
63
+ --ard-primary-900: 19, 28, 87;
64
+ --ard-secondary-50: 229, 172, 243;
65
+ --ard-secondary-100: 216, 107, 243;
66
+ --ard-secondary-300: 195, 38, 238;
67
+ --ard-secondary-500: 145, 13, 182;
68
+ --ard-secondary-700: 103, 10, 129;
69
+ --ard-secondary-900: 69, 7, 85;
70
+ --ard-danger-50: 255, 233, 233;
71
+ --ard-danger-100: 243, 151, 149;
72
+ --ard-danger-300: 245, 103, 100;
73
+ --ard-danger-500: 243, 55, 52;
74
+ --ard-danger-700: 202, 17, 14;
75
+ --ard-danger-900: 165, 13, 11;
76
+ --ard-warn-50: 248, 224, 192;
77
+ --ard-warn-100: 247, 196, 129;
78
+ --ard-warn-300: 240, 169, 77;
79
+ --ard-warn-500: 224, 140, 38;
80
+ --ard-warn-700: 173, 101, 13;
81
+ --ard-warn-900: 117, 69, 7;
82
+ --ard-success-50: 184, 240, 187;
83
+ --ard-success-100: 124, 230, 129;
84
+ --ard-success-300: 73, 223, 80;
85
+ --ard-success-500: 33, 179, 40;
86
+ --ard-success-700: 27, 131, 33;
87
+ --ard-success-900: 14, 82, 17;
88
+ --ard-info-50: 187, 210, 241;
89
+ --ard-info-100: 131, 180, 243;
90
+ --ard-info-300: 76, 147, 240;
91
+ --ard-info-500: 19, 113, 236;
92
+ --ard-info-700: 13, 81, 172;
93
+ --ard-info-900: 8, 49, 102;
94
+ --ard-box-shadow: 0 0 13px -3px rgba(0, 0, 0, 0.7);
95
+ --ard-card-shadow:
96
+ 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
97
+ --ard-simple-shadow:
98
+ 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
99
+ --ard-simple-shadow2:
100
+ 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
101
+ --ard-simple-shadow3:
102
+ 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
103
+ --ard-spinner-color: rgba(0, 0, 0, 50%);
104
+ --ard-horizontal-form-field-label-width: 12rem;
105
+ --ard-horizontal-form-field-label-align: flex-start;
106
+ }
107
+ .ard-disabled {
108
+ pointer-events: none;
109
+ }
110
+ }
111
+
112
+ /*# sourceMappingURL=core.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/core.scss"],"names":[],"mappings":"AAEA;EACE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IAEA;IAEA;IAEA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IAEA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;IACA;IAEA;IACA;AAAA;IAGA;AAAA;IAEA;AAAA;IAEA;AAAA;IAGA;IAEA;IACA;;EAGF;IACE","file":"core.css"}
@@ -0,0 +1,22 @@
1
+ @layer ard-ui {
2
+ :root {
3
+ --ard-dialog-content-actions-gap: 1rem;
4
+ --ard-dialog-buttons-gap: 1rem;
5
+ }
6
+ .ard-dialog-container {
7
+ display: flex;
8
+ flex-direction: column;
9
+ gap: var(--ard-dialog-content-actions-gap, 1rem);
10
+ }
11
+ .ard-dialog-buttons {
12
+ display: flex;
13
+ justify-content: flex-end;
14
+ }
15
+ .ard-dialog-buttons-container {
16
+ display: flex;
17
+ gap: var(--ard-dialog-buttons-gap, 1rem);
18
+ align-items: center;
19
+ }
20
+ }
21
+
22
+ /*# sourceMappingURL=dialog.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/dialog.scss"],"names":[],"mappings":"AAAA;EAGE;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;IACA","file":"dialog.css"}
@@ -0,0 +1,87 @@
1
+ @layer ard-ui {
2
+ :root {
3
+ --ard-divider-margin-size: 0.5rem;
4
+ --ard-divider-width: 1px;
5
+ --ard-divider-middle-inset: 1rem;
6
+ --ard-divider-content-padding: 0.5rem;
7
+ --ard-divider-content-font-size: 0.875rem;
8
+ --ard-divider-align-inset: 10%;
9
+ --ard-divider-align-min-inset: 1rem;
10
+ --ard-divider-align-max-inset: unset;
11
+ --ard-divider-style: solid;
12
+ }
13
+ .ard-divider {
14
+ border: none;
15
+ position: relative;
16
+ display: flex;
17
+ justify-content: stretch;
18
+ align-items: center;
19
+ box-sizing: border-box;
20
+ font-size: var(--ard-divider-content-font-size, 0.875rem);
21
+ }
22
+ .ard-divider::before, .ard-divider::after {
23
+ content: "";
24
+ flex-grow: 1;
25
+ pointer-events: none;
26
+ box-sizing: border-box;
27
+ }
28
+ .ard-divider.ard-divider__horizontal {
29
+ width: 100%;
30
+ min-height: var(--ard-divider-width, 1px);
31
+ margin: var(--ard-divider-margin-size, 0.5rem) 0;
32
+ }
33
+ .ard-divider.ard-divider__horizontal::before, .ard-divider.ard-divider__horizontal::after {
34
+ height: var(--ard-divider-width, 1px);
35
+ border-top: var(--ard-divider-width, 1px) var(--ard-divider-style, solid) var(--ard-divider-color, var(--ard-detail-ultralight));
36
+ }
37
+ .ard-divider.ard-divider__horizontal.ard-divider__flex-item {
38
+ align-self: stretch;
39
+ width: auto;
40
+ }
41
+ .ard-divider.ard-divider__vertical {
42
+ height: 100%;
43
+ min-width: var(--ard-divider-width, 1px);
44
+ margin: 0 var(--ard-divider-margin-size, 0.5rem);
45
+ flex-direction: column;
46
+ }
47
+ .ard-divider.ard-divider__vertical::before, .ard-divider.ard-divider__vertical::after {
48
+ width: var(--ard-divider-width, 1px);
49
+ border-left: var(--ard-divider-width, 1px) var(--ard-divider-style, solid) var(--ard-divider-color, var(--ard-detail-ultralight));
50
+ }
51
+ .ard-divider.ard-divider__vertical.ard-divider__flex-item {
52
+ align-self: stretch;
53
+ height: auto;
54
+ }
55
+ .ard-divider:not(:empty).ard-divider__horizontal::before {
56
+ margin-right: var(--ard-divider-content-padding, 0.5rem);
57
+ }
58
+ .ard-divider:not(:empty).ard-divider__horizontal::after {
59
+ margin-left: var(--ard-divider-content-padding, 0.5rem);
60
+ }
61
+ .ard-divider:not(:empty).ard-divider__vertical::before {
62
+ margin-bottom: var(--ard-divider-content-padding, 0.5rem);
63
+ }
64
+ .ard-divider:not(:empty).ard-divider__vertical::after {
65
+ margin-top: var(--ard-divider-content-padding, 0.5rem);
66
+ }
67
+ .ard-divider.ard-divider__full {
68
+ padding: 0;
69
+ }
70
+ .ard-divider.ard-divider__middle {
71
+ padding: 0 var(--ard-divider-middle-inset, 1rem);
72
+ }
73
+ .ard-divider.ard-divider__text-align-start::before {
74
+ width: var(--ard-divider-align-inset, 10%);
75
+ min-width: var(--ard-divider-align-min-inset, 1rem);
76
+ max-width: var(--ard-divider-align-max-inset, unset);
77
+ flex-grow: 0;
78
+ }
79
+ .ard-divider.ard-divider__text-align-end::after {
80
+ width: var(--ard-divider-align-inset, 10%);
81
+ min-width: var(--ard-divider-align-min-inset, 1rem);
82
+ max-width: var(--ard-divider-align-max-inset, unset);
83
+ flex-grow: 0;
84
+ }
85
+ }
86
+
87
+ /*# sourceMappingURL=divider.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/divider.scss"],"names":[],"mappings":"AAEA;EAGE;IACE;IAEA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IAEE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;;EAEA;IAEE;IACA;;EAGF;IACE;IACA;;EAGJ;IACE;IACA;IACA;IACA;;EAEA;IAEE;IACA;;EAGF;IACE;IACA;;EAOA;IACE;;EAEF;IACE;;EAIF;IACE;;EAEF;IACE;;EAMN;IACE;;EAEF;IACE;;EAKA;IACE;IACA;IACA;IACA;;EAIF;IACE;IACA;IACA;IACA","file":"divider.css"}
@@ -0,0 +1,45 @@
1
+ @layer ard-ui {
2
+ :root {
3
+ --ard-dropdown-panel-margin: 0.375rem 0;
4
+ --ard-dropdown-panel-margin-compact: 0.25rem 0;
5
+ --ard-dropdown-panel-z-index: 5;
6
+ --ard-dropdown-panel-rounded-corner-radius: 0.5rem;
7
+ --ard-dropdown-panel-rounded-corner-radius-compact: 0.375rem;
8
+ }
9
+ ard-dropdown-panel {
10
+ width: 100%;
11
+ }
12
+ .ard-dropdown-panel-container {
13
+ position: relative;
14
+ background: var(--ard-dropdown-panel-bg, var(--ard-bg));
15
+ margin: var(--ard-dropdown-panel-margin, 0.375rem 0);
16
+ z-index: var(--ard-dropdown-panel-z-index, 5);
17
+ width: 100%;
18
+ overflow: hidden;
19
+ box-sizing: border-box;
20
+ }
21
+ .ard-dropdown-panel-container.ard-variant-rounded {
22
+ border-radius: var(--ard-dropdown-panel-rounded-corner-radius, 0.5rem);
23
+ }
24
+ .ard-dropdown-panel-container.ard-variant-sharp {
25
+ border-radius: 0;
26
+ }
27
+ .ard-dropdown-panel-container.ard-appearance-outlined {
28
+ border: 1px solid var(--ard-dropdown-panel-border-color, var(--ard-border));
29
+ }
30
+ .ard-dropdown-panel-container.ard-appearance-raised {
31
+ box-shadow: var(--ard-dropdown-panel-shadow, var(--ard-box-shadow));
32
+ }
33
+ .ard-dropdown-panel-container.ard-connected {
34
+ margin: 0;
35
+ border-top: none;
36
+ }
37
+ .ard-dropdown-panel-container.ard-compact {
38
+ margin: var(--ard-dropdown-panel-margin-compact, 0.25rem 0);
39
+ }
40
+ .ard-dropdown-panel-container.ard-compact.ard-variant-rounded {
41
+ border-radius: var(--ard-dropdown-panel-rounded-corner-radius-compact, 0.375rem);
42
+ }
43
+ }
44
+
45
+ /*# sourceMappingURL=dropdown-panel.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/dropdown-panel.scss"],"names":[],"mappings":"AAEA;EAGE;IAEE;IACA;IACA;IACA;IACA;;EAKF;IACE;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;EAGA;IACE;;EAEF;IACE;;EAIF;IACE;;EAEF;IACE;;EAIF;IACE;IACA;;EAIF;IACE;;EAEA;IACE","file":"dropdown-panel.css"}
@@ -0,0 +1,332 @@
1
+ @layer ard-ui {
2
+ :root {
3
+ --ard-file-drop-area-min-width: 15rem;
4
+ --ard-file-drop-area-min-height: 10rem;
5
+ --ard-file-drop-area-padding: 0.625rem;
6
+ --ard-file-drop-area-outline-border-width: 2px;
7
+ --ard-file-drop-area-outline-border-style: dashed;
8
+ --ard-file-drop-area-outline-padding: 0.375rem;
9
+ --ard-file-drop-area-content-gap-min: 0.2rem;
10
+ --ard-file-drop-area-content-gap-preferred: 10%;
11
+ --ard-file-drop-area-content-gap-max: 1rem;
12
+ --ard-file-drop-area-icon-font-size: 220%;
13
+ --ard-file-drop-area-drop-text-font-weight: 500;
14
+ --ard-file-drop-area-drop-text-font-size: 105%;
15
+ --ard-file-drop-area-or-text-font-weight: 400;
16
+ --ard-file-drop-area-or-text-font-size: 95%;
17
+ --ard-file-drop-area-dragover-text-font-weight: 500;
18
+ --ard-file-drop-area-dragover-text-font-size: 105%;
19
+ --ard-file-drop-area-dragover-amount-font-weight: 600;
20
+ --ard-file-drop-area-dragover-amount-font-size: 120%;
21
+ --ard-file-drop-area-uploaded-container-gap: 0.75rem;
22
+ --ard-file-drop-area-uploaded-message-font-weight: 500;
23
+ --ard-file-drop-area-uploaded-message-font-size: 105%;
24
+ --ard-file-drop-area-uploaded-amount-font-weight: 600;
25
+ --ard-file-drop-area-uploaded-amount-font-size: 100%;
26
+ --ard-file-drop-area-uploaded-files-gap: 0.45rem;
27
+ --ard-file-drop-area-file-gap: 0.75rem;
28
+ --ard-file-drop-area-file-icon-font-size: 220%;
29
+ --ard-file-drop-area-file-info-gap: 0.5ch;
30
+ --ard-file-drop-area-filename-gap: 0;
31
+ --ard-file-drop-area-filename-name-line-height: 1;
32
+ --ard-file-drop-area-filename-name-height: 1em;
33
+ --ard-file-drop-area-filesize-font-weight: 500;
34
+ --ard-file-drop-area-filesize-font-size: 83%;
35
+ --ard-file-drop-area-filesize-opacity: 60%;
36
+ --ard-file-drop-area-variant-rounded-corner-radius: 0.875rem;
37
+ --ard-file-drop-area-outline-corner-radius: 0.25rem;
38
+ --ard-file-drop-area-font-size-compact: 85%;
39
+ --ard-file-drop-area-min-width-compact: 12rem;
40
+ --ard-file-drop-area-min-height-compact: 8rem;
41
+ --ard-file-drop-area-content-gap-min-compact: 0.1667rem;
42
+ --ard-file-drop-area-content-gap-preferred-compact: 10%;
43
+ --ard-file-drop-area-content-gap-max-compact: 0.75rem;
44
+ }
45
+ ard-file-drop-area {
46
+ display: block;
47
+ width: 100%;
48
+ max-width: 100%;
49
+ height: 100%;
50
+ max-height: 100%;
51
+ }
52
+ .ard-file-drop-area {
53
+ width: 100%;
54
+ max-width: 100%;
55
+ height: 100%;
56
+ max-height: 100%;
57
+ min-width: var(--ard-file-drop-area-min-width, 15rem);
58
+ min-height: var(--ard-file-drop-area-min-height, 10rem);
59
+ padding: var(--ard-file-drop-area-padding, 0.625rem);
60
+ box-sizing: border-box;
61
+ background: var(--ard-cmpcl--bg-colored-verylight);
62
+ display: flex;
63
+ }
64
+ .ard-file-drop-area.ard-color-none {
65
+ --ard-cmpcl--bg: var(--ard-bg);
66
+ --ard-cmpcl--bg-colored: var(--ard-bg-alt);
67
+ --ard-cmpcl--bg-colored-light: var(--ard-detail-light);
68
+ --ard-cmpcl--bg-header: var(--ard-bg-filled);
69
+ --ard-cmpcl--bg-colored-verylight: var(--ard-bg-darker);
70
+ --ard-cmpcl--on-bg: var(--ard-text);
71
+ --ard-cmpcl--on-bg-colored: var(--ard-text-alt);
72
+ --ard-cmpcl--on-bg-colored-light: var(--ard-text);
73
+ --ard-cmpcl--border: var(--ard-text);
74
+ --ard-cmpcl--border-light: var(--ard-text2);
75
+ --ard-cmpcl--content: var(--ard-text);
76
+ --ard-cmpcl--content-light: var(--ard-text-alt);
77
+ --ard-cmpcl--overlay-rgb: var(--ard-overlay-rgb);
78
+ --ard-cmpcl--overlay: var(--ard-overlay);
79
+ --ard-cmpcl--overlay-colored: var(--ard-overlay);
80
+ --ard-cmpcl--overlay-colored-light: var(--ard-text-alt);
81
+ }
82
+ .ard-file-drop-area.ard-color-primary {
83
+ --ard-cmpcl--bg: rgb(var(--ard-primary-500));
84
+ --ard-cmpcl--bg-colored: rgb(var(--ard-primary-500));
85
+ --ard-cmpcl--bg-colored-light: rgb(var(--ard-primary-100));
86
+ --ard-cmpcl--bg-header: rgb(var(--ard-primary-100));
87
+ --ard-cmpcl--bg-colored-verylight: rgb(var(--ard-primary-50));
88
+ --ard-cmpcl--on-bg: var(--ard-text-alt);
89
+ --ard-cmpcl--on-bg-colored: var(--ard-text-alt);
90
+ --ard-cmpcl--on-bg-colored-light: var(--ard-text);
91
+ --ard-cmpcl--border: rgb(var(--ard-primary-300));
92
+ --ard-cmpcl--border-light: rgb(var(--ard-primary-100));
93
+ --ard-cmpcl--content: rgb(var(--ard-primary-700));
94
+ --ard-cmpcl--content-light: rgb(var(--ard-primary-300));
95
+ --ard-cmpcl--overlay-rgb: var(--ard-primary-500);
96
+ --ard-cmpcl--overlay: var(--ard-overlay);
97
+ --ard-cmpcl--overlay-colored: rgb(var(--ard-primary-700));
98
+ --ard-cmpcl--overlay-colored-light: rgb(var(--ard-primary-100));
99
+ }
100
+ .ard-file-drop-area.ard-color-secondary {
101
+ --ard-cmpcl--bg: rgb(var(--ard-secondary-500));
102
+ --ard-cmpcl--bg-colored: rgb(var(--ard-secondary-500));
103
+ --ard-cmpcl--bg-colored-light: rgb(var(--ard-secondary-50));
104
+ --ard-cmpcl--bg-header: rgb(var(--ard-secondary-50));
105
+ --ard-cmpcl--bg-colored-verylight: rgb(var(--ard-secondary-50));
106
+ --ard-cmpcl--on-bg: var(--ard-text-alt);
107
+ --ard-cmpcl--on-bg-colored: var(--ard-text-alt);
108
+ --ard-cmpcl--on-bg-colored-light: var(--ard-text);
109
+ --ard-cmpcl--border: rgb(var(--ard-secondary-300));
110
+ --ard-cmpcl--border-light: rgb(var(--ard-secondary-100));
111
+ --ard-cmpcl--content: rgb(var(--ard-secondary-700));
112
+ --ard-cmpcl--content-light: rgb(var(--ard-secondary-300));
113
+ --ard-cmpcl--overlay-rgb: var(--ard-secondary-500);
114
+ --ard-cmpcl--overlay: var(--ard-overlay);
115
+ --ard-cmpcl--overlay-colored: rgb(var(--ard-secondary-700));
116
+ --ard-cmpcl--overlay-colored-light: rgb(var(--ard-secondary-100));
117
+ }
118
+ .ard-file-drop-area.ard-color-warn {
119
+ --ard-cmpcl--bg: rgb(var(--ard-warn-500));
120
+ --ard-cmpcl--bg-colored: rgb(var(--ard-warn-500));
121
+ --ard-cmpcl--bg-colored-light: rgb(var(--ard-warn-50));
122
+ --ard-cmpcl--bg-header: rgb(var(--ard-warn-50));
123
+ --ard-cmpcl--bg-colored-verylight: rgb(var(--ard-warn-50));
124
+ --ard-cmpcl--on-bg: var(--ard-text-alt);
125
+ --ard-cmpcl--on-bg-colored: var(--ard-text-alt);
126
+ --ard-cmpcl--on-bg-colored-light: var(--ard-text);
127
+ --ard-cmpcl--border: rgb(var(--ard-warn-300));
128
+ --ard-cmpcl--border-light: rgb(var(--ard-warn-100));
129
+ --ard-cmpcl--content: rgb(var(--ard-warn-700));
130
+ --ard-cmpcl--content-light: rgb(var(--ard-warn-100));
131
+ --ard-cmpcl--overlay-rgb: var(--ard-warn-500);
132
+ --ard-cmpcl--overlay: var(--ard-overlay);
133
+ --ard-cmpcl--overlay-colored: rgb(var(--ard-warn-700));
134
+ --ard-cmpcl--overlay-colored-light: rgb(var(--ard-warn-100));
135
+ }
136
+ .ard-file-drop-area.ard-color-danger {
137
+ --ard-cmpcl--bg: rgb(var(--ard-danger-700));
138
+ --ard-cmpcl--bg-colored: rgb(var(--ard-danger-700));
139
+ --ard-cmpcl--bg-colored-light: rgb(var(--ard-danger-100));
140
+ --ard-cmpcl--bg-header: rgb(var(--ard-danger-100));
141
+ --ard-cmpcl--bg-colored-verylight: rgb(var(--ard-danger-50));
142
+ --ard-cmpcl--on-bg: var(--ard-text-alt);
143
+ --ard-cmpcl--on-bg-colored: var(--ard-text-alt);
144
+ --ard-cmpcl--on-bg-colored-light: var(--ard-text);
145
+ --ard-cmpcl--border: rgb(var(--ard-danger-300));
146
+ --ard-cmpcl--border-light: rgb(var(--ard-danger-100));
147
+ --ard-cmpcl--content: rgb(var(--ard-danger-900));
148
+ --ard-cmpcl--content-light: rgb(var(--ard-danger-500));
149
+ --ard-cmpcl--overlay-rgb: var(--ard-danger-700);
150
+ --ard-cmpcl--overlay: var(--ard-overlay);
151
+ --ard-cmpcl--overlay-colored: rgb(var(--ard-danger-700));
152
+ --ard-cmpcl--overlay-colored-light: rgb(var(--ard-danger-300));
153
+ }
154
+ .ard-file-drop-area.ard-color-success {
155
+ --ard-cmpcl--bg: rgb(var(--ard-success-700));
156
+ --ard-cmpcl--bg-colored: rgb(var(--ard-success-700));
157
+ --ard-cmpcl--bg-colored-light: rgb(var(--ard-success-50));
158
+ --ard-cmpcl--bg-header: rgb(var(--ard-success-50));
159
+ --ard-cmpcl--bg-colored-verylight: rgb(var(--ard-success-50));
160
+ --ard-cmpcl--on-bg: var(--ard-text-alt);
161
+ --ard-cmpcl--on-bg-colored: var(--ard-text-alt);
162
+ --ard-cmpcl--on-bg-colored-light: var(--ard-text);
163
+ --ard-cmpcl--border: rgb(var(--ard-success-300));
164
+ --ard-cmpcl--border-light: rgb(var(--ard-success-100));
165
+ --ard-cmpcl--content: rgb(var(--ard-success-900));
166
+ --ard-cmpcl--content-light: rgb(var(--ard-success-300));
167
+ --ard-cmpcl--overlay-rgb: var(--ard-success-700);
168
+ --ard-cmpcl--overlay: var(--ard-overlay);
169
+ --ard-cmpcl--overlay-colored: rgb(var(--ard-success-700));
170
+ --ard-cmpcl--overlay-colored-light: rgb(var(--ard-success-300));
171
+ }
172
+ .ard-file-drop-area.ard-color-info {
173
+ --ard-cmpcl--bg: rgb(var(--ard-info-500));
174
+ --ard-cmpcl--bg-colored: rgb(var(--ard-info-500));
175
+ --ard-cmpcl--bg-colored-light: rgb(var(--ard-info-50));
176
+ --ard-cmpcl--bg-header: rgb(var(--ard-info-50));
177
+ --ard-cmpcl--bg-colored-verylight: rgb(var(--ard-info-50));
178
+ --ard-cmpcl--on-bg: var(--ard-text-alt);
179
+ --ard-cmpcl--on-bg-colored: var(--ard-text-alt);
180
+ --ard-cmpcl--on-bg-colored-light: var(--ard-text);
181
+ --ard-cmpcl--border: rgb(var(--ard-info-300));
182
+ --ard-cmpcl--border-light: rgb(var(--ard-info-100));
183
+ --ard-cmpcl--content: rgb(var(--ard-info-700));
184
+ --ard-cmpcl--content-light: rgb(var(--ard-info-300));
185
+ --ard-cmpcl--overlay-rgb: var(--ard-info-500);
186
+ --ard-cmpcl--overlay: var(--ard-overlay);
187
+ --ard-cmpcl--overlay-colored: rgb(var(--ard-info-700));
188
+ --ard-cmpcl--overlay-colored-light: rgb(var(--ard-info-100));
189
+ }
190
+ .ard-file-drop-area.ard-color-currentColor {
191
+ --ard-cmpcl--bg: var(--ard-bg);
192
+ --ard-cmpcl--bg-colored: currentColor;
193
+ --ard-cmpcl--on-bg: currentColor;
194
+ --ard-cmpcl--on-bg-colored: var(--ard-text-alt);
195
+ --ard-cmpcl--border: currentColor;
196
+ --ard-cmpcl--border-light: currentColor;
197
+ --ard-cmpcl--content: currentColor;
198
+ --ard-cmpcl--content-light: currentColor;
199
+ --ard-cmpcl--overlay-rgb: var(--ard-overlay-rgb);
200
+ --ard-cmpcl--overlay: var(--ard-overlay);
201
+ --ard-cmpcl--overlay-colored: currentColor;
202
+ --ard-cmpcl--overlay-colored-light: currentColor;
203
+ }
204
+ .ard-file-drop-area .ard-file-drop-area-outline {
205
+ width: 100%;
206
+ min-height: 100%;
207
+ box-sizing: border-box;
208
+ border: var(--ard-file-drop-area-outline-border-width, 2px) var(--ard-file-drop-area-outline-border-style, dashed) var(--ard-cmpcl--border);
209
+ padding: var(--ard-file-drop-area-outline-padding, 0.375rem);
210
+ pointer-events: none;
211
+ }
212
+ .ard-file-drop-area .ard-file-drop-area-outline * {
213
+ pointer-events: none;
214
+ user-select: none;
215
+ }
216
+ .ard-file-drop-area .ard-file-drop-area-content {
217
+ height: 100%;
218
+ display: flex;
219
+ flex-direction: column;
220
+ align-items: center;
221
+ justify-content: center;
222
+ gap: clamp(var(--ard-file-drop-area-content-gap-min, 0.2rem), var(--ard-file-drop-area-content-gap-preferred, 10%), var(--ard-file-drop-area-content-gap-max, 1rem));
223
+ padding: var(--ard-file-drop-area-content-padding, 0.2rem 0);
224
+ box-sizing: border-box;
225
+ }
226
+ .ard-file-drop-area .ard-file-drop-area-icon {
227
+ font-size: var(--ard-file-drop-area-icon-font-size, 220%);
228
+ }
229
+ .ard-file-drop-area .ard-file-drop-area-drop-text {
230
+ font-weight: var(--ard-file-drop-area-drop-text-font-weight, 500);
231
+ font-size: var(--ard-file-drop-area-drop-text-font-size, 105%);
232
+ }
233
+ .ard-file-drop-area .ard-file-drop-area-or-text {
234
+ font-weight: var(--ard-file-drop-area-or-text-font-weight, 400);
235
+ font-size: var(--ard-file-drop-area-or-text-font-size, 95%);
236
+ }
237
+ .ard-file-drop-area .ard-file-drop-area-browse-button > button {
238
+ border: 1px solid var(--ard-cmpcl--border);
239
+ pointer-events: all;
240
+ }
241
+ .ard-file-drop-area .ard-file-drop-area-dragover-text {
242
+ font-weight: var(--ard-file-drop-area-dragover-text-font-weight, 500);
243
+ font-size: var(--ard-file-drop-area-dragover-text-font-size, 105%);
244
+ }
245
+ .ard-file-drop-area .ard-file-drop-area-dragover-amount {
246
+ font-weight: var(--ard-file-drop-area-dragover-amount-font-weight, 600);
247
+ font-size: var(--ard-file-drop-area-dragover-amount-font-size, 120%);
248
+ }
249
+ .ard-file-drop-area .ard-file-drop-area-uploaded-container {
250
+ max-height: 100%;
251
+ height: 100%;
252
+ width: 100%;
253
+ display: grid;
254
+ grid-template-columns: 1fr;
255
+ grid-template-rows: max-content 1fr;
256
+ gap: var(--ard-file-drop-area-uploaded-container-gap, 0.75rem);
257
+ justify-items: center;
258
+ }
259
+ .ard-file-drop-area .ard-file-drop-area-uploaded-message {
260
+ font-weight: var(--ard-file-drop-area-uploaded-message-font-weight, 500);
261
+ font-size: var(--ard-file-drop-area-uploaded-message-font-size, 105%);
262
+ }
263
+ .ard-file-drop-area .ard-file-drop-area-uploaded-amount {
264
+ font-weight: var(--ard-file-drop-area-uploaded-amount-font-weight, 600);
265
+ font-size: var(--ard-file-drop-area-uploaded-amount-font-size, 100%);
266
+ }
267
+ .ard-file-drop-area .ard-file-drop-area-uploaded-files {
268
+ max-width: 100%;
269
+ width: 100%;
270
+ display: flex;
271
+ flex-direction: column;
272
+ align-items: flex-start;
273
+ gap: var(--ard-file-drop-area-uploaded-files-gap, 0.45rem);
274
+ overflow: hidden auto;
275
+ box-sizing: border-box;
276
+ }
277
+ .ard-file-drop-area .ard-file-drop-area-uploaded-files .ard-file-drop-area-file {
278
+ max-width: 100%;
279
+ display: grid;
280
+ align-items: center;
281
+ grid-template-columns: max-content 1fr;
282
+ gap: var(--ard-file-drop-area-file-gap, 0.75rem);
283
+ max-height: min-content;
284
+ }
285
+ .ard-file-drop-area .ard-file-drop-area-uploaded-files .ard-file-drop-area-file ard-icon {
286
+ font-size: var(--ard-file-drop-area-file-icon-font-size, 220%);
287
+ }
288
+ .ard-file-drop-area .ard-file-drop-area-uploaded-files .ard-file-drop-area-file .ard-file-drop-area-file-info {
289
+ display: flex;
290
+ flex-direction: column;
291
+ line-height: 1;
292
+ gap: var(--ard-file-drop-area-file-info-gap, 0.5ch);
293
+ }
294
+ .ard-file-drop-area .ard-file-drop-area-uploaded-files .ard-file-drop-area-file .ard-file-drop-area-filename {
295
+ max-width: 100%;
296
+ display: grid;
297
+ grid-template-columns: 1fr max-content;
298
+ gap: var(--ard-file-drop-area-filename-gap, 0);
299
+ }
300
+ .ard-file-drop-area .ard-file-drop-area-uploaded-files .ard-file-drop-area-file .ard-file-drop-area-filename-name {
301
+ max-width: 100%;
302
+ line-height: var(--ard-file-drop-area-filename-name-line-height, 1);
303
+ text-overflow: ellipsis;
304
+ overflow: hidden;
305
+ white-space: nowrap;
306
+ height: var(--ard-file-drop-area-filename-name-height, 1em);
307
+ }
308
+ .ard-file-drop-area .ard-file-drop-area-uploaded-files .ard-file-drop-area-file .ard-file-drop-area-filesize {
309
+ font-weight: var(--ard-file-drop-area-filesize-font-weight, 500);
310
+ font-size: var(--ard-file-drop-area-filesize-font-size, 83%);
311
+ opacity: var(--ard-file-drop-area-filesize-opacity, 60%);
312
+ }
313
+ .ard-file-drop-area.ard-variant-rounded, .ard-file-drop-area.ard-variant-pill {
314
+ border-radius: var(--ard-file-drop-area-variant-rounded-corner-radius, 0.875rem);
315
+ }
316
+ .ard-file-drop-area.ard-variant-rounded .ard-file-drop-area-outline, .ard-file-drop-area.ard-variant-pill .ard-file-drop-area-outline {
317
+ border-radius: var(--ard-file-drop-area-outline-corner-radius, 0.25rem);
318
+ }
319
+ .ard-file-drop-area.ard-variant-sharp {
320
+ border-radius: 0;
321
+ }
322
+ .ard-file-drop-area.ard-compact {
323
+ font-size: var(--ard-file-drop-area-font-size-compact, 85%);
324
+ min-width: var(--ard-file-drop-area-min-width-compact, 12rem);
325
+ min-height: var(--ard-file-drop-area-min-height-compact, 8rem);
326
+ }
327
+ .ard-file-drop-area.ard-compact .ard-file-drop-area-content {
328
+ gap: clamp(var(--ard-file-drop-area-content-gap-min-compact, 0.1667rem), var(--ard-file-drop-area-content-gap-preferred-compact, 10%), var(--ard-file-drop-area-content-gap-max-compact, 0.75rem));
329
+ }
330
+ }
331
+
332
+ /*# sourceMappingURL=file-drop-area.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../projects/ui/src/themes/default/file-drop-area.scss","../../../../projects/ui/src/themes/default/_coloring.scss"],"names":[],"mappings":"AAEA;EAGE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;;EAGF;IAEE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;ECjEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EDvEA;IACE;IACA;IACA;IACA;IAEA;IACA;;EAEA;IACE;IACA;;EAGJ;IACE;IACA;IACA;IACA;IACA;IACA;IAKA;IACA;;EAKF;IACE;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAGF;IACE;IACA;;EAEF;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;;EAEF;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;;EAMN;IAEE;;EAEA;IACE;;EAGJ;IACE;;EAGF;IACE;IACA;IACA;;EAEA;IACE","file":"file-drop-area.css"}