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,139 @@
1
+ @use 'sass:math';
2
+
3
+ .p-treeselect {
4
+ background: $inputBg;
5
+ border: $inputBorder;
6
+ transition: $formElementTransition;
7
+ border-radius: $borderRadius;
8
+
9
+ &:not(.p-disabled):hover {
10
+ border-color: $inputHoverBorderColor;
11
+ }
12
+
13
+ &:not(.p-disabled).p-focus {
14
+ @include focused-input();
15
+ }
16
+
17
+ .p-treeselect-label {
18
+ padding: $inputPadding;
19
+ transition: $formElementTransition;
20
+
21
+ &.p-placeholder {
22
+ color: $inputPlaceholderTextColor;
23
+ }
24
+ }
25
+
26
+ &.p-treeselect-chip {
27
+ .p-treeselect-token {
28
+ padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
29
+ margin-right: $inlineSpacing;
30
+ background: $chipBg;
31
+ color: $chipTextColor;
32
+ border-radius: $chipBorderRadius;
33
+ }
34
+ }
35
+
36
+ .p-treeselect-trigger {
37
+ background: transparent;
38
+ color: $inputIconColor;
39
+ width: $inputGroupAddOnMinWidth;
40
+ border-top-right-radius: $borderRadius;
41
+ border-bottom-right-radius: $borderRadius;
42
+ }
43
+ }
44
+
45
+ p-treeselect.ng-invalid.ng-dirty > .p-treeselect {
46
+ @include invalid-input();
47
+ }
48
+
49
+ .p-inputwrapper-filled {
50
+ .p-treeselect {
51
+ &.p-treeselect-chip {
52
+ .p-treeselect-label {
53
+ padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
54
+ }
55
+ }
56
+ }
57
+ }
58
+
59
+ .p-treeselect-panel {
60
+ background: $inputOverlayBg;
61
+ color: $inputListTextColor;
62
+ border: $inputOverlayBorder;
63
+ border-radius: $borderRadius;
64
+ box-shadow: $inputOverlayShadow;
65
+
66
+ .p-treeselect-header {
67
+ padding: $inputListHeaderPadding;
68
+ border-bottom: $inputListHeaderBorder;
69
+ color: $inputListHeaderTextColor;
70
+ background: $inputOverlayHeaderBg;
71
+ margin: $inputListHeaderMargin;
72
+ border-top-right-radius: $borderRadius;
73
+ border-top-left-radius: $borderRadius;
74
+
75
+ .p-treeselect-filter-container {
76
+ margin-right: $inlineSpacing;
77
+
78
+ .p-treeselect-filter {
79
+ padding-right: nth($inputPadding, 2) + $primeIconFontSize;
80
+ }
81
+
82
+ .p-treeselect-filter-icon {
83
+ right: nth($inputPadding, 2);
84
+ color: $inputIconColor;
85
+ }
86
+
87
+ &.p-treeselect-clearable-filter {
88
+ .p-treeselect-filter {
89
+ padding-right: 2 * (nth($inputPadding, 2) + $primeIconFontSize);
90
+ }
91
+
92
+ .p-treeselect-filter-clear-icon {
93
+ right: (2 * nth($inputPadding, 2)) + $primeIconFontSize;
94
+ }
95
+ }
96
+ }
97
+
98
+ .p-treeselect-close {
99
+ @include action-icon();
100
+ }
101
+ }
102
+
103
+ .p-treeselect-items-wrapper {
104
+ .p-tree {
105
+ border: 0 none;
106
+ }
107
+
108
+ .p-treeselect-empty-message {
109
+ padding: $inputListItemPadding;
110
+ color: $inputListItemTextColor;
111
+ background: $inputListItemBg;
112
+ }
113
+ }
114
+ }
115
+
116
+ .p-input-filled {
117
+ .p-treeselect {
118
+ background: $inputFilledBg;
119
+
120
+ &:not(.p-disabled):hover {
121
+ background-color: $inputFilledHoverBg;
122
+ }
123
+
124
+ &:not(.p-disabled).p-focus {
125
+ background-color: $inputFilledFocusBg;
126
+ }
127
+ }
128
+ }
129
+
130
+ p-treeselect.p-treeselect-clearable {
131
+ .p-treeselect-label-container {
132
+ padding-right: nth($inputPadding, 2) + $primeIconFontSize;
133
+ }
134
+
135
+ .p-treeselect-clear-icon {
136
+ color: $inputIconColor;
137
+ right: $buttonIconOnlyWidth;
138
+ }
139
+ }
@@ -0,0 +1,42 @@
1
+ .p-breadcrumb {
2
+ background: $breadcrumbBg;
3
+ border: $breadcrumbBorder;
4
+ border-radius: $borderRadius;
5
+ padding: $breadcrumbPadding;
6
+
7
+ .p-breadcrumb-list {
8
+ li {
9
+ .p-menuitem-link {
10
+ transition: $listItemTransition;
11
+ border-radius: $borderRadius;
12
+
13
+ &:focus-visible {
14
+ @include focused();
15
+ }
16
+
17
+ .p-menuitem-text {
18
+ color: $breadcrumbItemTextColor;
19
+ }
20
+
21
+ .p-menuitem-icon {
22
+ color: $breadcrumbItemIconColor;
23
+ }
24
+ }
25
+
26
+ &.p-menuitem-separator {
27
+ margin: 0 $inlineSpacing 0 $inlineSpacing;
28
+ color: $breadcrumbSeparatorColor;
29
+ }
30
+
31
+ &:last-child {
32
+ .p-menuitem-text {
33
+ color: $breadcrumbLastItemTextColor;
34
+ }
35
+
36
+ .p-menuitem-icon {
37
+ color: $breadcrumbLastItemIconColor;
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
@@ -0,0 +1,39 @@
1
+ .p-contextmenu {
2
+ padding: $verticalMenuPadding;
3
+ background: $overlayMenuBg;
4
+ color: $menuTextColor;
5
+ border: $overlayMenuBorder;
6
+ box-shadow: $overlayMenuShadow;
7
+ border-radius: $borderRadius;
8
+ width: $menuWidth;
9
+
10
+ .p-contextmenu-root-list {
11
+ outline: 0 none;
12
+ }
13
+
14
+ .p-submenu-list {
15
+ padding: $verticalMenuPadding;
16
+ background: $overlayMenuBg;
17
+ border: $overlayMenuBorder;
18
+ box-shadow: $overlayMenuShadow;
19
+ border-radius: $borderRadius;
20
+ }
21
+
22
+ .p-menuitem {
23
+ @include menuitem();
24
+ }
25
+
26
+ .p-menuitem-separator {
27
+ border-top: $divider;
28
+ margin: $menuSeparatorMargin;
29
+ }
30
+
31
+ .p-submenu-icon {
32
+ font-size: $menuitemSubmenuIconFontSize;
33
+
34
+ &.p-icon {
35
+ width: $menuitemSubmenuIconFontSize;
36
+ height: $menuitemSubmenuIconFontSize;
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,95 @@
1
+ .p-dock {
2
+ .p-dock-list-container {
3
+ background: $dockBg;
4
+ border: $dockBorder;
5
+ padding: $dockPadding;
6
+ border-radius: $dockBorderRadius;
7
+
8
+ .p-dock-list {
9
+ outline: 0 none;
10
+ }
11
+ }
12
+
13
+ .p-dock-item {
14
+ padding: $dockItemPadding;
15
+ border-radius: $dockItemBorderRadius;
16
+
17
+ &.p-focus {
18
+ @include focused-listitem();
19
+ }
20
+ }
21
+
22
+ .p-dock-link {
23
+ width: $dockActionWidth;
24
+ height: $dockActionHeight;
25
+ }
26
+
27
+ &.p-dock-top,
28
+ &.p-dock-bottom {
29
+ .p-dock-item-second-prev,
30
+ .p-dock-item-second-next {
31
+ margin: 0 $dockSecondItemsMargin;
32
+ }
33
+
34
+ .p-dock-item-prev,
35
+ .p-dock-item-next {
36
+ margin: 0 $dockFirstItemsMargin;
37
+ }
38
+
39
+ .p-dock-item-current {
40
+ margin: 0 $dockCurrentItemMargin;
41
+ }
42
+ }
43
+
44
+ &.p-dock-left,
45
+ &.p-dock-right {
46
+ .p-dock-item-second-prev,
47
+ .p-dock-item-second-next {
48
+ margin: $dockSecondItemsMargin 0;
49
+ }
50
+
51
+ .p-dock-item-prev,
52
+ .p-dock-item-next {
53
+ margin: $dockFirstItemsMargin 0;
54
+ }
55
+
56
+ .p-dock-item-current {
57
+ margin: $dockCurrentItemMargin 0;
58
+ }
59
+ }
60
+ }
61
+
62
+ @media screen and (max-width: 960px) {
63
+ .p-dock {
64
+ &.p-dock-top,
65
+ &.p-dock-bottom {
66
+ .p-dock-list-container {
67
+ overflow-x: auto;
68
+ width: 100%;
69
+
70
+ .p-dock-list {
71
+ margin: 0 auto;
72
+ }
73
+ }
74
+ }
75
+
76
+ &.p-dock-left,
77
+ &.p-dock-right {
78
+ .p-dock-list-container {
79
+ overflow-y: auto;
80
+ height: 100%;
81
+
82
+ .p-dock-list {
83
+ margin: auto 0;
84
+ }
85
+ }
86
+ }
87
+
88
+ .p-dock-list {
89
+ .p-dock-item {
90
+ transform: none;
91
+ margin: 0;
92
+ }
93
+ }
94
+ }
95
+ }
@@ -0,0 +1,55 @@
1
+ .p-megamenu {
2
+ padding: $horizontalMenuPadding;
3
+ background: $horizontalMenuBg;
4
+ color: $horizontalMenuTextColor;
5
+ border: $horizontalMenuBorder;
6
+ border-radius: $borderRadius;
7
+
8
+ .p-megamenu-root-list {
9
+ outline: 0 none;
10
+ }
11
+
12
+ .p-menuitem {
13
+ @include menuitem();
14
+ }
15
+
16
+ .p-megamenu-panel {
17
+ background: $overlayMenuBg;
18
+ color: $menuTextColor;
19
+ border: $overlayMenuBorder;
20
+ box-shadow: $overlayMenuShadow;
21
+ }
22
+
23
+ .p-submenu-header {
24
+ margin: $submenuHeaderMargin;
25
+ padding: $submenuHeaderPadding;
26
+ color: $submenuHeaderTextColor;
27
+ background: $submenuHeaderBg;
28
+ font-weight: $submenuHeaderFontWeight;
29
+ border-top-right-radius: $borderRadius;
30
+ border-top-left-radius: $borderRadius;
31
+ }
32
+
33
+ .p-submenu-list {
34
+ padding: $verticalMenuPadding;
35
+ width: $menuWidth;
36
+
37
+ .p-menuitem-separator {
38
+ border-top: $divider;
39
+ margin: $menuSeparatorMargin;
40
+ }
41
+ }
42
+
43
+ &.p-megamenu-vertical {
44
+ width: $menuWidth;
45
+ padding: $verticalMenuPadding;
46
+ }
47
+
48
+ &.p-megamenu-horizontal {
49
+ .p-megamenu-root-list {
50
+ > .p-menuitem {
51
+ @include horizontal-rootmenuitem();
52
+ }
53
+ }
54
+ }
55
+ }
@@ -0,0 +1,37 @@
1
+ .p-menu {
2
+ padding: $verticalMenuPadding;
3
+ background: $menuBg;
4
+ color: $menuTextColor;
5
+ border: $menuBorder;
6
+ border-radius: $borderRadius;
7
+ width: $menuWidth;
8
+
9
+ .p-menuitem {
10
+ @include menuitem();
11
+ }
12
+
13
+ &.p-menu-overlay {
14
+ background: $overlayMenuBg;
15
+ border: $overlayMenuBorder;
16
+ box-shadow: $overlayMenuShadow;
17
+ }
18
+
19
+ .p-submenu-header {
20
+ margin: $submenuHeaderMargin;
21
+ padding: $submenuHeaderPadding;
22
+ color: $submenuHeaderTextColor;
23
+ background: $submenuHeaderBg;
24
+ font-weight: $submenuHeaderFontWeight;
25
+ border-top-right-radius: $submenuHeaderBorderRadius;
26
+ border-top-left-radius: $submenuHeaderBorderRadius;
27
+ }
28
+
29
+ .p-menuitem-separator {
30
+ border-top: $divider;
31
+ margin: $menuSeparatorMargin;
32
+ }
33
+
34
+ .p-menuitem-badge {
35
+ @include menuitem-badge();
36
+ }
37
+ }
@@ -0,0 +1,141 @@
1
+ .p-menubar {
2
+ padding: $horizontalMenuPadding;
3
+ background: $horizontalMenuBg;
4
+ color: $horizontalMenuTextColor;
5
+ border: $horizontalMenuBorder;
6
+ border-radius: $borderRadius;
7
+
8
+ .p-menubar-root-list {
9
+ outline: 0 none;
10
+
11
+ > .p-menuitem {
12
+ @include horizontal-rootmenuitem();
13
+ }
14
+ }
15
+
16
+ .p-menuitem {
17
+ @include menuitem();
18
+ }
19
+
20
+ .p-submenu-list {
21
+ padding: $verticalMenuPadding;
22
+ background: $overlayMenuBg;
23
+ border: $overlayMenuBorder;
24
+ box-shadow: $overlayMenuShadow;
25
+ width: $menuWidth;
26
+
27
+ .p-menuitem-separator {
28
+ border-top: $divider;
29
+ margin: $menuSeparatorMargin;
30
+ }
31
+
32
+ .p-submenu-icon {
33
+ font-size: $menuitemSubmenuIconFontSize;
34
+ }
35
+ }
36
+ }
37
+
38
+ @media screen and (max-width: 960px) {
39
+ .p-menubar {
40
+ position: relative;
41
+
42
+ .p-menubar-button {
43
+ display: flex;
44
+ width: $actionIconWidth;
45
+ height: $actionIconHeight;
46
+ color: $horizontalMenuRootMenuitemIconColor;
47
+ border-radius: $actionIconBorderRadius;
48
+ transition: $actionIconTransition;
49
+
50
+ &:hover {
51
+ color: $horizontalMenuRootMenuitemIconHoverColor;
52
+ background: $horizontalMenuRootMenuitemHoverBg;
53
+ }
54
+
55
+ &:focus {
56
+ @include focused();
57
+ }
58
+ }
59
+
60
+ .p-menubar-root-list {
61
+ position: absolute;
62
+ display: none;
63
+ padding: $verticalMenuPadding;
64
+ background: $overlayMenuBg;
65
+ border: $overlayMenuBorder;
66
+ box-shadow: $overlayMenuShadow;
67
+ width: 100%;
68
+
69
+ .p-menuitem-separator {
70
+ border-top: $divider;
71
+ margin: $menuSeparatorMargin;
72
+ }
73
+
74
+ .p-submenu-icon {
75
+ font-size: $menuitemSubmenuIconFontSize;
76
+ }
77
+
78
+ .p-menuitem {
79
+ width: 100%;
80
+ position: static;
81
+
82
+ .p-menuitem-content {
83
+ .p-menuitem-link {
84
+ .p-submenu-icon {
85
+ margin-left: auto;
86
+ transition: transform $transitionDuration;
87
+ }
88
+ }
89
+ }
90
+
91
+
92
+ &.p-menuitem-active {
93
+ > .p-menuitem-content {
94
+ > .p-menuitem-link {
95
+ > .p-submenu-icon {
96
+ transform: rotate(-180deg);
97
+ }
98
+ }
99
+ }
100
+ }
101
+ }
102
+
103
+ .p-submenu-list {
104
+ width: 100%;
105
+ position: static;
106
+ box-shadow: none;
107
+ border: 0 none;
108
+
109
+ .p-submenu-icon {
110
+ transition: transform $transitionDuration;
111
+ transform: rotate(90deg);
112
+ }
113
+
114
+ .p-menuitem-active {
115
+ > .p-menuitem-content {
116
+ > .p-menuitem-link {
117
+ > .p-submenu-icon {
118
+ transform: rotate(-90deg);
119
+ }
120
+ }
121
+ }
122
+ }
123
+ }
124
+
125
+ .p-menuitem {
126
+ width: 100%;
127
+ position: static;
128
+ }
129
+
130
+ @include nested-submenu-indents(nth($menuitemPadding, 1), 2, 10);
131
+ }
132
+
133
+ &.p-menubar-mobile-active .p-menubar-root-list {
134
+ display: flex;
135
+ flex-direction: column;
136
+ top: 100%;
137
+ left: 0;
138
+ z-index: 1;
139
+ }
140
+ }
141
+ }
@@ -0,0 +1,153 @@
1
+ .p-panelmenu {
2
+ .p-panelmenu-header {
3
+ outline: 0 none;
4
+
5
+ .p-panelmenu-header-content {
6
+ border: $accordionHeaderBorder;
7
+ color: $accordionHeaderTextColor;
8
+ background: $accordionHeaderBg;
9
+ border-radius: $borderRadius;
10
+ transition: $listItemTransition;
11
+
12
+ .p-panelmenu-header-action {
13
+ color: $accordionHeaderTextColor;
14
+ padding: $accordionHeaderPadding;
15
+ font-weight: $accordionHeaderFontWeight;
16
+
17
+ .p-submenu-icon {
18
+ margin-right: $inlineSpacing;
19
+ }
20
+
21
+ .p-menuitem-icon {
22
+ margin-right: $inlineSpacing;
23
+ }
24
+ }
25
+ }
26
+
27
+ &:not(.p-disabled) {
28
+ &:focus-visible {
29
+ .p-panelmenu-header-content {
30
+ @include focused-inset();
31
+ }
32
+ }
33
+ }
34
+
35
+ &:not(.p-highlight):not(.p-disabled):hover {
36
+ .p-panelmenu-header-content {
37
+ background: $accordionHeaderHoverBg;
38
+ border-color: $accordionHeaderHoverBorderColor;
39
+ color: $accordionHeaderTextHoverColor;
40
+ }
41
+ }
42
+
43
+ &:not(.p-disabled).p-highlight {
44
+ .p-panelmenu-header-content {
45
+ background: $accordionHeaderActiveBg;
46
+ border-color: $accordionHeaderActiveBorderColor;
47
+ color: $accordionHeaderTextActiveColor;
48
+ border-bottom-right-radius: 0;
49
+ border-bottom-left-radius: 0;
50
+ margin-bottom: 0;
51
+ }
52
+
53
+ &:hover {
54
+ .p-panelmenu-header-content {
55
+ border-color: $accordionHeaderActiveHoverBorderColor;
56
+ background: $accordionHeaderActiveHoverBg;
57
+ color: $accordionHeaderTextActiveHoverColor;
58
+ }
59
+ }
60
+ }
61
+ }
62
+
63
+ .p-panelmenu-content {
64
+ padding: $verticalMenuPadding;
65
+ border: $accordionContentBorder;
66
+ background: $accordionContentBg;
67
+ color: $accordionContentTextColor;
68
+ border-top: 0;
69
+ border-top-right-radius: 0;
70
+ border-top-left-radius: 0;
71
+ border-bottom-right-radius: $borderRadius;
72
+ border-bottom-left-radius: $borderRadius;
73
+
74
+ .p-panelmenu-root-list {
75
+ outline: 0 none;
76
+ }
77
+
78
+ .p-menuitem {
79
+ @include menuitem();
80
+
81
+ .p-menuitem-content {
82
+ .p-menuitem-link {
83
+ .p-submenu-icon {
84
+ margin-right: $inlineSpacing;
85
+ }
86
+ }
87
+ }
88
+ }
89
+
90
+ .p-menuitem-separator {
91
+ border-top: $divider;
92
+ margin: $menuSeparatorMargin;
93
+ }
94
+
95
+ .p-submenu-list:not(.p-panelmenu-root-list) {
96
+ padding: $treeNodeChildrenPadding;
97
+ }
98
+ }
99
+
100
+ .p-panelmenu-panel {
101
+ margin-bottom: $accordionSpacing;
102
+
103
+ @if $accordionSpacing == 0 {
104
+ .p-panelmenu-header {
105
+ .p-panelmenu-header-content {
106
+ border-radius: 0;
107
+ }
108
+ }
109
+
110
+ .p-panelmenu-content {
111
+ border-radius: 0;
112
+ }
113
+
114
+ &:not(:first-child) {
115
+ .p-panelmenu-header {
116
+ .p-panelmenu-header-content {
117
+ border-top: 0 none;
118
+ }
119
+
120
+ &:not(.p-highlight):not(.p-disabled):hover,
121
+ &:not(.p-disabled).p-highlight:hover {
122
+ .p-panelmenu-header-content {
123
+ border-top: 0 none;
124
+ }
125
+ }
126
+ }
127
+ }
128
+
129
+ &:first-child {
130
+ .p-panelmenu-header {
131
+ .p-panelmenu-header-content {
132
+ border-top-right-radius: $borderRadius;
133
+ border-top-left-radius: $borderRadius;
134
+ }
135
+ }
136
+ }
137
+
138
+ &:last-child {
139
+ .p-panelmenu-header:not(.p-highlight) {
140
+ .p-panelmenu-header-content {
141
+ border-bottom-right-radius: $borderRadius;
142
+ border-bottom-left-radius: $borderRadius;
143
+ }
144
+ }
145
+
146
+ .p-panelmenu-content {
147
+ border-bottom-right-radius: $borderRadius;
148
+ border-bottom-left-radius: $borderRadius;
149
+ }
150
+ }
151
+ }
152
+ }
153
+ }