@mediusinc/mng-commons 0.2.4 → 0.2.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 (250) hide show
  1. package/assets/i18n/en.json +5 -1
  2. package/assets/i18n/sl.json +6 -2
  3. package/esm2020/lib/api/models/builders/query-param.builder.mjs +1 -1
  4. package/esm2020/lib/api/models/filter-match-type.model.mjs +1 -1
  5. package/esm2020/lib/api/models/filter-param.model.mjs +16 -27
  6. package/esm2020/lib/api/models/mappers.mjs +7 -7
  7. package/esm2020/lib/api/models/query-mode.model.mjs +1 -1
  8. package/esm2020/lib/api/models/query-param.model.mjs +38 -37
  9. package/esm2020/lib/api/models/query-result.model.mjs +14 -13
  10. package/esm2020/lib/api/services/crud-api.abstract.service.mjs +28 -21
  11. package/esm2020/lib/api/utils/medius-rest.util.mjs +11 -7
  12. package/esm2020/lib/api/utils/object-serializer.util.mjs +23 -21
  13. package/esm2020/lib/components/action/action.component.mjs +10 -7
  14. package/esm2020/lib/components/action/dialog/action-dialog.component.mjs +16 -13
  15. package/esm2020/lib/components/action/models/action-confirmation-service.model.mjs +1 -1
  16. package/esm2020/lib/components/action/models/action-execution.model.mjs +1 -1
  17. package/esm2020/lib/components/action/route/action-route.component.mjs +8 -6
  18. package/esm2020/lib/components/form/autocomplete/autocomplete.component.mjs +16 -14
  19. package/esm2020/lib/components/form/dropdown/dropdown.component.mjs +16 -15
  20. package/esm2020/lib/components/form/editor/form-editor.component.mjs +21 -24
  21. package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +3 -3
  22. package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +3 -3
  23. package/esm2020/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +4 -4
  24. package/esm2020/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +8 -4
  25. package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +13 -14
  26. package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +12 -11
  27. package/esm2020/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +4 -4
  28. package/esm2020/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +1 -3
  29. package/esm2020/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.mjs +1 -3
  30. package/esm2020/lib/components/form/models/form-editor.event.mjs +1 -1
  31. package/esm2020/lib/components/layout/breadcrumb.component.mjs +3 -3
  32. package/esm2020/lib/components/layout/footer.component.mjs +3 -3
  33. package/esm2020/lib/components/layout/main-layout.component.mjs +4 -4
  34. package/esm2020/lib/components/layout/menu-item.component.mjs +36 -34
  35. package/esm2020/lib/components/layout/menu.component.mjs +3 -3
  36. package/esm2020/lib/components/layout/services/main-layout.component.service.mjs +4 -1
  37. package/esm2020/lib/components/layout/topbar.component.mjs +5 -4
  38. package/esm2020/lib/components/tableview/index.mjs +2 -1
  39. package/esm2020/lib/components/tableview/models/table.event.mjs +1 -1
  40. package/esm2020/lib/components/tableview/route/tableview-route.abstract.component.mjs +4 -4
  41. package/esm2020/lib/components/tableview/route/tableview-route.component.mjs +33 -0
  42. package/esm2020/lib/components/tableview/services/tableview.component.service.mjs +9 -5
  43. package/esm2020/lib/components/tableview/table/column-filter/column-filter.component.mjs +23 -11
  44. package/esm2020/lib/components/tableview/table/column-value/column-value.component.mjs +1 -1
  45. package/esm2020/lib/components/tableview/table/table.component.mjs +27 -26
  46. package/esm2020/lib/components/tableview/tableview.component.mjs +11 -3
  47. package/esm2020/lib/config/formly.config.mjs +30 -22
  48. package/esm2020/lib/config/models/mng-config.model.mjs +1 -1
  49. package/esm2020/lib/data-providers/base.data-provider.mjs +1 -1
  50. package/esm2020/lib/data-providers/editor.data-provider.mjs +2 -2
  51. package/esm2020/lib/data-providers/lookup.data-provider.mjs +1 -1
  52. package/esm2020/lib/data-providers/tableview.data-provider.mjs +2 -2
  53. package/esm2020/lib/descriptors/action.descriptor.mjs +3 -5
  54. package/esm2020/lib/descriptors/editor.descriptor.mjs +21 -9
  55. package/esm2020/lib/descriptors/field.validator.mjs +1 -1
  56. package/esm2020/lib/descriptors/lookup.descriptor.mjs +1 -1
  57. package/esm2020/lib/descriptors/model.descriptor.mjs +3 -3
  58. package/esm2020/lib/descriptors/table.descriptor.mjs +28 -2
  59. package/esm2020/lib/descriptors/tableview.descriptor.mjs +2 -2
  60. package/esm2020/lib/directives/component.directive.mjs +2 -2
  61. package/esm2020/lib/directives/template.directive.mjs +2 -3
  62. package/esm2020/lib/mng-commons.module.mjs +33 -41
  63. package/esm2020/lib/models/index.mjs +1 -2
  64. package/esm2020/lib/models/user.model.mjs +1 -1
  65. package/esm2020/lib/pipes/boolean.pipe.mjs +1 -1
  66. package/esm2020/lib/pipes/property-path.pipe.mjs +1 -1
  67. package/esm2020/lib/router/index.mjs +2 -0
  68. package/esm2020/lib/router/models/index.mjs +2 -0
  69. package/esm2020/lib/router/models/router.model.mjs +2 -0
  70. package/esm2020/lib/router/route-builder.mjs +293 -0
  71. package/esm2020/lib/services/action.service.mjs +19 -15
  72. package/esm2020/lib/services/commons.service.mjs +28 -36
  73. package/esm2020/lib/services/configuration.service.mjs +3 -4
  74. package/esm2020/lib/services/navigation.service.mjs +2 -2
  75. package/esm2020/lib/services/providers/config-service.provider.mjs +2 -2
  76. package/esm2020/lib/services/providers/formly-config.provider.mjs +1 -1
  77. package/esm2020/lib/services/tokens/browser-storage.token.mjs +1 -1
  78. package/esm2020/lib/types/type.decorator.mjs +1 -1
  79. package/esm2020/lib/types/type.model.mjs +1 -1
  80. package/esm2020/lib/utils/editor-formly.util.mjs +7 -21
  81. package/esm2020/lib/utils/i18n.util.mjs +2 -2
  82. package/esm2020/lib/utils/model.util.mjs +1 -1
  83. package/esm2020/lib/utils/route.util.mjs +24 -0
  84. package/esm2020/lib/utils/toast.util.mjs +3 -2
  85. package/esm2020/lib/utils/type.util.mjs +2 -1
  86. package/esm2020/public-api.mjs +2 -1
  87. package/fesm2015/mediusinc-mng-commons.mjs +3409 -2999
  88. package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
  89. package/fesm2020/mediusinc-mng-commons.mjs +3395 -2984
  90. package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
  91. package/lib/api/models/filter-param.model.d.ts +1 -1
  92. package/lib/api/services/crud-api.abstract.service.d.ts +6 -6
  93. package/lib/api/utils/medius-rest.util.d.ts +1 -1
  94. package/lib/api/utils/object-serializer.util.d.ts +5 -5
  95. package/lib/components/action/action.component.d.ts +3 -3
  96. package/lib/components/action/dialog/action-dialog.component.d.ts +9 -8
  97. package/lib/components/action/models/action-execution.model.d.ts +1 -1
  98. package/lib/components/action/route/action-route.component.d.ts +2 -2
  99. package/lib/components/form/autocomplete/autocomplete.component.d.ts +4 -3
  100. package/lib/components/form/dropdown/dropdown.component.d.ts +4 -3
  101. package/lib/components/form/editor/form-editor.component.d.ts +7 -6
  102. package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +2 -1
  103. package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +2 -1
  104. package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +1 -1
  105. package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +1 -3
  106. package/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.d.ts +1 -3
  107. package/lib/components/layout/main-layout.component.d.ts +3 -3
  108. package/lib/components/layout/menu-item.component.d.ts +7 -7
  109. package/lib/components/layout/services/main-layout.component.service.d.ts +1 -1
  110. package/lib/components/layout/topbar.component.d.ts +4 -4
  111. package/lib/components/tableview/index.d.ts +1 -0
  112. package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +4 -3
  113. package/lib/components/tableview/route/tableview-route.component.d.ts +15 -0
  114. package/lib/components/tableview/services/tableview.component.service.d.ts +3 -2
  115. package/lib/components/tableview/table/column-filter/column-filter.component.d.ts +5 -0
  116. package/lib/components/tableview/table/table.component.d.ts +21 -19
  117. package/lib/components/tableview/tableview.component.d.ts +6 -4
  118. package/lib/config/formly.config.d.ts +2 -1
  119. package/lib/descriptors/action.descriptor.d.ts +2 -2
  120. package/lib/descriptors/editor.descriptor.d.ts +9 -7
  121. package/lib/descriptors/lookup.descriptor.d.ts +1 -1
  122. package/lib/descriptors/table.descriptor.d.ts +24 -4
  123. package/lib/descriptors/tableview.descriptor.d.ts +1 -1
  124. package/lib/mng-commons.module.d.ts +46 -44
  125. package/lib/models/index.d.ts +0 -1
  126. package/lib/router/index.d.ts +1 -0
  127. package/lib/router/models/index.d.ts +1 -0
  128. package/lib/router/models/router.model.d.ts +22 -0
  129. package/lib/router/route-builder.d.ts +66 -0
  130. package/lib/services/action.service.d.ts +3 -3
  131. package/lib/services/commons.service.d.ts +6 -6
  132. package/lib/services/navigation.service.d.ts +1 -1
  133. package/lib/services/providers/formly-config.provider.d.ts +1 -1
  134. package/lib/utils/editor-formly.util.d.ts +1 -1
  135. package/lib/utils/model.util.d.ts +1 -1
  136. package/lib/utils/route.util.d.ts +4 -0
  137. package/lib/utils/toast.util.d.ts +1 -1
  138. package/package.json +1 -1
  139. package/public-api.d.ts +1 -0
  140. package/scss/common/layout/_breadcrumb.scss +6 -6
  141. package/scss/common/layout/_config.scss +7 -8
  142. package/scss/common/layout/_exception.scss +13 -12
  143. package/scss/common/layout/_footer.scss +3 -3
  144. package/scss/common/layout/_help.scss +8 -9
  145. package/scss/common/layout/_inlinemenu.scss +3 -3
  146. package/scss/common/layout/_invoice.scss +16 -16
  147. package/scss/common/layout/_landing.scss +57 -60
  148. package/scss/common/layout/_loader.scss +0 -1
  149. package/scss/common/layout/_login.scss +3 -4
  150. package/scss/common/layout/_main.scss +3 -3
  151. package/scss/common/layout/_mixins.scss +28 -20
  152. package/scss/common/layout/_rightmenu.scss +5 -5
  153. package/scss/common/layout/_topbar.scss +7 -5
  154. package/scss/common/layout/_typography.scss +11 -6
  155. package/scss/common/layout/_utils.scss +1 -1
  156. package/scss/common/layout/_widgets.scss +20 -19
  157. package/scss/common/layout/menu/_menu_common.scss +6 -6
  158. package/scss/common/layout/menu/_menu_overlay.scss +1 -1
  159. package/scss/common/layout/menu/_menu_sidebar.scss +6 -5
  160. package/scss/common/layout/menu/_menu_slim.scss +2 -3
  161. package/scss/common/layout/menu/_menu_static.scss +1 -1
  162. package/scss/common/layout/menu/_menu_theme.scss +2 -3
  163. package/scss/common/theme/designer/_colors.scss +11 -12
  164. package/scss/common/theme/designer/_common.scss +4 -3
  165. package/scss/common/theme/designer/_mixins.scss +56 -56
  166. package/scss/common/theme/designer/components/button/_button.scss +32 -20
  167. package/scss/common/theme/designer/components/button/_speeddial.scss +1 -1
  168. package/scss/common/theme/designer/components/button/_splitbutton.scss +2 -1
  169. package/scss/common/theme/designer/components/data/_carousel.scss +1 -1
  170. package/scss/common/theme/designer/components/data/_datatable.scss +5 -5
  171. package/scss/common/theme/designer/components/data/_filter.scss +2 -3
  172. package/scss/common/theme/designer/components/data/_fullcalendar.scss +10 -10
  173. package/scss/common/theme/designer/components/data/_orderlist.scss +2 -2
  174. package/scss/common/theme/designer/components/data/_paginator.scss +1 -1
  175. package/scss/common/theme/designer/components/data/_picklist.scss +1 -1
  176. package/scss/common/theme/designer/components/data/_timeline.scss +3 -6
  177. package/scss/common/theme/designer/components/data/_tree.scss +2 -2
  178. package/scss/common/theme/designer/components/data/_treetable.scss +2 -3
  179. package/scss/common/theme/designer/components/input/_autocomplete.scss +8 -8
  180. package/scss/common/theme/designer/components/input/_calendar.scss +6 -6
  181. package/scss/common/theme/designer/components/input/_cascadeselect.scss +1 -1
  182. package/scss/common/theme/designer/components/input/_checkbox.scss +4 -4
  183. package/scss/common/theme/designer/components/input/_chips.scss +4 -4
  184. package/scss/common/theme/designer/components/input/_colorpicker.scss +2 -2
  185. package/scss/common/theme/designer/components/input/_dropdown.scss +2 -2
  186. package/scss/common/theme/designer/components/input/_editor.scss +7 -7
  187. package/scss/common/theme/designer/components/input/_inputgroup.scss +1 -1
  188. package/scss/common/theme/designer/components/input/_inputmask.scss +1 -1
  189. package/scss/common/theme/designer/components/input/_inputnumber.scss +1 -1
  190. package/scss/common/theme/designer/components/input/_inputswitch.scss +2 -2
  191. package/scss/common/theme/designer/components/input/_inputtext.scss +3 -3
  192. package/scss/common/theme/designer/components/input/_listbox.scss +1 -1
  193. package/scss/common/theme/designer/components/input/_multiselect.scss +5 -6
  194. package/scss/common/theme/designer/components/input/_radiobutton.scss +2 -2
  195. package/scss/common/theme/designer/components/input/_rating.scss +1 -1
  196. package/scss/common/theme/designer/components/input/_selectbutton.scss +1 -1
  197. package/scss/common/theme/designer/components/input/_togglebutton.scss +1 -1
  198. package/scss/common/theme/designer/components/input/_treeselect.scss +2 -2
  199. package/scss/common/theme/designer/components/menu/_contextmenu.scss +3 -2
  200. package/scss/common/theme/designer/components/menu/_dock.scss +4 -4
  201. package/scss/common/theme/designer/components/menu/_megamenu.scss +10 -9
  202. package/scss/common/theme/designer/components/menu/_menu.scss +2 -2
  203. package/scss/common/theme/designer/components/menu/_menubar.scss +12 -11
  204. package/scss/common/theme/designer/components/menu/_panelmenu.scss +1 -2
  205. package/scss/common/theme/designer/components/menu/_slidemenu.scss +3 -2
  206. package/scss/common/theme/designer/components/menu/_steps.scss +1 -2
  207. package/scss/common/theme/designer/components/menu/_tieredmenu.scss +3 -2
  208. package/scss/common/theme/designer/components/messages/_message.scss +1 -1
  209. package/scss/common/theme/designer/components/messages/_toast.scss +1 -2
  210. package/scss/common/theme/designer/components/misc/_avatar.scss +1 -1
  211. package/scss/common/theme/designer/components/misc/_badge.scss +1 -1
  212. package/scss/common/theme/designer/components/misc/_blockui.scss +1 -1
  213. package/scss/common/theme/designer/components/misc/_chip.scss +2 -2
  214. package/scss/common/theme/designer/components/misc/_inplace.scss +0 -1
  215. package/scss/common/theme/designer/components/misc/_scrolltop.scss +1 -1
  216. package/scss/common/theme/designer/components/misc/_skeleton.scss +1 -1
  217. package/scss/common/theme/designer/components/misc/_tag.scss +1 -1
  218. package/scss/common/theme/designer/components/misc/_terminal.scss +8 -8
  219. package/scss/common/theme/designer/components/multimedia/_galleria.scss +1 -1
  220. package/scss/common/theme/designer/components/overlay/_confirmpopup.scss +2 -4
  221. package/scss/common/theme/designer/components/overlay/_dialog.scss +3 -3
  222. package/scss/common/theme/designer/components/overlay/_overlaypanel.scss +2 -4
  223. package/scss/common/theme/designer/components/panel/_accordion.scss +2 -2
  224. package/scss/common/theme/designer/components/panel/_divider.scss +1 -1
  225. package/scss/common/theme/designer/components/panel/_scrollpanel.scss +1 -1
  226. package/scss/common/theme/designer/components/panel/_splitter.scss +1 -1
  227. package/scss/common/theme/extensions/_button.scss +18 -6
  228. package/scss/common/theme/extensions/_orderlist.scss +0 -1
  229. package/scss/common/theme/extensions/_picklist.scss +0 -1
  230. package/scss/common/theme/extensions/_tree.scss +0 -1
  231. package/scss/common/variables/layout/_common.scss +9 -9
  232. package/scss/common/variables/layout/_layout_dark.scss +12 -12
  233. package/scss/common/variables/layout/_layout_light.scss +13 -13
  234. package/scss/common/variables/theme/_theme_dark.scss +76 -76
  235. package/scss/common/variables/theme/_theme_light.scss +80 -80
  236. package/scss/layout/default/_mng-variables-layout-dark.scss +1 -1
  237. package/scss/mng-commons-dark.scss +2 -2
  238. package/scss/mng-commons-light.scss +2 -2
  239. package/scss/mng-overrides/_layout_dialog.scss +4 -3
  240. package/scss/mng-overrides/_layout_forms.scss +1 -1
  241. package/scss/mng-overrides/_layout_radio.scss +1 -1
  242. package/scss/mng-overrides/_theme_datepicker.scss +7 -0
  243. package/scss/mng-overrides/_theme_dialog.scss +0 -1
  244. package/scss/mng-overrides/_theme_dropdown.scss +0 -1
  245. package/scss/mng-overrides/_theme_styles.scss +1 -0
  246. package/scss/mng-overrides/_theme_tableview.scss +6 -6
  247. package/scss/theme/default/_mng-variables-theme-dark.scss +2 -1
  248. package/scss/theme/default/_mng-variables-theme-light.scss +2 -1
  249. package/esm2020/lib/models/router.model.mjs +0 -2
  250. package/lib/models/router.model.d.ts +0 -14
