aril 0.0.6 → 0.0.8

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 (334) hide show
  1. package/README.md +48 -48
  2. package/esm2022/http/index.mjs +1 -1
  3. package/esm2022/http/lib/enums.mjs +7 -6
  4. package/esm2022/http/lib/interfaces.mjs +10 -31
  5. package/esm2022/http/src/httpClient.mjs +3 -3
  6. package/esm2022/http/src/serviceBase.mjs +25 -27
  7. package/esm2022/http/src/serviceStateMethods.mjs +3 -3
  8. package/esm2022/public-api.mjs +2 -2
  9. package/esm2022/theme/layout/app/breadcrumb/app.breadcrumb.component.mjs +41 -0
  10. package/esm2022/theme/layout/app/config/app.config.component.mjs +132 -0
  11. package/esm2022/theme/layout/app/layout/app.layout.component.mjs +137 -0
  12. package/esm2022/theme/layout/app/menu/app.menu.component.mjs +381 -0
  13. package/esm2022/theme/layout/app/profileSidebar/app.profilesidebar.component.mjs +25 -0
  14. package/esm2022/theme/layout/app/sidebar/app.sidebar.component.mjs +41 -0
  15. package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +29 -0
  16. package/esm2022/theme/layout/aril-theme-layout.mjs +5 -0
  17. package/esm2022/theme/layout/index.mjs +2 -0
  18. package/esm2022/theme/layout/service/app.layout.service.mjs +127 -0
  19. package/esm2022/theme/layout/service/app.menu.service.mjs +27 -0
  20. package/esm2022/theme/layout/service/menuchangeevent.mjs +2 -0
  21. package/esm2022/ui/badge/index.mjs +1 -1
  22. package/esm2022/ui/badge/src/badge.component.mjs +3 -3
  23. package/esm2022/ui/button/index.mjs +1 -1
  24. package/esm2022/ui/button/src/button.component.mjs +2 -2
  25. package/esm2022/ui/button/src/split-button.component.mjs +3 -3
  26. package/esm2022/ui/calendar/index.mjs +1 -1
  27. package/esm2022/ui/calendar/src/calendar.component.mjs +26 -13
  28. package/esm2022/ui/checkbox/index.mjs +1 -1
  29. package/esm2022/ui/checkbox/src/check-box.component.mjs +5 -5
  30. package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +5 -5
  31. package/esm2022/ui/dxField/index.mjs +1 -1
  32. package/esm2022/ui/dxField/src/dx-field.component.mjs +5 -5
  33. package/esm2022/ui/field/index.mjs +1 -1
  34. package/esm2022/ui/field/src/field.component.mjs +11 -9
  35. package/esm2022/ui/fileUpload/index.mjs +1 -1
  36. package/esm2022/ui/fileUpload/src/file-upload.component.mjs +11 -11
  37. package/esm2022/ui/form/index.mjs +20 -13
  38. package/esm2022/ui/form/src/form-submit-button.component.mjs +4 -3
  39. package/esm2022/ui/form/src/form.component.mjs +4 -4
  40. package/esm2022/ui/index.mjs +2 -2
  41. package/esm2022/ui/lib/index.mjs +1 -1
  42. package/esm2022/ui/lib/src/form/form-error-message.component.mjs +9 -9
  43. package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +1 -1
  44. package/esm2022/ui/lib/src/form/form-field-builder.mjs +4 -4
  45. package/esm2022/ui/lib/src/form/form-validation.mjs +3 -3
  46. package/esm2022/ui/lib/src/grid/flex-grid.directive.mjs +2 -2
  47. package/esm2022/ui/lib/src/input/baseInput.mjs +4 -4
  48. package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +6 -6
  49. package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +3 -3
  50. package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +1 -1
  51. package/esm2022/ui/lib/src/input/input-error-message.pipe.mjs +3 -2
  52. package/esm2022/ui/lib/src/input/input-transforms.mjs +1 -1
  53. package/esm2022/ui/lib/src/input/value-accessor.directive.mjs +12 -6
  54. package/esm2022/ui/mask/index.mjs +1 -1
  55. package/esm2022/ui/mask/src/mask.component.mjs +9 -9
  56. package/esm2022/ui/number/index.mjs +1 -1
  57. package/esm2022/ui/number/src/number.component.mjs +10 -10
  58. package/esm2022/ui/overlayPanel/index.mjs +1 -1
  59. package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +4 -7
  60. package/esm2022/ui/panel/index.mjs +1 -1
  61. package/esm2022/ui/panel/src/panel.component.mjs +4 -4
  62. package/esm2022/ui/password/index.mjs +1 -1
  63. package/esm2022/ui/password/src/password.component.mjs +6 -6
  64. package/esm2022/ui/radioButton/index.mjs +1 -1
  65. package/esm2022/ui/radioButton/src/radio-button.component.mjs +7 -7
  66. package/esm2022/ui/selectBox/index.mjs +1 -1
  67. package/esm2022/ui/selectBox/src/select-box.component.mjs +7 -7
  68. package/esm2022/ui/switch/index.mjs +1 -1
  69. package/esm2022/ui/switch/src/switch.component.mjs +6 -6
  70. package/esm2022/ui/table/index.mjs +24 -17
  71. package/esm2022/ui/table/src/i18n.mjs +53 -90
  72. package/esm2022/ui/table/src/table-column.component.mjs +8 -10
  73. package/esm2022/ui/table/src/table.component.mjs +26 -41
  74. package/esm2022/ui/tagBox/index.mjs +1 -1
  75. package/esm2022/ui/tagBox/src/tag-box.component.mjs +12 -12
  76. package/esm2022/ui/text/index.mjs +1 -1
  77. package/esm2022/ui/text/src/text.component.mjs +4 -4
  78. package/esm2022/ui/textArea/index.mjs +1 -1
  79. package/esm2022/ui/textArea/src/text-area.component.mjs +3 -3
  80. package/esm2022/ui/tree/index.mjs +1 -1
  81. package/esm2022/ui/tree/src/tree.component.mjs +29 -45
  82. package/esm2022/ui/treeTable/index.mjs +1 -1
  83. package/esm2022/ui/treeTable/src/tree-table.component.mjs +39 -43
  84. package/esm2022/ui/value/index.mjs +1 -1
  85. package/esm2022/ui/value/src/value.component.mjs +13 -13
  86. package/esm2022/util/index.mjs +2 -2
  87. package/esm2022/util/init-event/index.mjs +1 -1
  88. package/esm2022/util/init-event/src/init-event.directive.mjs +1 -1
  89. package/esm2022/util/lib/index.mjs +1 -1
  90. package/esm2022/util/lib/src/interfaces.mjs +1 -1
  91. package/esm2022/util/lib/src/types.mjs +1 -1
  92. package/esm2022/util/primitive-extensions/index.mjs +5 -5
  93. package/esm2022/util/primitive-extensions/src/boolean.extensions.mjs +1 -1
  94. package/esm2022/util/primitive-extensions/src/date.extensions.mjs +68 -47
  95. package/esm2022/util/primitive-extensions/src/number.extensions.mjs +13 -7
  96. package/esm2022/util/primitive-extensions/src/string.extensions.mjs +4 -4
  97. package/esm2022/util/pub-sub/index.mjs +1 -1
  98. package/esm2022/util/pub-sub/src/pub-sub.service.mjs +7 -5
  99. package/fesm2022/aril-http.mjs +39 -60
  100. package/fesm2022/aril-http.mjs.map +1 -1
  101. package/fesm2022/aril-theme-layout.mjs +899 -0
  102. package/fesm2022/aril-theme-layout.mjs.map +1 -0
  103. package/fesm2022/aril-ui-badge.mjs +2 -2
  104. package/fesm2022/aril-ui-badge.mjs.map +1 -1
  105. package/fesm2022/aril-ui-button.mjs +3 -3
  106. package/fesm2022/aril-ui-button.mjs.map +1 -1
  107. package/fesm2022/aril-ui-calendar.mjs +24 -11
  108. package/fesm2022/aril-ui-calendar.mjs.map +1 -1
  109. package/fesm2022/aril-ui-checkbox.mjs +8 -8
  110. package/fesm2022/aril-ui-checkbox.mjs.map +1 -1
  111. package/fesm2022/aril-ui-dxField.mjs +4 -4
  112. package/fesm2022/aril-ui-dxField.mjs.map +1 -1
  113. package/fesm2022/aril-ui-field.mjs +9 -7
  114. package/fesm2022/aril-ui-field.mjs.map +1 -1
  115. package/fesm2022/aril-ui-fileUpload.mjs +10 -10
  116. package/fesm2022/aril-ui-fileUpload.mjs.map +1 -1
  117. package/fesm2022/aril-ui-form.mjs +23 -20
  118. package/fesm2022/aril-ui-form.mjs.map +1 -1
  119. package/fesm2022/aril-ui-lib.mjs +30 -23
  120. package/fesm2022/aril-ui-lib.mjs.map +1 -1
  121. package/fesm2022/aril-ui-mask.mjs +10 -10
  122. package/fesm2022/aril-ui-mask.mjs.map +1 -1
  123. package/fesm2022/aril-ui-number.mjs +11 -11
  124. package/fesm2022/aril-ui-number.mjs.map +1 -1
  125. package/fesm2022/aril-ui-overlayPanel.mjs +2 -5
  126. package/fesm2022/aril-ui-overlayPanel.mjs.map +1 -1
  127. package/fesm2022/aril-ui-panel.mjs +2 -2
  128. package/fesm2022/aril-ui-panel.mjs.map +1 -1
  129. package/fesm2022/aril-ui-password.mjs +6 -6
  130. package/fesm2022/aril-ui-password.mjs.map +1 -1
  131. package/fesm2022/aril-ui-radioButton.mjs +6 -6
  132. package/fesm2022/aril-ui-radioButton.mjs.map +1 -1
  133. package/fesm2022/aril-ui-selectBox.mjs +4 -4
  134. package/fesm2022/aril-ui-selectBox.mjs.map +1 -1
  135. package/fesm2022/aril-ui-switch.mjs +6 -6
  136. package/fesm2022/aril-ui-switch.mjs.map +1 -1
  137. package/fesm2022/aril-ui-table.mjs +99 -150
  138. package/fesm2022/aril-ui-table.mjs.map +1 -1
  139. package/fesm2022/aril-ui-tagBox.mjs +10 -10
  140. package/fesm2022/aril-ui-tagBox.mjs.map +1 -1
  141. package/fesm2022/aril-ui-text.mjs +3 -3
  142. package/fesm2022/aril-ui-text.mjs.map +1 -1
  143. package/fesm2022/aril-ui-textArea.mjs +2 -2
  144. package/fesm2022/aril-ui-textArea.mjs.map +1 -1
  145. package/fesm2022/aril-ui-tree.mjs +28 -44
  146. package/fesm2022/aril-ui-tree.mjs.map +1 -1
  147. package/fesm2022/aril-ui-treeTable.mjs +38 -42
  148. package/fesm2022/aril-ui-treeTable.mjs.map +1 -1
  149. package/fesm2022/aril-ui-value.mjs +11 -11
  150. package/fesm2022/aril-ui-value.mjs.map +1 -1
  151. package/fesm2022/aril-ui.mjs +1 -1
  152. package/fesm2022/aril-ui.mjs.map +1 -1
  153. package/fesm2022/aril-util-init-event.mjs.map +1 -1
  154. package/fesm2022/aril-util-lib.mjs.map +1 -1
  155. package/fesm2022/aril-util-primitive-extensions.mjs +82 -55
  156. package/fesm2022/aril-util-primitive-extensions.mjs.map +1 -1
  157. package/fesm2022/aril-util-pub-sub.mjs +6 -4
  158. package/fesm2022/aril-util-pub-sub.mjs.map +1 -1
  159. package/fesm2022/aril-util.mjs +1 -1
  160. package/fesm2022/aril-util.mjs.map +1 -1
  161. package/fesm2022/aril.mjs +1 -1
  162. package/fesm2022/aril.mjs.map +1 -1
  163. package/http/lib/enums.d.ts +6 -5
  164. package/http/lib/interfaces.d.ts +9 -29
  165. package/http/src/httpClient.d.ts +3 -3
  166. package/http/src/serviceBase.d.ts +2 -1
  167. package/http/src/serviceStateMethods.d.ts +1 -1
  168. package/package.json +13 -7
  169. package/styles/ui/ui.common.scss +8 -8
  170. package/theme/layout/app/breadcrumb/app.breadcrumb.component.d.ts +16 -0
  171. package/theme/layout/app/breadcrumb/app.breadcrumb.component.html +10 -0
  172. package/theme/layout/app/breadcrumb/app.breadcrumb.component.ts +50 -0
  173. package/theme/layout/app/config/app.config.component.d.ts +36 -0
  174. package/theme/layout/app/config/app.config.component.html +142 -0
  175. package/theme/layout/app/config/app.config.component.ts +143 -0
  176. package/theme/layout/app/layout/app.layout.component.d.ts +51 -0
  177. package/theme/layout/app/layout/app.layout.component.html +13 -0
  178. package/theme/layout/app/layout/app.layout.component.ts +170 -0
  179. package/theme/layout/app/menu/app.menu.component.d.ts +44 -0
  180. package/theme/layout/app/menu/app.menu.component.html +9 -0
  181. package/theme/layout/app/menu/app.menu.component.ts +343 -0
  182. package/theme/layout/app/profileSidebar/app.profilesidebar.component.d.ts +10 -0
  183. package/theme/layout/app/profileSidebar/app.profilesidebar.component.html +152 -0
  184. package/theme/layout/app/profileSidebar/app.profilesidebar.component.ts +24 -0
  185. package/theme/layout/app/sidebar/app.sidebar.component.d.ts +15 -0
  186. package/theme/layout/app/sidebar/app.sidebar.component.html +45 -0
  187. package/theme/layout/app/sidebar/app.sidebar.component.ts +43 -0
  188. package/theme/layout/app/topbar/app.topbar.component.d.ts +13 -0
  189. package/theme/layout/app/topbar/app.topbar.component.html +37 -0
  190. package/theme/layout/app/topbar/app.topbar.component.ts +28 -0
  191. package/theme/layout/index.d.ts +1 -0
  192. package/theme/layout/index.ts +1 -0
  193. package/theme/layout/ng-package.json +6 -0
  194. package/theme/layout/service/app.layout.service.d.ts +51 -0
  195. package/theme/layout/service/app.layout.service.ts +178 -0
  196. package/theme/layout/service/app.menu.service.d.ts +14 -0
  197. package/theme/layout/service/app.menu.service.ts +27 -0
  198. package/theme/layout/service/menuchangeevent.d.ts +4 -0
  199. package/theme/layout/service/menuchangeevent.ts +4 -0
  200. package/theme/styles/layout/_animation.scss +53 -53
  201. package/theme/styles/layout/_breadcrumb.scss +21 -21
  202. package/theme/styles/layout/_config.scss +42 -42
  203. package/theme/styles/layout/_content.scss +3 -3
  204. package/theme/styles/layout/_fonts.scss +40 -36
  205. package/theme/styles/layout/_layout_dark.scss +5 -5
  206. package/theme/styles/layout/_layout_dim.scss +5 -5
  207. package/theme/styles/layout/_layout_light.scss +5 -5
  208. package/theme/styles/layout/_main.scss +28 -28
  209. package/theme/styles/layout/_profile.scss +10 -10
  210. package/theme/styles/layout/_responsive.scss +111 -113
  211. package/theme/styles/layout/_sidebar_drawer.scss +234 -236
  212. package/theme/styles/layout/_sidebar_horizontal.scss +163 -163
  213. package/theme/styles/layout/_sidebar_reveal.scss +201 -203
  214. package/theme/styles/layout/_sidebar_slim.scss +144 -145
  215. package/theme/styles/layout/_sidebar_slim_plus.scss +162 -163
  216. package/theme/styles/layout/_sidebar_vertical.scss +153 -153
  217. package/theme/styles/layout/_topbar.scss +78 -78
  218. package/theme/styles/layout/_typography.scss +68 -63
  219. package/theme/styles/layout/_utils.scss +24 -24
  220. package/theme/styles/layout/layout.scss +24 -24
  221. package/theme/styles/layout/menutheme/_colorscheme.scss +11 -11
  222. package/theme/styles/layout/menutheme/_menutheme.scss +3 -3
  223. package/theme/styles/layout/menutheme/_primarycolor.scss +16 -16
  224. package/theme/styles/layout/menutheme/_transparent.scss +26 -26
  225. package/theme/styles/layout/preloading.scss +84 -84
  226. package/theme/styles/theme/base/_colors.scss +14 -15
  227. package/theme/styles/theme/base/_common.scss +39 -38
  228. package/theme/styles/theme/base/_components.scss +97 -97
  229. package/theme/styles/theme/base/_mixins.scss +281 -281
  230. package/theme/styles/theme/base/components/button/_button.scss +535 -535
  231. package/theme/styles/theme/base/components/button/_speeddial.scss +60 -60
  232. package/theme/styles/theme/base/components/button/_splitbutton.scss +328 -334
  233. package/theme/styles/theme/base/components/data/_carousel.scss +31 -31
  234. package/theme/styles/theme/base/components/data/_datatable.scss +336 -336
  235. package/theme/styles/theme/base/components/data/_dataview.scss +38 -38
  236. package/theme/styles/theme/base/components/data/_filter.scss +124 -125
  237. package/theme/styles/theme/base/components/data/_organizationchart.scss +48 -48
  238. package/theme/styles/theme/base/components/data/_paginator.scss +78 -78
  239. package/theme/styles/theme/base/components/data/_timeline.scss +33 -36
  240. package/theme/styles/theme/base/components/data/_treetable.scss +253 -254
  241. package/theme/styles/theme/base/components/data/_virtualscroller.scss +24 -24
  242. package/theme/styles/theme/base/components/file/_fileupload.scss +51 -51
  243. package/theme/styles/theme/base/components/input/_autocomplete.scss +120 -120
  244. package/theme/styles/theme/base/components/input/_calendar.scss +250 -250
  245. package/theme/styles/theme/base/components/input/_cascadeselect.scss +117 -118
  246. package/theme/styles/theme/base/components/input/_checkbox.scss +71 -71
  247. package/theme/styles/theme/base/components/input/_chips.scss +49 -49
  248. package/theme/styles/theme/base/components/input/_colorpicker.scss +11 -11
  249. package/theme/styles/theme/base/components/input/_dropdown.scss +141 -141
  250. package/theme/styles/theme/base/components/input/_editor.scss +120 -120
  251. package/theme/styles/theme/base/components/input/_inputgroup.scss +42 -42
  252. package/theme/styles/theme/base/components/input/_inputmask.scss +10 -10
  253. package/theme/styles/theme/base/components/input/_inputnumber.scss +21 -21
  254. package/theme/styles/theme/base/components/input/_inputswitch.scss +54 -54
  255. package/theme/styles/theme/base/components/input/_inputtext.scss +62 -62
  256. package/theme/styles/theme/base/components/input/_listbox.scss +80 -80
  257. package/theme/styles/theme/base/components/input/_multiselect.scss +158 -160
  258. package/theme/styles/theme/base/components/input/_password.scss +42 -42
  259. package/theme/styles/theme/base/components/input/_radiobutton.scss +57 -57
  260. package/theme/styles/theme/base/components/input/_rating.scss +53 -53
  261. package/theme/styles/theme/base/components/input/_selectbutton.scss +46 -46
  262. package/theme/styles/theme/base/components/input/_slider.scss +59 -55
  263. package/theme/styles/theme/base/components/input/_togglebutton.scss +44 -44
  264. package/theme/styles/theme/base/components/input/_treeselect.scss +119 -119
  265. package/theme/styles/theme/base/components/menu/_breadcrumb.scss +33 -33
  266. package/theme/styles/theme/base/components/menu/_contextmenu.scss +31 -31
  267. package/theme/styles/theme/base/components/menu/_dock.scss +80 -80
  268. package/theme/styles/theme/base/components/menu/_megamenu.scss +54 -54
  269. package/theme/styles/theme/base/components/menu/_menu.scss +30 -30
  270. package/theme/styles/theme/base/components/menu/_menubar.scss +136 -137
  271. package/theme/styles/theme/base/components/menu/_panelmenu.scss +151 -151
  272. package/theme/styles/theme/base/components/menu/_slidemenu.scss +57 -57
  273. package/theme/styles/theme/base/components/menu/_steps.scss +46 -46
  274. package/theme/styles/theme/base/components/menu/_tabmenu.scss +60 -61
  275. package/theme/styles/theme/base/components/menu/_tieredmenu.scss +34 -34
  276. package/theme/styles/theme/base/components/messages/_inlinemessage.scss +55 -55
  277. package/theme/styles/theme/base/components/messages/_message.scss +105 -105
  278. package/theme/styles/theme/base/components/messages/_toast.scss +97 -98
  279. package/theme/styles/theme/base/components/misc/_avatar.scss +22 -22
  280. package/theme/styles/theme/base/components/misc/_badge.scss +40 -40
  281. package/theme/styles/theme/base/components/misc/_chip.scss +39 -39
  282. package/theme/styles/theme/base/components/misc/_inplace.scss +12 -13
  283. package/theme/styles/theme/base/components/misc/_progressbar.scss +13 -13
  284. package/theme/styles/theme/base/components/misc/_scrolltop.scss +20 -20
  285. package/theme/styles/theme/base/components/misc/_skeleton.scss +6 -6
  286. package/theme/styles/theme/base/components/misc/_tag.scss +31 -31
  287. package/theme/styles/theme/base/components/misc/_terminal.scss +1 -1
  288. package/theme/styles/theme/base/components/multimedia/_galleria.scss +150 -150
  289. package/theme/styles/theme/base/components/multimedia/_image.scss +35 -35
  290. package/theme/styles/theme/base/components/overlay/_confirmpopup.scss +57 -59
  291. package/theme/styles/theme/base/components/overlay/_dialog.scss +56 -56
  292. package/theme/styles/theme/base/components/overlay/_overlaypanel.scss +58 -60
  293. package/theme/styles/theme/base/components/overlay/_sidebar.scss +20 -20
  294. package/theme/styles/theme/base/components/overlay/_tooltip.scss +27 -27
  295. package/theme/styles/theme/base/components/panel/_accordion.scss +104 -104
  296. package/theme/styles/theme/base/components/panel/_card.scss +23 -23
  297. package/theme/styles/theme/base/components/panel/_divider.scss +24 -24
  298. package/theme/styles/theme/base/components/panel/_fieldset.scss +38 -38
  299. package/theme/styles/theme/base/components/panel/_panel.scss +61 -61
  300. package/theme/styles/theme/base/components/panel/_scrollpanel.scss +5 -5
  301. package/theme/styles/theme/base/components/panel/_splitter.scss +15 -15
  302. package/theme/styles/theme/base/components/panel/_tabview.scss +68 -68
  303. package/theme/styles/theme/base/components/panel/_toolbar.scss +8 -8
  304. package/theme/styles/theme/dark/_extensions.scss +134 -120
  305. package/theme/styles/theme/dark/_variables.scss +918 -896
  306. package/theme/styles/theme/dark/blue/theme.scss +14 -14
  307. package/theme/styles/theme/dark/indigo/theme.scss +14 -14
  308. package/theme/styles/theme/light/_extensions.scss +116 -102
  309. package/theme/styles/theme/light/_variables.scss +911 -898
  310. package/theme/styles/theme/light/blue/theme.scss +14 -14
  311. package/theme/styles/theme/light/indigo/theme.scss +14 -14
  312. package/ui/calendar/src/calendar.component.d.ts +2 -2
  313. package/ui/form/index.d.ts +9 -0
  314. package/ui/form/src/form-submit-button.component.d.ts +1 -1
  315. package/ui/form/src/form.component.d.ts +1 -1
  316. package/ui/lib/src/form/form-validation.d.ts +1 -1
  317. package/ui/lib/src/input/baseInput.d.ts +2 -2
  318. package/ui/lib/src/input/common-input-validators.service.d.ts +3 -3
  319. package/ui/lib/src/input/dx-input-error-message.pipe.d.ts +2 -2
  320. package/ui/lib/src/input/input-transforms.d.ts +1 -1
  321. package/ui/mask/src/mask.component.d.ts +3 -3
  322. package/ui/number/src/number.component.d.ts +4 -4
  323. package/ui/overlayPanel/src/overlay-panel.component.d.ts +1 -1
  324. package/ui/password/src/password.component.d.ts +3 -3
  325. package/ui/selectBox/src/select-box.component.d.ts +2 -2
  326. package/ui/switch/src/switch.component.d.ts +3 -3
  327. package/ui/table/index.d.ts +13 -0
  328. package/ui/table/src/table-column.component.d.ts +6 -5
  329. package/ui/table/src/table.component.d.ts +8 -15
  330. package/ui/tree/src/tree.component.d.ts +14 -19
  331. package/ui/treeTable/src/tree-table.component.d.ts +14 -18
  332. package/ui/value/src/value.component.d.ts +2 -2
  333. package/util/lib/src/types.d.ts +2 -2
  334. package/util/primitive-extensions/index.d.ts +4 -4
