@mediusinc/mng-commons 0.2.6 → 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 (237) 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 +3 -3
  25. package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +13 -13
  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 +1 -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 +2 -2
  41. package/esm2020/lib/components/tableview/route/tableview-route.component.mjs +1 -1
  42. package/esm2020/lib/components/tableview/services/tableview.component.service.mjs +9 -4
  43. package/esm2020/lib/components/tableview/table/column-filter/column-filter.component.mjs +4 -3
  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 +2 -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 +27 -37
  63. package/esm2020/lib/models/user.model.mjs +1 -1
  64. package/esm2020/lib/pipes/boolean.pipe.mjs +1 -1
  65. package/esm2020/lib/pipes/property-path.pipe.mjs +1 -1
  66. package/esm2020/lib/router/models/router.model.mjs +1 -1
  67. package/esm2020/lib/router/route-builder.mjs +41 -36
  68. package/esm2020/lib/services/action.service.mjs +19 -15
  69. package/esm2020/lib/services/commons.service.mjs +15 -23
  70. package/esm2020/lib/services/configuration.service.mjs +3 -4
  71. package/esm2020/lib/services/navigation.service.mjs +2 -2
  72. package/esm2020/lib/services/providers/config-service.provider.mjs +2 -2
  73. package/esm2020/lib/services/providers/formly-config.provider.mjs +1 -1
  74. package/esm2020/lib/services/tokens/browser-storage.token.mjs +1 -1
  75. package/esm2020/lib/types/type.decorator.mjs +1 -1
  76. package/esm2020/lib/types/type.model.mjs +1 -1
  77. package/esm2020/lib/utils/editor-formly.util.mjs +7 -21
  78. package/esm2020/lib/utils/i18n.util.mjs +2 -2
  79. package/esm2020/lib/utils/model.util.mjs +1 -1
  80. package/esm2020/lib/utils/route.util.mjs +1 -1
  81. package/esm2020/lib/utils/toast.util.mjs +3 -2
  82. package/esm2020/lib/utils/type.util.mjs +2 -1
  83. package/fesm2015/mediusinc-mng-commons.mjs +3078 -3049
  84. package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
  85. package/fesm2020/mediusinc-mng-commons.mjs +2999 -2966
  86. package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
  87. package/lib/api/models/filter-param.model.d.ts +1 -1
  88. package/lib/api/services/crud-api.abstract.service.d.ts +6 -6
  89. package/lib/api/utils/medius-rest.util.d.ts +1 -1
  90. package/lib/api/utils/object-serializer.util.d.ts +5 -5
  91. package/lib/components/action/action.component.d.ts +3 -3
  92. package/lib/components/action/dialog/action-dialog.component.d.ts +9 -8
  93. package/lib/components/action/models/action-execution.model.d.ts +1 -1
  94. package/lib/components/action/route/action-route.component.d.ts +2 -2
  95. package/lib/components/form/autocomplete/autocomplete.component.d.ts +4 -3
  96. package/lib/components/form/dropdown/dropdown.component.d.ts +4 -3
  97. package/lib/components/form/editor/form-editor.component.d.ts +7 -6
  98. package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +2 -1
  99. package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +2 -1
  100. package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +1 -1
  101. package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +1 -3
  102. package/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.d.ts +1 -3
  103. package/lib/components/layout/main-layout.component.d.ts +3 -3
  104. package/lib/components/layout/menu-item.component.d.ts +7 -7
  105. package/lib/components/layout/services/main-layout.component.service.d.ts +1 -1
  106. package/lib/components/layout/topbar.component.d.ts +4 -4
  107. package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +1 -1
  108. package/lib/components/tableview/route/tableview-route.component.d.ts +1 -1
  109. package/lib/components/tableview/services/tableview.component.service.d.ts +3 -2
  110. package/lib/components/tableview/table/table.component.d.ts +21 -19
  111. package/lib/components/tableview/tableview.component.d.ts +6 -4
  112. package/lib/config/formly.config.d.ts +2 -1
  113. package/lib/descriptors/action.descriptor.d.ts +2 -2
  114. package/lib/descriptors/editor.descriptor.d.ts +9 -7
  115. package/lib/descriptors/lookup.descriptor.d.ts +1 -1
  116. package/lib/descriptors/table.descriptor.d.ts +4 -4
  117. package/lib/descriptors/tableview.descriptor.d.ts +1 -1
  118. package/lib/mng-commons.module.d.ts +23 -22
  119. package/lib/router/models/router.model.d.ts +1 -1
  120. package/lib/router/route-builder.d.ts +4 -4
  121. package/lib/services/action.service.d.ts +3 -3
  122. package/lib/services/commons.service.d.ts +6 -6
  123. package/lib/services/navigation.service.d.ts +1 -1
  124. package/lib/services/providers/formly-config.provider.d.ts +1 -1
  125. package/lib/utils/editor-formly.util.d.ts +1 -1
  126. package/lib/utils/model.util.d.ts +1 -1
  127. package/lib/utils/toast.util.d.ts +1 -1
  128. package/package.json +1 -1
  129. package/scss/common/layout/_breadcrumb.scss +6 -6
  130. package/scss/common/layout/_config.scss +7 -8
  131. package/scss/common/layout/_exception.scss +12 -11
  132. package/scss/common/layout/_footer.scss +3 -3
  133. package/scss/common/layout/_help.scss +8 -9
  134. package/scss/common/layout/_inlinemenu.scss +3 -3
  135. package/scss/common/layout/_invoice.scss +16 -16
  136. package/scss/common/layout/_landing.scss +57 -60
  137. package/scss/common/layout/_loader.scss +0 -1
  138. package/scss/common/layout/_login.scss +3 -4
  139. package/scss/common/layout/_main.scss +3 -3
  140. package/scss/common/layout/_mixins.scss +28 -20
  141. package/scss/common/layout/_rightmenu.scss +5 -5
  142. package/scss/common/layout/_topbar.scss +7 -5
  143. package/scss/common/layout/_typography.scss +11 -6
  144. package/scss/common/layout/_utils.scss +1 -1
  145. package/scss/common/layout/_widgets.scss +20 -19
  146. package/scss/common/layout/menu/_menu_common.scss +6 -6
  147. package/scss/common/layout/menu/_menu_overlay.scss +1 -1
  148. package/scss/common/layout/menu/_menu_sidebar.scss +6 -5
  149. package/scss/common/layout/menu/_menu_slim.scss +2 -3
  150. package/scss/common/layout/menu/_menu_static.scss +1 -1
  151. package/scss/common/layout/menu/_menu_theme.scss +2 -3
  152. package/scss/common/theme/designer/_colors.scss +11 -12
  153. package/scss/common/theme/designer/_common.scss +4 -3
  154. package/scss/common/theme/designer/_mixins.scss +56 -56
  155. package/scss/common/theme/designer/components/button/_button.scss +32 -20
  156. package/scss/common/theme/designer/components/button/_speeddial.scss +1 -1
  157. package/scss/common/theme/designer/components/button/_splitbutton.scss +2 -1
  158. package/scss/common/theme/designer/components/data/_carousel.scss +1 -1
  159. package/scss/common/theme/designer/components/data/_datatable.scss +5 -5
  160. package/scss/common/theme/designer/components/data/_filter.scss +2 -3
  161. package/scss/common/theme/designer/components/data/_fullcalendar.scss +10 -10
  162. package/scss/common/theme/designer/components/data/_orderlist.scss +2 -2
  163. package/scss/common/theme/designer/components/data/_paginator.scss +1 -1
  164. package/scss/common/theme/designer/components/data/_picklist.scss +1 -1
  165. package/scss/common/theme/designer/components/data/_timeline.scss +3 -6
  166. package/scss/common/theme/designer/components/data/_tree.scss +2 -2
  167. package/scss/common/theme/designer/components/data/_treetable.scss +2 -3
  168. package/scss/common/theme/designer/components/input/_autocomplete.scss +8 -8
  169. package/scss/common/theme/designer/components/input/_calendar.scss +6 -6
  170. package/scss/common/theme/designer/components/input/_cascadeselect.scss +1 -1
  171. package/scss/common/theme/designer/components/input/_checkbox.scss +4 -4
  172. package/scss/common/theme/designer/components/input/_chips.scss +4 -4
  173. package/scss/common/theme/designer/components/input/_colorpicker.scss +2 -2
  174. package/scss/common/theme/designer/components/input/_dropdown.scss +2 -2
  175. package/scss/common/theme/designer/components/input/_editor.scss +7 -7
  176. package/scss/common/theme/designer/components/input/_inputgroup.scss +1 -1
  177. package/scss/common/theme/designer/components/input/_inputmask.scss +1 -1
  178. package/scss/common/theme/designer/components/input/_inputnumber.scss +1 -1
  179. package/scss/common/theme/designer/components/input/_inputswitch.scss +2 -2
  180. package/scss/common/theme/designer/components/input/_inputtext.scss +3 -3
  181. package/scss/common/theme/designer/components/input/_listbox.scss +1 -1
  182. package/scss/common/theme/designer/components/input/_multiselect.scss +5 -6
  183. package/scss/common/theme/designer/components/input/_radiobutton.scss +2 -2
  184. package/scss/common/theme/designer/components/input/_rating.scss +1 -1
  185. package/scss/common/theme/designer/components/input/_selectbutton.scss +1 -1
  186. package/scss/common/theme/designer/components/input/_togglebutton.scss +1 -1
  187. package/scss/common/theme/designer/components/input/_treeselect.scss +2 -2
  188. package/scss/common/theme/designer/components/menu/_contextmenu.scss +3 -2
  189. package/scss/common/theme/designer/components/menu/_dock.scss +4 -4
  190. package/scss/common/theme/designer/components/menu/_megamenu.scss +10 -9
  191. package/scss/common/theme/designer/components/menu/_menu.scss +2 -2
  192. package/scss/common/theme/designer/components/menu/_menubar.scss +12 -11
  193. package/scss/common/theme/designer/components/menu/_panelmenu.scss +1 -2
  194. package/scss/common/theme/designer/components/menu/_slidemenu.scss +3 -2
  195. package/scss/common/theme/designer/components/menu/_steps.scss +1 -2
  196. package/scss/common/theme/designer/components/menu/_tieredmenu.scss +3 -2
  197. package/scss/common/theme/designer/components/messages/_message.scss +1 -1
  198. package/scss/common/theme/designer/components/messages/_toast.scss +1 -2
  199. package/scss/common/theme/designer/components/misc/_avatar.scss +1 -1
  200. package/scss/common/theme/designer/components/misc/_badge.scss +1 -1
  201. package/scss/common/theme/designer/components/misc/_blockui.scss +1 -1
  202. package/scss/common/theme/designer/components/misc/_chip.scss +2 -2
  203. package/scss/common/theme/designer/components/misc/_inplace.scss +0 -1
  204. package/scss/common/theme/designer/components/misc/_scrolltop.scss +1 -1
  205. package/scss/common/theme/designer/components/misc/_skeleton.scss +1 -1
  206. package/scss/common/theme/designer/components/misc/_tag.scss +1 -1
  207. package/scss/common/theme/designer/components/misc/_terminal.scss +8 -8
  208. package/scss/common/theme/designer/components/multimedia/_galleria.scss +1 -1
  209. package/scss/common/theme/designer/components/overlay/_confirmpopup.scss +2 -4
  210. package/scss/common/theme/designer/components/overlay/_dialog.scss +3 -3
  211. package/scss/common/theme/designer/components/overlay/_overlaypanel.scss +2 -4
  212. package/scss/common/theme/designer/components/panel/_accordion.scss +2 -2
  213. package/scss/common/theme/designer/components/panel/_divider.scss +1 -1
  214. package/scss/common/theme/designer/components/panel/_scrollpanel.scss +1 -1
  215. package/scss/common/theme/designer/components/panel/_splitter.scss +1 -1
  216. package/scss/common/theme/extensions/_button.scss +18 -6
  217. package/scss/common/theme/extensions/_orderlist.scss +0 -1
  218. package/scss/common/theme/extensions/_picklist.scss +0 -1
  219. package/scss/common/theme/extensions/_tree.scss +0 -1
  220. package/scss/common/variables/layout/_common.scss +9 -9
  221. package/scss/common/variables/layout/_layout_dark.scss +12 -12
  222. package/scss/common/variables/layout/_layout_light.scss +13 -13
  223. package/scss/common/variables/theme/_theme_dark.scss +76 -76
  224. package/scss/common/variables/theme/_theme_light.scss +80 -80
  225. package/scss/layout/default/_mng-variables-layout-dark.scss +1 -1
  226. package/scss/mng-commons-dark.scss +2 -2
  227. package/scss/mng-commons-light.scss +2 -2
  228. package/scss/mng-overrides/_layout_dialog.scss +4 -3
  229. package/scss/mng-overrides/_layout_forms.scss +1 -1
  230. package/scss/mng-overrides/_layout_radio.scss +1 -1
  231. package/scss/mng-overrides/_theme_datepicker.scss +7 -0
  232. package/scss/mng-overrides/_theme_dialog.scss +0 -1
  233. package/scss/mng-overrides/_theme_dropdown.scss +0 -1
  234. package/scss/mng-overrides/_theme_styles.scss +1 -0
  235. package/scss/mng-overrides/_theme_tableview.scss +6 -6
  236. package/scss/theme/default/_mng-variables-theme-dark.scss +2 -1
  237. package/scss/theme/default/_mng-variables-theme-light.scss +2 -1
