aril 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (353) hide show
  1. package/README.md +32 -10
  2. package/esm2022/http/index.mjs +5 -1
  3. package/esm2022/http/lib/enums.mjs +1 -2
  4. package/esm2022/http/lib/interfaces.mjs +3 -1
  5. package/esm2022/http/src/httpClient.mjs +2 -1
  6. package/esm2022/http/src/serviceBase.mjs +10 -10
  7. package/esm2022/ui/badge/aril-ui-badge.mjs +5 -0
  8. package/esm2022/ui/badge/index.mjs +2 -0
  9. package/esm2022/ui/badge/src/badge.component.mjs +25 -0
  10. package/esm2022/ui/button/index.mjs +2 -1
  11. package/esm2022/ui/button/src/button.component.mjs +44 -7
  12. package/esm2022/ui/button/src/split-button.component.mjs +18 -0
  13. package/esm2022/ui/calendar/src/calendar.component.mjs +102 -8
  14. package/esm2022/ui/checkbox/index.mjs +3 -2
  15. package/esm2022/ui/checkbox/src/check-box.component.mjs +24 -0
  16. package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +24 -0
  17. package/esm2022/ui/confirmPopup/aril-ui-confirmPopup.mjs +5 -0
  18. package/esm2022/ui/confirmPopup/index.mjs +2 -0
  19. package/esm2022/ui/confirmPopup/src/confirm-popup.component.mjs +28 -0
  20. package/esm2022/ui/dxField/aril-ui-dxField.mjs +5 -0
  21. package/esm2022/ui/dxField/index.mjs +2 -0
  22. package/esm2022/ui/dxField/src/dx-field.component.mjs +30 -0
  23. package/esm2022/ui/field/aril-ui-field.mjs +5 -0
  24. package/esm2022/ui/field/index.mjs +2 -0
  25. package/esm2022/ui/field/src/field.component.mjs +48 -0
  26. package/esm2022/ui/fileUpload/aril-ui-fileUpload.mjs +5 -0
  27. package/esm2022/ui/fileUpload/index.mjs +2 -0
  28. package/esm2022/ui/fileUpload/src/file-upload.component.mjs +88 -0
  29. package/esm2022/ui/form/aril-ui-form.mjs +5 -0
  30. package/esm2022/ui/form/index.mjs +4 -0
  31. package/esm2022/ui/form/src/form-submit-button.component.mjs +44 -0
  32. package/esm2022/ui/form/src/form.component.mjs +31 -0
  33. package/esm2022/ui/lib/index.mjs +13 -3
  34. package/esm2022/ui/lib/src/form/form-error-message.component.mjs +37 -0
  35. package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +38 -0
  36. package/esm2022/ui/lib/src/form/form-field-builder.mjs +2 -2
  37. package/esm2022/ui/lib/src/form/form-validation.mjs +1 -1
  38. package/esm2022/ui/lib/src/grid/flex-grid.directive.mjs +21 -0
  39. package/esm2022/ui/lib/src/input/baseInput.mjs +24 -0
  40. package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +3 -3
  41. package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +22 -0
  42. package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +8 -4
  43. package/esm2022/ui/lib/src/input/input-error-message.pipe.mjs +41 -0
  44. package/esm2022/ui/lib/src/input/input-transforms.mjs +8 -0
  45. package/esm2022/ui/lib/src/input/value-accessor.directive.mjs +32 -0
  46. package/esm2022/ui/mask/aril-ui-mask.mjs +5 -0
  47. package/esm2022/ui/mask/index.mjs +2 -0
  48. package/esm2022/ui/mask/src/mask.component.mjs +35 -0
  49. package/esm2022/ui/number/aril-ui-number.mjs +5 -0
  50. package/esm2022/ui/number/index.mjs +2 -0
  51. package/esm2022/ui/number/src/number.component.mjs +57 -0
  52. package/esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs +5 -0
  53. package/esm2022/ui/overlayPanel/index.mjs +2 -0
  54. package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +23 -0
  55. package/esm2022/ui/panel/aril-ui-panel.mjs +5 -0
  56. package/esm2022/ui/panel/index.mjs +2 -0
  57. package/esm2022/ui/panel/src/panel.component.mjs +27 -0
  58. package/esm2022/ui/password/aril-ui-password.mjs +5 -0
  59. package/esm2022/ui/password/index.mjs +2 -0
  60. package/esm2022/ui/password/src/password.component.mjs +37 -0
  61. package/esm2022/ui/radioButton/aril-ui-radioButton.mjs +5 -0
  62. package/esm2022/ui/radioButton/index.mjs +2 -0
  63. package/esm2022/ui/radioButton/src/radio-button.component.mjs +37 -0
  64. package/esm2022/ui/selectBox/aril-ui-selectBox.mjs +5 -0
  65. package/esm2022/ui/selectBox/index.mjs +2 -0
  66. package/esm2022/ui/selectBox/src/select-box.component.mjs +43 -0
  67. package/esm2022/ui/switch/aril-ui-switch.mjs +5 -0
  68. package/esm2022/ui/switch/index.mjs +2 -0
  69. package/esm2022/ui/switch/src/switch.component.mjs +24 -0
  70. package/esm2022/ui/table/aril-ui-table.mjs +5 -0
  71. package/esm2022/ui/table/index.mjs +4 -0
  72. package/esm2022/ui/table/src/i18n.mjs +93 -0
  73. package/esm2022/ui/table/src/table-column.component.mjs +35 -0
  74. package/esm2022/ui/table/src/table.component.mjs +78 -0
  75. package/esm2022/ui/tagBox/aril-ui-tagBox.mjs +5 -0
  76. package/esm2022/ui/tagBox/index.mjs +2 -0
  77. package/esm2022/ui/tagBox/src/tag-box.component.mjs +63 -0
  78. package/esm2022/ui/text/aril-ui-text.mjs +5 -0
  79. package/esm2022/ui/text/index.mjs +2 -0
  80. package/esm2022/ui/text/src/text.component.mjs +54 -0
  81. package/esm2022/ui/textArea/aril-ui-textArea.mjs +5 -0
  82. package/esm2022/ui/textArea/index.mjs +2 -0
  83. package/esm2022/ui/textArea/src/text-area.component.mjs +30 -0
  84. package/esm2022/ui/tree/aril-ui-tree.mjs +5 -0
  85. package/esm2022/ui/tree/index.mjs +2 -0
  86. package/esm2022/ui/tree/src/tree.component.mjs +58 -0
  87. package/esm2022/ui/treeTable/aril-ui-treeTable.mjs +5 -0
  88. package/esm2022/ui/treeTable/index.mjs +2 -0
  89. package/esm2022/ui/treeTable/src/tree-table.component.mjs +59 -0
  90. package/esm2022/ui/value/aril-ui-value.mjs +5 -0
  91. package/esm2022/ui/value/index.mjs +2 -0
  92. package/esm2022/ui/value/src/value.component.mjs +51 -0
  93. package/esm2022/util/init-event/src/init-event.directive.mjs +8 -8
  94. package/esm2022/util/lib/src/interfaces.mjs +3 -1
  95. package/esm2022/util/lib/src/types.mjs +5 -1
  96. package/esm2022/util/primitive-extensions/src/string.extensions.mjs +7 -1
  97. package/esm2022/util/pub-sub/src/pub-sub.service.mjs +5 -4
  98. package/fesm2022/aril-http.mjs +49 -45
  99. package/fesm2022/aril-http.mjs.map +1 -1
  100. package/fesm2022/aril-ui-badge.mjs +32 -0
  101. package/fesm2022/aril-ui-badge.mjs.map +1 -0
  102. package/fesm2022/aril-ui-button.mjs +58 -6
  103. package/fesm2022/aril-ui-button.mjs.map +1 -1
  104. package/fesm2022/aril-ui-calendar.mjs +101 -7
  105. package/fesm2022/aril-ui-calendar.mjs.map +1 -1
  106. package/fesm2022/aril-ui-checkbox.mjs +36 -7
  107. package/fesm2022/aril-ui-checkbox.mjs.map +1 -1
  108. package/fesm2022/aril-ui-confirmPopup.mjs +35 -0
  109. package/fesm2022/aril-ui-confirmPopup.mjs.map +1 -0
  110. package/fesm2022/aril-ui-dxField.mjs +37 -0
  111. package/fesm2022/aril-ui-dxField.mjs.map +1 -0
  112. package/fesm2022/aril-ui-field.mjs +55 -0
  113. package/fesm2022/aril-ui-field.mjs.map +1 -0
  114. package/fesm2022/aril-ui-fileUpload.mjs +95 -0
  115. package/fesm2022/aril-ui-fileUpload.mjs.map +1 -0
  116. package/fesm2022/aril-ui-form.mjs +82 -0
  117. package/fesm2022/aril-ui-form.mjs.map +1 -0
  118. package/fesm2022/aril-ui-lib.mjs +263 -51
  119. package/fesm2022/aril-ui-lib.mjs.map +1 -1
  120. package/fesm2022/aril-ui-mask.mjs +42 -0
  121. package/fesm2022/aril-ui-mask.mjs.map +1 -0
  122. package/fesm2022/aril-ui-number.mjs +64 -0
  123. package/fesm2022/aril-ui-number.mjs.map +1 -0
  124. package/fesm2022/aril-ui-overlayPanel.mjs +30 -0
  125. package/fesm2022/aril-ui-overlayPanel.mjs.map +1 -0
  126. package/fesm2022/aril-ui-panel.mjs +34 -0
  127. package/fesm2022/aril-ui-panel.mjs.map +1 -0
  128. package/fesm2022/aril-ui-password.mjs +44 -0
  129. package/fesm2022/aril-ui-password.mjs.map +1 -0
  130. package/fesm2022/aril-ui-radioButton.mjs +44 -0
  131. package/fesm2022/aril-ui-radioButton.mjs.map +1 -0
  132. package/fesm2022/aril-ui-selectBox.mjs +50 -0
  133. package/fesm2022/aril-ui-selectBox.mjs.map +1 -0
  134. package/fesm2022/aril-ui-switch.mjs +31 -0
  135. package/fesm2022/aril-ui-switch.mjs.map +1 -0
  136. package/fesm2022/aril-ui-table.mjs +211 -0
  137. package/fesm2022/aril-ui-table.mjs.map +1 -0
  138. package/fesm2022/aril-ui-tagBox.mjs +70 -0
  139. package/fesm2022/aril-ui-tagBox.mjs.map +1 -0
  140. package/fesm2022/aril-ui-text.mjs +61 -0
  141. package/fesm2022/aril-ui-text.mjs.map +1 -0
  142. package/fesm2022/aril-ui-textArea.mjs +37 -0
  143. package/fesm2022/aril-ui-textArea.mjs.map +1 -0
  144. package/fesm2022/aril-ui-tree.mjs +65 -0
  145. package/fesm2022/aril-ui-tree.mjs.map +1 -0
  146. package/fesm2022/aril-ui-treeTable.mjs +66 -0
  147. package/fesm2022/aril-ui-treeTable.mjs.map +1 -0
  148. package/fesm2022/aril-ui-value.mjs +58 -0
  149. package/fesm2022/aril-ui-value.mjs.map +1 -0
  150. package/fesm2022/aril-util-init-event.mjs +7 -7
  151. package/fesm2022/aril-util-init-event.mjs.map +1 -1
  152. package/fesm2022/aril-util-lib.mjs +8 -0
  153. package/fesm2022/aril-util-lib.mjs.map +1 -1
  154. package/fesm2022/aril-util-primitive-extensions.mjs +6 -0
  155. package/fesm2022/aril-util-primitive-extensions.mjs.map +1 -1
  156. package/fesm2022/aril-util-pub-sub.mjs +4 -3
  157. package/fesm2022/aril-util-pub-sub.mjs.map +1 -1
  158. package/http/index.d.ts +2 -0
  159. package/http/lib/enums.d.ts +2 -2
  160. package/package.json +142 -7
  161. package/styles/ui/ui.common.scss +8 -0
  162. package/theme/fonts/poppins-v20-latin-500.woff +0 -0
  163. package/theme/fonts/poppins-v20-latin-500.woff2 +0 -0
  164. package/theme/fonts/poppins-v20-latin-600.woff +0 -0
  165. package/theme/fonts/poppins-v20-latin-600.woff2 +0 -0
  166. package/theme/fonts/poppins-v20-latin-700.woff +0 -0
  167. package/theme/fonts/poppins-v20-latin-700.woff2 +0 -0
  168. package/theme/fonts/poppins-v20-latin-regular.woff +0 -0
  169. package/theme/fonts/poppins-v20-latin-regular.woff2 +0 -0
  170. package/theme/images/avatar.png +0 -0
  171. package/theme/styles/layout/_animation.scss +53 -0
  172. package/theme/styles/layout/_breadcrumb.scss +21 -0
  173. package/theme/styles/layout/_config.scss +42 -0
  174. package/theme/styles/layout/_content.scss +3 -0
  175. package/theme/styles/layout/_fonts.scss +36 -0
  176. package/theme/styles/layout/_layout_dark.scss +5 -0
  177. package/theme/styles/layout/_layout_dim.scss +5 -0
  178. package/theme/styles/layout/_layout_light.scss +5 -0
  179. package/theme/styles/layout/_main.scss +28 -0
  180. package/theme/styles/layout/_profile.scss +10 -0
  181. package/theme/styles/layout/_responsive.scss +113 -0
  182. package/theme/styles/layout/_sidebar_drawer.scss +236 -0
  183. package/theme/styles/layout/_sidebar_horizontal.scss +163 -0
  184. package/theme/styles/layout/_sidebar_reveal.scss +203 -0
  185. package/theme/styles/layout/_sidebar_slim.scss +145 -0
  186. package/theme/styles/layout/_sidebar_slim_plus.scss +163 -0
  187. package/theme/styles/layout/_sidebar_vertical.scss +153 -0
  188. package/theme/styles/layout/_topbar.scss +78 -0
  189. package/theme/styles/layout/_typography.scss +63 -0
  190. package/theme/styles/layout/_utils.scss +24 -0
  191. package/theme/styles/layout/layout.scss +24 -0
  192. package/theme/styles/layout/menutheme/_colorscheme.scss +11 -0
  193. package/theme/styles/layout/menutheme/_menutheme.scss +3 -0
  194. package/theme/styles/layout/menutheme/_primarycolor.scss +16 -0
  195. package/theme/styles/layout/menutheme/_transparent.scss +26 -0
  196. package/theme/styles/layout/preloading.scss +84 -0
  197. package/theme/styles/theme/base/_colors.scss +18 -0
  198. package/theme/styles/theme/base/_common.scss +75 -0
  199. package/theme/styles/theme/base/_components.scss +106 -0
  200. package/theme/styles/theme/base/_mixins.scss +337 -0
  201. package/theme/styles/theme/base/components/button/_button.scss +576 -0
  202. package/theme/styles/theme/base/components/button/_speeddial.scss +96 -0
  203. package/theme/styles/theme/base/components/button/_splitbutton.scss +354 -0
  204. package/theme/styles/theme/base/components/data/_carousel.scss +37 -0
  205. package/theme/styles/theme/base/components/data/_datatable.scss +338 -0
  206. package/theme/styles/theme/base/components/data/_dataview.scss +46 -0
  207. package/theme/styles/theme/base/components/data/_filter.scss +138 -0
  208. package/theme/styles/theme/base/components/data/_orderlist.scss +114 -0
  209. package/theme/styles/theme/base/components/data/_organizationchart.scss +50 -0
  210. package/theme/styles/theme/base/components/data/_paginator.scss +92 -0
  211. package/theme/styles/theme/base/components/data/_picklist.scss +114 -0
  212. package/theme/styles/theme/base/components/data/_timeline.scss +38 -0
  213. package/theme/styles/theme/base/components/data/_tree.scss +150 -0
  214. package/theme/styles/theme/base/components/data/_treetable.scss +256 -0
  215. package/theme/styles/theme/base/components/data/_virtualscroller.scss +28 -0
  216. package/theme/styles/theme/base/components/file/_fileupload.scss +64 -0
  217. package/theme/styles/theme/base/components/input/_autocomplete.scss +136 -0
  218. package/theme/styles/theme/base/components/input/_calendar.scss +267 -0
  219. package/theme/styles/theme/base/components/input/_cascadeselect.scss +136 -0
  220. package/theme/styles/theme/base/components/input/_checkbox.scss +94 -0
  221. package/theme/styles/theme/base/components/input/_chips.scss +65 -0
  222. package/theme/styles/theme/base/components/input/_colorpicker.scss +19 -0
  223. package/theme/styles/theme/base/components/input/_dropdown.scss +151 -0
  224. package/theme/styles/theme/base/components/input/_editor.scss +122 -0
  225. package/theme/styles/theme/base/components/input/_inputgroup.scss +75 -0
  226. package/theme/styles/theme/base/components/input/_inputmask.scss +16 -0
  227. package/theme/styles/theme/base/components/input/_inputnumber.scss +28 -0
  228. package/theme/styles/theme/base/components/input/_inputswitch.scss +60 -0
  229. package/theme/styles/theme/base/components/input/_inputtext.scss +100 -0
  230. package/theme/styles/theme/base/components/input/_listbox.scss +97 -0
  231. package/theme/styles/theme/base/components/input/_multiselect.scss +179 -0
  232. package/theme/styles/theme/base/components/input/_password.scss +52 -0
  233. package/theme/styles/theme/base/components/input/_radiobutton.scss +78 -0
  234. package/theme/styles/theme/base/components/input/_rating.scss +60 -0
  235. package/theme/styles/theme/base/components/input/_selectbutton.scss +50 -0
  236. package/theme/styles/theme/base/components/input/_slider.scss +71 -0
  237. package/theme/styles/theme/base/components/input/_togglebutton.scss +48 -0
  238. package/theme/styles/theme/base/components/input/_treeselect.scss +139 -0
  239. package/theme/styles/theme/base/components/menu/_breadcrumb.scss +42 -0
  240. package/theme/styles/theme/base/components/menu/_contextmenu.scss +39 -0
  241. package/theme/styles/theme/base/components/menu/_dock.scss +95 -0
  242. package/theme/styles/theme/base/components/menu/_megamenu.scss +55 -0
  243. package/theme/styles/theme/base/components/menu/_menu.scss +37 -0
  244. package/theme/styles/theme/base/components/menu/_menubar.scss +141 -0
  245. package/theme/styles/theme/base/components/menu/_panelmenu.scss +153 -0
  246. package/theme/styles/theme/base/components/menu/_slidemenu.scss +59 -0
  247. package/theme/styles/theme/base/components/menu/_steps.scss +56 -0
  248. package/theme/styles/theme/base/components/menu/_tabmenu.scss +74 -0
  249. package/theme/styles/theme/base/components/menu/_tieredmenu.scss +43 -0
  250. package/theme/styles/theme/base/components/messages/_inlinemessage.scss +69 -0
  251. package/theme/styles/theme/base/components/messages/_message.scss +107 -0
  252. package/theme/styles/theme/base/components/messages/_toast.scss +100 -0
  253. package/theme/styles/theme/base/components/misc/_avatar.scss +30 -0
  254. package/theme/styles/theme/base/components/misc/_badge.scss +48 -0
  255. package/theme/styles/theme/base/components/misc/_blockui.scss +0 -0
  256. package/theme/styles/theme/base/components/misc/_chip.scss +42 -0
  257. package/theme/styles/theme/base/components/misc/_inplace.scss +17 -0
  258. package/theme/styles/theme/base/components/misc/_progressbar.scss +17 -0
  259. package/theme/styles/theme/base/components/misc/_scrolltop.scss +25 -0
  260. package/theme/styles/theme/base/components/misc/_skeleton.scss +8 -0
  261. package/theme/styles/theme/base/components/misc/_tag.scss +40 -0
  262. package/theme/styles/theme/base/components/misc/_terminal.scss +12 -0
  263. package/theme/styles/theme/base/components/multimedia/_galleria.scss +155 -0
  264. package/theme/styles/theme/base/components/multimedia/_image.scss +49 -0
  265. package/theme/styles/theme/base/components/overlay/_confirmpopup.scss +72 -0
  266. package/theme/styles/theme/base/components/overlay/_dialog.scss +69 -0
  267. package/theme/styles/theme/base/components/overlay/_overlaypanel.scss +64 -0
  268. package/theme/styles/theme/base/components/overlay/_sidebar.scss +27 -0
  269. package/theme/styles/theme/base/components/overlay/_tooltip.scss +33 -0
  270. package/theme/styles/theme/base/components/panel/_accordion.scss +119 -0
  271. package/theme/styles/theme/base/components/panel/_card.scss +30 -0
  272. package/theme/styles/theme/base/components/panel/_divider.scss +31 -0
  273. package/theme/styles/theme/base/components/panel/_fieldset.scss +47 -0
  274. package/theme/styles/theme/base/components/panel/_panel.scss +63 -0
  275. package/theme/styles/theme/base/components/panel/_scrollpanel.scss +6 -0
  276. package/theme/styles/theme/base/components/panel/_splitter.scss +19 -0
  277. package/theme/styles/theme/base/components/panel/_tabview.scss +82 -0
  278. package/theme/styles/theme/base/components/panel/_toolbar.scss +11 -0
  279. package/theme/styles/theme/dark/_extensions.scss +120 -0
  280. package/theme/styles/theme/dark/_variables.scss +896 -0
  281. package/theme/styles/theme/dark/blue/theme.scss +14 -0
  282. package/theme/styles/theme/dark/indigo/theme.scss +14 -0
  283. package/theme/styles/theme/light/_extensions.scss +102 -0
  284. package/theme/styles/theme/light/_variables.scss +898 -0
  285. package/theme/styles/theme/light/blue/theme.scss +13 -0
  286. package/theme/styles/theme/light/indigo/theme.scss +14 -0
  287. package/ui/badge/index.d.ts +1 -0
  288. package/ui/badge/src/badge.component.d.ts +11 -0
  289. package/ui/button/index.d.ts +1 -0
  290. package/ui/button/src/button.component.d.ts +23 -2
  291. package/ui/button/src/split-button.component.d.ts +8 -0
  292. package/ui/calendar/src/calendar.component.d.ts +30 -2
  293. package/ui/checkbox/index.d.ts +2 -1
  294. package/ui/checkbox/src/check-box.component.d.ts +9 -0
  295. package/ui/checkbox/src/tri-state-checkbox.component.d.ts +9 -0
  296. package/ui/confirmPopup/index.d.ts +1 -0
  297. package/ui/confirmPopup/src/confirm-popup.component.d.ts +9 -0
  298. package/ui/dxField/index.d.ts +1 -0
  299. package/ui/dxField/src/dx-field.component.d.ts +11 -0
  300. package/ui/field/index.d.ts +1 -0
  301. package/ui/field/src/field.component.d.ts +25 -0
  302. package/ui/fileUpload/index.d.ts +1 -0
  303. package/ui/fileUpload/src/file-upload.component.d.ts +46 -0
  304. package/ui/form/index.d.ts +2 -0
  305. package/ui/form/src/form-submit-button.component.d.ts +14 -0
  306. package/ui/form/src/form.component.d.ts +8 -0
  307. package/ui/lib/index.d.ts +9 -2
  308. package/ui/lib/src/form/form-error-message.component.d.ts +9 -0
  309. package/ui/lib/src/form/form-error-message.directive.d.ts +14 -0
  310. package/ui/lib/src/form/form-field-builder.d.ts +1 -0
  311. package/ui/lib/src/grid/flex-grid.directive.d.ts +6 -0
  312. package/ui/lib/src/input/baseInput.d.ts +7 -0
  313. package/ui/lib/src/input/dx-input-error-message.pipe.d.ts +11 -0
  314. package/ui/lib/src/input/input-error-message.pipe.d.ts +7 -0
  315. package/ui/lib/src/input/input-transforms.d.ts +5 -0
  316. package/ui/lib/src/input/value-accessor.directive.d.ts +9 -0
  317. package/ui/mask/index.d.ts +1 -0
  318. package/ui/mask/src/mask.component.d.ts +21 -0
  319. package/ui/number/index.d.ts +1 -0
  320. package/ui/number/src/number.component.d.ts +24 -0
  321. package/ui/overlayPanel/index.d.ts +1 -0
  322. package/ui/overlayPanel/src/overlay-panel.component.d.ts +8 -0
  323. package/ui/panel/index.d.ts +1 -0
  324. package/ui/panel/src/panel.component.d.ts +11 -0
  325. package/ui/password/index.d.ts +1 -0
  326. package/ui/password/src/password.component.d.ts +11 -0
  327. package/ui/radioButton/index.d.ts +1 -0
  328. package/ui/radioButton/src/radio-button.component.d.ts +18 -0
  329. package/ui/selectBox/index.d.ts +1 -0
  330. package/ui/selectBox/src/select-box.component.d.ts +20 -0
  331. package/ui/switch/index.d.ts +1 -0
  332. package/ui/switch/src/switch.component.d.ts +8 -0
  333. package/ui/table/index.d.ts +2 -0
  334. package/ui/table/src/i18n.d.ts +42 -0
  335. package/ui/table/src/table-column.component.d.ts +22 -0
  336. package/ui/table/src/table.component.d.ts +30 -0
  337. package/ui/tagBox/index.d.ts +1 -0
  338. package/ui/tagBox/src/tag-box.component.d.ts +15 -0
  339. package/ui/text/index.d.ts +1 -0
  340. package/ui/text/src/text.component.d.ts +17 -0
  341. package/ui/textArea/index.d.ts +1 -0
  342. package/ui/textArea/src/text-area.component.d.ts +11 -0
  343. package/ui/tree/index.d.ts +1 -0
  344. package/ui/tree/src/tree.component.d.ts +25 -0
  345. package/ui/treeTable/index.d.ts +1 -0
  346. package/ui/treeTable/src/tree-table.component.d.ts +25 -0
  347. package/ui/value/index.d.ts +1 -0
  348. package/ui/value/src/value.component.d.ts +15 -0
  349. package/util/init-event/src/init-event.directive.d.ts +4 -4
  350. package/util/lib/src/types.d.ts +7 -0
  351. package/util/primitive-extensions/src/string.extensions.d.ts +1 -0
  352. package/esm2022/ui/checkbox/src/checkbox.component.mjs +0 -11
  353. package/ui/checkbox/src/checkbox.component.d.ts +0 -5