@@ -33,7 +33,7 @@
33
33
  @include focused-input();
34
34
  }
35
35
 
36
- &.p-highlight:hover {
36
+ &.p-highlight:hover {
37
37
  border-color: $checkboxActiveHoverBorderColor;
38
38
  background: $checkboxActiveHoverBg;
39
39
  color: $checkboxIconActiveHoverColor;
@@ -61,8 +61,8 @@ p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box {
61
61
  &:hover {
62
62
  background-color: $inputFilledHoverBg;
63
63
  }
64
-
65
- &.p-highlight:hover {
64
+
65
+ &.p-highlight:hover {
66
66
  background: $checkboxActiveHoverBg;
67
67
  }
68
68
  }
@@ -82,4 +82,4 @@ p-checkbox.ng-dirty.ng-invalid > .p-checkbox > .p-checkbox-box {
82
82
  }
83
83
  }
84
84
  }
85
- }
85
+ }
@@ -1,6 +1,6 @@
1
1
  .p-chips {
2
2
  .p-chips-multiple-container {
3
- padding: nth($inputPadding, 1)/2 nth($inputPadding, 2);
3
+ padding: nth($inputPadding, 1) / 2 nth($inputPadding, 2);
4
4
 
5
5
  &:not(.p-disabled):hover {
6
6
  border-color: $inputHoverBorderColor;
@@ -11,7 +11,7 @@
11
11
  }
12
12
 
13
13
  .p-chips-token {
14
- padding: nth($inputPadding, 1)/2 nth($inputPadding, 2);
14
+ padding: nth($inputPadding, 1) / 2 nth($inputPadding, 2);
15
15
  margin-right: $inlineSpacing;
16
16
  background: $highlightBg;
17
17
  color: $highlightTextColor;
@@ -23,8 +23,8 @@
23
23
  }
24
24
 
25
25
  .p-chips-input-token {
26
- padding: nth($inputPadding, 1)/2 0;
27
-
26
+ padding: nth($inputPadding, 1) / 2 0;
27
+
28
28
  input {
29
29
  font-family: $fontFamily;
30
30
  font-size: $fontSize;
@@ -1,5 +1,5 @@
1
1
  .p-colorpicker-preview,
2
- .p-fluid .p-colorpicker-preview.p-inputtext {
2
+ .p-fluid .p-colorpicker-preview.p-inputtext {
3
3
  width: $colorPickerPreviewWidth;
4
4
  height: $colorPickerPreviewHeight;
5
5
  }
@@ -16,4 +16,4 @@
16
16
 
17
17
  .p-colorpicker-overlay-panel {
18
18
  box-shadow: $inputOverlayShadow;
19
- }
19
+ }
@@ -73,7 +73,7 @@
73
73
  }
74
74
 
75
75
  .p-dropdown-items {
76
- &:not(.p-dropdown-virtualscroll) {
76
+ &:not(.p-dropdown-virtualscroll) {
77
77
  padding: $inputListPadding;
78
78
  }
79
79
 
@@ -128,7 +128,7 @@ p-dropdown.ng-dirty.ng-invalid > .p-dropdown {
128
128
  &:not(.p-disabled):hover {
129
129
  background-color: $inputFilledHoverBg;
130
130
  }
131
-
131
+
132
132
  &:not(.p-disabled).p-focus {
133
133
  background-color: $inputFilledFocusBg;
134
134
  }
@@ -10,11 +10,11 @@
10
10
  .ql-stroke {
11
11
  stroke: $editorToolbarIconColor;
12
12
  }
13
-
13
+
14
14
  .ql-fill {
15
15
  fill: $editorToolbarIconColor;
16
16
  }
17
-
17
+
18
18
  .ql-picker {
19
19
  .ql-picker-label {
20
20
  border: 0 none;
@@ -26,7 +26,7 @@
26
26
  .ql-stroke {
27
27
  stroke: $editorToolbarIconHoverColor;
28
28
  }
29
-
29
+
30
30
  .ql-fill {
31
31
  fill: $editorToolbarIconHoverColor;
32
32
  }
@@ -40,7 +40,7 @@
40
40
  .ql-stroke {
41
41
  stroke: $editorToolbarIconHoverColor;
42
42
  }
43
-
43
+
44
44
  .ql-fill {
45
45
  fill: $editorToolbarIconHoverColor;
46
46
  }
@@ -48,14 +48,14 @@
48
48
 
49
49
  .ql-picker-options {
50
50
  background: $inputOverlayBg;
51
- border:$inputOverlayBorder;
52
- box-shadow:$inputOverlayShadow;
51
+ border: $inputOverlayBorder;
52
+ box-shadow: $inputOverlayShadow;
53
53
  border-radius: $borderRadius;
54
54
  padding: $inputListPadding;
55
55
 
56
56
  .ql-picker-item {
57
57
  color: $inputListItemTextColor;
58
-
58
+
59
59
  &:hover {
60
60
  color: $inputListItemTextHoverColor;
61
61
  background: $inputListItemHoverBg;
@@ -46,7 +46,7 @@
46
46
 
47
47
  .p-inputgroup-addon:last-child,
48
48
  .p-inputgroup button:last-child,
49
- .p-inputgroup input:last-child {
49
+ .p-inputgroup input:last-child {
50
50
  border-top-right-radius: $borderRadius;
51
51
  border-bottom-right-radius: $borderRadius;
52
52
  }
@@ -1,3 +1,3 @@
1
1
  p-inputmask.ng-dirty.ng-invalid > .p-inputtext {
2
2
  @include invalid-input();
3
- }
3
+ }
@@ -1,3 +1,3 @@
1
1
  p-inputnumber.ng-dirty.ng-invalid > .p-inputnumber > .p-inputtext {
2
2
  @include invalid-input();
3
- }
3
+ }
@@ -42,7 +42,7 @@
42
42
 
43
43
  &:before {
44
44
  background: $inputSwitchHandleOnBg;
45
- }
45
+ }
46
46
  }
47
47
 
48
48
  &:not(.p-disabled):hover {
@@ -55,4 +55,4 @@
55
55
 
56
56
  p-inputswitch.ng-dirty.ng-invalid > .p-inputswitch {
57
57
  @include invalid-input();
58
- }
58
+ }
@@ -55,7 +55,7 @@
55
55
  left: nth($inputPadding, 2) * 2 + $primeIconFontSize;
56
56
  }
57
57
 
58
- .p-input-icon-right > i:last-of-type {
58
+ .p-input-icon-right > i:last-of-type {
59
59
  right: nth($inputPadding, 2);
60
60
  color: $inputIconColor;
61
61
  }
@@ -65,8 +65,8 @@
65
65
  }
66
66
 
67
67
  @include placeholder {
68
- color: $inputPlaceholderTextColor
69
- };
68
+ color: $inputPlaceholderTextColor;
69
+ }
70
70
 
71
71
  .p-input-filled {
72
72
  .p-inputtext {
@@ -79,4 +79,4 @@
79
79
 
80
80
  p-listbox.ng-dirty.ng-invalid > .p-listbox {
81
81
  @include invalid-input();
82
- }
82
+ }
@@ -23,7 +23,7 @@
23
23
 
24
24
  &.p-multiselect-chip {
25
25
  .p-multiselect-token {
26
- padding: nth($inputPadding, 1)/2 nth($inputPadding, 2);
26
+ padding: nth($inputPadding, 1) / 2 nth($inputPadding, 2);
27
27
  margin-right: $inlineSpacing;
28
28
  background: $highlightBg;
29
29
  color: $highlightTextColor;
@@ -48,7 +48,7 @@
48
48
  .p-multiselect {
49
49
  &.p-multiselect-chip {
50
50
  .p-multiselect-label {
51
- padding: nth($inputPadding, 1)/2 nth($inputPadding, 2);
51
+ padding: nth($inputPadding, 1) / 2 nth($inputPadding, 2);
52
52
  }
53
53
  }
54
54
  }
@@ -92,7 +92,7 @@
92
92
  }
93
93
 
94
94
  .p-multiselect-items {
95
- &:not(.p-multiselect-virtualscroll) {
95
+ &:not(.p-multiselect-virtualscroll) {
96
96
  padding: $inputListPadding;
97
97
  }
98
98
 
@@ -128,7 +128,6 @@
128
128
  }
129
129
  }
130
130
 
131
-
132
131
  .p-multiselect-item-group {
133
132
  margin: $submenuHeaderMargin;
134
133
  padding: $submenuHeaderPadding;
@@ -156,9 +155,9 @@ p-multiselect.ng-dirty.ng-invalid > .p-multiselect {
156
155
  &:not(.p-disabled):hover {
157
156
  background-color: $inputFilledHoverBg;
158
157
  }
159
-
158
+
160
159
  &:not(.p-disabled).p-focus {
161
160
  background-color: $inputFilledFocusBg;
162
161
  }
163
162
  }
164
- }
163
+ }
@@ -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
+ }
@@ -2,7 +2,7 @@
2
2
  .p-rating-icon {
3
3
  color: $ratingStarIconOffColor;
4
4
  margin-left: $inlineSpacing;
5
- transition: $formElementTransition;
5
+ transition: $formElementTransition;
6
6
  font-size: $ratingIconFontSize;
7
7
 
8
8
  &.p-rating-cancel {
@@ -47,4 +47,4 @@
47
47
 
48
48
  p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button {
49
49
  @include invalid-input();
50
- }
50
+ }
@@ -45,4 +45,4 @@
45
45
 
46
46
  p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button {
47
47
  @include invalid-input();
48
- }
48
+ }
@@ -23,7 +23,7 @@
23
23
 
24
24
  &.p-treeselect-chip {
25
25
  .p-treeselect-token {
26
- padding: nth($inputPadding, 1)/2 nth($inputPadding, 2);
26
+ padding: nth($inputPadding, 1) / 2 nth($inputPadding, 2);
27
27
  margin-right: $inlineSpacing;
28
28
  background: $chipBg;
29
29
  color: $chipTextColor;
@@ -48,7 +48,7 @@
48
48
  .p-treeselect {
49
49
  &.p-treeselect-chip {
50
50
  .p-treeselect-label {
51
- padding: nth($inputPadding, 1)/2 nth($inputPadding, 2);
51
+ padding: nth($inputPadding, 1) / 2 nth($inputPadding, 2);
52
52
  }
53
53
  }
54
54
  }
@@ -19,7 +19,7 @@
19
19
 
20
20
  .p-menuitem {
21
21
  margin: $verticalMenuitemMargin;
22
-
22
+
23
23
  &:last-child {
24
24
  margin: 0;
25
25
  }
@@ -32,7 +32,8 @@
32
32
  color: $menuitemTextActiveColor;
33
33
  }
34
34
 
35
- .p-menuitem-icon, .p-submenu-icon {
35
+ .p-menuitem-icon,
36
+ .p-submenu-icon {
36
37
  color: $menuitemIconActiveColor;
37
38
  }
38
39
  }
@@ -5,7 +5,7 @@
5
5
  padding: $dockPadding;
6
6
  border-radius: $dockBorderRadius;
7
7
  }
8
-
8
+
9
9
  .p-dock-item {
10
10
  padding: $dockItemPadding;
11
11
  }
@@ -14,7 +14,7 @@
14
14
  width: $dockActionWidth;
15
15
  height: $dockActionHeight;
16
16
  }
17
-
17
+
18
18
  &.p-dock-top,
19
19
  &.p-dock-bottom {
20
20
  .p-dock-item-second-prev,
@@ -38,7 +38,7 @@
38
38
  .p-dock-item-second-next {
39
39
  margin: $dockSecondItemsMargin 0;
40
40
  }
41
-
41
+
42
42
  .p-dock-item-prev,
43
43
  .p-dock-item-next {
44
44
  margin: $dockFirstItemsMargin 0;
@@ -48,4 +48,4 @@
48
48
  margin: $dockCurrentItemMargin 0;
49
49
  }
50
50
  }
51
- }
51
+ }
@@ -5,7 +5,7 @@
5
5
  border: $horizontalMenuBorder;
6
6
  border-radius: $borderRadius;
7
7
 
8
- .p-megamenu-root-list {
8
+ .p-megamenu-root-list {
9
9
  > .p-menuitem {
10
10
  > .p-menuitem-link {
11
11
  @include horizontal-rootmenuitem-link();
@@ -15,15 +15,15 @@
15
15
  > .p-menuitem-link,
16
16
  > .p-menuitem-link:not(.p-disabled):hover {
17
17
  background: $horizontalMenuRootMenuitemActiveBg;
18
-
18
+
19
19
  .p-menuitem-text {
20
20
  color: $horizontalMenuRootMenuitemTextActiveColor;
21
21
  }
22
-
22
+
23
23
  .p-menuitem-icon {
24
24
  color: $horizontalMenuRootMenuitemIconActiveColor;
25
25
  }
26
-
26
+
27
27
  .p-submenu-icon {
28
28
  color: $horizontalMenuRootMenuitemIconActiveColor;
29
29
  }
@@ -49,8 +49,8 @@
49
49
  color: $submenuHeaderTextColor;
50
50
  background: $submenuHeaderBg;
51
51
  font-weight: $submenuHeaderFontWeight;
52
- border-top-right-radius: $borderRadius;
53
- border-top-left-radius: $borderRadius;
52
+ border-top-right-radius: $borderRadius;
53
+ border-top-left-radius: $borderRadius;
54
54
  }
55
55
 
56
56
  .p-megamenu-submenu {
@@ -64,7 +64,7 @@
64
64
 
65
65
  .p-menuitem {
66
66
  margin: $verticalMenuitemMargin;
67
-
67
+
68
68
  &:last-child {
69
69
  margin: 0;
70
70
  }
@@ -80,7 +80,8 @@
80
80
  color: $menuitemTextActiveColor;
81
81
  }
82
82
 
83
- .p-menuitem-icon, .p-submenu-icon {
83
+ .p-menuitem-icon,
84
+ .p-submenu-icon {
84
85
  color: $menuitemIconActiveColor;
85
86
  }
86
87
  }
@@ -93,7 +94,7 @@
93
94
 
94
95
  .p-menuitem {
95
96
  margin: $verticalMenuitemMargin;
96
-
97
+
97
98
  &:last-child {
98
99
  margin: 0;
99
100
  }
@@ -22,8 +22,8 @@
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
29
  .p-menu-separator {
@@ -19,15 +19,15 @@
19
19
  > .p-menuitem-link,
20
20
  > .p-menuitem-link:not(.p-disabled):hover {
21
21
  background: $horizontalMenuRootMenuitemActiveBg;
22
-
22
+
23
23
  .p-menuitem-text {
24
24
  color: $horizontalMenuRootMenuitemTextActiveColor;
25
25
  }
26
-
26
+
27
27
  .p-menuitem-icon {
28
28
  color: $horizontalMenuRootMenuitemIconActiveColor;
29
29
  }
30
-
30
+
31
31
  .p-submenu-icon {
32
32
  color: $horizontalMenuRootMenuitemIconActiveColor;
33
33
  }
@@ -54,7 +54,7 @@
54
54
 
55
55
  .p-menuitem {
56
56
  margin: $verticalMenuitemMargin;
57
-
57
+
58
58
  &:last-child {
59
59
  margin: 0;
60
60
  }
@@ -70,7 +70,8 @@
70
70
  color: $menuitemTextActiveColor;
71
71
  }
72
72
 
73
- .p-menuitem-icon, .p-submenu-icon {
73
+ .p-menuitem-icon,
74
+ .p-submenu-icon {
74
75
  color: $menuitemIconActiveColor;
75
76
  }
76
77
  }
@@ -89,12 +90,12 @@
89
90
  color: $horizontalMenuRootMenuitemIconColor;
90
91
  border-radius: $actionIconBorderRadius;
91
92
  transition: $actionIconTransition;
92
-
93
+
93
94
  &:hover {
94
95
  color: $horizontalMenuRootMenuitemIconHoverColor;
95
96
  background: $horizontalMenuRootMenuitemHoverBg;
96
97
  }
97
-
98
+
98
99
  &:focus {
99
100
  @include focused();
100
101
  }
@@ -108,12 +109,12 @@
108
109
  border: $overlayMenuBorder;
109
110
  box-shadow: $overlayMenuShadow;
110
111
  width: 100%;
111
-
112
+
112
113
  .p-menu-separator {
113
114
  border-top: $divider;
114
115
  margin: $menuSeparatorMargin;
115
116
  }
116
-
117
+
117
118
  .p-submenu-icon {
118
119
  font-size: $menuitemSubmenuIconFontSize;
119
120
  }
@@ -159,7 +160,7 @@
159
160
  }
160
161
  }
161
162
  }
162
-
163
+
163
164
  .p-menuitem {
164
165
  width: 100%;
165
166
  position: static;
@@ -176,4 +177,4 @@
176
177
  z-index: 1;
177
178
  }
178
179
  }
179
- }
180
+ }
@@ -131,7 +131,6 @@
131
131
  border-bottom-left-radius: $borderRadius;
132
132
  }
133
133
  }
134
- }
134
+ }
135
135
  }
136
-
137
136
  }
@@ -32,7 +32,8 @@
32
32
  color: $menuitemTextActiveColor;
33
33
  }
34
34
 
35
- .p-slidemenu-icon, .p-slidemenu-icon {
35
+ .p-slidemenu-icon,
36
+ .p-slidemenu-icon {
36
37
  color: $menuitemIconActiveColor;
37
38
  }
38
39
  }
@@ -50,6 +51,6 @@
50
51
 
51
52
  .p-slidemenu-backward {
52
53
  padding: $menuitemPadding;
53
- color: $menuitemTextColor;
54
+ color: $menuitemTextColor;
54
55
  }
55
56
  }
@@ -1,5 +1,4 @@
1
1
  .p-steps {
2
-
3
2
  .p-steps-item {
4
3
  .p-menuitem-link {
5
4
  background: transparent;
@@ -42,7 +41,7 @@
42
41
  }
43
42
 
44
43
  &:before {
45
- content:' ';
44
+ content: ' ';
46
45
  border-top: $divider;
47
46
  width: 100%;
48
47
  top: 50%;
@@ -25,7 +25,7 @@
25
25
 
26
26
  .p-menuitem {
27
27
  margin: $verticalMenuitemMargin;
28
-
28
+
29
29
  &:last-child {
30
30
  margin: 0;
31
31
  }
@@ -38,7 +38,8 @@
38
38
  color: $menuitemTextActiveColor;
39
39
  }
40
40
 
41
- .p-menuitem-icon, .p-submenu-icon {
41
+ .p-menuitem-icon,
42
+ .p-submenu-icon {
42
43
  color: $menuitemIconActiveColor;
43
44
  }
44
45
  }
@@ -14,7 +14,7 @@
14
14
  transition: $actionIconTransition;
15
15
 
16
16
  &:hover {
17
- background: rgba(255,255,255,.3);
17
+ background: rgba(255, 255, 255, 0.3);
18
18
  }
19
19
 
20
20
  &:focus {
@@ -35,7 +35,7 @@
35
35
  transition: $actionIconTransition;
36
36
 
37
37
  &:hover {
38
- background: rgba(255,255,255,.3);
38
+ background: rgba(255, 255, 255, 0.3);
39
39
  }
40
40
 
41
41
  &:focus {
@@ -90,6 +90,5 @@
90
90
  color: $errorMessageIconColor;
91
91
  }
92
92
  }
93
-
94
93
  }
95
94
  }
@@ -27,4 +27,4 @@
27
27
  .p-avatar {
28
28
  border: 2px solid $panelContentBg;
29
29
  }
30
- }
30
+ }
@@ -45,4 +45,4 @@
45
45
  height: 2 * $badgeHeight;
46
46
  line-height: 2 * $badgeHeight;
47
47
  }
48
- }
48
+ }
@@ -1,3 +1,3 @@
1
1
  .p-blockui.p-component-overlay {
2
2
  background: $maskBg;
3
- }
3
+ }
@@ -28,9 +28,9 @@
28
28
  .pi-chip-remove-icon {
29
29
  border-radius: $borderRadius;
30
30
  transition: $actionIconTransition;
31
-
31
+
32
32
  &:focus {
33
33
  @include focused();
34
34
  }
35
35
  }
36
- }
36
+ }
@@ -17,4 +17,4 @@
17
17
  font-size: $scrollTopFontSize;
18
18
  color: $scrollTopTextColor;
19
19
  }
20
- }
20
+ }
@@ -5,4 +5,4 @@
5
5
  &:after {
6
6
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), $skeletonAnimationBg, rgba(255, 255, 255, 0));
7
7
  }
8
- }
8
+ }
@@ -30,4 +30,4 @@
30
30
  margin-right: $inlineSpacing / 2;
31
31
  font-size: $badgeFontSize;
32
32
  }
33
- }
33
+ }