@@ -44,7 +44,7 @@
44
44
  background: $plainButtonHoverBgColor;
45
45
  color: $plainButtonTextColor;
46
46
  }
47
-
47
+
48
48
  &:enabled:active {
49
49
  background: $plainButtonActiveBgColor;
50
50
  color: $plainButtonTextColor;
@@ -76,7 +76,7 @@
76
76
  background: $plainButtonHoverBgColor;
77
77
  color: $plainButtonTextColor;
78
78
  }
79
-
79
+
80
80
  &:enabled:active {
81
81
  background: $plainButtonActiveBgColor;
82
82
  color: $plainButtonTextColor;
@@ -89,7 +89,7 @@
89
89
  }
90
90
 
91
91
  .p-button-icon-left {
92
- margin-right: $inlineSpacing;
92
+ margin-right: $inlineSpacing;
93
93
  }
94
94
 
95
95
  .p-button-icon-right {
@@ -101,7 +101,7 @@
101
101
  }
102
102
 
103
103
  .p-button-icon-top {
104
- margin-bottom: $inlineSpacing;
104
+ margin-bottom: $inlineSpacing;
105
105
  }
106
106
 
107
107
  .p-badge {
@@ -110,7 +110,7 @@
110
110
  height: $fontSize;
111
111
  line-height: $fontSize;
112
112
  color: $buttonBg;
113
- background-color: $buttonTextColor;
113
+ background-color: $buttonTextColor;
114
114
  }
