@mediusinc/mng-commons 3.6.0-rc.3 → 3.7.0-rc.0

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 (341) hide show
  1. package/README.md +6 -5
  2. package/esm2022/index.mjs +6 -3
  3. package/esm2022/lib/api/models/filter-param.model.mjs +1 -1
  4. package/esm2022/lib/api/models/index.mjs +1 -3
  5. package/esm2022/lib/api/models/query-param.model.mjs +1 -1
  6. package/esm2022/lib/api/models/query-result.model.mjs +12 -1
  7. package/esm2022/lib/api/services/api.abstract.service.mjs +2 -2
  8. package/esm2022/lib/api/services/get-all-api.abstract.service.mjs +1 -1
  9. package/esm2022/lib/api/utils/index.mjs +2 -2
  10. package/esm2022/lib/api/utils/object-serializer.util.mjs +53 -137
  11. package/esm2022/lib/components/action/action.component.mjs +17 -16
  12. package/esm2022/lib/components/action/editor/action-editor.component.mjs +12 -12
  13. package/esm2022/lib/components/action/localization/data-language-dropdown.component.mjs +7 -7
  14. package/esm2022/lib/components/action/models/action-component.model.mjs +1 -1
  15. package/esm2022/lib/components/action/models/action-confirmation-service.model.mjs +1 -1
  16. package/esm2022/lib/components/action/models/action-execution.model.mjs +5 -5
  17. package/esm2022/lib/components/action/route/action-route.component.mjs +6 -6
  18. package/esm2022/lib/components/form/autocomplete/autocomplete.component.mjs +74 -65
  19. package/esm2022/lib/components/form/date-range/date-range.component.mjs +6 -7
  20. package/esm2022/lib/components/form/dropdown/dropdown.component.mjs +39 -39
  21. package/esm2022/lib/components/form/editor/form-editor.component.mjs +14 -16
  22. package/esm2022/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.mjs +6 -6
  23. package/esm2022/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +5 -5
  24. package/esm2022/lib/components/form/formly/fields/formly-field-custom/formly-custom-field-base.model.mjs +3 -3
  25. package/esm2022/lib/components/form/formly/fields/formly-field-custom/formly-field-custom.component.mjs +3 -3
  26. package/esm2022/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +5 -5
  27. package/esm2022/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +5 -6
  28. package/esm2022/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +10 -13
  29. package/esm2022/lib/components/form/formly/fields/formly-field-label/formly-field-label.component.mjs +3 -3
  30. package/esm2022/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.mjs +13 -13
  31. package/esm2022/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +26 -15
  32. package/esm2022/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +14 -14
  33. package/esm2022/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +5 -6
  34. package/esm2022/lib/components/form/formly/wrappers/formly-field-no-label-wrapper/formly-field-no-label-wrapper.component.mjs +5 -6
  35. package/esm2022/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +39 -18
  36. package/esm2022/lib/components/layout/breadcrumb.component.mjs +4 -4
  37. package/esm2022/lib/components/layout/footer.component.mjs +4 -4
  38. package/esm2022/lib/components/layout/main-layout.component.mjs +8 -8
  39. package/esm2022/lib/components/layout/menu-item.component.mjs +8 -8
  40. package/esm2022/lib/components/layout/menu.component.mjs +7 -7
  41. package/esm2022/lib/components/layout/services/main-layout.component.service.mjs +4 -4
  42. package/esm2022/lib/components/layout/topbar-user.component.mjs +9 -9
  43. package/esm2022/lib/components/layout/topbar.component.mjs +8 -8
  44. package/esm2022/lib/components/layout/version.component.mjs +11 -11
  45. package/esm2022/lib/components/layoutV2/breadcrumb.component.mjs +6 -6
  46. package/esm2022/lib/components/layoutV2/footer.component.mjs +3 -3
  47. package/esm2022/lib/components/layoutV2/main-layout.component.mjs +14 -11
  48. package/esm2022/lib/components/layoutV2/menu-item.component.mjs +12 -9
  49. package/esm2022/lib/components/layoutV2/menu.component.mjs +5 -6
  50. package/esm2022/lib/components/layoutV2/model/layout-state.model.mjs +1 -1
  51. package/esm2022/lib/components/layoutV2/services/main-layout.component.service.mjs +30 -21
  52. package/esm2022/lib/components/layoutV2/services/menu.service.mjs +3 -3
  53. package/esm2022/lib/components/layoutV2/sidebar.component.mjs +18 -9
  54. package/esm2022/lib/components/layoutV2/topbar-user.component.mjs +6 -6
  55. package/esm2022/lib/components/layoutV2/topbar.component.mjs +6 -7
  56. package/esm2022/lib/components/layoutV2/version.component.mjs +11 -11
  57. package/esm2022/lib/components/pages/error/error.page.component.mjs +4 -4
  58. package/esm2022/lib/components/pages/not-found/not-found.page.component.mjs +4 -4
  59. package/esm2022/lib/components/tableview/index.mjs +1 -2
  60. package/esm2022/lib/components/tableview/models/table.event.mjs +1 -1
  61. package/esm2022/lib/components/tableview/route/tableview-route.abstract.component.mjs +18 -18
  62. package/esm2022/lib/components/tableview/route/tableview-route.component.mjs +5 -5
  63. package/esm2022/lib/components/tableview/table/column-filter-full/column-filter-full.component.mjs +8 -12
  64. package/esm2022/lib/components/tableview/table/column-value/column-value.component.mjs +9 -32
  65. package/esm2022/lib/components/tableview/table/table.component.mjs +20 -25
  66. package/esm2022/lib/components/tableview/tableview.component.mjs +8 -10
  67. package/esm2022/lib/data-providers/base.data-provider.mjs +43 -12
  68. package/esm2022/lib/data-providers/editor.data-provider.mjs +82 -14
  69. package/esm2022/lib/data-providers/lookup.data-provider.mjs +38 -9
  70. package/esm2022/lib/data-providers/table.data-provider.mjs +41 -14
  71. package/esm2022/lib/data-providers/tableview-crud.data-provider.mjs +14 -6
  72. package/esm2022/lib/data-providers/tableview.data-provider.mjs +89 -29
  73. package/esm2022/lib/descriptors/action/action-confirmation.descriptor.mjs +2 -2
  74. package/esm2022/lib/descriptors/action/action-editor.descriptor.mjs +262 -0
  75. package/esm2022/lib/descriptors/action/action-link.descriptor.mjs +90 -0
  76. package/esm2022/lib/descriptors/action/action.descriptor.mjs +91 -352
  77. package/esm2022/lib/descriptors/action/index.mjs +3 -1
  78. package/esm2022/lib/descriptors/editor/editor.descriptor.mjs +215 -102
  79. package/esm2022/lib/descriptors/editor/field-action.descriptor.mjs +50 -0
  80. package/esm2022/lib/descriptors/editor/field-base.descriptor.mjs +293 -0
  81. package/esm2022/lib/descriptors/editor/field-group.descriptor.mjs +97 -0
  82. package/esm2022/lib/descriptors/editor/field-lookup.descriptor.mjs +211 -0
  83. package/esm2022/lib/descriptors/editor/field-many.descriptor.mjs +153 -0
  84. package/esm2022/lib/descriptors/editor/field.descriptor.mjs +81 -852
  85. package/esm2022/lib/descriptors/editor/index.mjs +6 -1
  86. package/esm2022/lib/descriptors/editor/internal/editor-fields.model.mjs +2 -0
  87. package/esm2022/lib/descriptors/editor/internal/editor.model.mjs +2 -0
  88. package/esm2022/lib/descriptors/filter/filter-lookup.descriptor.mjs +210 -0
  89. package/esm2022/lib/descriptors/filter/filter.descriptor.mjs +2 -208
  90. package/esm2022/lib/descriptors/filter/index.mjs +2 -1
  91. package/esm2022/lib/descriptors/interfaces/lookup-descriptor.interface.mjs +1 -1
  92. package/esm2022/lib/descriptors/model/index.mjs +2 -0
  93. package/esm2022/lib/descriptors/model/model.descriptor.mjs +70 -0
  94. package/esm2022/lib/descriptors/table/column.descriptor.mjs +38 -49
  95. package/esm2022/lib/descriptors/table/internal/table-columns.model.mjs +2 -0
  96. package/esm2022/lib/descriptors/table/internal/table.model.mjs +2 -0
  97. package/esm2022/lib/descriptors/table/table.descriptor.mjs +143 -124
  98. package/esm2022/lib/descriptors/tableview/internal/tableview.model.mjs +2 -0
  99. package/esm2022/lib/descriptors/tableview/tableview.descriptor.mjs +240 -131
  100. package/esm2022/lib/directives/component.directive.mjs +11 -11
  101. package/esm2022/lib/directives/dialog-keydown-handler.directive.mjs +3 -3
  102. package/esm2022/lib/directives/template.directive.mjs +9 -9
  103. package/esm2022/lib/helpers/coercion.mjs +45 -0
  104. package/esm2022/lib/models/class.model.mjs +2 -0
  105. package/esm2022/lib/models/enum.model.mjs +1 -1
  106. package/esm2022/lib/models/index.mjs +4 -1
  107. package/esm2022/lib/models/radio.model.mjs +2 -0
  108. package/esm2022/lib/models/tableview-attr.model.mjs +1 -1
  109. package/esm2022/lib/models/type-registry.model.mjs +2 -0
  110. package/esm2022/lib/models/view-container.model.mjs +1 -1
  111. package/esm2022/lib/pipes/boolean.pipe.mjs +3 -3
  112. package/esm2022/lib/pipes/class-map.pipe.mjs +3 -3
  113. package/esm2022/lib/pipes/enum.pipe.mjs +6 -6
  114. package/esm2022/lib/pipes/enumerate-async.pipe.mjs +5 -5
  115. package/esm2022/lib/pipes/enumerate.pipe.mjs +5 -5
  116. package/esm2022/lib/pipes/getter.pipe.mjs +5 -5
  117. package/esm2022/lib/pipes/i18n-property.pipe.mjs +4 -4
  118. package/esm2022/lib/pipes/json-path.pipe.mjs +3 -3
  119. package/esm2022/lib/pipes/locale-default-row-class.pipe.mjs +5 -5
  120. package/esm2022/lib/pipes/parametrize.pipe.mjs +3 -3
  121. package/esm2022/lib/pipes/template.pipe.mjs +4 -4
  122. package/esm2022/lib/provide-commons.mjs +4 -4
  123. package/esm2022/lib/registry/type.registry.mjs +114 -0
  124. package/esm2022/lib/router/models/router.model.mjs +1 -1
  125. package/esm2022/lib/router/tableview-route-builder.mjs +5 -5
  126. package/esm2022/lib/security/authorization.service.mjs +9 -11
  127. package/esm2022/lib/services/action-executor.service.mjs +14 -12
  128. package/esm2022/lib/services/commons-init.service.mjs +3 -3
  129. package/esm2022/lib/services/commons.service.mjs +6 -5
  130. package/esm2022/lib/services/mng-localstorage-config.service.mjs +4 -4
  131. package/esm2022/lib/services/navigation.service.mjs +5 -5
  132. package/esm2022/lib/services/router.service.mjs +4 -4
  133. package/esm2022/lib/services/version.service.mjs +5 -5
  134. package/esm2022/lib/services/view-container.component.service.mjs +5 -5
  135. package/esm2022/lib/styles/styles.util.mjs +1 -1
  136. package/esm2022/lib/types/action-descriptor.types.mjs +2 -0
  137. package/esm2022/lib/types/data-provider.types.mjs +2 -0
  138. package/esm2022/lib/types/getter.type.mjs +2 -0
  139. package/esm2022/lib/types/index.mjs +5 -2
  140. package/esm2022/lib/types/localstorage-config-value.type.mjs +2 -0
  141. package/esm2022/lib/types/type.decorator.mjs +4 -14
  142. package/esm2022/lib/types/type.model.mjs +1 -1
  143. package/esm2022/lib/utils/action-data-provider.util.mjs +14 -8
  144. package/esm2022/lib/utils/decorator-metadata.util.mjs +61 -0
  145. package/esm2022/lib/utils/editor-formly.util.mjs +6 -5
  146. package/esm2022/lib/utils/enum.util.mjs +1 -1
  147. package/esm2022/lib/utils/export.util.mjs +5 -4
  148. package/esm2022/lib/utils/i18n.util.mjs +22 -22
  149. package/esm2022/lib/utils/index.mjs +2 -3
  150. package/esm2022/lib/utils/model.util.mjs +40 -36
  151. package/esm2022/lib/utils/notification.util.mjs +1 -1
  152. package/esm2022/lib/utils/tableview.util.mjs +17 -17
  153. package/fesm2022/mediusinc-mng-commons.mjs +11491 -11384
  154. package/fesm2022/mediusinc-mng-commons.mjs.map +1 -1
  155. package/index.d.ts +3 -2
  156. package/lib/api/models/filter-param.model.d.ts +3 -3
  157. package/lib/api/models/index.d.ts +0 -2
  158. package/lib/api/models/query-param.model.d.ts +3 -3
  159. package/lib/api/models/query-result.model.d.ts +3 -3
  160. package/lib/api/services/api.abstract.service.d.ts +1 -1
  161. package/lib/api/utils/index.d.ts +1 -1
  162. package/lib/api/utils/object-serializer.util.d.ts +3 -19
  163. package/lib/components/action/action.component.d.ts +5 -5
  164. package/lib/components/action/editor/action-editor.component.d.ts +7 -7
  165. package/lib/components/action/localization/data-language-dropdown.component.d.ts +6 -6
  166. package/lib/components/action/models/action-component.model.d.ts +4 -4
  167. package/lib/components/action/models/action-confirmation-service.model.d.ts +2 -2
  168. package/lib/components/action/models/action-execution.model.d.ts +14 -14
  169. package/lib/components/action/route/action-route.component.d.ts +2 -2
  170. package/lib/components/form/autocomplete/autocomplete.component.d.ts +15 -18
  171. package/lib/components/form/dropdown/dropdown.component.d.ts +9 -9
  172. package/lib/components/form/editor/form-editor.component.d.ts +8 -11
  173. package/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.d.ts +4 -0
  174. package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +4 -4
  175. package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +3 -2
  176. package/lib/components/layout/topbar-user.component.d.ts +2 -2
  177. package/lib/components/layout/version.component.d.ts +2 -2
  178. package/lib/components/layoutV2/model/layout-state.model.d.ts +8 -9
  179. package/lib/components/layoutV2/services/main-layout.component.service.d.ts +1 -1
  180. package/lib/components/layoutV2/version.component.d.ts +2 -2
  181. package/lib/components/tableview/index.d.ts +0 -1
  182. package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +20 -20
  183. package/lib/components/tableview/route/tableview-route.component.d.ts +7 -7
  184. package/lib/components/tableview/table/table.component.d.ts +9 -9
  185. package/lib/components/tableview/tableview.component.d.ts +8 -8
  186. package/lib/data-providers/base.data-provider.d.ts +30 -12
  187. package/lib/data-providers/editor.data-provider.d.ts +86 -23
  188. package/lib/data-providers/lookup.data-provider.d.ts +24 -11
  189. package/lib/data-providers/table.data-provider.d.ts +30 -17
  190. package/lib/data-providers/tableview-crud.data-provider.d.ts +8 -4
  191. package/lib/data-providers/tableview.data-provider.d.ts +41 -29
  192. package/lib/descriptors/action/action-confirmation.descriptor.d.ts +3 -3
  193. package/lib/descriptors/action/action-editor.descriptor.d.ts +115 -0
  194. package/lib/descriptors/action/action-link.descriptor.d.ts +34 -0
  195. package/lib/descriptors/action/action.descriptor.d.ts +74 -160
  196. package/lib/descriptors/action/index.d.ts +2 -0
  197. package/lib/descriptors/editor/editor.descriptor.d.ts +131 -79
  198. package/lib/descriptors/editor/field-action.descriptor.d.ts +23 -0
  199. package/lib/descriptors/editor/field-base.descriptor.d.ts +126 -0
  200. package/lib/descriptors/editor/field-group.descriptor.d.ts +42 -0
  201. package/lib/descriptors/editor/field-lookup.descriptor.d.ts +80 -0
  202. package/lib/descriptors/editor/field-many.descriptor.d.ts +63 -0
  203. package/lib/descriptors/editor/field.descriptor.d.ts +100 -326
  204. package/lib/descriptors/editor/index.d.ts +5 -0
  205. package/lib/descriptors/editor/internal/editor-fields.model.d.ts +32 -0
  206. package/lib/descriptors/editor/internal/editor.model.d.ts +15 -0
  207. package/lib/descriptors/filter/filter-lookup.descriptor.d.ts +69 -0
  208. package/lib/descriptors/filter/filter.descriptor.d.ts +9 -67
  209. package/lib/descriptors/filter/index.d.ts +1 -0
  210. package/lib/descriptors/interfaces/lookup-descriptor.interface.d.ts +11 -16
  211. package/lib/descriptors/model/model.descriptor.d.ts +22 -0
  212. package/lib/descriptors/table/column.descriptor.d.ts +45 -33
  213. package/lib/descriptors/table/internal/table-columns.model.d.ts +11 -0
  214. package/lib/descriptors/table/internal/table.model.d.ts +9 -0
  215. package/lib/descriptors/table/table.descriptor.d.ts +82 -71
  216. package/lib/descriptors/tableview/internal/tableview.model.d.ts +11 -0
  217. package/lib/descriptors/tableview/tableview.descriptor.d.ts +106 -74
  218. package/lib/directives/component.directive.d.ts +5 -6
  219. package/lib/directives/template.directive.d.ts +2 -3
  220. package/lib/helpers/coercion.d.ts +9 -0
  221. package/lib/models/class.model.d.ts +6 -0
  222. package/lib/models/enum.model.d.ts +3 -2
  223. package/lib/models/index.d.ts +3 -0
  224. package/lib/models/radio.model.d.ts +6 -0
  225. package/lib/models/tableview-attr.model.d.ts +2 -2
  226. package/lib/models/type-registry.model.d.ts +7 -0
  227. package/lib/models/view-container.model.d.ts +6 -6
  228. package/lib/pipes/getter.pipe.d.ts +2 -1
  229. package/lib/pipes/i18n-property.pipe.d.ts +1 -1
  230. package/lib/pipes/locale-default-row-class.pipe.d.ts +2 -2
  231. package/lib/registry/type.registry.d.ts +25 -0
  232. package/lib/router/models/router.model.d.ts +5 -5
  233. package/lib/router/tableview-route-builder.d.ts +6 -6
  234. package/lib/security/authorization.service.d.ts +4 -7
  235. package/lib/services/action-executor.service.d.ts +7 -7
  236. package/lib/services/mng-localstorage-config.service.d.ts +3 -3
  237. package/lib/services/view-container.component.service.d.ts +3 -3
  238. package/lib/styles/styles.util.d.ts +5 -5
  239. package/lib/types/action-descriptor.types.d.ts +4 -0
  240. package/lib/types/data-provider.types.d.ts +3 -0
  241. package/lib/types/getter.type.d.ts +2 -0
  242. package/lib/types/index.d.ts +4 -1
  243. package/lib/types/localstorage-config-value.type.d.ts +1 -0
  244. package/lib/types/type.decorator.d.ts +0 -2
  245. package/lib/types/type.model.d.ts +12 -2
  246. package/lib/utils/action-data-provider.util.d.ts +6 -5
  247. package/lib/utils/{type.util.d.ts → decorator-metadata.util.d.ts} +2 -26
  248. package/lib/utils/editor-formly.util.d.ts +2 -2
  249. package/lib/utils/enum.util.d.ts +2 -2
  250. package/lib/utils/export.util.d.ts +2 -2
  251. package/lib/utils/i18n.util.d.ts +10 -11
  252. package/lib/utils/index.d.ts +1 -2
  253. package/lib/utils/model.util.d.ts +5 -3
  254. package/lib/utils/notification.util.d.ts +4 -4
  255. package/lib/utils/tableview.util.d.ts +6 -6
  256. package/openapi/templates/model.mustache +15 -2
  257. package/openapi/templates/models.mustache +0 -44
  258. package/package.json +10 -10
  259. package/scss/mng-commons-dark-v2.scss +2 -2
  260. package/scss/mng-commons-light-v2.scss +1 -1
  261. package/scss/v2/theme/{theme-base/components/data → extensions}/_fullcalendar.scss +14 -15
  262. package/scss/v2/theme/theme-base/_colors.scss +11 -12
  263. package/scss/v2/theme/theme-base/_common.scss +8 -5
  264. package/scss/v2/theme/theme-base/_components.scss +93 -89
  265. package/scss/v2/theme/theme-base/_mixins.scss +205 -71
  266. package/scss/v2/theme/theme-base/components/button/_button.scss +80 -68
  267. package/scss/v2/theme/theme-base/components/button/_speeddial.scss +11 -1
  268. package/scss/v2/theme/theme-base/components/button/_splitbutton.scss +128 -161
  269. package/scss/v2/theme/theme-base/components/data/_carousel.scss +1 -1
  270. package/scss/v2/theme/theme-base/components/data/_datatable.scss +3 -3
  271. package/scss/v2/theme/theme-base/components/data/_dataview.scss +0 -9
  272. package/scss/v2/theme/theme-base/components/data/_filter.scss +5 -6
  273. package/scss/v2/theme/theme-base/components/data/_orderlist.scss +15 -4
  274. package/scss/v2/theme/theme-base/components/data/_organizationchart.scss +1 -1
  275. package/scss/v2/theme/theme-base/components/data/_picklist.scss +14 -3
  276. package/scss/v2/theme/theme-base/components/data/_timeline.scss +3 -6
  277. package/scss/v2/theme/theme-base/components/data/_tree.scss +7 -6
  278. package/scss/v2/theme/theme-base/components/data/_treetable.scss +3 -4
  279. package/scss/v2/theme/theme-base/components/file/_fileupload.scss +6 -0
  280. package/scss/v2/theme/theme-base/components/input/_autocomplete.scss +43 -24
  281. package/scss/v2/theme/theme-base/components/input/_calendar.scss +9 -5
  282. package/scss/v2/theme/theme-base/components/input/_cascadeselect.scss +25 -20
  283. package/scss/v2/theme/theme-base/components/input/_checkbox.scss +9 -5
  284. package/scss/v2/theme/theme-base/components/input/_chips.scss +24 -13
  285. package/scss/v2/theme/theme-base/components/input/_dropdown.scss +29 -13
  286. package/scss/v2/theme/theme-base/components/input/_editor.scss +7 -7
  287. package/scss/v2/theme/theme-base/components/input/_inputgroup.scss +1 -2
  288. package/scss/v2/theme/theme-base/components/input/_inputmask.scss +2 -2
  289. package/scss/v2/theme/theme-base/components/input/_inputnumber.scss +7 -7
  290. package/scss/v2/theme/theme-base/components/input/_inputswitch.scss +3 -3
  291. package/scss/v2/theme/theme-base/components/input/_inputtext.scss +4 -3
  292. package/scss/v2/theme/theme-base/components/input/_listbox.scss +23 -8
  293. package/scss/v2/theme/theme-base/components/input/_multiselect.scss +31 -27
  294. package/scss/v2/theme/theme-base/components/input/_radiobutton.scss +2 -2
  295. package/scss/v2/theme/theme-base/components/input/_rating.scss +33 -28
  296. package/scss/v2/theme/theme-base/components/input/_treeselect.scss +6 -6
  297. package/scss/v2/theme/theme-base/components/menu/_breadcrumb.scss +3 -3
  298. package/scss/v2/theme/theme-base/components/menu/_contextmenu.scss +8 -30
  299. package/scss/v2/theme/theme-base/components/menu/_dock.scss +11 -2
  300. package/scss/v2/theme/theme-base/components/menu/_megamenu.scss +14 -65
  301. package/scss/v2/theme/theme-base/components/menu/_menu.scss +5 -13
  302. package/scss/v2/theme/theme-base/components/menu/_menubar.scss +32 -80
  303. package/scss/v2/theme/theme-base/components/menu/_panelmenu.scss +52 -39
  304. package/scss/v2/theme/theme-base/components/menu/_slidemenu.scss +15 -20
  305. package/scss/v2/theme/theme-base/components/menu/_steps.scss +2 -2
  306. package/scss/v2/theme/theme-base/components/menu/_tabmenu.scss +1 -2
  307. package/scss/v2/theme/theme-base/components/menu/_tieredmenu.scss +10 -32
  308. package/scss/v2/theme/theme-base/components/messages/_message.scss +2 -2
  309. package/scss/v2/theme/theme-base/components/messages/_toast.scss +2 -3
  310. package/scss/v2/theme/theme-base/components/misc/_chip.scss +7 -3
  311. package/scss/v2/theme/theme-base/components/misc/_inplace.scss +0 -1
  312. package/scss/v2/theme/theme-base/components/misc/_terminal.scss +9 -8
  313. package/scss/v2/theme/theme-base/components/multimedia/_galleria.scss +6 -0
  314. package/scss/v2/theme/theme-base/components/overlay/_confirmpopup.scss +3 -5
  315. package/scss/v2/theme/theme-base/components/panel/_accordion.scss +4 -4
  316. package/scss/v2/theme/theme-base/components/panel/_fieldset.scss +1 -1
  317. package/scss/v2/theme/theme-base/components/panel/_panel.scss +10 -5
  318. package/scss/v2/theme/theme-base/components/panel/_tabview.scss +6 -2
  319. package/scss/v2/theme/theme-dark/_variables.scss +756 -765
  320. package/scss/v2/theme/theme-dark/blue/theme.scss +1 -0
  321. package/scss/v2/theme/theme-light/_variables.scss +81 -94
  322. package/scss/v2/theme/theme-light/blue/theme.scss +1 -0
  323. package/esm2022/lib/api/models/mappers.mjs +0 -13
  324. package/esm2022/lib/api/models/serialization.model.mjs +0 -2
  325. package/esm2022/lib/components/tableview/table/column-filter/column-filter.component.mjs +0 -121
  326. package/esm2022/lib/descriptors/index.mjs +0 -2
  327. package/esm2022/lib/descriptors/model.descriptor.mjs +0 -45
  328. package/esm2022/lib/mng-commons.module.mjs +0 -472
  329. package/esm2022/lib/types/mng-localstorage-config-value.type.mjs +0 -2
  330. package/esm2022/lib/utils/coercion.util.mjs +0 -6
  331. package/esm2022/lib/utils/type.util.mjs +0 -94
  332. package/lib/api/models/mappers.d.ts +0 -6
  333. package/lib/api/models/serialization.model.d.ts +0 -9
  334. package/lib/components/tableview/table/column-filter/column-filter.component.d.ts +0 -37
  335. package/lib/descriptors/model.descriptor.d.ts +0 -18
  336. package/lib/mng-commons.module.d.ts +0 -105
  337. package/lib/types/mng-localstorage-config-value.type.d.ts +0 -1
  338. package/lib/utils/coercion.util.d.ts +0 -2
  339. package/openapi/templates/serializer-registration/model.mustache +0 -97
  340. package/openapi/templates/serializer-registration/models.mustache +0 -6
  341. /package/lib/descriptors/{index.d.ts → model/index.d.ts} +0 -0
