aril 0.0.3 → 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 (263) hide show
  1. package/README.md +10 -1
  2. package/esm2022/ui/badge/src/badge.component.mjs +8 -8
  3. package/esm2022/ui/button/src/button.component.mjs +3 -4
  4. package/esm2022/ui/button/src/split-button.component.mjs +9 -8
  5. package/esm2022/ui/calendar/src/calendar.component.mjs +55 -33
  6. package/esm2022/ui/checkbox/index.mjs +2 -1
  7. package/esm2022/ui/checkbox/src/check-box.component.mjs +7 -9
  8. package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +24 -0
  9. package/esm2022/ui/confirmPopup/src/confirm-popup.component.mjs +8 -20
  10. package/esm2022/ui/dxField/src/dx-field.component.mjs +4 -1
  11. package/esm2022/ui/field/src/field.component.mjs +1 -1
  12. package/esm2022/ui/fileUpload/src/file-upload.component.mjs +9 -6
  13. package/esm2022/ui/form/index.mjs +2 -1
  14. package/esm2022/ui/form/src/form-submit-button.component.mjs +6 -3
  15. package/esm2022/ui/form/src/form.component.mjs +4 -1
  16. package/esm2022/ui/lib/src/form/form-error-message.component.mjs +5 -1
  17. package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +4 -1
  18. package/esm2022/ui/lib/src/form/form-field-builder.mjs +2 -2
  19. package/esm2022/ui/lib/src/form/form-validation.mjs +1 -1
  20. package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +5 -1
  21. package/esm2022/ui/mask/src/mask.component.mjs +11 -20
  22. package/esm2022/ui/number/src/number.component.mjs +7 -8
  23. package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +10 -24
  24. package/esm2022/ui/panel/src/panel.component.mjs +7 -12
  25. package/esm2022/ui/password/src/password.component.mjs +8 -3
  26. package/esm2022/ui/radioButton/src/radio-button.component.mjs +5 -3
  27. package/esm2022/ui/selectBox/src/select-box.component.mjs +5 -3
  28. package/esm2022/ui/switch/src/switch.component.mjs +10 -5
  29. package/esm2022/ui/table/aril-ui-table.mjs +5 -0
  30. package/esm2022/ui/table/index.mjs +4 -0
  31. package/esm2022/ui/table/src/i18n.mjs +93 -0
  32. package/esm2022/ui/table/src/table-column.component.mjs +35 -0
  33. package/esm2022/ui/table/src/table.component.mjs +78 -0
  34. package/esm2022/ui/tagBox/src/tag-box.component.mjs +8 -3
  35. package/esm2022/ui/text/src/text.component.mjs +26 -9
  36. package/esm2022/ui/textArea/src/text-area.component.mjs +7 -4
  37. package/esm2022/ui/tree/src/tree.component.mjs +4 -13
  38. package/esm2022/ui/treeTable/src/tree-table.component.mjs +18 -11
  39. package/esm2022/ui/value/aril-ui-value.mjs +5 -0
  40. package/esm2022/ui/value/index.mjs +2 -0
  41. package/esm2022/ui/value/src/value.component.mjs +51 -0
  42. package/esm2022/util/lib/src/types.mjs +2 -1
  43. package/esm2022/util/primitive-extensions/src/string.extensions.mjs +7 -1
  44. package/fesm2022/aril-ui-badge.mjs +7 -7
  45. package/fesm2022/aril-ui-badge.mjs.map +1 -1
  46. package/fesm2022/aril-ui-button.mjs +10 -10
  47. package/fesm2022/aril-ui-button.mjs.map +1 -1
  48. package/fesm2022/aril-ui-calendar.mjs +54 -31
  49. package/fesm2022/aril-ui-calendar.mjs.map +1 -1
  50. package/fesm2022/aril-ui-checkbox.mjs +23 -9
  51. package/fesm2022/aril-ui-checkbox.mjs.map +1 -1
  52. package/fesm2022/aril-ui-confirmPopup.mjs +7 -19
  53. package/fesm2022/aril-ui-confirmPopup.mjs.map +1 -1
  54. package/fesm2022/aril-ui-dxField.mjs +3 -0
  55. package/fesm2022/aril-ui-dxField.mjs.map +1 -1
  56. package/fesm2022/aril-ui-field.mjs.map +1 -1
  57. package/fesm2022/aril-ui-fileUpload.mjs +8 -5
  58. package/fesm2022/aril-ui-fileUpload.mjs.map +1 -1
  59. package/fesm2022/aril-ui-form.mjs +10 -2
  60. package/fesm2022/aril-ui-form.mjs.map +1 -1
  61. package/fesm2022/aril-ui-lib.mjs +12 -1
  62. package/fesm2022/aril-ui-lib.mjs.map +1 -1
  63. package/fesm2022/aril-ui-mask.mjs +10 -19
  64. package/fesm2022/aril-ui-mask.mjs.map +1 -1
  65. package/fesm2022/aril-ui-number.mjs +6 -7
  66. package/fesm2022/aril-ui-number.mjs.map +1 -1
  67. package/fesm2022/aril-ui-overlayPanel.mjs +9 -23
  68. package/fesm2022/aril-ui-overlayPanel.mjs.map +1 -1
  69. package/fesm2022/aril-ui-panel.mjs +6 -11
  70. package/fesm2022/aril-ui-panel.mjs.map +1 -1
  71. package/fesm2022/aril-ui-password.mjs +7 -2
  72. package/fesm2022/aril-ui-password.mjs.map +1 -1
  73. package/fesm2022/aril-ui-radioButton.mjs +4 -2
  74. package/fesm2022/aril-ui-radioButton.mjs.map +1 -1
  75. package/fesm2022/aril-ui-selectBox.mjs +4 -2
  76. package/fesm2022/aril-ui-selectBox.mjs.map +1 -1
  77. package/fesm2022/aril-ui-switch.mjs +9 -4
  78. package/fesm2022/aril-ui-switch.mjs.map +1 -1
  79. package/fesm2022/aril-ui-table.mjs +211 -0
  80. package/fesm2022/aril-ui-table.mjs.map +1 -0
  81. package/fesm2022/aril-ui-tagBox.mjs +7 -2
  82. package/fesm2022/aril-ui-tagBox.mjs.map +1 -1
  83. package/fesm2022/aril-ui-text.mjs +25 -8
  84. package/fesm2022/aril-ui-text.mjs.map +1 -1
  85. package/fesm2022/aril-ui-textArea.mjs +6 -3
  86. package/fesm2022/aril-ui-textArea.mjs.map +1 -1
  87. package/fesm2022/aril-ui-tree.mjs +3 -12
  88. package/fesm2022/aril-ui-tree.mjs.map +1 -1
  89. package/fesm2022/aril-ui-treeTable.mjs +17 -10
  90. package/fesm2022/aril-ui-treeTable.mjs.map +1 -1
  91. package/fesm2022/aril-ui-value.mjs +58 -0
  92. package/fesm2022/aril-ui-value.mjs.map +1 -0
  93. package/fesm2022/aril-util-lib.mjs +1 -0
  94. package/fesm2022/aril-util-lib.mjs.map +1 -1
  95. package/fesm2022/aril-util-primitive-extensions.mjs +6 -0
  96. package/fesm2022/aril-util-primitive-extensions.mjs.map +1 -1
  97. package/package.json +22 -13
  98. package/theme/fonts/poppins-v20-latin-500.woff +0 -0
  99. package/theme/fonts/poppins-v20-latin-500.woff2 +0 -0
  100. package/theme/fonts/poppins-v20-latin-600.woff +0 -0
  101. package/theme/fonts/poppins-v20-latin-600.woff2 +0 -0
  102. package/theme/fonts/poppins-v20-latin-700.woff +0 -0
  103. package/theme/fonts/poppins-v20-latin-700.woff2 +0 -0
  104. package/theme/fonts/poppins-v20-latin-regular.woff +0 -0
  105. package/theme/fonts/poppins-v20-latin-regular.woff2 +0 -0
  106. package/theme/images/avatar.png +0 -0
  107. package/theme/styles/layout/_animation.scss +53 -0
  108. package/theme/styles/layout/_breadcrumb.scss +21 -0
  109. package/theme/styles/layout/_config.scss +42 -0
  110. package/theme/styles/layout/_content.scss +3 -0
  111. package/theme/styles/layout/_fonts.scss +36 -0
  112. package/theme/styles/layout/_layout_dark.scss +5 -0
  113. package/theme/styles/layout/_layout_dim.scss +5 -0
  114. package/theme/styles/layout/_layout_light.scss +5 -0
  115. package/theme/styles/layout/_main.scss +28 -0
  116. package/theme/styles/layout/_profile.scss +10 -0
  117. package/theme/styles/layout/_responsive.scss +113 -0
  118. package/theme/styles/layout/_sidebar_drawer.scss +236 -0
  119. package/theme/styles/layout/_sidebar_horizontal.scss +163 -0
  120. package/theme/styles/layout/_sidebar_reveal.scss +203 -0
  121. package/theme/styles/layout/_sidebar_slim.scss +145 -0
  122. package/theme/styles/layout/_sidebar_slim_plus.scss +163 -0
  123. package/theme/styles/layout/_sidebar_vertical.scss +153 -0
  124. package/theme/styles/layout/_topbar.scss +78 -0
  125. package/theme/styles/layout/_typography.scss +63 -0
  126. package/theme/styles/layout/_utils.scss +24 -0
  127. package/theme/styles/layout/layout.scss +24 -0
  128. package/theme/styles/layout/menutheme/_colorscheme.scss +11 -0
  129. package/theme/styles/layout/menutheme/_menutheme.scss +3 -0
  130. package/theme/styles/layout/menutheme/_primarycolor.scss +16 -0
  131. package/theme/styles/layout/menutheme/_transparent.scss +26 -0
  132. package/theme/styles/layout/preloading.scss +84 -0
  133. package/theme/styles/theme/base/_colors.scss +18 -0
  134. package/theme/styles/theme/base/_common.scss +75 -0
  135. package/theme/styles/theme/base/_components.scss +106 -0
  136. package/theme/styles/theme/base/_mixins.scss +337 -0
  137. package/theme/styles/theme/base/components/button/_button.scss +576 -0
  138. package/theme/styles/theme/base/components/button/_speeddial.scss +96 -0
  139. package/theme/styles/theme/base/components/button/_splitbutton.scss +354 -0
  140. package/theme/styles/theme/base/components/data/_carousel.scss +37 -0
  141. package/theme/styles/theme/base/components/data/_datatable.scss +338 -0
  142. package/theme/styles/theme/base/components/data/_dataview.scss +46 -0
  143. package/theme/styles/theme/base/components/data/_filter.scss +138 -0
  144. package/theme/styles/theme/base/components/data/_orderlist.scss +114 -0
  145. package/theme/styles/theme/base/components/data/_organizationchart.scss +50 -0
  146. package/theme/styles/theme/base/components/data/_paginator.scss +92 -0
  147. package/theme/styles/theme/base/components/data/_picklist.scss +114 -0
  148. package/theme/styles/theme/base/components/data/_timeline.scss +38 -0
  149. package/theme/styles/theme/base/components/data/_tree.scss +150 -0
  150. package/theme/styles/theme/base/components/data/_treetable.scss +256 -0
  151. package/theme/styles/theme/base/components/data/_virtualscroller.scss +28 -0
  152. package/theme/styles/theme/base/components/file/_fileupload.scss +64 -0
  153. package/theme/styles/theme/base/components/input/_autocomplete.scss +136 -0
  154. package/theme/styles/theme/base/components/input/_calendar.scss +267 -0
  155. package/theme/styles/theme/base/components/input/_cascadeselect.scss +136 -0
  156. package/theme/styles/theme/base/components/input/_checkbox.scss +94 -0
  157. package/theme/styles/theme/base/components/input/_chips.scss +65 -0
  158. package/theme/styles/theme/base/components/input/_colorpicker.scss +19 -0
  159. package/theme/styles/theme/base/components/input/_dropdown.scss +151 -0
  160. package/theme/styles/theme/base/components/input/_editor.scss +122 -0
  161. package/theme/styles/theme/base/components/input/_inputgroup.scss +75 -0
  162. package/theme/styles/theme/base/components/input/_inputmask.scss +16 -0
  163. package/theme/styles/theme/base/components/input/_inputnumber.scss +28 -0
  164. package/theme/styles/theme/base/components/input/_inputswitch.scss +60 -0
  165. package/theme/styles/theme/base/components/input/_inputtext.scss +100 -0
  166. package/theme/styles/theme/base/components/input/_listbox.scss +97 -0
  167. package/theme/styles/theme/base/components/input/_multiselect.scss +179 -0
  168. package/theme/styles/theme/base/components/input/_password.scss +52 -0
  169. package/theme/styles/theme/base/components/input/_radiobutton.scss +78 -0
  170. package/theme/styles/theme/base/components/input/_rating.scss +60 -0
  171. package/theme/styles/theme/base/components/input/_selectbutton.scss +50 -0
  172. package/theme/styles/theme/base/components/input/_slider.scss +71 -0
  173. package/theme/styles/theme/base/components/input/_togglebutton.scss +48 -0
  174. package/theme/styles/theme/base/components/input/_treeselect.scss +139 -0
  175. package/theme/styles/theme/base/components/menu/_breadcrumb.scss +42 -0
  176. package/theme/styles/theme/base/components/menu/_contextmenu.scss +39 -0
  177. package/theme/styles/theme/base/components/menu/_dock.scss +95 -0
  178. package/theme/styles/theme/base/components/menu/_megamenu.scss +55 -0
  179. package/theme/styles/theme/base/components/menu/_menu.scss +37 -0
  180. package/theme/styles/theme/base/components/menu/_menubar.scss +141 -0
  181. package/theme/styles/theme/base/components/menu/_panelmenu.scss +153 -0
  182. package/theme/styles/theme/base/components/menu/_slidemenu.scss +59 -0
  183. package/theme/styles/theme/base/components/menu/_steps.scss +56 -0
  184. package/theme/styles/theme/base/components/menu/_tabmenu.scss +74 -0
  185. package/theme/styles/theme/base/components/menu/_tieredmenu.scss +43 -0
  186. package/theme/styles/theme/base/components/messages/_inlinemessage.scss +69 -0
  187. package/theme/styles/theme/base/components/messages/_message.scss +107 -0
  188. package/theme/styles/theme/base/components/messages/_toast.scss +100 -0
  189. package/theme/styles/theme/base/components/misc/_avatar.scss +30 -0
  190. package/theme/styles/theme/base/components/misc/_badge.scss +48 -0
  191. package/theme/styles/theme/base/components/misc/_blockui.scss +0 -0
  192. package/theme/styles/theme/base/components/misc/_chip.scss +42 -0
  193. package/theme/styles/theme/base/components/misc/_inplace.scss +17 -0
  194. package/theme/styles/theme/base/components/misc/_progressbar.scss +17 -0
  195. package/theme/styles/theme/base/components/misc/_scrolltop.scss +25 -0
  196. package/theme/styles/theme/base/components/misc/_skeleton.scss +8 -0
  197. package/theme/styles/theme/base/components/misc/_tag.scss +40 -0
  198. package/theme/styles/theme/base/components/misc/_terminal.scss +12 -0
  199. package/theme/styles/theme/base/components/multimedia/_galleria.scss +155 -0
  200. package/theme/styles/theme/base/components/multimedia/_image.scss +49 -0
  201. package/theme/styles/theme/base/components/overlay/_confirmpopup.scss +72 -0
  202. package/theme/styles/theme/base/components/overlay/_dialog.scss +69 -0
  203. package/theme/styles/theme/base/components/overlay/_overlaypanel.scss +64 -0
  204. package/theme/styles/theme/base/components/overlay/_sidebar.scss +27 -0
  205. package/theme/styles/theme/base/components/overlay/_tooltip.scss +33 -0
  206. package/theme/styles/theme/base/components/panel/_accordion.scss +119 -0
  207. package/theme/styles/theme/base/components/panel/_card.scss +30 -0
  208. package/theme/styles/theme/base/components/panel/_divider.scss +31 -0
  209. package/theme/styles/theme/base/components/panel/_fieldset.scss +47 -0
  210. package/theme/styles/theme/base/components/panel/_panel.scss +63 -0
  211. package/theme/styles/theme/base/components/panel/_scrollpanel.scss +6 -0
  212. package/theme/styles/theme/base/components/panel/_splitter.scss +19 -0
  213. package/theme/styles/theme/base/components/panel/_tabview.scss +82 -0
  214. package/theme/styles/theme/base/components/panel/_toolbar.scss +11 -0
  215. package/theme/styles/theme/dark/_extensions.scss +120 -0
  216. package/theme/styles/theme/dark/_variables.scss +896 -0
  217. package/theme/styles/theme/dark/blue/theme.scss +14 -0
  218. package/theme/styles/theme/dark/indigo/theme.scss +14 -0
  219. package/theme/styles/theme/light/_extensions.scss +102 -0
  220. package/theme/styles/theme/light/_variables.scss +898 -0
  221. package/theme/styles/theme/light/blue/theme.scss +13 -0
  222. package/theme/styles/theme/light/indigo/theme.scss +14 -0
  223. package/ui/badge/src/badge.component.d.ts +4 -4
  224. package/ui/button/src/button.component.d.ts +7 -5
  225. package/ui/button/src/split-button.component.d.ts +2 -2
  226. package/ui/calendar/src/calendar.component.d.ts +13 -9
  227. package/ui/checkbox/index.d.ts +1 -0
  228. package/ui/checkbox/src/check-box.component.d.ts +3 -2
  229. package/ui/checkbox/src/tri-state-checkbox.component.d.ts +9 -0
  230. package/ui/confirmPopup/src/confirm-popup.component.d.ts +1 -7
  231. package/ui/field/src/field.component.d.ts +3 -2
  232. package/ui/fileUpload/src/file-upload.component.d.ts +3 -1
  233. package/ui/form/src/form-submit-button.component.d.ts +1 -1
  234. package/ui/lib/src/form/form-field-builder.d.ts +1 -0
  235. package/ui/mask/src/mask.component.d.ts +7 -7
  236. package/ui/number/src/number.component.d.ts +5 -4
  237. package/ui/overlayPanel/src/overlay-panel.component.d.ts +3 -10
  238. package/ui/panel/src/panel.component.d.ts +3 -4
  239. package/ui/password/src/password.component.d.ts +2 -1
  240. package/ui/radioButton/src/radio-button.component.d.ts +2 -1
  241. package/ui/selectBox/src/select-box.component.d.ts +4 -2
  242. package/ui/switch/src/switch.component.d.ts +2 -1
  243. package/ui/table/index.d.ts +2 -0
  244. package/ui/table/src/i18n.d.ts +42 -0
  245. package/ui/table/src/table-column.component.d.ts +22 -0
  246. package/ui/table/src/table.component.d.ts +30 -0
  247. package/ui/tagBox/src/tag-box.component.d.ts +2 -1
  248. package/ui/text/src/text.component.d.ts +6 -4
  249. package/ui/textArea/src/text-area.component.d.ts +2 -2
  250. package/ui/tree/src/tree.component.d.ts +3 -7
  251. package/ui/treeTable/src/tree-table.component.d.ts +10 -8
  252. package/ui/value/index.d.ts +1 -0
  253. package/ui/value/src/value.component.d.ts +15 -0
  254. package/util/lib/src/types.d.ts +7 -0
  255. package/util/primitive-extensions/src/string.extensions.d.ts +1 -0
  256. package/esm2022/ui/dialog/aril-ui-dialog.mjs +0 -5
  257. package/esm2022/ui/dialog/index.mjs +0 -2
  258. package/esm2022/ui/dialog/src/dialog.component.mjs +0 -56
  259. package/fesm2022/aril-ui-dialog.mjs +0 -63
  260. package/fesm2022/aril-ui-dialog.mjs.map +0 -1
  261. package/ui/dialog/index.d.ts +0 -1
  262. package/ui/dialog/src/dialog.component.d.ts +0 -20
  263. /package/styles/ui/{ui.styles.css → ui.common.scss} +0 -0