115
115
 
116
116
  &.p-button-raised {
@@ -169,21 +169,23 @@
169
169
  .p-button {
170
170
  width: 100%;
171
171
  }
172
-
172
+
173
173
  .p-button-icon-only {
174
174
  width: $buttonIconOnlyWidth;
175
175
  }
176
176
 
177
177
  .p-buttonset {
178
178
  display: flex;
179
-
179
+
180
180
  .p-button {
181
181
  flex: 1;
182
182
  }
183
183
  }
184
184
  }
185
185
 
186
- .p-button.p-button-secondary, .p-buttonset.p-button-secondary > .p-button, .p-splitbutton.p-button-secondary > .p-button {
186
+ .p-button.p-button-secondary,
187
+ .p-buttonset.p-button-secondary > .p-button,
188
+ .p-splitbutton.p-button-secondary > .p-button {
187
189
  color: $secondaryButtonTextColor;
188
190
  background: $secondaryButtonBg;
189
191
  border: $secondaryButtonBorder;
@@ -203,7 +205,7 @@
203
205
  color: $secondaryButtonTextActiveColor;
204
206
  border-color: $secondaryButtonActiveBorderColor;
205
207
  }
206
-
208
+
207
209
  &.p-button-outlined {
208
210
  background-color: transparent;
209
211
  color: $secondaryButtonBg;
@@ -241,7 +243,9 @@
241
243
  }
242
244
  }
