@ardium-ui/ui 5.0.0-alpha.9 → 5.0.0-alpha.90

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 (306) hide show
  1. package/fesm2022/ardium-ui-ui.mjs +5072 -2571
  2. package/fesm2022/ardium-ui-ui.mjs.map +1 -1
  3. package/lib/_internal/boolean-component.d.ts +13 -1
  4. package/lib/_internal/disablable-component.d.ts +2 -1
  5. package/lib/_internal/focusable-component.d.ts +2 -1
  6. package/lib/_internal/form-field-component.d.ts +3 -2
  7. package/lib/_internal/item-storages/dropdown-item-storage.d.ts +21 -21
  8. package/lib/_internal/item-storages/simple-item-storage.d.ts +15 -12
  9. package/lib/_internal/item-storages/simplest-item-storage.d.ts +1 -1
  10. package/lib/_internal/ngmodel-component.d.ts +8 -9
  11. package/lib/_internal/selectable-list-component.d.ts +6 -6
  12. package/lib/_internal/utils/date.utils.d.ts +16 -0
  13. package/lib/badge/badge.directive.d.ts +3 -2
  14. package/lib/breakpoints/breakpoint.service.d.ts +12 -0
  15. package/lib/breakpoints/breakpoint.utils.d.ts +7 -0
  16. package/lib/breakpoints/breakpoints.d.ts +13 -0
  17. package/lib/breakpoints/index.d.ts +2 -0
  18. package/lib/buttons/_button-base.d.ts +12 -8
  19. package/lib/buttons/_button-base.defaults.d.ts +3 -2
  20. package/lib/buttons/button/button.component.d.ts +5 -5
  21. package/lib/buttons/button/button.defaults.d.ts +0 -2
  22. package/lib/buttons/button/button.directive.d.ts +17 -0
  23. package/lib/buttons/button/button.module.d.ts +3 -2
  24. package/lib/buttons/button/index.d.ts +1 -0
  25. package/lib/buttons/fab/fab.component.d.ts +3 -1
  26. package/lib/buttons/icon-button/icon-button.component.d.ts +6 -4
  27. package/lib/buttons/icon-button/icon-button.defaults.d.ts +2 -1
  28. package/lib/calendar/abstract-calendar.d.ts +128 -0
  29. package/lib/calendar/calendar.component.d.ts +8 -96
  30. package/lib/calendar/calendar.defaults.d.ts +16 -1
  31. package/lib/calendar/calendar.internal-directives.d.ts +24 -8
  32. package/lib/calendar/calendar.internal-types.d.ts +1 -0
  33. package/lib/calendar/calendar.module.d.ts +4 -9
  34. package/lib/calendar/calendar.types.d.ts +21 -5
  35. package/lib/calendar/index.d.ts +3 -0
  36. package/lib/calendar/range-calendar.component.d.ts +16 -0
  37. package/lib/calendar/range-calendar.directives.d.ts +51 -0
  38. package/lib/calendar/range-calendar.module.d.ts +10 -0
  39. package/lib/calendar/views/calendar-views.module.d.ts +13 -0
  40. package/lib/calendar/views/days-view/days-view.component.d.ts +20 -2
  41. package/lib/calendar/views/days-view/days-view.helpers.d.ts +2 -2
  42. package/lib/calendar/views/months-view/months-view.component.d.ts +15 -3
  43. package/lib/calendar/views/years-view/years-view.component.d.ts +16 -3
  44. package/lib/checkbox/checkbox.component.d.ts +5 -2
  45. package/lib/checkbox/checkbox.types.d.ts +2 -0
  46. package/lib/checkbox-list/checkbox-list.component.d.ts +9 -7
  47. package/lib/checkbox-list/checkbox-list.directives.d.ts +7 -0
  48. package/lib/checkbox-list/checkbox-list.module.d.ts +1 -1
  49. package/lib/chip/chip.component.d.ts +2 -1
  50. package/lib/chip/deletable-chip/deletable-chip.component.d.ts +2 -1
  51. package/lib/chip/selectable-chip/selectable-chip.component.d.ts +5 -2
  52. package/lib/dialog/dialog.component.d.ts +13 -8
  53. package/lib/dialog/dialog.types.d.ts +1 -0
  54. package/lib/divider/divider.component.d.ts +2 -3
  55. package/lib/divider/divider.defaults.d.ts +5 -0
  56. package/lib/divider/divider.directive.d.ts +18 -0
  57. package/lib/divider/divider.module.d.ts +3 -2
  58. package/lib/divider/divider.types.d.ts +5 -0
  59. package/lib/divider/index.d.ts +2 -0
  60. package/lib/dropdown-panel/dropdown-panel.component.d.ts +2 -1
  61. package/lib/dropdown-panel/dropdown-panel.types.d.ts +1 -1
  62. package/lib/file-inputs/file-input/file-input.component.d.ts +2 -1
  63. package/lib/file-inputs/file-input-base.d.ts +4 -5
  64. package/lib/form-field/auto-error/auto-error.component.d.ts +19 -0
  65. package/lib/form-field/auto-error/auto-error.provider.d.ts +7 -0
  66. package/lib/form-field/error/error.directive.d.ts +3 -2
  67. package/lib/form-field/form-field-base.d.ts +5 -2
  68. package/lib/form-field/form-field-child.token.d.ts +5 -5
  69. package/lib/form-field/form-field-native-inputs.d.ts +6 -11
  70. package/lib/form-field/form-field.component.d.ts +1 -1
  71. package/lib/form-field/form-field.defaults.d.ts +1 -0
  72. package/lib/form-field/form-field.module.d.ts +5 -4
  73. package/lib/form-field/hint/hint.directive.d.ts +3 -2
  74. package/lib/form-field/hint-error/hint-error.directive.d.ts +3 -2
  75. package/lib/form-field/horizontal-form-field.component.d.ts +1 -1
  76. package/lib/form-field/index.d.ts +2 -0
  77. package/lib/form-field/label/label.component.d.ts +3 -2
  78. package/lib/form-field-frame/form-field-frame.component.d.ts +5 -3
  79. package/lib/grid/grid.component.d.ts +51 -0
  80. package/lib/grid/grid.defaults.d.ts +16 -0
  81. package/lib/grid/grid.module.d.ts +7 -0
  82. package/lib/grid/grid.types.d.ts +38 -0
  83. package/lib/grid/grid.utils.d.ts +11 -0
  84. package/lib/grid/index.d.ts +4 -0
  85. package/lib/icon/icon.component.d.ts +2 -1
  86. package/lib/inputs/_simple-input-base.d.ts +9 -4
  87. package/lib/inputs/autocomplete-input/autocomplete-input.component.d.ts +5 -4
  88. package/lib/inputs/date-input/abstract-date-input.d.ts +112 -0
  89. package/lib/inputs/date-input/date-input.component.d.ts +19 -81
  90. package/lib/inputs/date-input/date-input.defaults.d.ts +21 -3
  91. package/lib/inputs/date-input/{date-input.directive.d.ts → date-input.directives.d.ts} +2 -2
  92. package/lib/inputs/date-input/date-input.module.d.ts +5 -4
  93. package/lib/inputs/date-input/date-input.serializers.d.ts +4 -2
  94. package/lib/inputs/date-input/date-input.types.d.ts +5 -4
  95. package/lib/inputs/date-input/date-range-input.component.d.ts +30 -0
  96. package/lib/inputs/date-input/date-range-input.directives.d.ts +82 -0
  97. package/lib/inputs/date-input/date-range-input.module.d.ts +17 -0
  98. package/lib/inputs/date-input/index.d.ts +7 -1
  99. package/lib/inputs/date-input/multipage-date-range-input.component.d.ts +45 -0
  100. package/lib/inputs/date-input/multipage-date-range-input.directives.d.ts +82 -0
  101. package/lib/inputs/date-input/multipage-date-range-input.module.d.ts +17 -0
  102. package/lib/inputs/digit-input/digit-input.component.d.ts +4 -3
  103. package/lib/inputs/hex-input/hex-input.component.d.ts +5 -5
  104. package/lib/inputs/input-types.d.ts +9 -0
  105. package/lib/inputs/input-utils.d.ts +13 -2
  106. package/lib/inputs/number-input/number-input.component.d.ts +20 -13
  107. package/lib/inputs/number-input/number-input.defaults.d.ts +6 -0
  108. package/lib/inputs/number-input/number-input.directives.d.ts +12 -0
  109. package/lib/inputs/number-input/number-input.module.d.ts +1 -1
  110. package/lib/inputs/number-input/number-input.types.d.ts +6 -0
  111. package/lib/inputs/password-input/password-input.component.d.ts +6 -5
  112. package/lib/kbd/kbd.component.d.ts +2 -1
  113. package/lib/kbd-shortcut/kbd-shortcut.component.d.ts +2 -1
  114. package/lib/modal/modal.component.d.ts +9 -6
  115. package/lib/modal/modal.defaults.d.ts +2 -0
  116. package/lib/option/option.component.d.ts +2 -1
  117. package/lib/progress-bar/progress-bar.component.d.ts +4 -3
  118. package/lib/progress-circle/progress-circle.component.d.ts +5 -4
  119. package/lib/radio/radio/radio.component.d.ts +8 -3
  120. package/lib/radio/radio-group.component.d.ts +2 -2
  121. package/lib/search-functions.d.ts +1 -1
  122. package/lib/segment/segment.component.d.ts +6 -5
  123. package/lib/select/select.component.d.ts +45 -39
  124. package/lib/select/select.defaults.d.ts +4 -2
  125. package/lib/select/select.directive.d.ts +6 -0
  126. package/lib/select/select.module.d.ts +1 -1
  127. package/lib/select/select.types.d.ts +6 -2
  128. package/lib/slide-toggle/slide-toggle.component.d.ts +2 -0
  129. package/lib/slider/abstract-slider.d.ts +37 -29
  130. package/lib/slider/index.d.ts +1 -0
  131. package/lib/slider/range-slider/range-slider.component.d.ts +12 -9
  132. package/lib/slider/range-slider/range-slider.types.d.ts +6 -0
  133. package/lib/slider/slider.component.d.ts +5 -4
  134. package/lib/slider/slider.types.d.ts +3 -3
  135. package/lib/snackbar/snackbar-ref.d.ts +37 -4
  136. package/lib/snackbar/snackbar.service.d.ts +27 -0
  137. package/lib/snackbar/snackbar.types.d.ts +36 -0
  138. package/lib/star/rating-display/rating-display.component.d.ts +2 -1
  139. package/lib/star/rating-input/rating-input.component.d.ts +5 -3
  140. package/lib/star/rating-input/rating-input.defaults.d.ts +2 -2
  141. package/lib/star/star-button/star-button.component.d.ts +4 -1
  142. package/lib/star/star-button/star-button.types.d.ts +1 -0
  143. package/lib/tabber/index.d.ts +2 -1
  144. package/lib/tabber/tab/tab.component.d.ts +16 -8
  145. package/lib/tabber/tabber.component.d.ts +25 -9
  146. package/lib/tabber/tabber.defaults.d.ts +2 -0
  147. package/lib/tabber/tabber.directives.d.ts +9 -0
  148. package/lib/tabber/tabber.module.d.ts +3 -2
  149. package/lib/tabber/tabber.types.d.ts +5 -0
  150. package/lib/table/table.component.d.ts +16 -15
  151. package/lib/table-pagination/table-pagination.component.d.ts +4 -3
  152. package/lib/text-list/text-list.component.d.ts +2 -1
  153. package/lib/types/alignment.types.d.ts +7 -1
  154. package/lib/types/item-storage.types.d.ts +29 -18
  155. package/lib/types/theming.types.d.ts +1 -0
  156. package/package.json +3 -2
  157. package/prebuilt-themes/default/badge.css +234 -205
  158. package/prebuilt-themes/default/badge.css.map +1 -1
  159. package/prebuilt-themes/default/buttons/button.css +324 -301
  160. package/prebuilt-themes/default/buttons/button.css.map +1 -1
  161. package/prebuilt-themes/default/buttons/fab.css +317 -299
  162. package/prebuilt-themes/default/buttons/fab.css.map +1 -1
  163. package/prebuilt-themes/default/buttons/icon-button.css +299 -287
  164. package/prebuilt-themes/default/buttons/icon-button.css.map +1 -1
  165. package/prebuilt-themes/default/calendar.css +390 -308
  166. package/prebuilt-themes/default/calendar.css.map +1 -1
  167. package/prebuilt-themes/default/card.css +151 -127
  168. package/prebuilt-themes/default/card.css.map +1 -1
  169. package/prebuilt-themes/default/checkbox-list.css +89 -62
  170. package/prebuilt-themes/default/checkbox-list.css.map +1 -1
  171. package/prebuilt-themes/default/checkbox.css +349 -362
  172. package/prebuilt-themes/default/checkbox.css.map +1 -1
  173. package/prebuilt-themes/default/chips.css +412 -359
  174. package/prebuilt-themes/default/chips.css.map +1 -1
  175. package/prebuilt-themes/default/color-display.css +34 -26
  176. package/prebuilt-themes/default/color-display.css.map +1 -1
  177. package/prebuilt-themes/default/color-picker.css +105 -103
  178. package/prebuilt-themes/default/color-picker.css.map +1 -1
  179. package/prebuilt-themes/default/core.css +108 -86
  180. package/prebuilt-themes/default/core.css.map +1 -1
  181. package/prebuilt-themes/default/dialog.css +19 -15
  182. package/prebuilt-themes/default/dialog.css.map +1 -1
  183. package/prebuilt-themes/default/divider.css +84 -8
  184. package/prebuilt-themes/default/divider.css.map +1 -1
  185. package/prebuilt-themes/default/dropdown-panel.css +42 -34
  186. package/prebuilt-themes/default/dropdown-panel.css.map +1 -1
  187. package/prebuilt-themes/default/file-drop-area.css +329 -276
  188. package/prebuilt-themes/default/file-drop-area.css.map +1 -1
  189. package/prebuilt-themes/default/form-field-frame.css +102 -98
  190. package/prebuilt-themes/default/form-field-frame.css.map +1 -1
  191. package/prebuilt-themes/default/form-field.css +148 -118
  192. package/prebuilt-themes/default/form-field.css.map +1 -1
  193. package/prebuilt-themes/default/inputs/autocomplete-input.css +183 -132
  194. package/prebuilt-themes/default/inputs/autocomplete-input.css.map +1 -1
  195. package/prebuilt-themes/default/inputs/color-input.css +99 -137
  196. package/prebuilt-themes/default/inputs/color-input.css.map +1 -1
  197. package/prebuilt-themes/default/inputs/date-input.css +134 -63
  198. package/prebuilt-themes/default/inputs/date-input.css.map +1 -1
  199. package/prebuilt-themes/default/inputs/digit-input.css +120 -110
  200. package/prebuilt-themes/default/inputs/digit-input.css.map +1 -1
  201. package/prebuilt-themes/default/inputs/file-input.css +385 -325
  202. package/prebuilt-themes/default/inputs/file-input.css.map +1 -1
  203. package/prebuilt-themes/default/inputs/hex-input.css +150 -117
  204. package/prebuilt-themes/default/inputs/hex-input.css.map +1 -1
  205. package/prebuilt-themes/default/inputs/input.css +137 -107
  206. package/prebuilt-themes/default/inputs/input.css.map +1 -1
  207. package/prebuilt-themes/default/inputs/number-input.css +213 -164
  208. package/prebuilt-themes/default/inputs/number-input.css.map +1 -1
  209. package/prebuilt-themes/default/inputs/password-input.css +120 -71
  210. package/prebuilt-themes/default/inputs/password-input.css.map +1 -1
  211. package/prebuilt-themes/default/kbd-shortcut.css +14 -9
  212. package/prebuilt-themes/default/kbd-shortcut.css.map +1 -1
  213. package/prebuilt-themes/default/kbd.css +26 -15
  214. package/prebuilt-themes/default/kbd.css.map +1 -1
  215. package/prebuilt-themes/default/modal.css +96 -71
  216. package/prebuilt-themes/default/modal.css.map +1 -1
  217. package/prebuilt-themes/default/progress-bar.css +250 -228
  218. package/prebuilt-themes/default/progress-bar.css.map +1 -1
  219. package/prebuilt-themes/default/progress-circle.css +178 -164
  220. package/prebuilt-themes/default/progress-circle.css.map +1 -1
  221. package/prebuilt-themes/default/radio.css +246 -223
  222. package/prebuilt-themes/default/radio.css.map +1 -1
  223. package/prebuilt-themes/default/segment.css +432 -414
  224. package/prebuilt-themes/default/segment.css.map +1 -1
  225. package/prebuilt-themes/default/select.css +302 -270
  226. package/prebuilt-themes/default/select.css.map +1 -1
  227. package/prebuilt-themes/default/slide-toggle.css +319 -261
  228. package/prebuilt-themes/default/slide-toggle.css.map +1 -1
  229. package/prebuilt-themes/default/slider.css +399 -351
  230. package/prebuilt-themes/default/slider.css.map +1 -1
  231. package/prebuilt-themes/default/snackbar.css +189 -169
  232. package/prebuilt-themes/default/snackbar.css.map +1 -1
  233. package/prebuilt-themes/default/spinner.css +161 -148
  234. package/prebuilt-themes/default/spinner.css.map +1 -1
  235. package/prebuilt-themes/default/stars.css +271 -246
  236. package/prebuilt-themes/default/stars.css.map +1 -1
  237. package/prebuilt-themes/default/tabber.css +250 -207
  238. package/prebuilt-themes/default/tabber.css.map +1 -1
  239. package/prebuilt-themes/default/table-pagination.css +57 -45
  240. package/prebuilt-themes/default/table-pagination.css.map +1 -1
  241. package/prebuilt-themes/default/table.css +464 -432
  242. package/prebuilt-themes/default/table.css.map +1 -1
  243. package/public-api.d.ts +2 -1
  244. package/themes/_variables.scss +2 -1
  245. package/themes/default/_coloring.scss +7 -0
  246. package/themes/default/_mixins.scss +5 -5
  247. package/themes/default/badge.scss +115 -80
  248. package/themes/default/buttons/_button-mixins.scss +43 -33
  249. package/themes/default/buttons/button.scss +90 -63
  250. package/themes/default/buttons/fab.scss +74 -49
  251. package/themes/default/buttons/icon-button.scss +70 -45
  252. package/themes/default/calendar.scss +257 -163
  253. package/themes/default/card.scss +167 -121
  254. package/themes/default/checkbox-list.scss +90 -62
  255. package/themes/default/checkbox.scss +64 -91
  256. package/themes/default/chips.scss +203 -143
  257. package/themes/default/color-display.scss +40 -28
  258. package/themes/default/color-picker.scss +95 -93
  259. package/themes/default/core.scss +123 -97
  260. package/themes/default/dialog.scss +22 -13
  261. package/themes/default/divider.scss +109 -7
  262. package/themes/default/dropdown-panel.scss +49 -34
  263. package/themes/default/file-drop-area.scss +197 -138
  264. package/themes/default/form-field-frame.scss +73 -63
  265. package/themes/default/form-field.scss +136 -98
  266. package/themes/default/inputs/_shared.scss +52 -12
  267. package/themes/default/inputs/autocomplete-input.scss +102 -31
  268. package/themes/default/inputs/color-input.scss +34 -32
  269. package/themes/default/inputs/date-input.scss +90 -20
  270. package/themes/default/inputs/digit-input.scss +103 -79
  271. package/themes/default/inputs/file-input.scss +160 -81
  272. package/themes/default/inputs/hex-input.scss +68 -16
  273. package/themes/default/inputs/input.scss +55 -6
  274. package/themes/default/inputs/number-input.scss +164 -92
  275. package/themes/default/inputs/password-input.scss +100 -29
  276. package/themes/default/kbd-shortcut.scss +16 -8
  277. package/themes/default/kbd.scss +35 -16
  278. package/themes/default/modal.scss +109 -73
  279. package/themes/default/progress-bar.scss +126 -102
  280. package/themes/default/progress-circle.scss +49 -41
  281. package/themes/default/radio.scss +110 -87
  282. package/themes/default/segment.scss +282 -267
  283. package/themes/default/select.scss +255 -197
  284. package/themes/default/slide-toggle.scss +193 -116
  285. package/themes/default/slider.scss +230 -187
  286. package/themes/default/snackbar.scss +52 -32
  287. package/themes/default/spinner.scss +24 -14
  288. package/themes/default/stars.scss +99 -68
  289. package/themes/default/tabber.scss +109 -67
  290. package/themes/default/table-pagination.scss +60 -44
  291. package/themes/default/table.scss +379 -343
  292. package/lib/statebox/index.d.ts +0 -4
  293. package/lib/statebox/statebox.component.d.ts +0 -26
  294. package/lib/statebox/statebox.defaults.d.ts +0 -10
  295. package/lib/statebox/statebox.module.d.ts +0 -8
  296. package/lib/statebox/statebox.types.d.ts +0 -26
  297. package/lib/tabber/tab/tab.defaults.d.ts +0 -6
  298. package/prebuilt-themes/default/calendar-OLD.css +0 -294
  299. package/prebuilt-themes/default/calendar-OLD.css.map +0 -1
  300. package/prebuilt-themes/default/inputs/search-bar.css +0 -118
  301. package/prebuilt-themes/default/inputs/search-bar.css.map +0 -1
  302. package/prebuilt-themes/default/statebox.css +0 -235
  303. package/prebuilt-themes/default/statebox.css.map +0 -1
  304. package/themes/default/calendar-OLD.scss +0 -183
  305. package/themes/default/inputs/search-bar.scss +0 -19
  306. package/themes/default/statebox.scss +0 -109
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/file-input.scss","../../../../../projects/ui/src/themes/default/_coloring.scss","../../../../../projects/ui/src/themes/default/_mixins.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACKE;EACE;;;AAGJ;EDLE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ECDA;EACA;EACA;EACA;EACA;EACA;;AChBA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AFrHF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AC1BF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EErCF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EF8BI,YGlDI;EHmDJ;;AAGA;EACE;;AAIF;EACE;;AAIF;EACE;;AAIF;EACE;;AIpEN;EACE,QDkCgB;ECjChB,ODiCgB;EChChB;;AAGF;EACE;EACA;EACA,ODGK;ECFL,ODyBgB;ECxBhB,QDwBgB;ECvBhB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EFvBF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EEgBI;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EF7CN;EACA;EACA,yBACE;EE4CI;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE;;AJWN;EACE;;AAEF;AAAA;AAAA;AAAA;AAAA;EAKE;EACA;EACA;;AAEF;EACE;EACA;EACA;;;AAGJ;EACE;;;AAIE;AAAA;EAEE,OGxBM","file":"file-input.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/file-input.scss","../../../../../projects/ui/src/themes/default/_coloring.scss","../../../../../projects/ui/src/themes/default/_mixins.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACIA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;IAEA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAGA;IAEA;IACA;IACA;IACA;IACA;IACA;;EAIA;IACE;;EAGJ;IDlCA,QCoCI;IDnCJ;IACA;IACA;IACA;IACA;IACA,KCgCI;ID/BJ;IACA;IACA,WC8BI;ID7BJ,aC+BI;ID9BJ,aCgCI;ID/BJ,cCmCI;IDlCJ,eCgCI;ID/BJ,aC8BI;ID7BJ,gBC+BI;ID9BJ,OCoCI;IAKF;IACA;IACA;IACA;IACA;;ED3CF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA,SCoBA;IDnBA,OCkBA;IDjBA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE,QClBE;IDmBF,WChBE;IDiBF,aCfE;IDgBF,cCPE;IDQF,eCVE;IDWF,aCZE;IDaF,gBCXE;;ECzEJ;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;;EDpDA;IACE;IACA;;EAGF;IACE;;EAIF;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IE7GJ;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFsGM;IACA;;EAGA;IACE;;EAIF;IACE;;EAIF;IACE;;EAIF;IACE;;EG5IR;IACE,QCmCgB;IDlChB,OCkCgB;IDjChB;;EAGF;IACE;IACA;IACA,OCGK;IDFL,OC0BgB;IDzBhB,QCyBgB;IDxBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IDvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;ICgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;ID7CN;IACA;IACA,yBACE;IC4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE;;EHmFJ;IACE;;EAEF;AAAA;AAAA;AAAA;AAAA;IAKE;IACA;IACA;;EAEF;IACE;IACA;;EAEA;IACE;;EAEF;IACE;;EAIN;IACE;;EAIE;AAAA;IAEE","file":"file-input.css"}
@@ -1,123 +1,156 @@
1
1
  /**
2
2
  * Should be applied to the first element in the component's template.
3
3
  */
