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,354 @@
1
+ .p-splitbutton {
2
+ border-radius: $borderRadius;
3
+
4
+ &.p-button-outlined {
5
+ > .p-button {
6
+ background-color: transparent;
7
+ color: $buttonBg;
8
+ border: $outlinedButtonBorder;
9
+
10
+ &:not(:disabled):hover {
11
+ background: rgba($buttonBg, $textButtonHoverBgOpacity);
12
+ color: $buttonBg;
13
+ }
14
+
15
+ &:not(:disabled):active {
16
+ background: rgba($buttonBg, $textButtonActiveBgOpacity);
17
+ color: $buttonBg;
18
+ }
19
+ }
20
+
21
+ &.p-button-plain {
22
+ > .p-button {
23
+ color: $plainButtonTextColor;
24
+ border-color: $plainButtonTextColor;
25
+
26
+ &:not(:disabled):hover {
27
+ background: $plainButtonHoverBgColor;
28
+ color: $plainButtonTextColor;
29
+ }
30
+
31
+ &:not(:disabled):active {
32
+ background: $plainButtonActiveBgColor;
33
+ color: $plainButtonTextColor;
34
+ }
35
+ }
36
+ }
37
+ }
38
+
39
+ &.p-button-text {
40
+ > .p-button {
41
+ background-color: transparent;
42
+ color: $buttonBg;
43
+ border-color: transparent;
44
+
45
+ &:not(:disabled):hover {
46
+ background: rgba($buttonBg, $textButtonHoverBgOpacity);
47
+ color: $buttonBg;
48
+ border-color: transparent;
49
+ }
50
+
51
+ &:not(:disabled):active {
52
+ background: rgba($buttonBg, $textButtonActiveBgOpacity);
53
+ color: $buttonBg;
54
+ border-color: transparent;
55
+ }
56
+ }
57
+
58
+ &.p-button-plain {
59
+ > .p-button {
60
+ color: $plainButtonTextColor;
61
+
62
+ &:not(:disabled):hover {
63
+ background: $plainButtonHoverBgColor;
64
+ color: $plainButtonTextColor;
65
+ }
66
+
67
+ &:not(:disabled):active {
68
+ background: $plainButtonActiveBgColor;
69
+ color: $plainButtonTextColor;
70
+ }
71
+ }
72
+ }
73
+ }
74
+
75
+ &.p-button-raised {
76
+ box-shadow: $raisedButtonShadow;
77
+ }
78
+
79
+ &.p-button-rounded {
80
+ border-radius: $roundedButtonBorderRadius;
81
+
82
+ > .p-button {
83
+ border-radius: $roundedButtonBorderRadius;
84
+ }
85
+ }
86
+
87
+ &.p-button-sm {
88
+ > .p-button {
89
+ @include scaledFontSize($fontSize, $scaleSM);
90
+ @include scaledPadding($buttonPadding, $scaleSM);
91
+
92
+ .p-button-icon {
93
+ @include scaledFontSize($primeIconFontSize, $scaleSM);
94
+ }
95
+ }
96
+ }
97
+
98
+ &.p-button-lg {
99
+ > .p-button {
100
+ @include scaledFontSize($fontSize, $scaleLG);
101
+ @include scaledPadding($buttonPadding, $scaleLG);
102
+
103
+ .p-button-icon {
104
+ @include scaledFontSize($primeIconFontSize, $scaleLG);
105
+ }
106
+ }
107
+ }
108
+ }
109
+
110
+ .p-splitbutton.p-button-secondary {
111
+ &.p-button-outlined {
112
+ > .p-button {
113
+ background-color: transparent;
114
+ color: $secondaryButtonBg;
115
+ border: $outlinedButtonBorder;
116
+
117
+ &:not(:disabled):hover {
118
+ background: rgba($secondaryButtonBg, $textButtonHoverBgOpacity);
119
+ color: $secondaryButtonBg;
120
+ }
121
+
122
+ &:not(:disabled):active {
123
+ background: rgba(
124
+ $secondaryButtonBg,
125
+ $textButtonActiveBgOpacity
126
+ );
127
+ color: $secondaryButtonBg;
128
+ }
129
+ }
130
+ }
131
+
132
+ &.p-button-text {
133
+ > .p-button {
134
+ background-color: transparent;
135
+ color: $secondaryButtonBg;
136
+ border-color: transparent;
137
+
138
+ &:not(:disabled):hover {
139
+ background: rgba($secondaryButtonBg, $textButtonHoverBgOpacity);
140
+ border-color: transparent;
141
+ color: $secondaryButtonBg;
142
+ }
143
+
144
+ &:not(:disabled):active {
145
+ background: rgba(
146
+ $secondaryButtonBg,
147
+ $textButtonActiveBgOpacity
148
+ );
149
+ border-color: transparent;
150
+ color: $secondaryButtonBg;
151
+ }
152
+ }
153
+ }
154
+ }
155
+
156
+ .p-splitbutton.p-button-info {
157
+ &.p-button-outlined {
158
+ > .p-button {
159
+ background-color: transparent;
160
+ color: $infoButtonBg;
161
+ border: $outlinedButtonBorder;
162
+
163
+ &:not(:disabled):hover {
164
+ background: rgba($infoButtonBg, $textButtonHoverBgOpacity);
165
+ color: $infoButtonBg;
166
+ }
167
+
168
+ &:not(:disabled):active {
169
+ background: rgba($infoButtonBg, $textButtonActiveBgOpacity);
170
+ color: $infoButtonBg;
171
+ }
172
+ }
173
+ }
174
+
175
+ &.p-button-text {
176
+ > .p-button {
177
+ background-color: transparent;
178
+ color: $infoButtonBg;
179
+ border-color: transparent;
180
+
181
+ &:not(:disabled):hover {
182
+ background: rgba($infoButtonBg, $textButtonHoverBgOpacity);
183
+ border-color: transparent;
184
+ color: $infoButtonBg;
185
+ }
186
+
187
+ &:not(:disabled):active {
188
+ background: rgba($infoButtonBg, $textButtonActiveBgOpacity);
189
+ border-color: transparent;
190
+ color: $infoButtonBg;
191
+ }
192
+ }
193
+ }
194
+ }
195
+
196
+ .p-splitbutton.p-button-success {
197
+ &.p-button-outlined {
198
+ > .p-button {
199
+ background-color: transparent;
200
+ color: $successButtonBg;
201
+ border: $outlinedButtonBorder;
202
+
203
+ &:not(:disabled):hover {
204
+ background: rgba($successButtonBg, $textButtonHoverBgOpacity);
205
+ color: $successButtonBg;
206
+ }
207
+
208
+ &:not(:disabled):active {
209
+ background: rgba($successButtonBg, $textButtonActiveBgOpacity);
210
+ color: $successButtonBg;
211
+ }
212
+ }
213
+ }
214
+
215
+ &.p-button-text {
216
+ > .p-button {
217
+ background-color: transparent;
218
+ color: $successButtonBg;
219
+ border-color: transparent;
220
+
221
+ &:not(:disabled):hover {
222
+ background: rgba($successButtonBg, $textButtonHoverBgOpacity);
223
+ border-color: transparent;
224
+ color: $successButtonBg;
225
+ }
226
+
227
+ &:not(:disabled):active {
228
+ background: rgba($successButtonBg, $textButtonActiveBgOpacity);
229
+ border-color: transparent;
230
+ color: $successButtonBg;
231
+ }
232
+ }
233
+ }
234
+ }
235
+
236
+ .p-splitbutton.p-button-warning {
237
+ &.p-button-outlined {
238
+ > .p-button {
239
+ background-color: transparent;
240
+ color: $warningButtonBg;
241
+ border: $outlinedButtonBorder;
242
+
243
+ &:not(:disabled):hover {
244
+ background: rgba($warningButtonBg, $textButtonHoverBgOpacity);
245
+ color: $warningButtonBg;
246
+ }
247
+
248
+ &:not(:disabled):active {
249
+ background: rgba($warningButtonBg, $textButtonActiveBgOpacity);
250
+ color: $warningButtonBg;
251
+ }
252
+ }
253
+ }
254
+
255
+ &.p-button-text {
256
+ > .p-button {
257
+ background-color: transparent;
258
+ color: $warningButtonBg;
259
+ border-color: transparent;
260
+
261
+ &:not(:disabled):hover {
262
+ background: rgba($warningButtonBg, $textButtonHoverBgOpacity);
263
+ border-color: transparent;
264
+ color: $warningButtonBg;
265
+ }
266
+
267
+ &:not(:disabled):active {
268
+ background: rgba($warningButtonBg, $textButtonActiveBgOpacity);
269
+ border-color: transparent;
270
+ color: $warningButtonBg;
271
+ }
272
+ }
273
+ }
274
+ }
275
+
276
+ .p-splitbutton.p-button-help {
277
+ &.p-button-outlined {
278
+ > .p-button {
279
+ background-color: transparent;
280
+ color: $helpButtonBg;
281
+ border: $outlinedButtonBorder;
282
+
283
+ &:not(:disabled):hover {
284
+ background: rgba($helpButtonBg, $textButtonHoverBgOpacity);
285
+ color: $helpButtonBg;
286
+ }
287
+
288
+ &:not(:disabled):active {
289
+ background: rgba($helpButtonBg, $textButtonActiveBgOpacity);
290
+ color: $helpButtonBg;
291
+ }
292
+ }
293
+ }
294
+
295
+ &.p-button-text {
296
+ > .p-button {
297
+ background-color: transparent;
298
+ color: $helpButtonBg;
299
+ border-color: transparent;
300
+
301
+ &:not(:disabled):hover {
302
+ background: rgba($helpButtonBg, $textButtonHoverBgOpacity);
303
+ border-color: transparent;
304
+ color: $helpButtonBg;
305
+ }
306
+
307
+ &:not(:disabled):active {
308
+ background: rgba($helpButtonBg, $textButtonActiveBgOpacity);
309
+ border-color: transparent;
310
+ color: $helpButtonBg;
311
+ }
312
+ }
313
+ }
314
+ }
315
+
316
+ .p-splitbutton.p-button-danger {
317
+ &.p-button-outlined {
318
+ > .p-button {
319
+ background-color: transparent;
320
+ color: $dangerButtonBg;
321
+ border: $outlinedButtonBorder;
322
+
323
+ &:not(:disabled):hover {
324
+ background: rgba($dangerButtonBg, $textButtonHoverBgOpacity);
325
+ color: $dangerButtonBg;
326
+ }
327
+
328
+ &:not(:disabled):active {
329
+ background: rgba($dangerButtonBg, $textButtonActiveBgOpacity);
330
+ color: $dangerButtonBg;
331
+ }
332
+ }
333
+ }
334
+
335
+ &.p-button-text {
336
+ > .p-button {
337
+ background-color: transparent;
338
+ color: $dangerButtonBg;
339
+ border-color: transparent;
340
+
341
+ &:not(:disabled):hover {
342
+ background: rgba($dangerButtonBg, $textButtonHoverBgOpacity);
343
+ border-color: transparent;
344
+ color: $dangerButtonBg;
345
+ }
346
+
347
+ &:not(:disabled):active {
348
+ background: rgba($dangerButtonBg, $textButtonActiveBgOpacity);
349
+ border-color: transparent;
350
+ color: $dangerButtonBg;
351
+ }
352
+ }
353
+ }
354
+ }
@@ -0,0 +1,37 @@
1
+ .p-carousel {
2
+ .p-carousel-content {
3
+ .p-carousel-prev,
4
+ .p-carousel-next {
5
+ @include action-icon();
6
+ margin: $inlineSpacing;
7
+ }
8
+ }
9
+
10
+ .p-carousel-indicators {
11
+ padding: $carouselIndicatorsPadding;
12
+
13
+ .p-carousel-indicator {
14
+ margin-right: $inlineSpacing;
15
+ margin-bottom: $inlineSpacing;
16
+
17
+ button {
18
+ background-color: $carouselIndicatorBg;
19
+ width: $carouselIndicatorWidth;
20
+ height: $carouselIndicatorHeight;
21
+ transition: $actionIconTransition;
22
+ border-radius: $carouselIndicatorBorderRadius;
23
+
24
+ &:hover {
25
+ background: $carouselIndicatorHoverBg;
26
+ }
27
+ }
28
+
29
+ &.p-highlight {
30
+ button {
31
+ background: $highlightBg;
32
+ color: $highlightTextColor;
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }