@mediusinc/mng-commons 0.2.6 → 0.2.11
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.
- package/README.md +46 -0
- package/assets/i18n/en.json +202 -147
- package/assets/i18n/sl.json +202 -147
- package/esm2020/lib/api/models/builders/query-param.builder.mjs +1 -1
- package/esm2020/lib/api/models/filter-match-type.model.mjs +1 -1
- package/esm2020/lib/api/models/filter-param.model.mjs +16 -27
- package/esm2020/lib/api/models/mappers.mjs +7 -7
- package/esm2020/lib/api/models/query-mode.model.mjs +1 -1
- package/esm2020/lib/api/models/query-param.model.mjs +38 -37
- package/esm2020/lib/api/models/query-result.model.mjs +14 -13
- package/esm2020/lib/api/services/crud-api.abstract.service.mjs +28 -21
- package/esm2020/lib/api/utils/medius-rest.util.mjs +11 -7
- package/esm2020/lib/api/utils/object-serializer.util.mjs +34 -27
- package/esm2020/lib/components/action/action.component.mjs +10 -7
- package/esm2020/lib/components/action/dialog/action-dialog.component.mjs +17 -14
- package/esm2020/lib/components/action/models/action-confirmation-service.model.mjs +1 -1
- package/esm2020/lib/components/action/models/action-execution.model.mjs +1 -1
- package/esm2020/lib/components/action/route/action-route.component.mjs +8 -6
- package/esm2020/lib/components/form/autocomplete/autocomplete.component.mjs +16 -14
- package/esm2020/lib/components/form/dropdown/dropdown.component.mjs +16 -15
- package/esm2020/lib/components/form/editor/form-editor.component.mjs +21 -24
- package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +3 -3
- package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +3 -3
- package/esm2020/lib/components/form/formly/fields/formly-field-fieldset/formly-field-fieldset.component.mjs +4 -4
- package/esm2020/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +9 -8
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +13 -13
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +12 -11
- package/esm2020/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +4 -4
- package/esm2020/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.mjs +1 -3
- package/esm2020/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.mjs +1 -3
- package/esm2020/lib/components/form/models/form-editor.event.mjs +1 -1
- package/esm2020/lib/components/layout/breadcrumb.component.mjs +3 -3
- package/esm2020/lib/components/layout/footer.component.mjs +3 -3
- package/esm2020/lib/components/layout/main-layout.component.mjs +4 -4
- package/esm2020/lib/components/layout/menu-item.component.mjs +82 -38
- package/esm2020/lib/components/layout/menu.component.mjs +3 -3
- package/esm2020/lib/components/layout/services/main-layout.component.service.mjs +4 -1
- package/esm2020/lib/components/layout/topbar.component.mjs +5 -4
- package/esm2020/lib/components/tableview/index.mjs +1 -1
- package/esm2020/lib/components/tableview/models/table.event.mjs +1 -1
- package/esm2020/lib/components/tableview/route/tableview-route.abstract.component.mjs +2 -2
- package/esm2020/lib/components/tableview/route/tableview-route.component.mjs +1 -1
- package/esm2020/lib/components/tableview/services/tableview.component.service.mjs +9 -4
- package/esm2020/lib/components/tableview/table/column-filter/column-filter.component.mjs +4 -3
- package/esm2020/lib/components/tableview/table/column-value/column-value.component.mjs +1 -1
- package/esm2020/lib/components/tableview/table/table.component.mjs +29 -27
- package/esm2020/lib/components/tableview/tableview.component.mjs +11 -3
- package/esm2020/lib/config/formly.config.mjs +39 -22
- package/esm2020/lib/config/models/mng-config.model.mjs +1 -1
- package/esm2020/lib/data-providers/base.data-provider.mjs +1 -8
- package/esm2020/lib/data-providers/editor.data-provider.mjs +2 -2
- package/esm2020/lib/data-providers/lookup.data-provider.mjs +1 -1
- package/esm2020/lib/data-providers/tableview.data-provider.mjs +2 -2
- package/esm2020/lib/descriptors/action.descriptor.mjs +3 -5
- package/esm2020/lib/descriptors/editor.descriptor.mjs +130 -72
- package/esm2020/lib/descriptors/field.validator.mjs +1 -1
- package/esm2020/lib/descriptors/lookup.descriptor.mjs +1 -1
- package/esm2020/lib/descriptors/model.descriptor.mjs +3 -3
- package/esm2020/lib/descriptors/table.descriptor.mjs +52 -43
- package/esm2020/lib/descriptors/tableview.descriptor.mjs +7 -7
- package/esm2020/lib/directives/component.directive.mjs +2 -2
- package/esm2020/lib/directives/template.directive.mjs +2 -3
- package/esm2020/lib/mng-commons.module.mjs +30 -37
- package/esm2020/lib/models/enum.model.mjs +2 -0
- package/esm2020/lib/models/index.mjs +3 -1
- package/esm2020/lib/models/menu.model.mjs +2 -0
- package/esm2020/lib/models/user.model.mjs +1 -1
- package/esm2020/lib/pipes/boolean.pipe.mjs +1 -1
- package/esm2020/lib/pipes/i18n-property.pipe.mjs +18 -0
- package/esm2020/lib/pipes/index.mjs +2 -1
- package/esm2020/lib/pipes/property-path.pipe.mjs +1 -1
- package/esm2020/lib/router/models/router.model.mjs +1 -1
- package/esm2020/lib/router/route-builder.mjs +119 -45
- package/esm2020/lib/services/action.service.mjs +19 -15
- package/esm2020/lib/services/commons.service.mjs +15 -23
- package/esm2020/lib/services/configuration.service.mjs +3 -4
- package/esm2020/lib/services/navigation.service.mjs +2 -2
- package/esm2020/lib/services/providers/config-service.provider.mjs +2 -2
- package/esm2020/lib/services/providers/formly-config.provider.mjs +1 -1
- package/esm2020/lib/services/tokens/browser-storage.token.mjs +1 -1
- package/esm2020/lib/types/type.decorator.mjs +7 -1
- package/esm2020/lib/types/type.model.mjs +1 -1
- package/esm2020/lib/utils/editor-formly.util.mjs +16 -21
- package/esm2020/lib/utils/enum.util.mjs +61 -0
- package/esm2020/lib/utils/i18n.util.mjs +39 -27
- package/esm2020/lib/utils/index.mjs +2 -1
- package/esm2020/lib/utils/model.util.mjs +1 -1
- package/esm2020/lib/utils/route.util.mjs +1 -1
- package/esm2020/lib/utils/toast.util.mjs +3 -2
- package/esm2020/lib/utils/type.util.mjs +40 -2
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/mediusinc-mng-commons.mjs +3547 -3198
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +3182 -2832
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/api/models/filter-param.model.d.ts +1 -1
- package/lib/api/services/crud-api.abstract.service.d.ts +6 -6
- package/lib/api/utils/medius-rest.util.d.ts +1 -1
- package/lib/api/utils/object-serializer.util.d.ts +6 -5
- package/lib/components/action/action.component.d.ts +3 -3
- package/lib/components/action/dialog/action-dialog.component.d.ts +9 -8
- package/lib/components/action/models/action-execution.model.d.ts +1 -1
- package/lib/components/action/route/action-route.component.d.ts +2 -2
- package/lib/components/form/autocomplete/autocomplete.component.d.ts +4 -3
- package/lib/components/form/dropdown/dropdown.component.d.ts +4 -3
- package/lib/components/form/editor/form-editor.component.d.ts +7 -6
- package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +2 -1
- package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +2 -1
- package/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.d.ts +1 -1
- package/lib/components/form/formly/wrappers/formly-field-wrapper/formly-field-wrapper.component.d.ts +1 -3
- package/lib/components/form/formly/wrappers/formly-table-wrapper/formly-table-wrapper.component.d.ts +1 -3
- package/lib/components/layout/main-layout.component.d.ts +3 -3
- package/lib/components/layout/menu-item.component.d.ts +18 -10
- package/lib/components/layout/services/main-layout.component.service.d.ts +1 -1
- package/lib/components/layout/topbar.component.d.ts +4 -4
- package/lib/components/tableview/route/tableview-route.abstract.component.d.ts +1 -1
- package/lib/components/tableview/route/tableview-route.component.d.ts +1 -1
- package/lib/components/tableview/services/tableview.component.service.d.ts +3 -2
- package/lib/components/tableview/table/table.component.d.ts +21 -19
- package/lib/components/tableview/tableview.component.d.ts +6 -4
- package/lib/config/formly.config.d.ts +2 -1
- package/lib/data-providers/base.data-provider.d.ts +0 -3
- package/lib/descriptors/action.descriptor.d.ts +2 -2
- package/lib/descriptors/editor.descriptor.d.ts +51 -34
- package/lib/descriptors/lookup.descriptor.d.ts +1 -1
- package/lib/descriptors/table.descriptor.d.ts +19 -16
- package/lib/descriptors/tableview.descriptor.d.ts +9 -9
- package/lib/mng-commons.module.d.ts +68 -66
- package/lib/models/enum.model.d.ts +5 -0
- package/lib/models/index.d.ts +2 -0
- package/lib/models/menu.model.d.ts +25 -0
- package/lib/pipes/i18n-property.pipe.d.ts +8 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/router/models/router.model.d.ts +1 -1
- package/lib/router/route-builder.d.ts +13 -9
- package/lib/services/action.service.d.ts +3 -3
- package/lib/services/commons.service.d.ts +11 -11
- package/lib/services/navigation.service.d.ts +1 -1
- package/lib/services/providers/formly-config.provider.d.ts +1 -1
- package/lib/types/type.decorator.d.ts +2 -0
- package/lib/types/type.model.d.ts +2 -2
- package/lib/utils/editor-formly.util.d.ts +1 -1
- package/lib/utils/enum.util.d.ts +39 -0
- package/lib/utils/i18n.util.d.ts +6 -2
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/model.util.d.ts +1 -1
- package/lib/utils/toast.util.d.ts +1 -1
- package/lib/utils/type.util.d.ts +22 -1
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
- package/scss/common/layout/_breadcrumb.scss +6 -6
- package/scss/common/layout/_config.scss +7 -8
- package/scss/common/layout/_exception.scss +12 -11
- package/scss/common/layout/_footer.scss +3 -3
- package/scss/common/layout/_help.scss +8 -9
- package/scss/common/layout/_inlinemenu.scss +3 -3
- package/scss/common/layout/_invoice.scss +16 -16
- package/scss/common/layout/_landing.scss +57 -60
- package/scss/common/layout/_loader.scss +0 -1
- package/scss/common/layout/_login.scss +3 -4
- package/scss/common/layout/_main.scss +3 -3
- package/scss/common/layout/_mixins.scss +28 -20
- package/scss/common/layout/_rightmenu.scss +5 -5
- package/scss/common/layout/_topbar.scss +7 -5
- package/scss/common/layout/_typography.scss +11 -6
- package/scss/common/layout/_utils.scss +1 -1
- package/scss/common/layout/_widgets.scss +20 -19
- package/scss/common/layout/menu/_menu_common.scss +6 -6
- package/scss/common/layout/menu/_menu_overlay.scss +1 -1
- package/scss/common/layout/menu/_menu_sidebar.scss +6 -5
- package/scss/common/layout/menu/_menu_slim.scss +2 -3
- package/scss/common/layout/menu/_menu_static.scss +1 -1
- package/scss/common/layout/menu/_menu_theme.scss +2 -3
- package/scss/common/theme/designer/_colors.scss +11 -12
- package/scss/common/theme/designer/_common.scss +4 -3
- package/scss/common/theme/designer/_mixins.scss +56 -56
- package/scss/common/theme/designer/components/button/_button.scss +32 -20
- package/scss/common/theme/designer/components/button/_speeddial.scss +1 -1
- package/scss/common/theme/designer/components/button/_splitbutton.scss +2 -1
- package/scss/common/theme/designer/components/data/_carousel.scss +1 -1
- package/scss/common/theme/designer/components/data/_datatable.scss +5 -5
- package/scss/common/theme/designer/components/data/_filter.scss +2 -3
- package/scss/common/theme/designer/components/data/_fullcalendar.scss +10 -10
- package/scss/common/theme/designer/components/data/_orderlist.scss +2 -2
- package/scss/common/theme/designer/components/data/_paginator.scss +1 -1
- package/scss/common/theme/designer/components/data/_picklist.scss +1 -1
- package/scss/common/theme/designer/components/data/_timeline.scss +3 -6
- package/scss/common/theme/designer/components/data/_tree.scss +2 -2
- package/scss/common/theme/designer/components/data/_treetable.scss +2 -3
- package/scss/common/theme/designer/components/input/_autocomplete.scss +8 -8
- package/scss/common/theme/designer/components/input/_calendar.scss +6 -6
- package/scss/common/theme/designer/components/input/_cascadeselect.scss +1 -1
- package/scss/common/theme/designer/components/input/_checkbox.scss +4 -4
- package/scss/common/theme/designer/components/input/_chips.scss +4 -4
- package/scss/common/theme/designer/components/input/_colorpicker.scss +2 -2
- package/scss/common/theme/designer/components/input/_dropdown.scss +2 -2
- package/scss/common/theme/designer/components/input/_editor.scss +7 -7
- package/scss/common/theme/designer/components/input/_inputgroup.scss +1 -1
- package/scss/common/theme/designer/components/input/_inputmask.scss +1 -1
- package/scss/common/theme/designer/components/input/_inputnumber.scss +1 -1
- package/scss/common/theme/designer/components/input/_inputswitch.scss +2 -2
- package/scss/common/theme/designer/components/input/_inputtext.scss +3 -3
- package/scss/common/theme/designer/components/input/_listbox.scss +1 -1
- package/scss/common/theme/designer/components/input/_multiselect.scss +5 -6
- package/scss/common/theme/designer/components/input/_radiobutton.scss +2 -2
- package/scss/common/theme/designer/components/input/_rating.scss +1 -1
- package/scss/common/theme/designer/components/input/_selectbutton.scss +1 -1
- package/scss/common/theme/designer/components/input/_togglebutton.scss +1 -1
- package/scss/common/theme/designer/components/input/_treeselect.scss +2 -2
- package/scss/common/theme/designer/components/menu/_contextmenu.scss +3 -2
- package/scss/common/theme/designer/components/menu/_dock.scss +4 -4
- package/scss/common/theme/designer/components/menu/_megamenu.scss +10 -9
- package/scss/common/theme/designer/components/menu/_menu.scss +2 -2
- package/scss/common/theme/designer/components/menu/_menubar.scss +12 -11
- package/scss/common/theme/designer/components/menu/_panelmenu.scss +1 -2
- package/scss/common/theme/designer/components/menu/_slidemenu.scss +3 -2
- package/scss/common/theme/designer/components/menu/_steps.scss +1 -2
- package/scss/common/theme/designer/components/menu/_tieredmenu.scss +3 -2
- package/scss/common/theme/designer/components/messages/_message.scss +1 -1
- package/scss/common/theme/designer/components/messages/_toast.scss +1 -2
- package/scss/common/theme/designer/components/misc/_avatar.scss +1 -1
- package/scss/common/theme/designer/components/misc/_badge.scss +1 -1
- package/scss/common/theme/designer/components/misc/_blockui.scss +1 -1
- package/scss/common/theme/designer/components/misc/_chip.scss +2 -2
- package/scss/common/theme/designer/components/misc/_inplace.scss +0 -1
- package/scss/common/theme/designer/components/misc/_scrolltop.scss +1 -1
- package/scss/common/theme/designer/components/misc/_skeleton.scss +1 -1
- package/scss/common/theme/designer/components/misc/_tag.scss +1 -1
- package/scss/common/theme/designer/components/misc/_terminal.scss +8 -8
- package/scss/common/theme/designer/components/multimedia/_galleria.scss +1 -1
- package/scss/common/theme/designer/components/overlay/_confirmpopup.scss +2 -4
- package/scss/common/theme/designer/components/overlay/_dialog.scss +3 -3
- package/scss/common/theme/designer/components/overlay/_overlaypanel.scss +2 -4
- package/scss/common/theme/designer/components/panel/_accordion.scss +2 -2
- package/scss/common/theme/designer/components/panel/_divider.scss +1 -1
- package/scss/common/theme/designer/components/panel/_scrollpanel.scss +1 -1
- package/scss/common/theme/designer/components/panel/_splitter.scss +1 -1
- package/scss/common/theme/extensions/_button.scss +18 -6
- package/scss/common/theme/extensions/_orderlist.scss +0 -1
- package/scss/common/theme/extensions/_picklist.scss +0 -1
- package/scss/common/theme/extensions/_tree.scss +0 -1
- package/scss/common/variables/layout/_common.scss +9 -9
- package/scss/common/variables/layout/_layout_dark.scss +12 -12
- package/scss/common/variables/layout/_layout_light.scss +13 -13
- package/scss/common/variables/theme/_theme_dark.scss +76 -76
- package/scss/common/variables/theme/_theme_light.scss +80 -80
- package/scss/layout/default/_mng-variables-layout-dark.scss +1 -1
- package/scss/mng-commons-dark.scss +2 -2
- package/scss/mng-commons-light.scss +2 -2
- package/scss/mng-overrides/_layout_dialog.scss +4 -3
- package/scss/mng-overrides/_layout_forms.scss +6 -1
- package/scss/mng-overrides/_layout_radio.scss +1 -1
- package/scss/mng-overrides/_theme_datepicker.scss +7 -0
- package/scss/mng-overrides/_theme_dialog.scss +0 -1
- package/scss/mng-overrides/_theme_dropdown.scss +0 -1
- package/scss/mng-overrides/_theme_styles.scss +1 -0
- package/scss/mng-overrides/_theme_tableview.scss +6 -6
- package/scss/theme/default/_mng-variables-theme-dark.scss +2 -1
- 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
|
-
|
|
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
|
-
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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:
|
|
552
|
+
background: transparent;
|
|
541
553
|
color: $linkButtonHoverColor;
|
|
542
|
-
border-color:
|
|
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:
|
|
564
|
+
border-color: transparent;
|
|
553
565
|
}
|
|
554
566
|
|
|
555
567
|
&:enabled:active {
|
|
556
|
-
background:
|
|
568
|
+
background: transparent;
|
|
557
569
|
color: $linkButtonColor;
|
|
558
|
-
border-color:
|
|
570
|
+
border-color: transparent;
|
|
559
571
|
}
|
|
560
572
|
}
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
.p-splitbutton {
|
|
1
|
+
.p-splitbutton {
|
|
2
|
+
}
|
|
@@ -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
|
}
|
|
@@ -64,16 +64,16 @@
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
.fc-icon-chevron-left {
|
|
67
|
-
font-family:
|
|
67
|
+
font-family: 'PrimeIcons' !important;
|
|
68
68
|
text-indent: 0;
|
|
69
|
-
@include icon_override(
|
|
69
|
+
@include icon_override('\e900');
|
|
70
70
|
font-size: $primeIconFontSize;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
.fc-icon-chevron-right {
|
|
74
|
-
font-family:
|
|
74
|
+
font-family: 'PrimeIcons' !important;
|
|
75
75
|
text-indent: 0;
|
|
76
|
-
@include icon_override(
|
|
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:
|
|
174
|
-
@include icon_override(
|
|
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:
|
|
251
|
+
font-family: 'PrimeIcons' !important;
|
|
252
252
|
text-indent: 0;
|
|
253
|
-
@include icon_override(
|
|
253
|
+
@include icon_override('\e900');
|
|
254
254
|
font-size: $primeIconFontSize;
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
.fc-icon-chevron-right {
|
|
258
|
-
font-family:
|
|
258
|
+
font-family: 'PrimeIcons' !important;
|
|
259
259
|
text-indent: 0;
|
|
260
|
-
@include icon_override(
|
|
260
|
+
@include icon_override('\e901');
|
|
261
261
|
font-size: $primeIconFontSize;
|
|
262
262
|
}
|
|
263
263
|
|
|
@@ -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
|
-
|
|
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,
|
|
206
|
+
th,
|
|
207
|
+
td {
|
|
208
208
|
padding: $calendarCellDatePaddingSM;
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
|
-
}
|
|
212
|
+
}
|
|
@@ -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
|
|
52
|
-
box-shadow
|
|
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;
|