243
245
 
244
- .p-button.p-button-info, .p-buttonset.p-button-info > .p-button, .p-splitbutton.p-button-info > .p-button {
246
+ .p-button.p-button-info,
247
+ .p-buttonset.p-button-info > .p-button,
248
+ .p-splitbutton.p-button-info > .p-button {
245
249
  color: $infoButtonTextColor;
246
250
  background: $infoButtonBg;
247
251
  border: $infoButtonBorder;
@@ -299,7 +303,9 @@
299
303
  }
300
304
  }
301
305
 
302
- .p-button.p-button-success, .p-buttonset.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button {
306
+ .p-button.p-button-success,
307
+ .p-buttonset.p-button-success > .p-button,
308
+ .p-splitbutton.p-button-success > .p-button {
303
309
  color: $successButtonTextColor;
304
310
  background: $successButtonBg;
305
311
  border: $successButtonBorder;
@@ -357,11 +363,13 @@
357
363
  }
358
364
  }
359
365
 
360
- .p-button.p-button-warning, .p-buttonset.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button {
366
+ .p-button.p-button-warning,
367
+ .p-buttonset.p-button-warning > .p-button,
368
+ .p-splitbutton.p-button-warning > .p-button {
361
369
  color: $warningButtonTextColor;
362
370
  background: $warningButtonBg;
363
371
  border: $warningButtonBorder;
364
-
372
+
365
373
  &:enabled:hover {
366
374
  background: $warningButtonHoverBg;
367
375
  color: $warningButtonTextHoverColor;
@@ -415,7 +423,9 @@
415
423
  }
416
424
  }
417
425
 
418
- .p-button.p-button-help, .p-buttonset.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button {
426
+ .p-button.p-button-help,
427
+ .p-buttonset.p-button-help > .p-button,
428
+ .p-splitbutton.p-button-help > .p-button {
419
429
  color: $helpButtonTextColor;
420
430
  background: $helpButtonBg;
421
431
  border: $helpButtonBorder;
@@ -473,7 +483,9 @@
473
483
  }
474
484
  }
475
485
 
476
- .p-button.p-button-danger, .p-buttonset.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button {
486
+ .p-button.p-button-danger,
487
+ .p-buttonset.p-button-danger > .p-button,
488
+ .p-splitbutton.p-button-danger > .p-button {
477
489
  color: $dangerButtonTextColor;
478
490
  background: $dangerButtonBg;
479
491
  border: $dangerButtonBorder;
@@ -537,9 +549,9 @@
537
549
  border: transparent;
538
550
 
539
551
  &:enabled:hover {
540
- background: transparent;
552
+ background: transparent;
541
553
  color: $linkButtonHoverColor;
542
- border-color: transparent;
554
+ border-color: transparent;
543
555
 
544
556
  .p-button-label {
545
557
  text-decoration: $linkButtonTextHoverDecoration;
@@ -549,12 +561,12 @@
549
561
  &:enabled:focus {
550
562
  background: transparent;
551
563
  box-shadow: $linkButtonFocusShadow;
552
- border-color: transparent;
564
+ border-color: transparent;
553
565
  }
554
566
 
555
567
  &:enabled:active {
556
- background: transparent;
568
+ background: transparent;
557
569
  color: $linkButtonColor;
558
- border-color: transparent;
570
+ border-color: transparent;
559
571
  }
560
572
  }
@@ -76,4 +76,4 @@
76
76
 
77
77
  .p-speeddial-mask {
78
78
  background-color: $maskBg;
79
- }
79
+ }
@@ -1 +1,2 @@
1
- .p-splitbutton {}
1
+ .p-splitbutton {
2
+ }
@@ -13,7 +13,7 @@
13
13
  .p-carousel-indicator {
14
14
  margin-right: $inlineSpacing;
15
15
  margin-bottom: $inlineSpacing;
16
-
16
+
17
17
  button {
18
18
  background-color: $carouselIndicatorBg;
19
19
  width: $carouselIndicatorWidth;
@@ -84,7 +84,7 @@
84
84
  &:hover {
85
85
  background: $tableHeaderCellHighlightHoverBg;
86
86
  color: $tableHeaderCellHighlightTextColor;
87
-
87
+
88
88
  .p-sortable-column-icon {
89
89
  color: $tableHeaderCellHighlightTextColor;
90
90
  }
@@ -177,7 +177,7 @@
177
177
  .p-datatable-thead {
178
178
  > tr {
179
179
  > th {
180
- border-width: 1px 1px nth($tableHeaderCellBorderWidth,3) 1px;
180
+ border-width: 1px 1px nth($tableHeaderCellBorderWidth, 3) 1px;
181
181
  }
182
182
  }
183
183
  }
@@ -203,14 +203,14 @@
203
203
  .p-datatable-tbody {
204
204
  > tr:nth-child(even) {
205
205
  background: $tableBodyRowEvenBg;
206
-
206
+
207
207
  &.p-highlight {
208
208
  background: $highlightBg;
209
209
  color: $highlightTextColor;
210
-
210
+
211
211
  .p-row-toggler {
212
212
  color: $highlightTextColor;
213
-
213
+
214
214
  &:hover {
215
215
  color: $highlightTextColor;
216
216
  }
@@ -35,7 +35,6 @@
35
35
  &:focus {
36
36
  @include focused();
37
37
  }
38
-
39
38
  }
40
39
 
41
40
  .p-column-filter-clear-button {
@@ -134,5 +133,5 @@
134
133
 
135
134
  .p-column-filter-buttonbar {
136
135
  padding: $panelContentPadding;
137
- }
138
- }
136
+ }
137
+ }
@@ -64,16 +64,16 @@
64
64
  }
65
65
 
66
66
  .fc-icon-chevron-left {
67
- font-family: "PrimeIcons" !important;
67
+ font-family: 'PrimeIcons' !important;
68
68
  text-indent: 0;
69
- @include icon_override("\e900");
69
+ @include icon_override('\e900');
70
70
  font-size: $primeIconFontSize;
71
71
  }
72
72
 
73
73
  .fc-icon-chevron-right {
74
- font-family: "PrimeIcons" !important;
74
+ font-family: 'PrimeIcons' !important;
75
75
  text-indent: 0;
76
- @include icon_override("\e901");
76
+ @include icon_override('\e901');
77
77
  font-size: $primeIconFontSize;
78
78
  }
79
79
 
@@ -170,8 +170,8 @@
170
170
  align-items: center;
171
171
  justify-content: center;
172
172
  overflow: hidden;
173
- font-family: "PrimeIcons" !important;
174
- @include icon_override("\e90b");
173
+ font-family: 'PrimeIcons' !important;
174
+ @include icon_override('\e90b');
175
175
  font-size: $primeIconFontSize;
176
176
  @include action-icon(false);
177
177
  }
@@ -248,16 +248,16 @@
248
248
  }
249
249
 
250
250
  .fc-icon-chevron-left {
251
- font-family: "PrimeIcons" !important;
251
+ font-family: 'PrimeIcons' !important;
252
252
  text-indent: 0;
253
- @include icon_override("\e900");
253
+ @include icon_override('\e900');
254
254
  font-size: $primeIconFontSize;
255
255
  }
256
256
 
257
257
  .fc-icon-chevron-right {
258
- font-family: "PrimeIcons" !important;
258
+ font-family: 'PrimeIcons' !important;
259
259
  text-indent: 0;
260
- @include icon_override("\e901");
260
+ @include icon_override('\e901');
261
261
  font-size: $primeIconFontSize;
262
262
  }
263
263
 
@@ -35,7 +35,7 @@
35
35
  right: nth($inputPadding, 2);
36
36
  color: $inputIconColor;
37
37
  }
38
- }
38
+ }
39
39
 
40
40
  .p-orderlist-list {
41
41
  border: $panelContentBorder;
@@ -88,4 +88,4 @@
88
88
  background: $panelContentBg;
89
89
  margin: 0;
90
90
  }
91
- }
91
+ }
@@ -30,7 +30,7 @@
30
30
  border-top-left-radius: $borderRadius;