@@ -0,0 +1,338 @@
1
+ .p-datatable {
2
+ .p-paginator-top {
3
+ border-width: $tableTopPaginatorBorderWidth;
4
+ border-radius: 0;
5
+ }
6
+
7
+ .p-paginator-bottom {
8
+ border-width: $tableBottomPaginatorBorderWidth;
9
+ border-radius: 0;
10
+ }
11
+
12
+ .p-datatable-header {
13
+ background: $tableHeaderBg;
14
+ color: $tableHeaderTextColor;
15
+ border: $tableHeaderBorder;
16
+ border-width: $tableHeaderBorderWidth;
17
+ padding: $tableHeaderPadding;
18
+ font-weight: $tableHeaderFontWeight;
19
+ }
20
+
21
+ .p-datatable-footer {
22
+ background: $tableFooterBg;
23
+ color: $tableFooterTextColor;
24
+ border: $tableFooterBorder;
25
+ border-width: $tableFooterBorderWidth;
26
+ padding: $tableFooterPadding;
27
+ font-weight: $tableFooterFontWeight;
28
+ }
29
+
30
+ .p-datatable-thead > tr > th {
31
+ text-align: $tableCellContentAlignment;
32
+ padding: $tableHeaderCellPadding;
33
+ border: $tableHeaderCellBorder;
34
+ border-width: $tableHeaderCellBorderWidth;
35
+ font-weight: $tableHeaderCellFontWeight;
36
+ color: $tableHeaderCellTextColor;
37
+ background: $tableHeaderCellBg;
38
+ transition: $listItemTransition;
39
+ }
40
+
41
+ .p-datatable-tfoot > tr > td {
42
+ text-align: $tableCellContentAlignment;
43
+ padding: $tableFooterCellPadding;
44
+ border: $tableFooterCellBorder;
45
+ border-width: $tableFooterCellBorderWidth;
46
+ font-weight: $tableFooterCellFontWeight;
47
+ color: $tableFooterCellTextColor;
48
+ background: $tableFooterCellBg;
49
+ }
50
+
51
+ .p-sortable-column {
52
+ .p-sortable-column-icon {
53
+ color: $tableHeaderCellIconColor;
54
+ margin-left: $inlineSpacing;
55
+ }
56
+
57
+ .p-sortable-column-badge {
58
+ border-radius: 50%;
59
+ height: $tableSortableColumnBadgeSize;
60
+ min-width: $tableSortableColumnBadgeSize;
61
+ line-height: $tableSortableColumnBadgeSize;
62
+ color: $highlightTextColor;
63
+ background: $highlightBg;
64
+ margin-left: $inlineSpacing;
65
+ }
66
+
67
+ &:not(.p-highlight):hover {
68
+ background: $tableHeaderCellHoverBg;
69
+ color: $tableHeaderCellTextHoverColor;
70
+
71
+ .p-sortable-column-icon {
72
+ color: $tableHeaderCellIconHoverColor;
73
+ }
74
+ }
75
+
76
+ &.p-highlight {
77
+ background: $tableHeaderCellHighlightBg;
78
+ color: $tableHeaderCellHighlightTextColor;
79
+
80
+ .p-sortable-column-icon {
81
+ color: $tableHeaderCellHighlightTextColor;
82
+ }
83
+
84
+ &:hover {
85
+ background: $tableHeaderCellHighlightHoverBg;
86
+ color: $tableHeaderCellHighlightTextColor;
87
+
88
+ .p-sortable-column-icon {
89
+ color: $tableHeaderCellHighlightTextColor;
90
+ }
91
+ }
92
+ }
93
+
94
+ &:focus-visible {
95
+ box-shadow: $inputListItemFocusShadow;
96
+ outline: 0 none;
97
+ }
98
+ }
99
+
100
+ .p-datatable-tbody {
101
+ > tr {
102
+ background: $tableBodyRowBg;
103
+ color: $tableBodyRowTextColor;
104
+ transition: $listItemTransition;
105
+
106
+ > td {
107
+ text-align: $tableCellContentAlignment;
108
+ border: $tableBodyCellBorder;
109
+ border-width: $tableBodyCellBorderWidth;
110
+ padding: $tableBodyCellPadding;
111
+
112
+ .p-row-toggler,
113
+ .p-row-editor-init,
114
+ .p-row-editor-save,
115
+ .p-row-editor-cancel {
116
+ @include action-icon();
117
+ }
118
+
119
+ .p-row-editor-save {
120
+ margin-right: $inlineSpacing;
121
+ }
122
+ }
123
+
124
+ &:focus-visible {
125
+ outline: 0.15rem solid $focusOutlineColor;
126
+ outline-offset: -0.15rem;
127
+ }
128
+
129
+ &.p-highlight {
130
+ background: $highlightBg;
131
+ color: $highlightTextColor;
132
+ }
133
+
134
+ &.p-datatable-dragpoint-top > td {
135
+ box-shadow: inset 0 2px 0 0 $highlightBg;
136
+ }
137
+
138
+ &.p-datatable-dragpoint-bottom > td {
139
+ box-shadow: inset 0 -2px 0 0 $highlightBg;
140
+ }
141
+ }
142
+ }
143
+
144
+ &.p-datatable-hoverable-rows {
145
+ .p-datatable-tbody > tr:not(.p-highlight):hover {
146
+ background: $tableBodyRowHoverBg;
147
+ color: $tableBodyRowTextHoverColor;
148
+ }
149
+ }
150
+
151
+ .p-column-resizer-helper {
152
+ background: $tableResizerHelperBg;
153
+ }
154
+
155
+ .p-datatable-scrollable-header,
156
+ .p-datatable-scrollable-footer {
157
+ background: $panelHeaderBg;
158
+ }
159
+
160
+ &.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table,
161
+ &.p-datatable-scrollable > .p-datatable-wrapper > .p-scroller-viewport > .p-scroller > .p-datatable-table {
162
+ > .p-datatable-thead,
163
+ > .p-datatable-tfoot {
164
+ background-color: $tableHeaderCellBg;
165
+ }
166
+ }
167
+
168
+ .p-datatable-loading-icon {
169
+ font-size: $loadingIconFontSize;
170
+ }
171
+
172
+ &.p-datatable-gridlines {
173
+ .p-datatable-header {
174
+ border-width: 1px 1px 0 1px;
175
+ }
176
+
177
+ .p-datatable-footer {
178
+ border-width: 0 1px 1px 1px;
179
+ }
180
+
181
+ .p-paginator-top {
182
+ border-width: 0 1px 0 1px;
183
+ }
184
+
185
+ .p-paginator-bottom {
186
+ border-width: 0 1px 1px 1px;
187
+ }
188
+
189
+ .p-datatable-thead {
190
+ > tr {
191
+ > th {
192
+ border-width: 1px 0 1px 1px;
193
+
194
+ &:last-child {
195
+ border-width: 1px;
196
+ }
197
+ }
198
+ }
199
+ }
200
+
201
+ .p-datatable-tbody {
202
+ > tr {
203
+ > td {
204
+ border-width: 1px 0 0 1px;
205
+
206
+ &:last-child {
207
+ border-width: 1px 1px 0 1px;
208
+ }
209
+ }
210
+
211
+ &:last-child {
212
+ > td {
213
+ border-width: 1px 0 1px 1px;
214
+
215
+ &:last-child {
216
+ border-width: 1px;
217
+ }
218
+ }
219
+ }
220
+ }
221
+ }
222
+
223
+ .p-datatable-tfoot {
224
+ > tr {
225
+ > td {
226
+ border-width: 1px 0 1px 1px;
227
+
228
+ &:last-child {
229
+ border-width: 1px 1px 1px 1px;
230
+ }
231
+ }
232
+ }
233
+ }
234
+
235
+ .p-datatable-thead + .p-datatable-tfoot {
236
+ > tr {
237
+ > td {
238
+ border-width: 0 0 1px 1px;
239
+
240
+ &:last-child {
241
+ border-width: 0 1px 1px 1px;
242
+ }
243
+ }
244
+ }
245
+ }
246
+
247
+ &:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody {
248
+ > tr {
249
+ > td {
250
+ border-width: 0 0 1px 1px;
251
+
252
+ &:last-child {
253
+ border-width: 0 1px 1px 1px;
254
+ }
255
+ }
256
+ }
257
+ }
258
+
259
+ &:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody {
260
+ > tr {
261
+ &:last-child {
262
+ > td {
263
+ border-width: 0 0 0 1px;
264
+
265
+ &:last-child {
266
+ border-width: 0 1px 0 1px;
267
+ }
268
+ }
269
+ }
270
+ }
271
+ }
272
+ }
273
+
274
+ &.p-datatable-striped {
275
+ .p-datatable-tbody {
276
+ > tr:nth-child(even) {
277
+ background: $tableBodyRowEvenBg;
278
+
279
+ &.p-highlight {
280
+ background: $highlightBg;
281
+ color: $highlightTextColor;
282
+
283
+ .p-row-toggler {
284
+ color: $highlightTextColor;
285
+
286
+ &:hover {
287
+ color: $highlightTextColor;
288
+ }
289
+ }
290
+ }
291
+ }
292
+ }
293
+ }
294
+
295
+ &.p-datatable-sm {
296
+ .p-datatable-header {
297
+ @include scaledPadding($tableHeaderPadding, $tableScaleSM);
298
+ }
299
+
300
+ .p-datatable-thead > tr > th {
301
+ @include scaledPadding($tableHeaderCellPadding, $tableScaleSM);
302
+ }
303
+
304
+ .p-datatable-tbody > tr > td {
305
+ @include scaledPadding($tableBodyCellPadding, $tableScaleSM);
306
+ }
307
+
308
+ .p-datatable-tfoot > tr > td {
309
+ @include scaledPadding($tableFooterPadding, $tableScaleSM);
310
+ }
311
+
312
+ .p-datatable-footer {
313
+ @include scaledPadding($tableFooterPadding, $tableScaleSM);
314
+ }
315
+ }
316
+
317
+ &.p-datatable-lg {
318
+ .p-datatable-header {
319
+ @include scaledPadding($tableHeaderPadding, $tableScaleLG);
320
+ }
321
+
322
+ .p-datatable-thead > tr > th {
323
+ @include scaledPadding($tableHeaderCellPadding, $tableScaleLG);
324
+ }
325
+
326
+ .p-datatable-tbody > tr > td {
327
+ @include scaledPadding($tableBodyCellPadding, $tableScaleLG);
328
+ }
329
+
330
+ .p-datatable-tfoot > tr > td {
331
+ @include scaledPadding($tableFooterPadding, $tableScaleLG);
332
+ }
333
+
334
+ .p-datatable-footer {
335
+ @include scaledPadding($tableFooterPadding, $tableScaleLG);
336
+ }
337
+ }
338
+ }
@@ -0,0 +1,46 @@
1
+ .p-dataview {
2
+ .p-paginator-top {
3
+ border-width: $tableTopPaginatorBorderWidth;
4
+ border-radius: 0;
5
+ }
6
+
7
+ .p-paginator-bottom {
8
+ border-width: $tableBottomPaginatorBorderWidth;
9
+ border-radius: 0;
10
+ }
11
+
12
+ .p-dataview-header {
13
+ background: $tableHeaderBg;
14
+ color: $tableHeaderTextColor;
15
+ border: $tableHeaderBorder;
16
+ border-width: $tableHeaderBorderWidth;
17
+ padding: $tableHeaderPadding;
18
+ font-weight: $tableHeaderFontWeight;
19
+ }
20
+
21
+ .p-dataview-content {
22
+ background: $tableBodyRowBg;
23
+ color: $tableBodyRowTextColor;
24
+ border: $dataViewContentBorder;
25
+ padding: $dataViewContentPadding;
26
+ }
27
+
28
+ .p-dataview-footer {
29
+ background: $tableFooterBg;
30
+ color: $tableFooterTextColor;
31
+ border: $tableFooterBorder;
32
+ border-width: $tableFooterBorderWidth;
33
+ padding: $tableFooterPadding;
34
+ font-weight: $tableFooterFontWeight;
35
+ border-bottom-left-radius: $borderRadius;
36
+ border-bottom-right-radius: $borderRadius;
37
+ }
38
+
39
+ .p-dataview-loading-icon {
40
+ font-size: $loadingIconFontSize;
41
+ }
42
+
43
+ .p-dataview-emptymessage {
44
+ padding: $panelContentPadding;
45
+ }
46
+ }
@@ -0,0 +1,138 @@
1
+ .p-column-filter-row {
2
+ .p-column-filter-menu-button,
3
+ .p-column-filter-clear-button {
4
+ margin-left: $inlineSpacing;
5
+ }
6
+ }
7
+
8
+ .p-column-filter-menu-button {
9
+ width: $actionIconWidth;
10
+ height: $actionIconHeight;
11
+ color: $actionIconColor;
12
+ border: $actionIconBorder;
13
+ background: $actionIconBg;
14
+ border-radius: $actionIconBorderRadius;
15
+ transition: $actionIconTransition;
16
+
17
+ &:hover {
18
+ color: $actionIconHoverColor;
19
+ border-color: $actionIconHoverBorderColor;
20
+ background: $actionIconHoverBg;
21
+ }
22
+
23
+ &.p-column-filter-menu-button-open,
24
+ &.p-column-filter-menu-button-open:hover {
25
+ background: $actionIconHoverBg;
26
+ color: $actionIconHoverColor;
27
+ }
28
+
29
+ &.p-column-filter-menu-button-active,
30
+ &.p-column-filter-menu-button-active:hover {
31
+ background: $highlightBg;
32
+ color: $highlightTextColor;
33
+ }
34
+
35
+ &:focus-visible {
36
+ @include focused();
37
+ }
38
+
39
+ }
40
+
41
+ .p-column-filter-clear-button {
42
+ width: $actionIconWidth;
43
+ height: $actionIconHeight;
44
+ color: $actionIconColor;
45
+ border: $actionIconBorder;
46
+ background: $actionIconBg;
47
+ border-radius: $actionIconBorderRadius;
48
+ transition: $actionIconTransition;
49
+
50
+ &:hover {
51
+ color: $actionIconHoverColor;
52
+ border-color: $actionIconHoverBorderColor;
53
+ background: $actionIconHoverBg;
54
+ }
55
+
56
+ &:focus-visible {
57
+ @include focused();
58
+ }
59
+ }
60
+
61
+ .p-column-filter-overlay {
62
+ background: $inputOverlayBg;
63
+ color: $inputListTextColor;
64
+ border: $inputOverlayBorder;
65
+ border-radius: $borderRadius;
66
+ box-shadow: $inputOverlayShadow;
67
+ min-width: $menuWidth;
68
+
69
+ .p-column-filter-row-items {
70
+ padding: $inputListPadding;
71
+
72
+ .p-column-filter-row-item {
73
+ margin: $inputListItemMargin;
74
+ padding: $inputListItemPadding;
75
+ border: $inputListItemBorder;
76
+ color: $inputListItemTextColor;
77
+ background: $inputListItemBg;
78
+ transition: $listItemTransition;
79
+ border-radius: $inputListItemBorderRadius;
80
+
81
+ &.p-highlight {
82
+ color: $highlightTextColor;
83
+ background: $highlightBg;
84
+ }
85
+
86
+ &:not(.p-highlight):not(.p-disabled):hover {
87
+ color: $inputListItemTextHoverColor;
88
+ background: $inputListItemHoverBg;
89
+ }
90
+
91
+ &:focus-visible {
92
+ @include focused-listitem();
93
+ }
94
+ }
95
+
96
+ .p-column-filter-separator {
97
+ border-top: $divider;
98
+ margin: $menuSeparatorMargin;
99
+ }
100
+ }
101
+ }
102
+
103
+ .p-column-filter-overlay-menu {
104
+ .p-column-filter-operator {
105
+ padding: $inputListHeaderPadding;
106
+ border-bottom: $inputListHeaderBorder;
107
+ color: $inputListHeaderTextColor;
108
+ background: $inputOverlayHeaderBg;
109
+ margin: $inputListHeaderMargin;
110
+ border-top-right-radius: $borderRadius;
111
+ border-top-left-radius: $borderRadius;
112
+ }
113
+
114
+ .p-column-filter-constraint {
115
+ padding: $panelContentPadding;
116
+ border-bottom: $divider;
117
+
118
+ .p-column-filter-matchmode-dropdown {
119
+ margin-bottom: $inlineSpacing;
120
+ }
121
+
122
+ .p-column-filter-remove-button {
123
+ margin-top: $inlineSpacing;
124
+ }
125
+
126
+ &:last-child {
127
+ border-bottom: 0 none;
128
+ }
129
+ }
130
+
131
+ .p-column-filter-add-rule {
132
+ padding: $panelFooterPadding;
133
+ }
134
+
135
+ .p-column-filter-buttonbar {
136
+ padding: $panelContentPadding;
137
+ }
138
+ }
@@ -0,0 +1,114 @@
1
+ .p-orderlist {
2
+ .p-orderlist-controls {
3
+ padding: $panelContentPadding;
4
+
5
+ .p-button {
6
+ margin-bottom: $inlineSpacing;
7
+ }
8
+ }
9
+
10
+ .p-orderlist-header {
11
+ background: $panelHeaderBg;
12
+ color: $panelHeaderTextColor;
13
+ border: $panelHeaderBorder;
14
+ padding: $panelHeaderPadding;
15
+ border-bottom: 0 none;
16
+ border-top-right-radius: $borderRadius;
17
+ border-top-left-radius: $borderRadius;
18
+
19
+ .p-orderlist-title {
20
+ font-weight: $panelHeaderFontWeight;
21
+ }
22
+ }
23
+
24
+ .p-orderlist-filter-container {
25
+ padding: $panelHeaderPadding;
26
+ background: $panelContentBg;
27
+ border: $panelHeaderBorder;
28
+ border-bottom: 0 none;
29
+
30
+ .p-orderlist-filter-input {
31
+ padding-right: nth($inputPadding, 2) + $primeIconFontSize;
32
+ }
33
+
34
+ .p-orderlist-filter-icon {
35
+ right: nth($inputPadding, 2);
36
+ color: $inputIconColor;
37
+ }
38
+ }
39
+
40
+ .p-orderlist-list {
41
+ border: $panelContentBorder;
42
+ background: $panelContentBg;
43
+ color: $panelContentTextColor;
44
+ padding: $inputListPadding;
45
+ border-bottom-right-radius: $borderRadius;
46
+ border-bottom-left-radius: $borderRadius;
47
+ outline: 0 none;
48
+
49
+ .p-orderlist-item {
50
+ padding: $inputListItemPadding;
51
+ margin: $inputListItemMargin;
52
+ border: $inputListItemBorder;
53
+ color: $inputListItemTextColor;
54
+ background: $inputListItemBg;
55
+ transition: $listItemTransition;
56
+
57
+ &:not(.p-highlight):hover {
58
+ background: $inputListItemHoverBg;
59
+ color: $inputListItemTextHoverColor;
60
+ }
61
+
62
+ &.p-focus {
63
+ color: $inputListItemTextFocusColor;
64
+ background: $inputListItemFocusBg;
65
+ }
66
+
67
+ &.p-highlight {
68
+ color: $highlightTextColor;
69
+ background: $highlightBg;
70
+
71
+ &.p-focus {
72
+ background: $highlightFocusBg;
73
+ }
74
+ }
75
+ }
76
+
77
+ .p-orderlist-empty-message {
78
+ padding: $inputListItemPadding;
79
+ color: $inputListItemTextColor;
80
+ }
81
+
82
+ &:not(.cdk-drop-list-dragging) {
83
+ .p-orderlist-item {
84
+ &:not(.p-highlight):hover {
85
+ background: $inputListItemHoverBg;
86
+ color: $inputListItemTextHoverColor;
87
+ }
88
+ }
89
+ }
90
+ }
91
+
92
+ &.p-orderlist-striped {
93
+ .p-orderlist-list {
94
+ .p-orderlist-item:nth-child(even) {
95
+ background: $panelContentEvenRowBg;
96
+
97
+ &:hover {
98
+ background: $inputListItemHoverBg;
99
+ }
100
+ }
101
+ }
102
+ }
103
+ }
104
+
105
+ .p-orderlist-item {
106
+ &.cdk-drag-preview {
107
+ padding: $inputListItemPadding;
108
+ box-shadow: $inputOverlayShadow;
109
+ border: $inputListItemBorder;
110
+ color: $inputListItemTextColor;
111
+ background: $panelContentBg;
112
+ margin: 0;
113
+ }
114
+ }
@@ -0,0 +1,50 @@
1
+ .p-organizationchart {
2
+ .p-organizationchart-node-content {
3
+ &.p-organizationchart-selectable-node:not(.p-highlight):hover {
4
+ background: $inputListItemHoverBg;
5
+ color: $inputListItemTextHoverColor;
6
+ }
7
+
8
+ &.p-highlight {
9
+ background: $highlightBg;
10
+ color: $highlightTextColor;
11
+
12
+ .p-node-toggler {
13
+ i {
14
+ color: darken($highlightBg, 25%);
15
+ }
16
+ }
17
+ }
18
+ }
19
+
20
+ .p-organizationchart-line-down {
21
+ background: $organizationChartConnectorColor;
22
+ }
23
+
24
+ .p-organizationchart-line-left {
25
+ border-right: $panelContentBorder;
26
+ border-color: $organizationChartConnectorColor;
27
+ }
28
+
29
+ .p-organizationchart-line-top {
30
+ border-top: $panelContentBorder;
31
+ border-color: $organizationChartConnectorColor;
32
+ }
33
+
34
+ .p-organizationchart-node-content {
35
+ border: $panelContentBorder;
36
+ background: $panelContentBg;
37
+ color: $panelContentTextColor;
38
+ padding: $panelContentPadding;
39
+ }
40
+
41
+ .p-organizationchart-node-content .p-node-toggler {
42
+ background: inherit;
43
+ color: inherit;
44
+ border-radius: 50%;
45
+
46
+ &:focus-visible {
47
+ @include focused();
48
+ }
49
+ }
50
+ }