@@ -24,14 +24,12 @@
24
24
  }
25
25
 
26
26
  &.p-multiselect-chip {
27
- .p-multiselect-label {
28
- gap: $inlineSpacing;
29
- }
30
27
  .p-multiselect-token {
31
28
  padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
32
- background: $highlightBg;
33
- color: $highlightTextColor;
34
- border-radius: $borderRadius;
29
+ margin-right: $inlineSpacing;
30
+ background: $chipBg;
31
+ color: $chipTextColor;
32
+ border-radius: $chipBorderRadius;
35
33
 
36
34
  .p-multiselect-token-icon {
37
35
  margin-left: $inlineSpacing;
@@ -49,7 +47,7 @@
49
47
  }
50
48
 
51
49
  .p-inputwrapper-filled {
52
- .p-multiselect {
50
+ &.p-multiselect {
53
51
  &.p-multiselect-chip {
54
52
  .p-multiselect-label {
55
53
  padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
@@ -58,6 +56,17 @@
58
56
  }
59
57
  }
60
58
 
59
+ .p-multiselect-clearable {
60
+ .p-multiselect-label-container {
61
+ padding-right: nth($inputPadding, 2) + $primeIconFontSize;
62
+ }
63
+
64
+ .p-multiselect-clear-icon {
65
+ color: $inputIconColor;
66
+ right: $inputGroupAddOnMinWidth;
67
+ }
68
+ }
69
+
61
70
  .p-multiselect-panel {
62
71
  background: $inputOverlayBg;
63
72
  color: $inputListTextColor;
@@ -110,15 +119,22 @@
110
119
  &.p-highlight {
111
120
  color: $highlightTextColor;
112
121
  background: $highlightBg;
113
- }
114
122
 
115
- &:not(.p-highlight):not(.p-disabled):hover {
116
- color: $inputListItemTextHoverColor;
117
- background: $inputListItemHoverBg;
123
+ &.p-focus {
124
+ background: $highlightFocusBg;
125
+ }
118
126
  }
119
127
 
120
- &:focus {
121
- @include focused-listitem();
128
+ &:not(.p-highlight):not(.p-disabled) {
129
+ &.p-focus {
130
+ color: $inputListItemTextFocusColor;
131
+ background: $inputListItemFocusBg;
132
+ }
133
+
134
+ &:hover {
135
+ color: $inputListItemTextHoverColor;
136
+ background: $inputListItemHoverBg;
137
+ }
122
138
  }
123
139
 
124
140
  .p-checkbox {
@@ -126,7 +142,6 @@
126
142
  }
127
143
  }
128
144
 
129
-
130
145
  .p-multiselect-item-group {
131
146
  margin: $submenuHeaderMargin;
132
147
  padding: $submenuHeaderPadding;
@@ -143,10 +158,6 @@
143
158
  }
144
159
  }
145
160
 
146
- p-multiselect.ng-dirty.ng-invalid > .p-multiselect {
147
- @include invalid-input();
148
- }
149
-
150
161
  .p-input-filled {
151
162
  .p-multiselect {
152
163
  background: $inputFilledBg;
@@ -161,13 +172,6 @@ p-multiselect.ng-dirty.ng-invalid > .p-multiselect {
161
172
  }
162
173
  }
163
174
 
164
- p-multiselect.p-multiselect-clearable {
165
- .p-multiselect-label-container {
166
- padding-right: nth($inputPadding, 2) + $primeIconFontSize;
167
- }
168
-
169
- .p-multiselect-clear-icon {
170
- color: $inputIconColor;
171
- right: $inputGroupAddOnMinWidth;
172
- }
175
+ p-multiselect.ng-dirty.ng-invalid > .p-multiselect {
176
+ @include invalid-input();
173
177
  }
@@ -54,7 +54,7 @@ p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box {
54
54
 
55
55
  &.p-highlight {
56
56
  background: $radiobuttonActiveBg;
57
-
57
+
58
58
  &:not(.p-disabled):hover {
59
59
  background: $radiobuttonActiveHoverBg;
60
60
  }
@@ -75,4 +75,4 @@ p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box {
75
75
  }
76
76
  }
77
77
  }
78
- }
78
+ }
@@ -1,43 +1,44 @@
1
+ @use 'sass:math';
2
+
1
3
  .p-rating {
2
4
  gap: $inlineSpacing;
3
-
4
- .p-rating-icon {
5
- color: $ratingStarIconOffColor;
6
- margin-left: $inlineSpacing;
7
- transition: $formElementTransition;
8
- font-size: $ratingIconFontSize;
9
-
10
- &.p-icon {
11
- width: $ratingIconFontSize;
12
- height: $ratingIconFontSize;
13
- }
14
5
 
15
- &.p-rating-cancel {
16
- color: $ratingCancelIconColor;
17
- }
6
+ .p-rating-item {
7
+ .p-rating-icon {
8
+ color: $ratingStarIconOffColor;
9
+ transition: $formElementTransition;
10
+ font-size: $ratingIconFontSize;
18
11
 
19
- &:focus {
20
- @include focused();
12
+ &.p-icon {
13
+ width: $ratingIconFontSize;
14
+ height: $ratingIconFontSize;
15
+ }
16
+
17
+ &.p-rating-cancel {
18
+ color: $ratingCancelIconColor;
19
+ }
21
20
  }
22
21
 
23
- &:first-child {
24
- margin-left: 0;
22
+ &.p-focus {
23
+ @include focused-input();
25
24
  }
26
25
 
27
- &.p-rating-icon-active {
28
- color: $ratingStarIconOnColor;
26
+ &.p-rating-item-active {
27
+ .p-rating-icon {
28
+ color: $ratingStarIconOnColor;
29
+ }
29
30
  }
30
31
  }
31
32
 
32
33
  &:not(.p-disabled):not(.p-readonly) {
33
- .p-rating-icon {
34
+ .p-rating-item {
34
35
  &:hover {
35
- color: $ratingStarIconHoverColor;
36
- }
36
+ .p-rating-icon {
37
+ color: $ratingStarIconHoverColor;
37
38
 
38
- &.p-rating-cancel {
39
- &:hover {
40
- color: $ratingCancelIconHoverColor;
39
+ &.p-rating-cancel {
40
+ color: $ratingCancelIconHoverColor;
41
+ }
41
42
  }
42
43
  }
43
44
  }
@@ -47,8 +48,12 @@
47
48
  @if ($highlightBg == $ratingStarIconOnColor) {
48
49
  .p-highlight {
49
50
  .p-rating {
50
- .p-rating-icon {
51
- color: $highlightTextColor;
51
+ .p-rating-item {
52
+ &.p-rating-item-active {
53
+ .p-rating-icon {
54
+ color: $highlightTextColor;
55
+ }
56
+ }
52
57
  }
53
58
  }
54
59
  }
@@ -78,17 +78,17 @@ p-treeselect.ng-invalid.ng-dirty > .p-treeselect {
78
78
  .p-treeselect-filter {
79
79
  padding-right: nth($inputPadding, 2) + $primeIconFontSize;
80
80
  }
81
-
81
+
82
82
  .p-treeselect-filter-icon {
83
83
  right: nth($inputPadding, 2);
84
84
  color: $inputIconColor;
85
85
  }
86
-
86
+
87
87
  &.p-treeselect-clearable-filter {
88
88
  .p-treeselect-filter {
89
89
  padding-right: 2 * (nth($inputPadding, 2) + $primeIconFontSize);
90
90
  }
91
-
91
+
92
92
  .p-treeselect-filter-clear-icon {
93
93
  right: (2 * nth($inputPadding, 2)) + $primeIconFontSize;
94
94
  }
@@ -99,7 +99,7 @@ p-treeselect.ng-invalid.ng-dirty > .p-treeselect {
99
99
  @include action-icon();
100
100
  }
101
101
  }
102
-
102
+
103
103
  .p-treeselect-items-wrapper {
104
104
  .p-tree {
105
105
  border: 0 none;
@@ -131,9 +131,9 @@ p-treeselect.p-treeselect-clearable {
131
131
  .p-treeselect-label-container {
132
132
  padding-right: nth($inputPadding, 2) + $primeIconFontSize;
133
133
  }
134
-
134
+
135
135
  .p-treeselect-clear-icon {
136
136
  color: $inputIconColor;
137
137
  right: $buttonIconOnlyWidth;
138
138
  }
139
- }
139
+ }
@@ -4,13 +4,13 @@
4
4
  border-radius: $borderRadius;
5
5
  padding: $breadcrumbPadding;
6
6
 
7
- ul {
7
+ .p-breadcrumb-list {
8
8
  li {
9
9
  .p-menuitem-link {
10
10
  transition: $listItemTransition;
11
11
  border-radius: $borderRadius;
12
12
 
13
- &:focus {
13
+ &:focus-visible {
14
14
  @include focused();
15
15
  }
16
16
 
@@ -23,7 +23,7 @@
23
23
  }
24
24
  }
25
25
 
26
- &.p-breadcrumb-chevron {
26
+ &.p-menuitem-separator {
27
27
  margin: 0 $inlineSpacing 0 $inlineSpacing;
28
28
  color: $breadcrumbSeparatorColor;
29
29
  }
@@ -7,8 +7,8 @@
7
7
  border-radius: $borderRadius;
8
8
  width: $menuWidth;
9
9
 
10
- .p-menuitem-link {
11
- @include menuitem-link();
10
+ .p-contextmenu-root-list {
11
+ outline: 0 none;
12
12
  }
13
13
 
14
14
  .p-submenu-list {
@@ -20,42 +20,20 @@
20
20
  }
21
21
 
22
22
  .p-menuitem {
23
- margin: $verticalMenuitemMargin;
24
-
25
- &:last-child {
26
- margin: 0;
27
- }
28
-
29
- &.p-menuitem-active {
30
- > .p-menuitem-link {
31
- background: $menuitemActiveBg;
32
-
33
- .p-menuitem-text {
34
- color: $menuitemTextActiveColor;
35
- }
36
-
37
- .p-menuitem-icon, .p-submenu-icon {
38
- color: $menuitemIconActiveColor;
39
- }
40
- }
41
- }
23
+ @include menuitem();
42
24
  }
43
25
 
44
- .p-menu-separator {
26
+ .p-menuitem-separator {
45
27
  border-top: $divider;
46
28
  margin: $menuSeparatorMargin;
47
29
  }
48
30
 
49
31
  .p-submenu-icon {
50
32
  font-size: $menuitemSubmenuIconFontSize;
51
- }
52
-
53
- .p-icon {
54
- width: $menuitemSubmenuIconFontSize;
55
- height: $menuitemSubmenuIconFontSize;
56
- }
57
33
 
58
- .p-menuitem-badge {
59
- @include menuitem-badge();
34
+ &.p-icon {
35
+ width: $menuitemSubmenuIconFontSize;
36
+ height: $menuitemSubmenuIconFontSize;
37
+ }
60
38
  }
61
39
  }
@@ -1,16 +1,25 @@
1
1
  .p-dock {
2
- .p-dock-list {
2
+ .p-dock-list-container {
3
3
  background: $dockBg;
4
4
  border: $dockBorder;
5
5
  padding: $dockPadding;
6
6
  border-radius: $dockBorderRadius;
7
+
8
+ .p-dock-list {
9
+ outline: 0 none;
10
+ }
7
11
  }
8
12
 
9
13
  .p-dock-item {
10
14
  padding: $dockItemPadding;
15
+ border-radius: $dockItemBorderRadius;
16
+
17
+ &.p-focus {
18
+ @include focused-listitem();
19
+ }
11
20
  }
12
21
 
13
- .p-dock-action {
22
+ .p-dock-link {
14
23
  width: $dockActionWidth;
15
24
  height: $dockActionHeight;
16
25
  }
@@ -5,35 +5,12 @@
5
5
  border: $horizontalMenuBorder;
6
6
  border-radius: $borderRadius;
7
7
 
8
- .p-megamenu-root-list {
9
- > .p-menuitem {
10
- > .p-menuitem-link {
11
- @include horizontal-rootmenuitem-link();
12
- }
13
-
14
- &.p-menuitem-active {
15
- > .p-menuitem-link,
16
- > .p-menuitem-link:not(.p-disabled):hover {
17
- background: $horizontalMenuRootMenuitemActiveBg;
18
-
19
- .p-menuitem-text {
20
- color: $horizontalMenuRootMenuitemTextActiveColor;
21
- }
22
-
23
- .p-menuitem-icon {
24
- color: $horizontalMenuRootMenuitemIconActiveColor;
25
- }
26
-
27
- .p-submenu-icon {
28
- color: $horizontalMenuRootMenuitemIconActiveColor;
29
- }
30
- }
31
- }
32
- }
8
+ .p-megamenu-root-list {
9
+ outline: 0 none;
33
10
  }
34
11
 
35
- .p-menuitem-link {
36
- @include menuitem-link();
12
+ .p-menuitem {
13
+ @include menuitem();
37
14
  }
38
15
 
39
16
  .p-megamenu-panel {
@@ -43,64 +20,36 @@
43
20
  box-shadow: $overlayMenuShadow;
44
21
  }
45
22
 
46
- .p-megamenu-submenu-header {
23
+ .p-submenu-header {
47
24
  margin: $submenuHeaderMargin;
48
25
  padding: $submenuHeaderPadding;
49
26
  color: $submenuHeaderTextColor;
50
27
  background: $submenuHeaderBg;
51
28
  font-weight: $submenuHeaderFontWeight;
52
- border-top-right-radius: $borderRadius;
53
- border-top-left-radius: $borderRadius;
29
+ border-top-right-radius: $borderRadius;
30
+ border-top-left-radius: $borderRadius;
54
31
  }
55
32
 
56
- .p-megamenu-submenu {
33
+ .p-submenu-list {
57
34
  padding: $verticalMenuPadding;
58
35
  width: $menuWidth;
59
36
 
60
- .p-menu-separator {
37
+ .p-menuitem-separator {
61
38
  border-top: $divider;
62
39
  margin: $menuSeparatorMargin;
63
40
  }
64
-
65
- .p-menuitem {
66
- margin: $verticalMenuitemMargin;
67
-
68
- &:last-child {
69
- margin: 0;
70
- }
71
- }
72
- }
73
-
74
- .p-menuitem {
75
- &.p-menuitem-active {
76
- > .p-menuitem-link {
77
- background: $menuitemActiveBg;
78
-
79
- .p-menuitem-text {
80
- color: $menuitemTextActiveColor;
81
- }
82
-
83
- .p-menuitem-icon, .p-submenu-icon {
84
- color: $menuitemIconActiveColor;
85
- }
86
- }
87
- }
88
41
  }
89
42
 
90
43
  &.p-megamenu-vertical {
91
44
  width: $menuWidth;
92
45
  padding: $verticalMenuPadding;
46
+ }
93
47
 
94
- .p-menuitem {
95
- margin: $verticalMenuitemMargin;
96
-
97
- &:last-child {
98
- margin: 0;
48
+ &.p-megamenu-horizontal {
49
+ .p-megamenu-root-list {
50
+ > .p-menuitem {
51
+ @include horizontal-rootmenuitem();
99
52
  }
100
53
  }
101
54
  }
102
-
103
- .p-menuitem-badge {
104
- @include menuitem-badge();
105
- }
106
55
  }
@@ -6,8 +6,8 @@
6
6
  border-radius: $borderRadius;
7
7
  width: $menuWidth;
8
8
 
9
- .p-menuitem-link {
10
- @include menuitem-link();
9
+ .p-menuitem {
10
+ @include menuitem();
11
11
  }
12
12
 
13
13
  &.p-menu-overlay {
@@ -22,23 +22,15 @@
22
22
  color: $submenuHeaderTextColor;
23
23
  background: $submenuHeaderBg;
24
24
  font-weight: $submenuHeaderFontWeight;
25
- border-top-right-radius: $submenuHeaderBorderRadius;
26
- border-top-left-radius: $submenuHeaderBorderRadius;
25
+ border-top-right-radius: $submenuHeaderBorderRadius;
26
+ border-top-left-radius: $submenuHeaderBorderRadius;
27
27
  }
28
28
 
29
- .p-menu-separator {
29
+ .p-menuitem-separator {
30
30
  border-top: $divider;
31
31
  margin: $menuSeparatorMargin;
32
32
  }
33
33
 
34
- .p-menuitem {
35
- margin: $verticalMenuitemMargin;
36
-
37
- &:last-child {
38
- margin: 0;
39
- }
40
- }
41
-
42
34
  .p-menuitem-badge {
43
35
  @include menuitem-badge();
44
36
  }
@@ -5,37 +5,18 @@
5
5
  border: $horizontalMenuBorder;
6
6
  border-radius: $borderRadius;
7
7
 
8
- .p-menuitem-link {
9
- @include menuitem-link();
10
- }
11
-
12
8
  .p-menubar-root-list {
13
- > .p-menuitem {
14
- > .p-menuitem-link {
15
- @include horizontal-rootmenuitem-link();
16
- }
9
+ outline: 0 none;
17
10
 
18
- &.p-menuitem-active {
19
- > .p-menuitem-link,
20
- > .p-menuitem-link:not(.p-disabled):hover {
21
- background: $horizontalMenuRootMenuitemActiveBg;
22
-
23
- .p-menuitem-text {
24
- color: $horizontalMenuRootMenuitemTextActiveColor;
25
- }
26
-
27
- .p-menuitem-icon {
28
- color: $horizontalMenuRootMenuitemIconActiveColor;
29
- }
30
-
31
- .p-submenu-icon {
32
- color: $horizontalMenuRootMenuitemIconActiveColor;
33
- }
34
- }
35
- }
11
+ > .p-menuitem {
12
+ @include horizontal-rootmenuitem();
36
13
  }
37
14
  }
38
15
 
16
+ .p-menuitem {
17
+ @include menuitem();
18
+ }
19
+
39
20
  .p-submenu-list {
40
21
  padding: $verticalMenuPadding;
41
22
  background: $overlayMenuBg;
@@ -43,7 +24,7 @@
43
24
  box-shadow: $overlayMenuShadow;
44
25
  width: $menuWidth;
45
26
 
46
- .p-menu-separator {
27
+ .p-menuitem-separator {
47
28
  border-top: $divider;
48
29
  margin: $menuSeparatorMargin;
49
30
  }
@@ -51,39 +32,6 @@
51
32
  .p-submenu-icon {
52
33
  font-size: $menuitemSubmenuIconFontSize;
53
34
  }
54
-
55
- .p-icon {
56
- width: $menuitemSubmenuIconFontSize;
57
- height: $menuitemSubmenuIconFontSize;
58
- }
59
-
60
- .p-menuitem {
61
- margin: $verticalMenuitemMargin;
62
-
63
- &:last-child {
64
- margin: 0;
65
- }
66
- }
67
- }
68
-
69
- .p-menuitem {
70
- &.p-menuitem-active {
71
- > .p-menuitem-link {
72
- background: $menuitemActiveBg;
73
-
74
- .p-menuitem-text {
75
- color: $menuitemTextActiveColor;
76
- }
77
-
78
- .p-menuitem-icon, .p-submenu-icon {
79
- color: $menuitemIconActiveColor;
80
- }
81
- }
82
- }
83
- }
84
-
85
- .p-menuitem-badge {
86
- @include menuitem-badge();
87
35
  }
88
36
  }
89
37
 
@@ -98,12 +46,12 @@
98
46
  color: $horizontalMenuRootMenuitemIconColor;
99
47
  border-radius: $actionIconBorderRadius;
100
48
  transition: $actionIconTransition;
101
-
49
+
102
50
  &:hover {
103
51
  color: $horizontalMenuRootMenuitemIconHoverColor;
104
52
  background: $horizontalMenuRootMenuitemHoverBg;
105
53
  }
106
-
54
+
107
55
  &:focus {
108
56
  @include focused();
109
57
  }
@@ -117,33 +65,35 @@
117
65
  border: $overlayMenuBorder;
118
66
  box-shadow: $overlayMenuShadow;
119
67
  width: 100%;
120
-
121
- .p-menu-separator {
68
+
69
+ .p-menuitem-separator {
122
70
  border-top: $divider;
123
71
  margin: $menuSeparatorMargin;
124
72
  }
125
-
73
+
126
74
  .p-submenu-icon {
127
75
  font-size: $menuitemSubmenuIconFontSize;
128
76
  }
129
77
 
130
- > .p-menuitem {
78
+ .p-menuitem {
131
79
  width: 100%;
132
80
  position: static;
133
81
 
134
- > .p-menuitem-link {
135
- @include menuitem-link();
136
-
137
- > .p-submenu-icon {
138
- margin-left: auto;
139
- transition: transform $transitionDuration;
82
+ .p-menuitem-content {
83
+ .p-menuitem-link {
84
+ .p-submenu-icon {
85
+ margin-left: auto;
86
+ transition: transform $transitionDuration;
87
+ }
140
88
  }
141
89
  }
142
90
 
143
91
  &.p-menuitem-active {
144
- > .p-menuitem-link {
145
- > .p-submenu-icon {
146
- transform: rotate(-180deg);
92
+ > .p-menuitem-content {
93
+ > .p-menuitem-link {
94
+ > .p-submenu-icon {
95
+ transform: rotate(-180deg);
96
+ }
147
97
  }
148
98
  }
149
99
  }
@@ -161,14 +111,16 @@
161
111
  }
162
112
 
163
113
  .p-menuitem-active {
164
- > .p-menuitem-link {
165
- > .p-submenu-icon {
166
- transform: rotate(-90deg);
114
+ > .p-menuitem-content {
115
+ > .p-menuitem-link {
116
+ > .p-submenu-icon {
117
+ transform: rotate(-90deg);
118
+ }
167
119
  }
168
120
  }
169
121
  }
170
122
  }
171
-
123
+
172
124
  .p-menuitem {
173
125
  width: 100%;
174
126
  position: static;
@@ -185,4 +137,4 @@
185
137
  z-index: 1;
186
138
  }
187
139
  }
188
- }
140
+ }