4
- .ard-hex-input {
5
- position: relative;
6
- font-family: "Roboto", sans-serif;
7
- display: flex;
8
- align-items: center;
9
- justify-content: stretch;
10
- gap: 0.625em;
11
- cursor: text;
12
- box-sizing: border-box;
13
- font-size: 1rem;
14
- line-height: 1.25em;
15
- padding: 0 0.375rem;
16
- min-width: 10rem;
17
- max-width: 100%;
18
- }
19
- .ard-hex-input .ard-input-container {
20
- flex-grow: 1;
21
- text-size-adjust: 100%;
22
- display: flex;
23
- align-items: center;
24
- }
25
- .ard-hex-input .ard-input-container .ard-placeholder {
26
- font: inherit;
27
- opacity: 60%;
28
- white-space: nowrap;
29
- overflow: hidden;
30
- text-overflow: ellipsis;
31
- max-width: 100%;
32
- pointer-events: none;
33
- }
34
- .ard-hex-input .ard-input-container input {
35
- border: none;
36
- background: transparent;
37
- outline: none;
38
- font: inherit;
39
- padding: 0;
40
- display: block;
41
- width: 100%;
42
- }
43
- .ard-hex-input.ard-compact {
44
- height: 1.5625em;
45
- font-size: 0.85em;
46
- line-height: 1;
47
- }
48
- .ard-hex-input ard-clear-button {
49
- height: var(--ard-clear-button-size);
50
- width: var(--ard-clear-button-size);
51
- position: relative;
52
- }
53
- .ard-hex-input .ard-clear-btn-wrapper {
54
- cursor: pointer;
55
- font-size: medium;
56
- color: var(--ard-detail);
57
- width: var(--ard-clear-button-size);
58
- height: var(--ard-clear-button-size);
59
- line-height: 1em;
60
- border-radius: 999px;
61
- border: none;
62
- padding: 0;
63
- background: transparent;
64
- position: absolute;
65
- left: 50%;
66
- top: 50%;
67
- transform: translate(-50%, -50%);
68
- outline: none;
69
- color: inherit;
70
- }
71
- .ard-hex-input .ard-clear-btn-wrapper .ard-hitbox {
72
- position: absolute;
73
- left: -1px;
74
- right: -1px;
75
- top: -1px;
76
- bottom: -1px;
77
- }
78
- .ard-hex-input .ard-clear-btn-wrapper .ard-focus-overlay {
79
- position: absolute;
80
- top: -1px;
81
- bottom: -1px;
82
- left: -1px;
83
- right: -1px;
84
- opacity: 0;
85
- border-radius: inherit;
86
- pointer-events: none;
87
- transition: opacity 0.2s ease;
88
- background: currentColor;
89
- }
90
- .ard-hex-input .ard-clear-btn-wrapper .ard-clear-btn {
91
- position: absolute;
92
- left: 50%;
93
- top: 50%;
94
- transform: translate(-50%, -50%);
95
- }
96
- .ard-hex-input .ard-clear-btn-wrapper .ard-clear-btn::before {
97
- content: "close";
98
- font-family: "Material Symbols Outlined";
99
- font-size: 1.5em;
100
- font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48;
101
- font-size: 70%;
102
- }
103
- .ard-hex-input .ard-clear-btn-wrapper:hover .ard-focus-overlay {
104
- opacity: 5%;
105
- }
106
- .ard-hex-input .ard-clear-btn-wrapper:focus .ard-focus-overlay {
107
- opacity: 8%;
108
- }
109
- .ard-hex-input .ard-clear-btn-wrapper:active .ard-focus-overlay {
110
- opacity: 15%;
111
- }
112
- .ard-hex-input .ard-input-container input {
113
- font-family: monospace;
114
- }
115
- .ard-hex-input .ard-hash-container {
116
- margin-right: -0.5rem;
117
- color: var(--ard-text3);
118
- opacity: 70%;
119
- user-select: none;
120
- font-family: monospace;
4
+ @layer ard-ui {
5
+ :root {
6
+ --ard-hex-input-gap: 0.625rem;
7
+ --ard-hex-input-line-height: 1.25;
8
+ --ard-hex-input-line-height-compact: 1;
9
+ --ard-hex-input-font-weight: 400;
10
+ --ard-hex-input-placeholder-opacity: 60%;
11
+ --ard-hex-input-min-width: 10rem;
12
+ --ard-hex-input-max-width: 100%;
13
+ --ard-hex-input-hash-opacity: 70%;
14
+ }
15
+ .ard-hex-input {
16
+ height: var(--ard-hex-input-height, var(--ard-form-field-height, 2.3125rem));
17
+ position: relative;
18
+ font-family: var(--ard-font-family);
19
+ display: flex;
20
+ align-items: center;
21
+ justify-content: stretch;
22
+ gap: var(--ard-hex-input-gap, 0.625rem);
23
+ cursor: text;
24
+ box-sizing: border-box;
25
+ font-size: var(--ard-hex-input-font-size, var(--ard-form-field-font-size, 1rem));
26
+ line-height: var(--ard-hex-input-line-height, 1.25);
27
+ font-weight: var(--ard-hex-input-font-weight, 400);
28
+ padding-left: var(--ard-hex-input-padding-left, var(--ard-form-field-padding-left, 0.375rem));
29
+ padding-right: var(--ard-hex-input-padding-right, var(--ard-form-field-padding-right, 0.375rem));
30
+ padding-top: var(--ard-hex-input-padding-top, var(--ard-form-field-padding-top, 0));
31
+ padding-bottom: var(--ard-hex-input-padding-bottom, var(--ard-form-field-padding-bottom, 0));
32
+ color: var(--ard-hex-input-color, var(--ard-text));
33
+ min-width: var(--ard-hex-input-min-width, 10rem);
34
+ max-width: var(--ard-hex-input-max-width, 100%);
35
+ }
36
+ .ard-hex-input .ard-input-container {
37
+ flex-grow: 1;
38
+ text-size-adjust: 100%;
39
+ display: flex;
40
+ align-items: center;
41
+ height: 100%;
42
+ position: relative;
43
+ }
44
+ .ard-hex-input .ard-input-container > * {
45
+ position: absolute;
46
+ inset: 0;
47
+ max-width: 100%;
48
+ padding: 0;
49
+ }
50
+ .ard-hex-input .ard-input-container .ard-placeholder {
51
+ font: inherit;
52
+ opacity: var(--ard-hex-input-placeholder-opacity, 60%);
53
+ color: var(--ard-hex-input-placeholder-color, var(--ard-text));
54
+ white-space: nowrap;
55
+ overflow: hidden;
56
+ text-overflow: ellipsis;
57
+ pointer-events: none;
58
+ display: flex;
59
+ align-items: center;
60
+ }
61
+ .ard-hex-input .ard-input-container input {
62
+ border: none;
63
+ background: transparent;
64
+ outline: none;
65
+ font: inherit;
66
+ color: inherit;
67
+ display: block;
68
+ }
69
+ .ard-hex-input.ard-compact {
70
+ height: var(--ard-hex-input-height-compact, var(--ard-form-field-height-compact, 1.6875rem));
71
+ font-size: var(--ard-hex-input-font-size-compact, var(--ard-form-field-font-size-compact, 0.875rem));
72
+ line-height: var(--ard-hex-input-line-height-compact, 1);
73
+ padding-left: var(--ard-hex-input-padding-left-compact, var(--ard-form-field-padding-left-compact, 0.375rem));
74
+ padding-right: var(--ard-hex-input-padding-right-compact, var(--ard-form-field-padding-right-compact, 0.375rem));
75
+ padding-top: var(--ard-hex-input-padding-top-compact, var(--ard-form-field-padding-top-compact, 0));
76
+ padding-bottom: var(--ard-hex-input-padding-bottom-compact, var(--ard-form-field-padding-bottom-compact, 0));
77
+ }
78
+ .ard-hex-input ard-clear-button {
79
+ height: var(--ard-clear-button-size);
80
+ width: var(--ard-clear-button-size);
81
+ position: relative;
82
+ }
83
+ .ard-hex-input .ard-clear-btn-wrapper {
84
+ cursor: pointer;
85
+ font-size: medium;
86
+ color: var(--ard-detail);
87
+ width: var(--ard-clear-button-size);
88
+ height: var(--ard-clear-button-size);
89
+ line-height: 1em;
90
+ border-radius: 999px;
91
+ border: none;
92
+ padding: 0;
93
+ background: transparent;
94
+ position: absolute;
95
+ left: 50%;
96
+ top: 50%;
97
+ transform: translate(-50%, -50%);
98
+ outline: none;
99
+ color: inherit;
100
+ }
101
+ .ard-hex-input .ard-clear-btn-wrapper .ard-hitbox {
102
+ position: absolute;
103
+ left: -1px;
104
+ right: -1px;
105
+ top: -1px;
106
+ bottom: -1px;
107
+ }
108
+ .ard-hex-input .ard-clear-btn-wrapper .ard-focus-overlay {
109
+ position: absolute;
110
+ top: calc(-1 * 1px);
111
+ bottom: calc(-1 * 1px);
112
+ left: calc(-1 * 1px);
113
+ right: calc(-1 * 1px);
114
+ opacity: 0;
115
+ border-radius: inherit;
116
+ pointer-events: none;
117
+ transition: opacity 0.2s ease;
118
+ background: currentColor;
119
+ }
120
+ .ard-hex-input .ard-clear-btn-wrapper .ard-clear-btn {
121
+ position: absolute;
122
+ left: 50%;
123
+ top: 50%;
124
+ transform: translate(-50%, -50%);
125
+ }
126
+ .ard-hex-input .ard-clear-btn-wrapper .ard-clear-btn::before {
127
+ content: "close";
128
+ font-family: "Material Symbols Outlined";
129
+ font-size: 1.5em;
130
+ font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48;
131
+ font-size: 70%;
132
+ }
133
+ .ard-hex-input .ard-clear-btn-wrapper:hover .ard-focus-overlay {
134
+ opacity: 5%;
135
+ }
136
+ .ard-hex-input .ard-clear-btn-wrapper:focus .ard-focus-overlay {
137
+ opacity: 8%;
138
+ }
139
+ .ard-hex-input .ard-clear-btn-wrapper:active .ard-focus-overlay {
140
+ opacity: 15%;
141
+ }
142
+ .ard-hex-input .ard-input-container input {
143
+ font-family: var(--ard-font-family-mono);
144
+ }
145
+ .ard-hex-input .ard-hash-container {
146
+ color: var(--ard-hex-input-hash-color, var(--ard-text));
147
+ opacity: var(--ard-hex-input-hash-opacity, 70%);
148
+ user-select: none;
149
+ font-family: var(--ard-font-family-mono);
150
+ display: flex;
151
+ align-items: center;
152
+ height: 100%;
153
+ }
121
154
  }
122
155
 
123
156
  /*# sourceMappingURL=hex-input.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/hex-input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACGA;EDCE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ECRA;EACA;EACA;;ADQA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AE3CF;EACE,QCkCgB;EDjChB,OCiCgB;EDhChB;;AAGF;EACE;EACA;EACA,OCGK;EDFL,OCyBgB;EDxBhB,QCwBgB;EDvBhB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EEvBF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EFgBI;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EE7CN;EACA;EACA,yBACE;EF4CI;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE;;ADtDJ;EACE;;AAIJ;EACE;EACA,OEZI;EFaJ;EACA;EACA","file":"hex-input.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/hex-input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACGA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;IAEA;IACA;IAEA;;EAGF;IDTA,QCWI;IDVJ;IACA;IACA;IACA;IACA;IACA,KCOI;IDNJ;IACA;IACA,WCKI;IDJJ,aCMI;IDLJ,aCOI;IDNJ,cCUI;IDTJ,eCOI;IDNJ,aCKI;IDJJ,gBCMI;IDLJ,OCWI;IAIF;IACA;;EDdF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA,SCLA;IDMA,OCPA;IDQA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE,QC3CE;ID4CF,WCzCE;ID0CF,aCxCE;IDyCF,cChCE;IDiCF,eCnCE;IDoCF,aCrCE;IDsCF,gBCpCE;;EC/CJ;IACE,QCmCgB;IDlChB,OCkCgB;IDjChB;;EAGF;IACE;IACA;IACA,OCGK;IDFL,OC0BgB;IDzBhB,QCyBgB;IDxBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IEvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;IE7CN;IACA;IACA,yBACE;IF4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE;;EDLF;IACE;;EAIJ;IACE;IACA;IACA;IACA;IACA;IACA;IACA","file":"hex-input.css"}
@@ -1,113 +1,143 @@
1
1
  /**
2
2
  * Should be applied to the first element in the component's template.
3
3
  */
4
- .ard-input {
5
- position: relative;
6
- font-family: "Roboto", sans-serif;
7
- display: flex;
8
- align-items: center;
9
- justify-content: stretch;
10
- gap: 0.625em;
11
- cursor: text;
12
- box-sizing: border-box;
13
- font-size: 1rem;
14
- line-height: 1.25em;
15
- padding: 0 0.375rem;
16
- min-width: 10rem;
17
- max-width: 100%;
18
- }
19
- .ard-input .ard-input-container {
20
- flex-grow: 1;
21
- text-size-adjust: 100%;
22
- display: flex;
23
- align-items: center;
24
- }
25
- .ard-input .ard-input-container .ard-placeholder {
26
- font: inherit;
27
- opacity: 60%;
28
- white-space: nowrap;
29
- overflow: hidden;
30
- text-overflow: ellipsis;
31
- max-width: 100%;
32
- pointer-events: none;
33
- }
34
- .ard-input .ard-input-container input {
35
- border: none;
36
- background: transparent;
37
- outline: none;
38
- font: inherit;
39
- padding: 0;
40
- display: block;
41
- width: 100%;
42
- }
43
- .ard-input.ard-compact {
44
- height: 1.5625em;
45
- font-size: 0.85em;
46
- line-height: 1;
47
- }
48
- .ard-input ard-clear-button {
49
- height: var(--ard-clear-button-size);
50
- width: var(--ard-clear-button-size);
51
- position: relative;
52
- }
53
- .ard-input .ard-clear-btn-wrapper {
54
- cursor: pointer;
55
- font-size: medium;
56
- color: var(--ard-detail);
57
- width: var(--ard-clear-button-size);
58
- height: var(--ard-clear-button-size);
59
- line-height: 1em;
60
- border-radius: 999px;
61
- border: none;
62
- padding: 0;
63
- background: transparent;
64
- position: absolute;
65
- left: 50%;
66
- top: 50%;
67
- transform: translate(-50%, -50%);
68
- outline: none;
69
- color: inherit;
70
- }
71
- .ard-input .ard-clear-btn-wrapper .ard-hitbox {
72
- position: absolute;
73
- left: -1px;
74
- right: -1px;
75
- top: -1px;
76
- bottom: -1px;
77
- }
78
- .ard-input .ard-clear-btn-wrapper .ard-focus-overlay {
79
- position: absolute;
80
- top: -1px;
81
- bottom: -1px;
82
- left: -1px;
83
- right: -1px;
84
- opacity: 0;
85
- border-radius: inherit;
86
- pointer-events: none;
87
- transition: opacity 0.2s ease;
88
- background: currentColor;
89
- }
90
- .ard-input .ard-clear-btn-wrapper .ard-clear-btn {
91
- position: absolute;
92
- left: 50%;
93
- top: 50%;
94
- transform: translate(-50%, -50%);
95
- }
96
- .ard-input .ard-clear-btn-wrapper .ard-clear-btn::before {
97
- content: "close";
98
- font-family: "Material Symbols Outlined";
99
- font-size: 1.5em;
100
- font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48;
101
- font-size: 70%;
102
- }
103
- .ard-input .ard-clear-btn-wrapper:hover .ard-focus-overlay {
104
- opacity: 5%;
105
- }
106
- .ard-input .ard-clear-btn-wrapper:focus .ard-focus-overlay {
107
- opacity: 8%;
108
- }
109
- .ard-input .ard-clear-btn-wrapper:active .ard-focus-overlay {
110
- opacity: 15%;
4
+ @layer ard-ui {
5
+ :root {
6
+ --ard-input-gap: 0.625rem;
7
+ --ard-input-line-height: 1.25;
8
+ --ard-input-line-height-compact: 1;
9
+ --ard-input-font-weight: 400;
10
+ --ard-input-placeholder-opacity: 60%;
11
+ --ard-input-min-width: 10rem;
12
+ --ard-input-max-width: 100%;
13
+ }
14
+ .ard-input {
15
+ height: var(--ard-input-height, var(--ard-form-field-height, 2.3125rem));
16
+ position: relative;
17
+ font-family: var(--ard-font-family);
18
+ display: flex;
19
+ align-items: center;
20
+ justify-content: stretch;
21
+ gap: var(--ard-input-gap, 0.625rem);
22
+ cursor: text;
23
+ box-sizing: border-box;
24
+ font-size: var(--ard-input-font-size, var(--ard-form-field-font-size, 1rem));
25
+ line-height: var(--ard-input-line-height, 1.25);
26
+ font-weight: var(--ard-input-font-weight, 400);
27
+ padding-left: var(--ard-input-padding-left, var(--ard-form-field-padding-left, 0.375rem));
28
+ padding-right: var(--ard-input-padding-right, var(--ard-form-field-padding-right, 0.375rem));
29
+ padding-top: var(--ard-input-padding-top, var(--ard-form-field-padding-top, 0));
30
+ padding-bottom: var(--ard-input-padding-bottom, var(--ard-form-field-padding-bottom, 0));
31
+ color: var(--ard-input-color, var(--ard-text));
32
+ min-width: var(--ard-input-min-width, 10rem);
33
+ max-width: var(--ard-input-max-width, 100%);
34
+ }
35
+ .ard-input .ard-input-container {
36
+ flex-grow: 1;
37
+ text-size-adjust: 100%;
38
+ display: flex;
39
+ align-items: center;
40
+ height: 100%;
41
+ position: relative;
42
+ }
43
+ .ard-input .ard-input-container > * {
44
+ position: absolute;
45
+ inset: 0;
46
+ max-width: 100%;
47
+ padding: 0;
48
+ }
49
+ .ard-input .ard-input-container .ard-placeholder {
50
+ font: inherit;
51
+ opacity: var(--ard-input-placeholder-opacity, 60%);
52
+ color: var(--ard-input-placeholder-color, var(--ard-text));
53
+ white-space: nowrap;
54
+ overflow: hidden;
55
+ text-overflow: ellipsis;
56
+ pointer-events: none;
57
+ display: flex;
58
+ align-items: center;
59
+ }
60
+ .ard-input .ard-input-container input {
61
+ border: none;
62
+ background: transparent;
63
+ outline: none;
64
+ font: inherit;
65
+ color: inherit;
66
+ display: block;
67
+ }
68
+ .ard-input.ard-compact {
69
+ height: var(--ard-input-height-compact, var(--ard-form-field-height-compact, 1.6875rem));
70
+ font-size: var(--ard-input-font-size-compact, var(--ard-form-field-font-size-compact, 0.875rem));
71
+ line-height: var(--ard-input-line-height-compact, 1);
72
+ padding-left: var(--ard-input-padding-left-compact, var(--ard-form-field-padding-left-compact, 0.375rem));
73
+ padding-right: var(--ard-input-padding-right-compact, var(--ard-form-field-padding-right-compact, 0.375rem));
74
+ padding-top: var(--ard-input-padding-top-compact, var(--ard-form-field-padding-top-compact, 0));
75
+ padding-bottom: var(--ard-input-padding-bottom-compact, var(--ard-form-field-padding-bottom-compact, 0));
76
+ }
77
+ .ard-input ard-clear-button {
78
+ height: var(--ard-clear-button-size);
79
+ width: var(--ard-clear-button-size);
80
+ position: relative;
81
+ }
82
+ .ard-input .ard-clear-btn-wrapper {
83
+ cursor: pointer;
84
+ font-size: medium;
85
+ color: var(--ard-detail);
86
+ width: var(--ard-clear-button-size);
87
+ height: var(--ard-clear-button-size);
88
+ line-height: 1em;
89
+ border-radius: 999px;
90
+ border: none;
91
+ padding: 0;
92
+ background: transparent;
93
+ position: absolute;
94
+ left: 50%;
95
+ top: 50%;
96
+ transform: translate(-50%, -50%);
97
+ outline: none;
98
+ color: inherit;
99
+ }
100
+ .ard-input .ard-clear-btn-wrapper .ard-hitbox {
101
+ position: absolute;
102
+ left: -1px;
103
+ right: -1px;
104
+ top: -1px;
105
+ bottom: -1px;
106
+ }
107
+ .ard-input .ard-clear-btn-wrapper .ard-focus-overlay {
108
+ position: absolute;
109
+ top: calc(-1 * 1px);
110
+ bottom: calc(-1 * 1px);
111
+ left: calc(-1 * 1px);
112
+ right: calc(-1 * 1px);
113
+ opacity: 0;
114
+ border-radius: inherit;
115
+ pointer-events: none;
116
+ transition: opacity 0.2s ease;
117
+ background: currentColor;
118
+ }
119
+ .ard-input .ard-clear-btn-wrapper .ard-clear-btn {
120
+ position: absolute;
121
+ left: 50%;
122
+ top: 50%;
123
+ transform: translate(-50%, -50%);
124
+ }
125
+ .ard-input .ard-clear-btn-wrapper .ard-clear-btn::before {
126
+ content: "close";
127
+ font-family: "Material Symbols Outlined";
128
+ font-size: 1.5em;
129
+ font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48;
130
+ font-size: 70%;
131
+ }
132
+ .ard-input .ard-clear-btn-wrapper:hover .ard-focus-overlay {
133
+ opacity: 5%;
134
+ }
135
+ .ard-input .ard-clear-btn-wrapper:focus .ard-focus-overlay {
136
+ opacity: 8%;
137
+ }
138
+ .ard-input .ard-clear-btn-wrapper:active .ard-focus-overlay {
139
+ opacity: 15%;
140
+ }
111
141
  }
112
142
 
113
143
  /*# sourceMappingURL=input.css.map */
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACEA;EDEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;ECTA;EACA;EACA;;ADSA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AE3CF;EACE,QCkCgB;EDjChB,OCiCgB;EDhChB;;AAGF;EACE;EACA;EACA,OCGK;EDFL,OCyBgB;EDxBhB,QCwBgB;EDvBhB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EEvBF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EFgBI;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EE7CN;EACA;EACA,yBACE;EF4CI;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE","file":"input.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../projects/ui/src/themes/default/inputs/_shared.scss","../../../../../projects/ui/src/themes/default/inputs/input.scss","../../../../../projects/ui/src/themes/default/_clear-button.scss","../../../../../projects/ui/src/themes/_variables.scss","../../../../../projects/ui/src/themes/default/_mixins.scss"],"names":[],"mappings":"AAEA;AAAA;AAAA;ACGA;EAGE;IAGE;IAGA;IACA;IACA;IAWA;IAEA;IACA;;EAGF;IDPA,QCSI;IDRJ;IACA;IACA;IACA;IACA;IACA,KCKI;IDJJ;IACA;IACA,WCGI;IDFJ,aCII;IDHJ,aCKI;IDJJ,cCQI;IDPJ,eCKI;IDJJ,aCGI;IDFJ,gBCII;IDHJ,OCSI;IAIF;IACA;;EDZF;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA,SCPA;IDQA,OCTA;IDUA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACE,QC7CE;ID8CF,WC3CE;ID4CF,aC1CE;ID2CF,cClCE;IDmCF,eCrCE;IDsCF,aCvCE;IDwCF,gBCtCE;;EC7CJ;IACE,QCmCgB;IDlChB,OCkCgB;IDjChB;;EAGF;IACE;IACA;IACA,OCGK;IDFL,OC0BgB;IDzBhB,QCyBgB;IDxBhB;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IEvBF;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IAEA;IFgBI;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;IE7CN;IACA;IACA,yBACE;IF4CI;;EAKF;IACE;;EAKF;IACE;;EAKF;IACE","file":"input.css"}