@@ -0,0 +1,64 @@
1
+ .p-fileupload {
2
+ .p-fileupload-buttonbar {
3
+ background: $panelHeaderBg;
4
+ padding: $panelHeaderPadding;
5
+ border: $panelHeaderBorder;
6
+ color: $panelHeaderTextColor;
7
+ border-bottom: 0 none;
8
+ border-top-right-radius: $borderRadius;
9
+ border-top-left-radius: $borderRadius;
10
+
11
+ .p-button {
12
+ margin-right: $inlineSpacing;
13
+
14
+ &.p-fileupload-choose.p-focus {
15
+ @include focused();
16
+ }
17
+ }
18
+ }
19
+
20
+ .p-fileupload-content {
21
+ background: $panelContentBg;
22
+ padding: $fileUploadContentPadding;
23
+ border: $panelContentBorder;
24
+ color: $panelContentTextColor;
25
+ border-bottom-right-radius: $borderRadius;
26
+ border-bottom-left-radius: $borderRadius;
27
+
28
+ &.p-fileupload-highlight {
29
+ border-color: $fileUploadContentHoverBorder;
30
+ border-style: dashed;
31
+ background-color: $highlightBg;
32
+ }
33
+ }
34
+
35
+ .p-progressbar {
36
+ height: $fileUploadProgressBarHeight;
37
+ }
38
+
39
+ .p-fileupload-row {
40
+ > div {
41
+ padding: $tableBodyCellPadding;
42
+ }
43
+ }
44
+
45
+ &.p-fileupload-advanced {
46
+ .p-message {
47
+ margin-top: 0;
48
+ }
49
+ }
50
+ }
51
+
52
+ .p-fileupload-choose {
53
+ &:not(.p-disabled):hover {
54
+ background: $buttonHoverBg;
55
+ color: $buttonTextHoverColor;
56
+ border-color: $buttonHoverBorderColor;
57
+ }
58
+
59
+ &:not(.p-disabled):active {
60
+ background: $buttonActiveBg;
61
+ color: $buttonTextActiveColor;
62
+ border-color: $buttonActiveBorderColor;
63
+ }
64
+ }
@@ -0,0 +1,136 @@
1
+ @use 'sass:math';
2
+
3
+ .p-autocomplete {
4
+ .p-autocomplete-loader {
5
+ right: nth($inputPadding, 2);
6
+ }
7
+
8
+ &.p-autocomplete-dd {
9
+ .p-autocomplete-loader {
10
+ right: nth($inputPadding, 2) + $buttonIconOnlyWidth;
11
+ }
12
+ }
13
+
14
+ &:not(.p-disabled):hover {
15
+ .p-autocomplete-multiple-container {
16
+ border-color: $inputHoverBorderColor;
17
+ }
18
+ }
19
+
20
+ &:not(.p-disabled).p-focus {
21
+ .p-autocomplete-multiple-container {
22
+ @include focused-input();
23
+ }
24
+ }
25
+
26
+ .p-autocomplete-multiple-container {
27
+ padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
28
+ gap: $inlineSpacing;
29
+
30
+ .p-autocomplete-input-token {
31
+ padding: math.div(nth($inputPadding, 1), 2) 0;
32
+
33
+ input {
34
+ font-family: var(--font-family);
35
+ font-feature-settings: var(--font-feature-settings, normal);
36
+ font-size: $inputTextFontSize;
37
+ color: $textColor;
38
+ padding: 0;
39
+ margin: 0;
40
+ }
41
+ }
42
+
43
+ .p-autocomplete-token {
44
+ padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
45
+ background: $chipBg;
46
+ color: $chipTextColor;
47
+ border-radius: $chipBorderRadius;
48
+
49
+ .p-autocomplete-token-icon {
50
+ margin-left: $inlineSpacing;
51
+ }
52
+
53
+ &.p-focus {
54
+ background: $chipFocusBg;
55
+ color: $chipFocusTextColor;
56
+ }
57
+ }
58
+ }
59
+
60
+ &.p-invalid.p-component > .p-inputtext {
61
+ @include invalid-input();
62
+ }
63
+ }
64
+
65
+ .p-autocomplete-panel {
66
+ background: $inputOverlayBg;
67
+ color: $inputListTextColor;
68
+ border: $inputOverlayBorder;
69
+ border-radius: $borderRadius;
70
+ box-shadow: $inputOverlayShadow;
71
+
72
+ .p-autocomplete-items {
73
+ padding: $inputListPadding;
74
+
75
+ .p-autocomplete-item {
76
+ margin: $inputListItemMargin;
77
+ padding: $inputListItemPadding;
78
+ border: $inputListItemBorder;
79
+ color: $inputListItemTextColor;
80
+ background: $inputListItemBg;
81
+ transition: $listItemTransition;
82
+ border-radius: $inputListItemBorderRadius;
83
+
84
+ &.p-highlight {
85
+ color: $highlightTextColor;
86
+ background: $highlightBg;
87
+
88
+ &.p-focus {
89
+ background: $highlightFocusBg;
90
+ }
91
+ }
92
+
93
+ &:not(.p-highlight):not(.p-disabled) {
94
+ &.p-focus {
95
+ color: $inputListItemTextFocusColor;
96
+ background: $inputListItemFocusBg;
97
+ }
98
+
99
+ &:hover {
100
+ color: $inputListItemTextHoverColor;
101
+ background: $inputListItemHoverBg;
102
+ }
103
+ }
104
+ }
105
+
106
+ .p-autocomplete-item-group {
107
+ margin: $submenuHeaderMargin;
108
+ padding: $submenuHeaderPadding;
109
+ color: $submenuHeaderTextColor;
110
+ background: $submenuHeaderBg;
111
+ font-weight: $submenuHeaderFontWeight;
112
+ }
113
+ }
114
+ }
115
+
116
+ p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext {
117
+ @include invalid-input();
118
+ }
119
+
120
+ p-autocomplete.p-autocomplete-clearable {
121
+ .p-inputtext {
122
+ padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
123
+ }
124
+
125
+ .p-autocomplete-clear-icon {
126
+ color: $inputIconColor;
127
+ right: nth($inputPadding, 2);
128
+ }
129
+ }
130
+
131
+ p-autocomplete.p-autocomplete-clearable .p-autocomplete-dd {
132
+ .p-autocomplete-clear-icon {
133
+ color: $inputIconColor;
134
+ right: $buttonIconOnlyWidth + nth($inputPadding, 2);
135
+ }
136
+ }
@@ -0,0 +1,267 @@
1
+ p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext {
2
+ @include invalid-input();
3
+ }
4
+
5
+ .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
6
+ @include focused-input();
7
+ }
8
+
9
+ .p-datepicker {
10
+ padding: $calendarPadding;
11
+ background: $calendarInlineBg;
12
+ color: $calendarTextColor;
13
+ border: $calendarBorder;
14
+ border-radius: $borderRadius;
15
+
16
+ &:not(.p-datepicker-inline) {
17
+ background: $calendarBg;
18
+ border: $calendarOverlayBorder;
19
+ box-shadow: $inputOverlayShadow;
20
+
21
+ .p-datepicker-header {
22
+ background: $calendarHeaderBg;
23
+ }
24
+ }
25
+
26
+ .p-datepicker-header {
27
+ padding: $calendarHeaderPadding;
28
+ color: $calendarHeaderTextColor;
29
+ background: $calendarInlineHeaderBg;
30
+ font-weight: $calendarHeaderFontWeight;
31
+ margin: $inputListHeaderMargin;
32
+ border-bottom: $calendarHeaderBorder;
33
+ border-top-right-radius: $borderRadius;
34
+ border-top-left-radius: $borderRadius;
35
+
36
+ .p-datepicker-prev,
37
+ .p-datepicker-next {
38
+ @include action-icon();
39
+ }
40
+
41
+ .p-datepicker-title {
42
+ line-height: $actionIconHeight;
43
+
44
+ .p-datepicker-year,
45
+ .p-datepicker-month {
46
+ color: $calendarHeaderTextColor;
47
+ transition: $actionIconTransition;
48
+ font-weight: $calendarHeaderFontWeight;
49
+ padding: $calendarHeaderCellPadding;
50
+
51
+ &:enabled:hover {
52
+ color: $calendarMonthYearHeaderHoverTextColor;
53
+ }
54
+ }
55
+
56
+ .p-datepicker-month {
57
+ margin-right: $inlineSpacing;
58
+ }
59
+ }
60
+ }
61
+
62
+ table {
63
+ font-size: $fontSize;
64
+ margin: $calendarTableMargin;
65
+
66
+ th {
67
+ padding: $calendarHeaderCellPadding;
68
+
69
+ > span {
70
+ width: $calendarCellDateWidth;
71
+ height: $calendarCellDateHeight;
72
+ }
73
+ }
74
+
75
+ td {
76
+ padding: $calendarCellDatePadding;
77
+
78
+ > span {
79
+ width: $calendarCellDateWidth;
80
+ height: $calendarCellDateHeight;
81
+ border-radius: $calendarCellDateBorderRadius;
82
+ transition: $listItemTransition;
83
+ border: $calendarCellDateBorder;
84
+
85
+ &.p-highlight {
86
+ color: $highlightTextColor;
87
+ background: $highlightBg;
88
+ }
89
+
90
+ &:focus {
91
+ @include focused();
92
+ }
93
+ }
94
+
95
+ &.p-datepicker-today {
96
+ > span {
97
+ background: $calendarCellDateTodayBg;
98
+ color: $calendarCellDateTodayTextColor;
99
+ border-color: $calendarCellDateTodayBorderColor;
100
+
101
+ &.p-highlight {
102
+ color: $highlightTextColor;
103
+ background: $highlightBg;
104
+ }
105
+ }
106
+ }
107
+ }
108
+ }
109
+
110
+ .p-datepicker-buttonbar {
111
+ padding: $calendarButtonBarPadding;
112
+ border-top: $divider;
113
+
114
+ .p-button {
115
+ width: auto;
116
+ }
117
+ }
118
+
119
+ .p-timepicker {
120
+ border-top: $divider;
121
+ padding: $calendarTimePickerPadding;
122
+
123
+ button {
124
+ @include action-icon();
125
+
126
+ &:last-child {
127
+ margin-top: .2em;
128
+ }
129
+ }
130
+
131
+ span {
132
+ font-size: $calendarTimePickerTimeFontSize;
133
+ }
134
+
135
+ > div {
136
+ padding: $calendarTimePickerElementPadding;
137
+ }
138
+ }
139
+
140
+ &.p-datepicker-timeonly {
141
+ .p-timepicker {
142
+ border-top: 0 none;
143
+ }
144
+ }
145
+
146
+ .p-monthpicker {
147
+ margin: $calendarTableMargin;
148
+
149
+ .p-monthpicker-month {
150
+ padding: $calendarCellDatePadding;
151
+ transition: $listItemTransition;
152
+ border-radius: $borderRadius;
153
+
154
+ &.p-highlight {
155
+ color: $highlightTextColor;
156
+ background: $highlightBg;
157
+ }
158
+ }
159
+ }
160
+
161
+ .p-yearpicker {
162
+ margin: $calendarTableMargin;
163
+
164
+ .p-yearpicker-year {
165
+ padding: $calendarCellDatePadding;
166
+ transition: $listItemTransition;
167
+ border-radius: $borderRadius;
168
+
169
+ &.p-highlight {
170
+ color: $highlightTextColor;
171
+ background: $highlightBg;
172
+ }
173
+ }
174
+ }
175
+
176
+ &.p-datepicker-multiple-month {
177
+ .p-datepicker-group {
178
+ border-left: $divider;
179
+ padding-right: $calendarPadding;
180
+ padding-left: $calendarPadding;
181
+ padding-top: 0;
182
+ padding-bottom: 0;
183
+
184
+ &:first-child {
185
+ padding-left: 0;
186
+ border-left: 0 none;
187
+ }
188
+
189
+ &:last-child {
190
+ padding-right: 0;
191
+ }
192
+ }
193
+ }
194
+
195
+ &:not(.p-disabled) {
196
+ table {
197
+ td {
198
+ span:not(.p-highlight):not(.p-disabled) {
199
+ &:hover {
200
+ background: $calendarCellDateHoverBg;
201
+ }
202
+
203
+ &:focus {
204
+ @include focused();
205
+ }
206
+ }
207
+ }
208
+ }
209
+
210
+ .p-monthpicker {
211
+ .p-monthpicker-month {
212
+ &:not(.p-disabled) {
213
+ &:not(.p-highlight):hover {
214
+ background: $calendarCellDateHoverBg;
215
+ }
216
+
217
+ &:focus {
218
+ @include focused();
219
+ }
220
+ }
221
+ }
222
+ }
223
+
224
+ .p-yearpicker {
225
+ .p-yearpicker-year {
226
+ &:not(.p-disabled) {
227
+ &:not(.p-highlight):hover {
228
+ background: $calendarCellDateHoverBg;
229
+ }
230
+
231
+ &:focus {
232
+ @include focused();
233
+ }
234
+ }
235
+ }
236
+ }
237
+ }
238
+
239
+ }
240
+
241
+ p-calendar.p-calendar-clearable {
242
+ .p-inputtext {
243
+ padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
244
+ }
245
+
246
+ .p-calendar-clear-icon {
247
+ color: $inputIconColor;
248
+ right: nth($inputPadding, 2);
249
+ }
250
+ }
251
+
252
+ p-calendar.p-calendar-clearable .p-calendar-w-btn {
253
+ .p-calendar-clear-icon {
254
+ color: $inputIconColor;
255
+ right: $buttonIconOnlyWidth + nth($inputPadding, 2);
256
+ }
257
+ }
258
+
259
+ @media screen and (max-width: $calendarBreakpoint) {
260
+ .p-datepicker {
261
+ table {
262
+ th, td {
263
+ padding: $calendarCellDatePaddingSM;
264
+ }
265
+ }
266
+ }
267
+ }
@@ -0,0 +1,136 @@
1
+ @use 'sass:math';
2
+ .p-cascadeselect {
3
+ background: $inputBg;
4
+ border: $inputBorder;
5
+ transition: $formElementTransition;
6
+ border-radius: $borderRadius;
7
+
8
+ &:not(.p-disabled):hover {
9
+ border-color: $inputHoverBorderColor;
10
+ }
11
+
12
+ &:not(.p-disabled).p-focus {
13
+ @include focused-input();
14
+ }
15
+
16
+ .p-cascadeselect-label {
17
+ background: transparent;
18
+ border: 0 none;
19
+ padding: $inputPadding;
20
+
21
+ &.p-placeholder {
22
+ color: $inputPlaceholderTextColor;
23
+ }
24
+
25
+ &:enabled:focus {
26
+ outline: 0 none;
27
+ box-shadow: none;
28
+ }
29
+ }
30
+
31
+ .p-cascadeselect-trigger {
32
+ background: transparent;
33
+ color: $inputIconColor;
34
+ width: $inputGroupAddOnMinWidth;
35
+ border-top-right-radius: $borderRadius;
36
+ border-bottom-right-radius: $borderRadius;
37
+ }
38
+
39
+ &.p-invalid.p-component {
40
+ @include invalid-input();
41
+ }
42
+ }
43
+
44
+ .p-cascadeselect-panel {
45
+ background: $inputOverlayBg;
46
+ color: $inputListTextColor;
47
+ border: $inputOverlayBorder;
48
+ border-radius: $borderRadius;
49
+ box-shadow: $inputOverlayShadow;
50
+
51
+ .p-cascadeselect-items {
52
+ padding: $inputListPadding;
53
+
54
+ .p-cascadeselect-item {
55
+ margin: $inputListItemMargin;
56
+ border: $inputListItemBorder;
57
+ color: $inputListItemTextColor;
58
+ background: $inputListItemBg;
59
+ transition: $listItemTransition;
60
+ border-radius: $inputListItemBorderRadius;
61
+
62
+ &.p-highlight {
63
+ color: $highlightTextColor;
64
+ background: $highlightBg;
65
+
66
+ &.p-focus {
67
+ background: $highlightFocusBg;
68
+ }
69
+ }
70
+
71
+ &:not(.p-highlight):not(.p-disabled) {
72
+ &.p-focus {
73
+ color: $inputListItemTextFocusColor;
74
+ background: $inputListItemFocusBg;
75
+ }
76
+
77
+ &:hover {
78
+ color: $inputListItemTextHoverColor;
79
+ background: $inputListItemHoverBg;
80
+ }
81
+ }
82
+
83
+
84
+ .p-cascadeselect-item-content {
85
+ padding: $inputListItemPadding;
86
+ }
87
+
88
+ .p-cascadeselect-group-icon {
89
+ font-size: $menuitemSubmenuIconFontSize;
90
+ }
91
+ }
92
+ }
93
+ }
94
+
95
+ .p-input-filled {
96
+ .p-cascadeselect {
97
+ background: $inputFilledBg;
98
+
99
+ &:not(.p-disabled):hover {
100
+ background-color: $inputFilledHoverBg;
101
+ }
102
+
103
+ &:not(.p-disabled).p-focus {
104
+ background-color: $inputFilledFocusBg;
105
+ }
106
+ }
107
+ }
108
+
109
+ p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect {
110
+ @include invalid-input();
111
+ }
112
+
113
+ p-cascadeselect.p-cascadeselect-clearable {
114
+ .p-cascadeselect-label {
115
+ padding-right: nth($inputPadding, 2);
116
+ }
117
+
118
+ .p-cascadeselect-clear-icon {
119
+ color: $inputIconColor;
120
+ right: $inputGroupAddOnMinWidth;
121
+ }
122
+ }
123
+
124
+ .p-overlay-modal {
125
+ .p-cascadeselect-sublist {
126
+ .p-cascadeselect-panel {
127
+ box-shadow: none;
128
+ border-radius: 0;
129
+ padding: math.div($inlineSpacing, 2) 0 math.div($inlineSpacing, 2) $inlineSpacing;
130
+ }
131
+ }
132
+
133
+ .p-cascadeselect-item-active > .p-cascadeselect-item-content .p-cascadeselect-group-icon {
134
+ transform: rotate(90deg);
135
+ }
136
+ }
@@ -0,0 +1,94 @@
1
+ .p-checkbox {
2
+ width: $checkboxWidth;
3
+ height: $checkboxHeight;
4
+
5
+ .p-checkbox-box {
6
+ border: $checkboxBorder;
7
+ background: $inputBg;
8
+ width: $checkboxWidth;
9
+ height: $checkboxHeight;
10
+ color: $textColor;
11
+ border-radius: $borderRadius;
12
+ transition: $formElementTransition;
13
+
14
+ .p-checkbox-icon {
15
+ transition-duration: $transitionDuration;
16
+ color: $checkboxIconActiveColor;
17
+ font-size: $checkboxIconFontSize;
18
+ }
19
+
20
+ .p-icon {
21
+ width: $checkboxIconFontSize;
22
+ height: $checkboxIconFontSize;
23
+ }
24
+
25
+ &.p-highlight {
26
+ border-color: $checkboxActiveBorderColor;
27
+ background: $checkboxActiveBg;
28
+ }
29
+ }
30
+
31
+ &:not(.p-checkbox-disabled) {
32
+ .p-checkbox-box {
33
+ &:hover {
34
+ border-color: $inputHoverBorderColor;
35
+ }
36
+
37
+ &.p-focus {
38
+ @include focused-input();
39
+ }
40
+
41
+ &.p-highlight:hover {
42
+ border-color: $checkboxActiveHoverBorderColor;
43
+ background: $checkboxActiveHoverBg;
44
+ color: $checkboxIconActiveHoverColor;
45
+ }
46
+ }
47
+ }
48
+ }
49
+
50
+ p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box {
51
+ @include invalid-input();
52
+ }
53
+
54
+ .p-input-filled {
55
+ .p-checkbox {
56
+ .p-checkbox-box {
57
+ background-color: $inputFilledBg;
58
+
59
+ &.p-highlight {
60
+ background: $checkboxActiveBg;
61
+ }
62
+ }
63
+
64
+ &:not(.p-checkbox-disabled) {
65
+ .p-checkbox-box {
66
+ &:hover {
67
+ background-color: $inputFilledHoverBg;
68
+ }
69
+
70
+ &.p-highlight:hover {
71
+ background: $checkboxActiveHoverBg;
72
+ }
73
+ }
74
+ }
75
+ }
76
+ }
77
+
78
+ .p-checkbox-label {
79
+ margin-left: $inlineSpacing;
80
+ }
81
+
82
+ @if ($highlightBg == $checkboxActiveBg) {
83
+ .p-highlight {
84
+ .p-checkbox {
85
+ .p-checkbox-box {
86
+ border-color: $checkboxIconActiveColor;
87
+ }
88
+ }
89
+ }
90
+ }
91
+
92
+ p-tristatecheckbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box {
93
+ @include invalid-input();
94
+ }