@mediusinc/mng-commons 0.0.1-rc.4 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.pnpm-debug.log +15 -0
- package/README.md +95 -0
- package/assets/i18n/en.json +54 -3
- package/assets/i18n/sl.json +54 -8
- package/assets/images/effect-ondark.png +0 -0
- package/assets/images/effect-ondark.svg +38 -0
- package/assets/images/effect-ondark@2x.png +0 -0
- package/assets/images/effect-onlight.png +0 -0
- package/assets/images/effect-onlight.svg +38 -0
- package/assets/images/effect-onlight@2x.png +0 -0
- package/assets/images/pages/exception-ondark.png +0 -0
- package/assets/images/pages/exception-onlight.png +0 -0
- package/assets/images/pages/login-ondark.png +0 -0
- package/assets/images/pages/login-onlight.png +0 -0
- package/esm2020/lib/api/models/builders/query-param.builder.mjs +8 -8
- package/esm2020/lib/api/models/filter-match-type.model.mjs +14 -12
- package/esm2020/lib/api/models/filter-param.model.mjs +6 -6
- package/esm2020/lib/api/models/mappers.mjs +12 -12
- package/esm2020/lib/api/models/query-mode.model.mjs +7 -7
- package/esm2020/lib/api/models/query-param.model.mjs +5 -5
- package/esm2020/lib/api/models/query-result.model.mjs +15 -15
- package/esm2020/lib/api/services/abstract-crud-api.service.mjs +1 -1
- package/esm2020/lib/api/utils/medius-rest.util.mjs +99 -47
- package/esm2020/lib/components/action/action.component.mjs +3 -3
- package/esm2020/lib/components/action/dialog/action-dialog.component.mjs +6 -4
- package/esm2020/lib/components/action/route/action-route.component.mjs +3 -3
- package/esm2020/lib/components/form/autocomplete/mng-autocomplete.component.mjs +114 -0
- package/esm2020/lib/components/form/dropdown/mng-dropdown.component.mjs +113 -0
- package/esm2020/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.mjs +7 -46
- package/esm2020/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.mjs +7 -39
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +1 -1
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +6 -6
- package/esm2020/lib/components/form/index.mjs +3 -1
- package/esm2020/lib/components/layout/breadcrumb.component.mjs +17 -0
- package/esm2020/lib/components/layout/footer.component.mjs +17 -0
- package/esm2020/lib/components/layout/index.mjs +7 -7
- package/esm2020/lib/components/layout/main-layout.component.mjs +33 -0
- package/esm2020/lib/components/layout/menu-item.component.mjs +173 -0
- package/esm2020/lib/components/layout/menu.component.mjs +20 -0
- package/esm2020/lib/components/layout/services/main-layout.component.service.mjs +190 -0
- package/esm2020/lib/components/layout/topbar.component.mjs +40 -0
- package/esm2020/lib/components/tableview/index.mjs +3 -1
- package/esm2020/lib/components/tableview/table/column-filter/column-filter.component.mjs +74 -0
- package/esm2020/lib/components/tableview/table/column-value/column-value.component.mjs +25 -0
- package/esm2020/lib/components/tableview/table/table.component.mjs +175 -41
- package/esm2020/lib/components/tableview/tableview.component.mjs +5 -5
- package/esm2020/lib/mng-commons.module.mjs +70 -40
- package/esm2020/lib/models/config/mng-config.model.mjs +1 -1
- package/esm2020/lib/models/descriptors/action-descriptor.model.mjs +1 -1
- package/esm2020/lib/models/descriptors/editor-descriptor.model.mjs +17 -12
- package/esm2020/lib/models/descriptors/table-descriptor.model.mjs +291 -13
- package/esm2020/lib/models/descriptors/tableview-descriptor.model.mjs +12 -3
- package/esm2020/lib/models/events/table-event.model.mjs +1 -1
- package/esm2020/lib/models/interfaces/index.mjs +2 -1
- package/esm2020/lib/models/interfaces/lookup.model.mjs +2 -0
- package/esm2020/lib/models/providers/data-provider.model.mjs +3 -3
- package/esm2020/lib/models/router/index.mjs +2 -0
- package/esm2020/lib/models/router/router.model.mjs +2 -0
- package/esm2020/lib/models/user/index.mjs +2 -0
- package/esm2020/lib/models/user/user.model.mjs +2 -0
- package/esm2020/lib/pipes/boolean.pipe.mjs +22 -0
- package/esm2020/lib/pipes/index.mjs +2 -1
- package/esm2020/lib/services/action.service.mjs +8 -7
- package/esm2020/lib/services/commons.service.mjs +357 -0
- package/esm2020/lib/services/configuration.service.mjs +7 -7
- package/esm2020/lib/services/index.mjs +2 -4
- package/esm2020/lib/services/navigation.service.mjs +5 -6
- package/esm2020/lib/services/providers/commons-init.provider.mjs +4 -0
- package/esm2020/lib/services/providers/config-service.provider.mjs +5 -5
- package/esm2020/lib/services/providers/formly-config.provider.mjs +2 -2
- package/esm2020/lib/utils/editor-formly.util.mjs +4 -4
- package/esm2020/lib/utils/i18n.util.mjs +37 -3
- package/esm2020/lib/utils/model.util.mjs +20 -1
- package/esm2020/lib/utils/toast.util.mjs +14 -1
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/mediusinc-mng-commons.mjs +3404 -2526
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +3328 -2472
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/api/models/builders/query-param.builder.d.ts +9 -9
- package/lib/api/models/filter-match-type.model.d.ts +7 -5
- package/lib/api/models/filter-param.model.d.ts +3 -3
- package/lib/api/models/query-mode.model.d.ts +1 -1
- package/lib/api/models/query-param.model.d.ts +5 -5
- package/lib/api/models/query-result.model.d.ts +5 -5
- package/lib/api/services/abstract-crud-api.service.d.ts +3 -3
- package/lib/api/utils/medius-rest.util.d.ts +9 -3
- package/lib/components/action/action.component.d.ts +2 -2
- package/lib/components/action/dialog/action-dialog.component.d.ts +3 -2
- package/lib/components/action/route/action-route.component.d.ts +2 -2
- package/lib/components/form/autocomplete/mng-autocomplete.component.d.ts +36 -0
- package/lib/components/form/dropdown/mng-dropdown.component.d.ts +34 -0
- package/lib/components/form/formly/fields/formly-field-autocomplete/formly-field-autocomplete.component.d.ts +1 -11
- package/lib/components/form/formly/fields/formly-field-dropdown/formly-field-dropdown.component.d.ts +0 -8
- package/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.d.ts +3 -3
- package/lib/components/form/index.d.ts +2 -0
- package/lib/components/layout/breadcrumb.component.d.ts +8 -0
- package/lib/components/layout/footer.component.d.ts +9 -0
- package/lib/components/layout/index.d.ts +6 -6
- package/lib/components/layout/main-layout.component.d.ts +13 -0
- package/lib/components/layout/menu-item.component.d.ts +29 -0
- package/lib/components/layout/menu.component.d.ts +10 -0
- package/lib/components/layout/services/main-layout.component.service.d.ts +65 -0
- package/lib/components/layout/topbar.component.d.ts +18 -0
- package/lib/components/tableview/index.d.ts +2 -0
- package/lib/components/tableview/table/column-filter/column-filter.component.d.ts +22 -0
- package/lib/components/tableview/table/column-value/column-value.component.d.ts +12 -0
- package/lib/components/tableview/table/table.component.d.ts +42 -10
- package/lib/components/tableview/tableview.component.d.ts +3 -3
- package/lib/mng-commons.module.d.ts +66 -59
- package/lib/models/config/mng-config.model.d.ts +18 -1
- package/lib/models/descriptors/editor-descriptor.model.d.ts +9 -7
- package/lib/models/descriptors/table-descriptor.model.d.ts +133 -14
- package/lib/models/descriptors/tableview-descriptor.model.d.ts +6 -3
- package/lib/models/events/table-event.model.d.ts +4 -4
- package/lib/models/interfaces/index.d.ts +1 -0
- package/lib/models/interfaces/lookup.model.d.ts +17 -0
- package/lib/models/providers/data-provider.model.d.ts +10 -10
- package/lib/models/router/index.d.ts +1 -0
- package/lib/models/router/router.model.d.ts +9 -0
- package/lib/models/user/index.d.ts +1 -0
- package/lib/models/user/user.model.d.ts +8 -0
- package/lib/pipes/boolean.pipe.d.ts +7 -0
- package/lib/pipes/index.d.ts +1 -0
- package/lib/services/action.service.d.ts +3 -3
- package/lib/services/commons.service.d.ts +74 -0
- package/lib/services/configuration.service.d.ts +3 -3
- package/lib/services/index.d.ts +1 -3
- package/lib/services/navigation.service.d.ts +3 -3
- package/lib/services/providers/commons-init.provider.d.ts +2 -0
- package/lib/services/providers/config-service.provider.d.ts +3 -3
- package/lib/services/providers/formly-config.provider.d.ts +1 -1
- package/lib/utils/i18n.util.d.ts +3 -0
- package/lib/utils/model.util.d.ts +2 -0
- package/lib/utils/toast.util.d.ts +2 -1
- package/mediusinc-mng-commons-0.1.0.tgz +0 -0
- package/package.json +37 -36
- package/public-api.d.ts +2 -0
- package/scss/common/layout/_breadcrumb.scss +96 -0
- package/scss/common/layout/_config.scss +101 -0
- package/scss/common/layout/_dashboard.scss +16 -0
- package/scss/common/layout/_exception.scss +131 -0
- package/scss/common/layout/_footer.scss +29 -0
- package/scss/common/layout/_help.scss +157 -0
- package/scss/common/layout/_inlinemenu.scss +55 -0
- package/scss/common/layout/_invoice.scss +176 -0
- package/scss/common/layout/_landing.scss +639 -0
- package/scss/common/layout/_layout_dark.scss +23 -0
- package/scss/common/layout/_layout_light.scss +23 -0
- package/scss/common/layout/_loader.scss +18 -0
- package/scss/common/layout/_login.scss +106 -0
- package/scss/common/layout/_main.scss +45 -0
- package/scss/common/layout/_mixins.scss +214 -0
- package/scss/common/layout/_rightmenu.scss +125 -0
- package/scss/common/layout/_topbar.scss +189 -0
- package/scss/common/layout/_typography.scss +63 -0
- package/scss/common/layout/_utils.scss +96 -0
- package/scss/common/layout/_widgets.scss +391 -0
- package/scss/common/layout/menu/_menu.scss +7 -0
- package/scss/common/layout/menu/_menu_common.scss +183 -0
- package/scss/common/layout/menu/_menu_overlay.scss +52 -0
- package/scss/common/layout/menu/_menu_sidebar.scss +232 -0
- package/scss/common/layout/menu/_menu_slim.scss +138 -0
- package/scss/common/layout/menu/_menu_static.scss +70 -0
- package/scss/common/layout/menu/_menu_theme.scss +365 -0
- package/scss/common/theme/_theme_dark.scss +5 -0
- package/scss/common/theme/_theme_light.scss +5 -0
- package/scss/common/theme/designer/_colors.scss +18 -0
- package/scss/common/theme/designer/_common.scss +40 -0
- package/scss/common/theme/designer/_components.scss +101 -0
- package/scss/common/theme/designer/_mixins.scss +174 -0
- package/scss/common/theme/designer/components/button/_button.scss +560 -0
- package/scss/common/theme/designer/components/button/_speeddial.scss +79 -0
- package/scss/common/theme/designer/components/button/_splitbutton.scss +1 -0
- package/scss/common/theme/designer/components/data/_carousel.scss +37 -0
- package/scss/common/theme/designer/components/data/_datatable.scss +266 -0
- package/scss/common/theme/designer/components/data/_dataview.scss +55 -0
- package/scss/common/theme/designer/components/data/_filter.scss +138 -0
- package/scss/common/theme/designer/components/data/_fullcalendar.scss +324 -0
- package/scss/common/theme/designer/components/data/_orderlist.scss +91 -0
- package/scss/common/theme/designer/components/data/_organizationchart.scss +50 -0
- package/scss/common/theme/designer/components/data/_paginator.scss +83 -0
- package/scss/common/theme/designer/components/data/_picklist.scss +91 -0
- package/scss/common/theme/designer/components/data/_timeline.scss +38 -0
- package/scss/common/theme/designer/components/data/_tree.scss +144 -0
- package/scss/common/theme/designer/components/data/_treetable.scss +242 -0
- package/scss/common/theme/designer/components/data/_virtualscroller.scss +28 -0
- package/scss/common/theme/designer/components/file/_fileupload.scss +58 -0
- package/scss/common/theme/designer/components/input/_autocomplete.scss +103 -0
- package/scss/common/theme/designer/components/input/_calendar.scss +212 -0
- package/scss/common/theme/designer/components/input/_cascadeselect.scss +98 -0
- package/scss/common/theme/designer/components/input/_checkbox.scss +85 -0
- package/scss/common/theme/designer/components/input/_chips.scss +41 -0
- package/scss/common/theme/designer/components/input/_colorpicker.scss +19 -0
- package/scss/common/theme/designer/components/input/_dropdown.scss +136 -0
- package/scss/common/theme/designer/components/input/_editor.scss +122 -0
- package/scss/common/theme/designer/components/input/_inputgroup.scss +69 -0
- package/scss/common/theme/designer/components/input/_inputmask.scss +3 -0
- package/scss/common/theme/designer/components/input/_inputnumber.scss +3 -0
- package/scss/common/theme/designer/components/input/_inputswitch.scss +58 -0
- package/scss/common/theme/designer/components/input/_inputtext.scss +97 -0
- package/scss/common/theme/designer/components/input/_listbox.scss +82 -0
- package/scss/common/theme/designer/components/input/_multiselect.scss +164 -0
- package/scss/common/theme/designer/components/input/_password.scss +33 -0
- package/scss/common/theme/designer/components/input/_radiobutton.scss +78 -0
- package/scss/common/theme/designer/components/input/_rating.scss +48 -0
- package/scss/common/theme/designer/components/input/_selectbutton.scss +50 -0
- package/scss/common/theme/designer/components/input/_slider.scss +69 -0
- package/scss/common/theme/designer/components/input/_togglebutton.scss +48 -0
- package/scss/common/theme/designer/components/input/_treeselect.scss +89 -0
- package/scss/common/theme/designer/components/menu/_breadcrumb.scss +42 -0
- package/scss/common/theme/designer/components/menu/_contextmenu.scss +50 -0
- package/scss/common/theme/designer/components/menu/_dock.scss +51 -0
- package/scss/common/theme/designer/components/menu/_megamenu.scss +102 -0
- package/scss/common/theme/designer/components/menu/_menu.scss +41 -0
- package/scss/common/theme/designer/components/menu/_menubar.scss +179 -0
- package/scss/common/theme/designer/components/menu/_panelmenu.scss +137 -0
- package/scss/common/theme/designer/components/menu/_slidemenu.scss +55 -0
- package/scss/common/theme/designer/components/menu/_steps.scss +55 -0
- package/scss/common/theme/designer/components/menu/_tabmenu.scss +49 -0
- package/scss/common/theme/designer/components/menu/_tieredmenu.scss +56 -0
- package/scss/common/theme/designer/components/messages/_inlinemessage.scss +64 -0
- package/scss/common/theme/designer/components/messages/_message.scss +102 -0
- package/scss/common/theme/designer/components/messages/_toast.scss +95 -0
- package/scss/common/theme/designer/components/misc/_avatar.scss +30 -0
- package/scss/common/theme/designer/components/misc/_badge.scss +48 -0
- package/scss/common/theme/designer/components/misc/_blockui.scss +3 -0
- package/scss/common/theme/designer/components/misc/_chip.scss +36 -0
- package/scss/common/theme/designer/components/misc/_inplace.scss +17 -0
- package/scss/common/theme/designer/components/misc/_progressbar.scss +17 -0
- package/scss/common/theme/designer/components/misc/_scrolltop.scss +20 -0
- package/scss/common/theme/designer/components/misc/_skeleton.scss +8 -0
- package/scss/common/theme/designer/components/misc/_tag.scss +33 -0
- package/scss/common/theme/designer/components/misc/_terminal.scss +11 -0
- package/scss/common/theme/designer/components/multimedia/_galleria.scss +141 -0
- package/scss/common/theme/designer/components/overlay/_confirmpopup.scss +67 -0
- package/scss/common/theme/designer/components/overlay/_dialog.scss +63 -0
- package/scss/common/theme/designer/components/overlay/_overlaypanel.scss +62 -0
- package/scss/common/theme/designer/components/overlay/_sidebar.scss +27 -0
- package/scss/common/theme/designer/components/overlay/_tooltip.scss +33 -0
- package/scss/common/theme/designer/components/panel/_accordion.scss +119 -0
- package/scss/common/theme/designer/components/panel/_card.scss +30 -0
- package/scss/common/theme/designer/components/panel/_divider.scss +31 -0
- package/scss/common/theme/designer/components/panel/_fieldset.scss +47 -0
- package/scss/common/theme/designer/components/panel/_panel.scss +42 -0
- package/scss/common/theme/designer/components/panel/_scrollpanel.scss +6 -0
- package/scss/common/theme/designer/components/panel/_splitter.scss +19 -0
- package/scss/common/theme/designer/components/panel/_tabview.scss +66 -0
- package/scss/common/theme/designer/components/panel/_toolbar.scss +10 -0
- package/scss/common/theme/extensions/_button.scss +99 -0
- package/scss/common/theme/extensions/_calendar.scss +18 -0
- package/scss/common/theme/extensions/_card.scss +6 -0
- package/scss/common/theme/extensions/_carousel.scss +13 -0
- package/scss/common/theme/extensions/_checkbox.scss +10 -0
- package/scss/common/theme/extensions/_contextmenu.scss +16 -0
- package/scss/common/theme/extensions/_datatable.scss +83 -0
- package/scss/common/theme/extensions/_dialog.scss +14 -0
- package/scss/common/theme/extensions/_fieldset.scss +6 -0
- package/scss/common/theme/extensions/_galleria.scss +25 -0
- package/scss/common/theme/extensions/_megamenu.scss +18 -0
- package/scss/common/theme/extensions/_menu.scss +14 -0
- package/scss/common/theme/extensions/_menubar.scss +14 -0
- package/scss/common/theme/extensions/_orderlist.scss +38 -0
- package/scss/common/theme/extensions/_paginator.scss +19 -0
- package/scss/common/theme/extensions/_panelmenu.scss +20 -0
- package/scss/common/theme/extensions/_password.scss +5 -0
- package/scss/common/theme/extensions/_picklist.scss +38 -0
- package/scss/common/theme/extensions/_radiobutton.scss +8 -0
- package/scss/common/theme/extensions/_sidebar.scss +19 -0
- package/scss/common/theme/extensions/_slidemenu.scss +10 -0
- package/scss/common/theme/extensions/_slider.scss +6 -0
- package/scss/common/theme/extensions/_steps.scss +50 -0
- package/scss/common/theme/extensions/_tieredmenu.scss +14 -0
- package/scss/common/theme/extensions/_toast.scss +6 -0
- package/scss/common/theme/extensions/_tree.scss +36 -0
- package/scss/common/theme/extensions/_treetable.scss +35 -0
- package/scss/common/theme/extensions/_vendor_extensions.scss +27 -0
- package/scss/common/variables/layout/_common.scss +10 -0
- package/scss/common/variables/layout/_layout_dark.scss +70 -0
- package/scss/common/variables/layout/_layout_light.scss +70 -0
- package/scss/common/variables/theme/_theme_dark.scss +897 -0
- package/scss/common/variables/theme/_theme_light.scss +885 -0
- package/scss/layout/default/_mng-variables-layout-dark.scss +2 -0
- package/scss/layout/default/_mng-variables-layout-light.scss +2 -0
- package/scss/layout/default/layout-dark.scss +2 -0
- package/scss/layout/default/layout-light.scss +2 -0
- package/scss/mng-commons-dark.scss +10 -0
- package/scss/mng-commons-light.scss +13 -0
- package/scss/mng-overrides/_layout_action.scss +3 -0
- package/scss/mng-overrides/_layout_dialog.scss +34 -0
- package/scss/mng-overrides/_layout_forms.scss +31 -0
- package/scss/mng-overrides/_layout_radio.scss +3 -0
- package/scss/mng-overrides/_layout_styles.scss +4 -0
- package/scss/mng-overrides/_theme_datatable.scss +9 -0
- package/scss/mng-overrides/_theme_dialog.scss +9 -0
- package/scss/mng-overrides/_theme_dropdown.scss +6 -0
- package/scss/mng-overrides/_theme_styles.scss +9 -0
- package/scss/mng-overrides/_theme_tableview.scss +94 -0
- package/scss/theme/default/_mng-variables-theme-dark.scss +8 -0
- package/scss/theme/default/_mng-variables-theme-light.scss +8 -0
- package/scss/theme/default/theme-dark.scss +2 -0
- package/scss/theme/default/theme-light.scss +2 -0
- package/esm2020/lib/components/layout/app.breadcrumb.component.mjs +0 -26
- package/esm2020/lib/components/layout/app.footer.component.mjs +0 -35
- package/esm2020/lib/components/layout/app.main.component.mjs +0 -25
- package/esm2020/lib/components/layout/app.main.component.service.mjs +0 -133
- package/esm2020/lib/components/layout/app.menu.component.mjs +0 -24
- package/esm2020/lib/components/layout/app.menuitem.component.mjs +0 -241
- package/esm2020/lib/components/layout/app.topbar.component.mjs +0 -135
- package/esm2020/lib/services/breadcrumb.service.mjs +0 -74
- package/esm2020/lib/services/menu.service.mjs +0 -37
- package/esm2020/lib/services/settings.service.mjs +0 -81
- package/lib/components/layout/app.breadcrumb.component.d.ts +0 -14
- package/lib/components/layout/app.footer.component.d.ts +0 -8
- package/lib/components/layout/app.main.component.d.ts +0 -12
- package/lib/components/layout/app.main.component.service.d.ts +0 -40
- package/lib/components/layout/app.menu.component.d.ts +0 -15
- package/lib/components/layout/app.menuitem.component.d.ts +0 -31
- package/lib/components/layout/app.topbar.component.d.ts +0 -15
- package/lib/services/breadcrumb.service.d.ts +0 -15
- package/lib/services/menu.service.d.ts +0 -16
- package/lib/services/settings.service.d.ts +0 -30
- package/mediusinc-mng-commons-0.0.1-rc.4.tgz +0 -0
|
@@ -0,0 +1,365 @@
|
|
|
1
|
+
.layout-menu-wrapper {
|
|
2
|
+
.menu-logo {
|
|
3
|
+
.menu-pin {
|
|
4
|
+
background: $menuIconBg;
|
|
5
|
+
color: $menuIconTextColor;
|
|
6
|
+
|
|
7
|
+
&:hover {
|
|
8
|
+
background: $menuIconHoverBg;
|
|
9
|
+
color: $menuIconHoverTextColor;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.layout-inline-menu {
|
|
15
|
+
&.layout-inline-menu-active {
|
|
16
|
+
.layout-inline-menu-action {
|
|
17
|
+
img {
|
|
18
|
+
border-color: $primaryColor;
|
|
19
|
+
filter: drop-shadow(0px 0px 10px rgba($primaryColor, 0.3));
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&:hover {
|
|
23
|
+
img {
|
|
24
|
+
border-color: $primaryColor;
|
|
25
|
+
filter: drop-shadow(0px 0px 10px rgba($primaryColor, 0.3));
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.layout-inline-menu-action {
|
|
32
|
+
&:hover {
|
|
33
|
+
img {
|
|
34
|
+
border-color: $inlineMenuImageHoverBorderColor;
|
|
35
|
+
filter: drop-shadow(0px 0px 10px rgba(15, 139, 253, 0.3));
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.layout-inline-menu-action-panel {
|
|
41
|
+
.layout-inline-menu-action-item {
|
|
42
|
+
a {
|
|
43
|
+
color: $textColor;
|
|
44
|
+
|
|
45
|
+
&:hover {
|
|
46
|
+
background-color: $submenuItemHoverBg;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@mixin extrenalSubmenuitem {
|
|
55
|
+
li {
|
|
56
|
+
> a {
|
|
57
|
+
color: $submenuItemTextColor;
|
|
58
|
+
|
|
59
|
+
&:hover {
|
|
60
|
+
background-color: $submenuItemHoverBg;
|
|
61
|
+
color: $submenuItemHoverTextColor;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&.active-menuitem {
|
|
66
|
+
> a {
|
|
67
|
+
color: $activeRootMenuItemTextColor;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@mixin internalSubmenu {
|
|
74
|
+
.layout-menu-container {
|
|
75
|
+
.layout-menu {
|
|
76
|
+
> li {
|
|
77
|
+
> a {
|
|
78
|
+
color: $rootMenuItemTextColor;
|
|
79
|
+
|
|
80
|
+
&:hover {
|
|
81
|
+
color: $activeRootMenuItemTextColor;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&.active-menuitem {
|
|
86
|
+
> a {
|
|
87
|
+
color: $activeRootMenuItemTextColor;
|
|
88
|
+
|
|
89
|
+
&::before {
|
|
90
|
+
background-color: $activeRootMenuItemTextColor;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
> ul {
|
|
96
|
+
> li {
|
|
97
|
+
&.active-menuitem {
|
|
98
|
+
background-color: $submenuItemHoverBg;
|
|
99
|
+
|
|
100
|
+
> a {
|
|
101
|
+
background-color: $submenuItemHoverBg;
|
|
102
|
+
color: $submenuItemTextColor;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
li {
|
|
108
|
+
a {
|
|
109
|
+
color: $submenuItemTextColor;
|
|
110
|
+
|
|
111
|
+
&:hover {
|
|
112
|
+
background-color: $submenuItemHoverBg;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
&.active-menuitem {
|
|
117
|
+
> a {
|
|
118
|
+
color: $submenuItemTextColor;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@media (min-width: $tabletBreakpoint + 1) {
|
|
129
|
+
.layout-wrapper {
|
|
130
|
+
&.layout-static {
|
|
131
|
+
.layout-menu-wrapper {
|
|
132
|
+
@include internalSubmenu;
|
|
133
|
+
|
|
134
|
+
.layout-menu-container {
|
|
135
|
+
.layout-menu {
|
|
136
|
+
> li {
|
|
137
|
+
|
|
138
|
+
&.layout-root-menuitem {
|
|
139
|
+
> div {
|
|
140
|
+
color: $rootMenuItemTextColor;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
ul {
|
|
145
|
+
li {
|
|
146
|
+
&.active-menuitem {
|
|
147
|
+
> a {
|
|
148
|
+
border-left-color: $primaryColor;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
&.layout-overlay, &.layout-sidebar {
|
|
160
|
+
.layout-menu-wrapper {
|
|
161
|
+
background: $menuBg;
|
|
162
|
+
|
|
163
|
+
.layout-menu-container {
|
|
164
|
+
.layout-menu {
|
|
165
|
+
> li {
|
|
166
|
+
> a {
|
|
167
|
+
color: $rootMenuItemTextColor;
|
|
168
|
+
|
|
169
|
+
&:hover {
|
|
170
|
+
background-color: $rootMenuItemHoverBg;
|
|
171
|
+
color: $rootMenuItemHoverTextColor;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
&.active-menuitem {
|
|
176
|
+
background: $overlayMenuActiveBg;
|
|
177
|
+
|
|
178
|
+
> a {
|
|
179
|
+
|
|
180
|
+
i {
|
|
181
|
+
color: $rootMenuItemTextColor;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
&:hover {
|
|
185
|
+
background-color: $rootMenuItemHoverBg;
|
|
186
|
+
color: $rootMenuItemHoverTextColor;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
> ul {
|
|
192
|
+
li {
|
|
193
|
+
> a {
|
|
194
|
+
color: $submenuItemTextColor;
|
|
195
|
+
|
|
196
|
+
&:hover {
|
|
197
|
+
background-color: $submenuItemHoverBg;
|
|
198
|
+
color: $submenuItemHoverTextColor;
|
|
199
|
+
}
|
|
200
|
+
&.active-menuitem-routerlink {
|
|
201
|
+
background-color: $overlayMenuItemActiveBg;
|
|
202
|
+
color: $overlayMenuItemActiveTextColor;
|
|
203
|
+
|
|
204
|
+
&:hover {
|
|
205
|
+
color: $overlayMenuItemActiveTextColor;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
&.layout-slim {
|
|
218
|
+
.layout-menu-wrapper {
|
|
219
|
+
background-color: transparent;
|
|
220
|
+
|
|
221
|
+
.layout-menu-container {
|
|
222
|
+
.layout-menu {
|
|
223
|
+
> li {
|
|
224
|
+
&.active-menuitem {
|
|
225
|
+
> a {
|
|
226
|
+
background-color: $slimActiveRootMenuItemBgColor;
|
|
227
|
+
color: $slimActiveRootMenuItemTextColor;
|
|
228
|
+
|
|
229
|
+
&:hover {
|
|
230
|
+
background-color: $slimActiveRootMenuItemBgColor;
|
|
231
|
+
color: $slimActiveRootMenuItemTextColor;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
> a {
|
|
237
|
+
color: $slimRootMenuItemIconColor;
|
|
238
|
+
|
|
239
|
+
&:hover {
|
|
240
|
+
background-color: $rootMenuItemHoverBg;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
&.active-menuitem-routerlink {
|
|
244
|
+
background-color: $slimActiveRootMenuItemBgColor;
|
|
245
|
+
color: $slimActiveRootMenuItemTextColor;
|
|
246
|
+
|
|
247
|
+
&:hover {
|
|
248
|
+
background-color: $slimActiveRootMenuItemBgColor;
|
|
249
|
+
color: $slimActiveRootMenuItemTextColor;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
> ul {
|
|
255
|
+
@include extrenalSubmenuitem;
|
|
256
|
+
background: $menuBg;
|
|
257
|
+
|
|
258
|
+
li {
|
|
259
|
+
a {
|
|
260
|
+
color: $slimMenuItemTextColor;
|
|
261
|
+
|
|
262
|
+
&:hover {
|
|
263
|
+
background-color: $submenuItemHoverBg;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
&.active-menuitem {
|
|
268
|
+
> a {
|
|
269
|
+
color: $slimMenuItemTextColor;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
> a {
|
|
274
|
+
&.active-menuitem-routerlink {
|
|
275
|
+
background-color: $slimActiveRootMenuItemBgColor;
|
|
276
|
+
color: $slimActiveRootMenuItemTextColor;
|
|
277
|
+
|
|
278
|
+
i {
|
|
279
|
+
color: $slimActiveRootMenuItemTextColor;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&:hover {
|
|
283
|
+
color: $slimActiveRootMenuItemTextColor;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
> li {
|
|
290
|
+
&.active-menuitem {
|
|
291
|
+
background-color: $submenuItemHoverBg;
|
|
292
|
+
|
|
293
|
+
> a {
|
|
294
|
+
background-color: $submenuItemHoverBg;
|
|
295
|
+
color: $slimMenuItemTextColor;
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
@media (max-width: $tabletBreakpoint) {
|
|
309
|
+
.layout-menu-wrapper {
|
|
310
|
+
background: $menuBg;
|
|
311
|
+
|
|
312
|
+
.layout-menu-container {
|
|
313
|
+
.layout-menu {
|
|
314
|
+
> li {
|
|
315
|
+
> a {
|
|
316
|
+
color: $rootMenuItemTextColor;
|
|
317
|
+
|
|
318
|
+
&:hover {
|
|
319
|
+
background-color: $rootMenuItemHoverBg;
|
|
320
|
+
color: $rootMenuItemHoverTextColor;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
&.active-menuitem {
|
|
325
|
+
background: $overlayMenuActiveBg;
|
|
326
|
+
|
|
327
|
+
> a {
|
|
328
|
+
color: $rootMenuItemTextColor;
|
|
329
|
+
|
|
330
|
+
i {
|
|
331
|
+
color: $rootMenuItemTextColor;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
&:hover {
|
|
335
|
+
background-color: $rootMenuItemHoverBg;
|
|
336
|
+
color: $rootMenuItemHoverTextColor;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
> ul {
|
|
342
|
+
li {
|
|
343
|
+
> a {
|
|
344
|
+
color: $submenuItemTextColor;
|
|
345
|
+
|
|
346
|
+
&:hover {
|
|
347
|
+
background-color: $submenuItemHoverBg;
|
|
348
|
+
color: $submenuItemHoverTextColor;
|
|
349
|
+
}
|
|
350
|
+
&.active-menuitem-routerlink {
|
|
351
|
+
background-color: $overlayMenuItemActiveBg;
|
|
352
|
+
color: $overlayMenuItemActiveTextColor;
|
|
353
|
+
|
|
354
|
+
&:hover {
|
|
355
|
+
color: $overlayMenuItemActiveTextColor;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
@if variable-exists(colors) {
|
|
3
|
+
@each $name, $color in $colors {
|
|
4
|
+
@for $i from 0 through 5 {
|
|
5
|
+
@if ($i == 0) {
|
|
6
|
+
--#{$name}-50:#{tint($color, (5 - $i) * 19%)};
|
|
7
|
+
}
|
|
8
|
+
@else {
|
|
9
|
+
--#{$name}-#{$i * 100}:#{tint($color, (5 - $i) * 19%)};
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@for $i from 1 through 4 {
|
|
14
|
+
--#{$name}-#{($i + 5) * 100}:#{shade($color, $i * 15%)};
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
* {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.p-component {
|
|
6
|
+
font-family: $fontFamily;
|
|
7
|
+
font-size: $fontSize;
|
|
8
|
+
font-weight: $fontWeight;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.p-component-overlay {
|
|
12
|
+
background-color: $maskBg;
|
|
13
|
+
transition-duration: $transitionDuration;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.p-disabled, .p-component:disabled {
|
|
17
|
+
opacity: $disabledOpacity;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-error {
|
|
21
|
+
color: $errorColor;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-text-secondary {
|
|
25
|
+
color: $textSecondaryColor;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.pi {
|
|
29
|
+
font-size: $primeIconFontSize;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.p-link {
|
|
33
|
+
font-size: $fontSize;
|
|
34
|
+
font-family: $fontFamily;
|
|
35
|
+
border-radius: $borderRadius;
|
|
36
|
+
|
|
37
|
+
&:focus {
|
|
38
|
+
@include focused();
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
@import '_mixins';
|
|
2
|
+
@import '_common';
|
|
3
|
+
@import '_colors';
|
|
4
|
+
|
|
5
|
+
//Input
|
|
6
|
+
@import './components/input/_autocomplete';
|
|
7
|
+
@import './components/input/_calendar';
|
|
8
|
+
// @import './components/input/_cascadeselect';
|
|
9
|
+
@import './components/input/_checkbox';
|
|
10
|
+
@import './components/input/_chips';
|
|
11
|
+
// @import './components/input/_colorpicker';
|
|
12
|
+
@import './components/input/_dropdown';
|
|
13
|
+
@import './components/input/_editor';
|
|
14
|
+
@import './components/input/_inputgroup';
|
|
15
|
+
@import './components/input/_inputmask';
|
|
16
|
+
@import './components/input/_inputnumber';
|
|
17
|
+
@import './components/input/_inputswitch';
|
|
18
|
+
@import './components/input/_inputtext';
|
|
19
|
+
// @import './components/input/_listbox';
|
|
20
|
+
@import './components/input/_multiselect';
|
|
21
|
+
// @import './components/input/_password';
|
|
22
|
+
@import './components/input/_radiobutton';
|
|
23
|
+
// @import './components/input/_rating';
|
|
24
|
+
@import './components/input/_selectbutton';
|
|
25
|
+
// @import './components/input/_slider';
|
|
26
|
+
@import './components/input/_togglebutton';
|
|
27
|
+
@import './components/input/_treeselect';
|
|
28
|
+
|
|
29
|
+
//Button
|
|
30
|
+
@import './components/button/_button';
|
|
31
|
+
// @import './components/button/_speeddial';
|
|
32
|
+
// @import './components/button/_splitbutton';
|
|
33
|
+
|
|
34
|
+
//Data
|
|
35
|
+
// @import './components/data/_carousel';
|
|
36
|
+
@import './components/data/_datatable';
|
|
37
|
+
// @import './components/data/_dataview';
|
|
38
|
+
@import './components/data/_filter';
|
|
39
|
+
// @import './components/data/_fullcalendar';
|
|
40
|
+
// @import './components/data/_orderlist';
|
|
41
|
+
// @import './components/data/_organizationchart';
|
|
42
|
+
@import './components/data/_paginator';
|
|
43
|
+
// @import './components/data/_picklist';
|
|
44
|
+
// @import './components/data/_timeline';
|
|
45
|
+
// @import './components/data/_tree';
|
|
46
|
+
// @import './components/data/_treetable';
|
|
47
|
+
//@import './components/data/_virtualscroller';
|
|
48
|
+
|
|
49
|
+
//Panel
|
|
50
|
+
// @import './components/panel/_accordion';
|
|
51
|
+
@import './components/panel/_card';
|
|
52
|
+
// @import './components/panel/_divider';
|
|
53
|
+
@import './components/panel/_fieldset';
|
|
54
|
+
// @import './components/panel/_panel';
|
|
55
|
+
// @import './components/panel/_scrollpanel';
|
|
56
|
+
// @import './components/panel/_splitter';
|
|
57
|
+
@import './components/panel/_tabview';
|
|
58
|
+
@import './components/panel/_toolbar';
|
|
59
|
+
|
|
60
|
+
//Overlay
|
|
61
|
+
@import './components/overlay/_confirmpopup';
|
|
62
|
+
@import './components/overlay/_dialog';
|
|
63
|
+
// @import './components/overlay/_overlaypanel';
|
|
64
|
+
// @import './components/overlay/_sidebar';
|
|
65
|
+
@import './components/overlay/_tooltip';
|
|
66
|
+
|
|
67
|
+
//File
|
|
68
|
+
// @import './components/file/_fileupload';
|
|
69
|
+
|
|
70
|
+
//Menu
|
|
71
|
+
@import './components/menu/_breadcrumb';
|
|
72
|
+
// @import './components/menu/_contextmenu';
|
|
73
|
+
@import './components/menu/_dock';
|
|
74
|
+
// @import './components/menu/_megamenu';
|
|
75
|
+
// @import './components/menu/_menu';
|
|
76
|
+
// @import './components/menu/_menubar';
|
|
77
|
+
// @import './components/menu/_panelmenu';
|
|
78
|
+
// @import './components/menu/_slidemenu';
|
|
79
|
+
@import './components/menu/_steps';
|
|
80
|
+
// @import './components/menu/_tabmenu';
|
|
81
|
+
// @import './components/menu/_tieredmenu';
|
|
82
|
+
|
|
83
|
+
//Messages
|
|
84
|
+
// @import './components/messages/_inlinemessage';
|
|
85
|
+
@import './components/messages/_message';
|
|
86
|
+
@import 'components/messages/toast';
|
|
87
|
+
|
|
88
|
+
//MultiMedia
|
|
89
|
+
// @import './components/multimedia/_galleria';
|
|
90
|
+
|
|
91
|
+
//Misc
|
|
92
|
+
// @import './components/misc/_avatar';
|
|
93
|
+
// @import './components/misc/_badge';
|
|
94
|
+
@import './components/misc/_blockui';
|
|
95
|
+
@import './components/misc/_chip';
|
|
96
|
+
// @import './components/misc/_inplace';
|
|
97
|
+
// @import './components/misc/_progressbar';
|
|
98
|
+
// @import './components/misc/_scrolltop';
|
|
99
|
+
@import './components/misc/_skeleton';
|
|
100
|
+
@import './components/misc/_tag';
|
|
101
|
+
// @import './components/misc/_terminal';
|