@@ -1,48 +1,48 @@
1
1
  .p-badge {
2
- background: $badgeBg;
3
- color: $badgeTextColor;
4
- font-size: $badgeFontSize;
5
- font-weight: $badgeFontWeight;
6
- min-width: $badgeMinWidth;
7
- height: $badgeHeight;
8
- line-height: $badgeHeight;
2
+ background: $badgeBg;
3
+ color: $badgeTextColor;
4
+ font-size: $badgeFontSize;
5
+ font-weight: $badgeFontWeight;
6
+ min-width: $badgeMinWidth;
7
+ height: $badgeHeight;
8
+ line-height: $badgeHeight;
9
9
 
10
- &.p-badge-secondary {
11
- background-color: $secondaryButtonBg;
12
- color: $secondaryButtonTextColor;
13
- }
10
+ &.p-badge-secondary {
11
+ background-color: $secondaryButtonBg;
12
+ color: $secondaryButtonTextColor;
13
+ }
14
14
 
15
- &.p-badge-success {
16
- background-color: $successButtonBg;
17
- color: $successButtonTextColor;
18
- }
15
+ &.p-badge-success {
16
+ background-color: $successButtonBg;
17
+ color: $successButtonTextColor;
18
+ }
19
19
 
20
- &.p-badge-info {
21
- background-color: $infoButtonBg;
22
- color: $infoButtonTextColor;
23
- }
20
+ &.p-badge-info {
21
+ background-color: $infoButtonBg;
22
+ color: $infoButtonTextColor;
23
+ }
24
24
 
25
- &.p-badge-warning {
26
- background-color: $warningButtonBg;
27
- color: $warningButtonTextColor;
28
- }
25
+ &.p-badge-warning {
26
+ background-color: $warningButtonBg;
27
+ color: $warningButtonTextColor;
28
+ }
29
29
 
30
- &.p-badge-danger {
31
- background-color: $dangerButtonBg;
32
- color: $dangerButtonTextColor;
33
- }
30
+ &.p-badge-danger {
31
+ background-color: $dangerButtonBg;
32
+ color: $dangerButtonTextColor;
33
+ }
34
34
 
35
- &.p-badge-lg {
36
- font-size: 1.5 * $badgeFontSize;
37
- min-width: 1.5 * $badgeMinWidth;
38
- height: 1.5 * $badgeHeight;
39
- line-height: 1.5 * $badgeHeight;
40
- }
35
+ &.p-badge-lg {
36
+ font-size: 1.5 * $badgeFontSize;
37
+ min-width: 1.5 * $badgeMinWidth;
38
+ height: 1.5 * $badgeHeight;
39
+ line-height: 1.5 * $badgeHeight;
40
+ }
41
41
 
42
- &.p-badge-xl {
43
- font-size: 2 * $badgeFontSize;
44
- min-width: 2 * $badgeMinWidth;
45
- height: 2 * $badgeHeight;
46
- line-height: 2 * $badgeHeight;
47
- }
48
- }
42
+ &.p-badge-xl {
43
+ font-size: 2 * $badgeFontSize;
44
+ min-width: 2 * $badgeMinWidth;
45
+ height: 2 * $badgeHeight;
46
+ line-height: 2 * $badgeHeight;
47
+ }
48
+ }
@@ -1,42 +1,42 @@
1
1
  @use 'sass:math';