31
31
  border-bottom-left-radius: $borderRadius;
32
32
  }
33
-
33
+
34
34
  .p-paginator-last {
35
35
  border-top-right-radius: $borderRadius;
36
36
  border-bottom-right-radius: $borderRadius;
@@ -88,4 +88,4 @@
88
88
  background: $panelContentBg;
89
89
  margin: 0;
90
90
  }
91
- }
91
+ }
@@ -1,6 +1,6 @@
1
1
  .p-timeline {
2
2
  .p-timeline-event-marker {
3
- border: $timelineEventMarkerBorder;
3
+ border: $timelineEventMarkerBorder;
4
4
  border-radius: $timelineEventMarkerBorderRadius;
5
5
  width: $timelineEventMarkerWidth;
6
6
  height: $timelineEventMarkerHeight;
@@ -13,7 +13,7 @@
13
13
 
14
14
  &.p-timeline-vertical {
15
15
  .p-timeline-event-opposite,
16
- .p-timeline-event-content {
16
+ .p-timeline-event-content {
17
17
  padding: $timelineVerticalEventContentPadding;
18
18
  }
19
19
 
@@ -24,7 +24,7 @@
24
24
 
25
25
  &.p-timeline-horizontal {
26
26
  .p-timeline-event-opposite,
27
- .p-timeline-event-content {
27
+ .p-timeline-event-content {
28
28
  padding: $timelineHorizontalEventContentPadding;
29
29
  }
30
30
 
@@ -33,6 +33,3 @@
33
33
  }
34
34
  }
35
35
  }
36
-
37
-
38
-
@@ -91,7 +91,7 @@
91
91
  &.p-treenode-droppoint-active {
92
92
  background-color: scale-color($highlightBg, $lightness: -20%);
93
93
  }
94
- }
94
+ }
95
95
 
96
96
  &.p-tree-horizontal {
97
97
  .p-treenode {
@@ -134,7 +134,7 @@
134
134
  background: $inputListItemHoverBg;
135
135
  color: $inputListItemTextHoverColor;
136
136
  }
137
-
137
+
138
138
  &:focus {
139
139
  @include focused();
140
140
  }
@@ -9,7 +9,7 @@
9
9
  border-radius: 0;
10
10
  }
11
11
 
12
- .p-treetable-header {
12
+ .p-treetable-header {
13
13
  background: $tableHeaderBg;
14
14
  color: $tableHeaderTextColor;
15
15
  border: $tableHeaderBorder;
@@ -105,7 +105,7 @@
105
105
 
106
106
  p-treetablecheckbox .p-checkbox {
107
107
  margin-right: $inlineSpacing;
108
-
108
+
109
109
  .p-indeterminate {
110
110
  .p-checkbox-icon {
111
111
  color: $textColor;
@@ -124,7 +124,6 @@
124
124
  &:hover {
125
125
  color: $highlightTextColor;
126
126
  }
127
-
128
127
  }
129
128
  }
130
129
  }
@@ -1,6 +1,6 @@
1
1
  .p-autocomplete {
2
2
  .p-autocomplete-loader {
3
- right: nth($inputPadding, 2);
3
+ right: nth($inputPadding, 2);
4
4
  }
5
5
 
6
6
  &.p-autocomplete-dd {
@@ -8,9 +8,9 @@
8
8
  right: nth($inputPadding, 2) + $buttonIconOnlyWidth;
9
9
  }
10
10
  }
11
-
11
+
12
12
  .p-autocomplete-multiple-container {
13
- padding: nth($inputPadding, 1)/2 nth($inputPadding, 2);
13
+ padding: nth($inputPadding, 1) / 2 nth($inputPadding, 2);
14
14
 
15
15
  &:not(.p-disabled):hover {
16
16
  border-color: $inputHoverBorderColor;
@@ -21,8 +21,8 @@
21
21
  }
22
22
 
23
23
  .p-autocomplete-input-token {
24
- padding: nth($inputPadding, 1)/2 0;
25
-
24
+ padding: nth($inputPadding, 1) / 2 0;
25
+
26
26
  input {
27
27
  font-family: $fontFamily;
28
28
  font-size: $fontSize;
@@ -33,7 +33,7 @@
33
33
  }
34
34
 
35
35
  .p-autocomplete-token {
36
- padding: nth($inputPadding, 1)/2 nth($inputPadding, 2);
36
+ padding: nth($inputPadding, 1) / 2 nth($inputPadding, 2);
37
37
  margin-right: $inlineSpacing;
38
38
  background: $highlightBg;
39
39
  color: $highlightTextColor;
@@ -58,7 +58,7 @@ p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext {
58
58
  box-shadow: $inputOverlayShadow;
59
59
 
60
60
  .p-autocomplete-items {
61
- &:not(.p-autocomplete-virtualscroll) {
61
+ &:not(.p-autocomplete-virtualscroll) {
62
62
  padding: $inputListPadding;
63
63
  }
64
64
 
@@ -100,4 +100,4 @@ p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext {
100
100
  font-weight: $submenuHeaderFontWeight;
101
101
  }
102
102
  }
103
- }
103
+ }
@@ -78,7 +78,7 @@ p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext {
78
78
  color: $highlightTextColor;
79
79
  background: $highlightBg;
80
80
  }
81
-
81
+
82
82
  &:focus {
83
83
  @include focused();
84
84
  }
@@ -114,9 +114,9 @@ p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext {
114
114
 
115
115
  button {
116
116
  @include action-icon();
117
-
117
+
118
118
  &:last-child {
119
- margin-top: .2em;
119
+ margin-top: 0.2em;
120
120
  }
121
121
  }
122
122
 
@@ -198,15 +198,15 @@ p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext {
198
198
  }
199
199
  }
200
200
  }
201
-
202
201
  }
203
202
 
204
203
  @media screen and (max-width: $calendarBreakpoint) {
205
204
  .p-datepicker {
206
205
  table {
207
- th, td {
206
+ th,
207
+ td {
208
208
  padding: $calendarCellDatePaddingSM;
209
209
  }
210
210
  }
211
211
  }
212
- }
212
+ }
@@ -90,7 +90,7 @@ p-cascadeselect.ng-dirty.ng-invalid > .p-cascadeselect {
90
90
  &:not(.p-disabled):hover {
91
91
  background-color: $inputFilledHoverBg;
92
92
  }
93
-
93
+
94
94
  &:not(.p-disabled).p-focus {
95
95
  background-color: $inputFilledFocusBg;
96
96
  }
@@ -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
+ }