2
2
 
3
3
  .p-chip {
4
- background-color: $chipBg;
5
- color: $chipTextColor;
6
- border-radius: $chipBorderRadius;
7
- padding: 0 nth($inputPadding, 2);
8
-
9
- .p-chip-text {
10
- line-height: 1.5;
11
- margin-top: math.div(nth($inputPadding, 1), 2);
12
- margin-bottom: math.div(nth($inputPadding, 1), 2);
13
- }
14
-
15
- .p-chip-icon {
16
- margin-right: $inlineSpacing;
17
- }
18
-
19
- .pi-chip-remove-icon {
20
- margin-left: $inlineSpacing;
21
- }
22
-
23
- img {
24
- width: 1.5 + nth($inputPadding, 1);
25
- height: 1.5 + nth($inputPadding, 1);
26
- margin-left: -1 * nth($inputPadding, 2);
27
- margin-right: $inlineSpacing;
28
- }
29
-
30
- .pi-chip-remove-icon {
31
- border-radius: $borderRadius;
32
- transition: $actionIconTransition;
33
-
34
- &:focus-visible {
35
- @include focused();
36
- }
37
-
38
- &:focus {
39
- outline: 0 none;
40
- }
41
- }
42
- }
4
+ background-color: $chipBg;
5
+ color: $chipTextColor;
6
+ border-radius: $chipBorderRadius;
7
+ padding: 0 nth($inputPadding, 2);
8
+
9
+ .p-chip-text {
10
+ line-height: 1.5;
11
+ margin-top: math.div(nth($inputPadding, 1), 2);
12
+ margin-bottom: math.div(nth($inputPadding, 1), 2);
13
+ }
14
+
15
+ .p-chip-icon {
16
+ margin-right: $inlineSpacing;
17
+ }
18
+
19
+ .pi-chip-remove-icon {
20
+ margin-left: $inlineSpacing;
21
+ }
22
+
23
+ img {
24
+ width: 1.5 + nth($inputPadding, 1);
25
+ height: 1.5 + nth($inputPadding, 1);
26
+ margin-left: -1 * nth($inputPadding, 2);
27
+ margin-right: $inlineSpacing;
28
+ }
29
+
30
+ .pi-chip-remove-icon {
31
+ border-radius: $borderRadius;
32
+ transition: $actionIconTransition;
33
+
34
+ &:focus-visible {
35
+ @include focused();
36
+ }
37
+
38
+ &:focus {
39
+ outline: 0 none;
40
+ }
41
+ }
42
+ }
@@ -1,17 +1,16 @@
1
1
  .p-inplace {
2
- .p-inplace-display {
3
- padding: $inplacePadding;
4
- border-radius: $borderRadius;
5
- transition: $formElementTransition;
2
+ .p-inplace-display {
3
+ padding: $inplacePadding;
4
+ border-radius: $borderRadius;
5
+ transition: $formElementTransition;
6
6
 
7
- &:not(.p-disabled):hover {
8
- background: $inplaceHoverBg;
9
- color: $inplaceTextHoverColor;
10
- }
7
+ &:not(.p-disabled):hover {
8
+ background: $inplaceHoverBg;
9
+ color: $inplaceTextHoverColor;
10
+ }
11
11
 
12
- &:focus {
13
- @include focused();
14
- }
15
- }
12
+ &:focus {
13
+ @include focused();
14
+ }
15
+ }
16
16
  }
17
-
@@ -1,17 +1,17 @@
1
1
  .p-progressbar {
2
- border: $progressBarBorder;
3
- height: $progressBarHeight;
4
- background: $progressBarBg;
5
- border-radius: $borderRadius;
2
+ border: $progressBarBorder;
3
+ height: $progressBarHeight;
4
+ background: $progressBarBg;
5
+ border-radius: $borderRadius;
6
6
 
7
- .p-progressbar-value {
8
- border: 0 none;
9
- margin: 0;
10
- background: $progressBarValueBg;
11
- }
7
+ .p-progressbar-value {
8
+ border: 0 none;
9
+ margin: 0;
10
+ background: $progressBarValueBg;
11
+ }
12
12
 
13
- .p-progressbar-label {
14
- color: $progressBarValueTextColor;
15
- line-height: $progressBarHeight;
16
- }
13
+ .p-progressbar-label {
14
+ color: $progressBarValueTextColor;
15
+ line-height: $progressBarHeight;
16
+ }
17
17
  }
@@ -1,25 +1,25 @@
1
1
  .p-scrolltop {
2
- width: $scrollTopWidth;
3
- height: $scrollTopHeight;
4
- border-radius: $scrollTopBorderRadius;
5
- box-shadow: $inputOverlayShadow;
6
- transition: $actionIconTransition;
2
+ width: $scrollTopWidth;
3
+ height: $scrollTopHeight;
4
+ border-radius: $scrollTopBorderRadius;
5
+ box-shadow: $inputOverlayShadow;
6
+ transition: $actionIconTransition;
7
7
 
8
- &.p-link {
9
- background: $scrollTopBg;
8
+ &.p-link {
9
+ background: $scrollTopBg;
10
10
 
11
- &:hover {
12
- background: $scrollTopHoverBg;
13
- }
14
- }
11
+ &:hover {
12
+ background: $scrollTopHoverBg;
13
+ }
14
+ }
15
15
 
16
- .p-scrolltop-icon {
17
- font-size: $scrollTopFontSize;
18
- color: $scrollTopTextColor;
19
- }
16
+ .p-scrolltop-icon {
17
+ font-size: $scrollTopFontSize;
18
+ color: $scrollTopTextColor;
19
+ }
20
20
 
21
- .p-icon {
22
- width: $scrollTopFontSize;
23
- height: $scrollTopFontSize;
24
- }
25
- }
21
+ .p-icon {
22
+ width: $scrollTopFontSize;
23
+ height: $scrollTopFontSize;
24
+ }
25
+ }
@@ -1,8 +1,8 @@
1
1
  .p-skeleton {
2
- background-color: $skeletonBg;
3
- border-radius: $borderRadius;
2
+ background-color: $skeletonBg;
3
+ border-radius: $borderRadius;
4
4
 
5
- &:after {
6
- background: linear-gradient(90deg, rgba(255, 255, 255, 0), $skeletonAnimationBg, rgba(255, 255, 255, 0));
7
- }
8
- }
5
+ &:after {
6
+ background: linear-gradient(90deg, rgba(255, 255, 255, 0), $skeletonAnimationBg, rgba(255, 255, 255, 0));
7
+ }
8
+ }
@@ -1,40 +1,40 @@
1
1
  @use 'sass:math';
2
2
 
3
3
  .p-tag {
4
- background: $badgeBg;
5
- color: $badgeTextColor;
6
- font-size: $badgeFontSize;
7
- font-weight: $badgeFontWeight;
8
- padding: $tagPadding;
9
- border-radius: $borderRadius;
4
+ background: $badgeBg;
5
+ color: $badgeTextColor;
6
+ font-size: $badgeFontSize;
7
+ font-weight: $badgeFontWeight;
8
+ padding: $tagPadding;
9
+ border-radius: $borderRadius;
10
10
 
11
- &.p-tag-success {
12
- background-color: $successButtonBg;
13
- color: $successButtonTextColor;
14
- }
11
+ &.p-tag-success {
12
+ background-color: $successButtonBg;
13
+ color: $successButtonTextColor;
14
+ }
15
15
 
16
- &.p-tag-info {
17
- background-color: $infoButtonBg;
18
- color: $infoButtonTextColor;
19
- }
16
+ &.p-tag-info {
17
+ background-color: $infoButtonBg;
18
+ color: $infoButtonTextColor;
19
+ }
20
20
 
21
- &.p-tag-warning {
22
- background-color: $warningButtonBg;
23
- color: $warningButtonTextColor;
24
- }
21
+ &.p-tag-warning {
22
+ background-color: $warningButtonBg;
23
+ color: $warningButtonTextColor;
24
+ }
25
25
 
26
- &.p-tag-danger {
27
- background-color: $dangerButtonBg;
28
- color: $dangerButtonTextColor;
29
- }
26
+ &.p-tag-danger {
27
+ background-color: $dangerButtonBg;
28
+ color: $dangerButtonTextColor;
29
+ }
30
30
 
31
- .p-tag-icon {
32
- margin-right: math.div($inlineSpacing, 2);
33
- font-size: $badgeFontSize;
34
- }
31
+ .p-tag-icon {
32
+ margin-right: math.div($inlineSpacing, 2);
33
+ font-size: $badgeFontSize;
34
+ }
35
35
 
36
- .p-icon {
37
- width: $badgeFontSize;
38
- height: $badgeFontSize;
39
- }
40
- }
36
+ .p-icon {
37
+ width: $badgeFontSize;
38
+ height: $badgeFontSize;
39
+ }
40
+ }
@@ -5,7 +5,7 @@
5
5
  padding: $panelContentPadding;
6
6
 
7
7
  .p-terminal-input {
8
- font-family: var(--font-family);
8
+ font-family: var(--font-family);
9
9
  font-feature-settings: var(--font-feature-settings, normal);
10
10
  font-size: $inputTextFontSize;
11
11
  }