@mediusinc/mng-commons 3.6.0-rc.0 → 3.6.0-rc.2
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/assets/fonts/poppins-v20-latin-500.woff +0 -0
- package/assets/fonts/poppins-v20-latin-500.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff2 +0 -0
- package/esm2022/lib/components/action/action.component.mjs +3 -3
- package/esm2022/lib/components/form/autocomplete/autocomplete.component.mjs +5 -5
- package/esm2022/lib/components/form/date-range/date-range.component.mjs +11 -6
- package/esm2022/lib/components/form/dropdown/dropdown.component.mjs +2 -2
- package/esm2022/lib/components/form/formly/fields/formly-field-action/formly-field-action.component.mjs +2 -2
- package/esm2022/lib/components/form/formly/fields/formly-field-input/formly-field-input.component.mjs +2 -2
- package/esm2022/lib/components/form/formly/fields/formly-field-tabs/formly-field-tabs.component.mjs +2 -2
- package/esm2022/lib/components/layout/topbar.component.mjs +2 -2
- package/esm2022/lib/components/layoutV2/breadcrumb.component.mjs +30 -0
- package/esm2022/lib/components/layoutV2/footer.component.mjs +19 -0
- package/esm2022/lib/components/layoutV2/index.mjs +8 -0
- package/esm2022/lib/components/layoutV2/main-layout.component.mjs +89 -0
- package/esm2022/lib/components/layoutV2/menu-item.component.mjs +229 -0
- package/esm2022/lib/components/layoutV2/menu.component.mjs +31 -0
- package/esm2022/lib/components/layoutV2/model/index.mjs +3 -0
- package/esm2022/lib/components/layoutV2/model/layout-state.model.mjs +2 -0
- package/esm2022/lib/components/layoutV2/model/menu.model.mjs +2 -0
- package/esm2022/lib/components/layoutV2/services/index.mjs +3 -0
- package/esm2022/lib/components/layoutV2/services/main-layout.component.service.mjs +53 -0
- package/esm2022/lib/components/layoutV2/services/menu.service.mjs +122 -0
- package/esm2022/lib/components/layoutV2/sidebar.component.mjs +54 -0
- package/esm2022/lib/components/layoutV2/topbar-user.component.mjs +40 -0
- package/esm2022/lib/components/layoutV2/topbar.component.mjs +75 -0
- package/esm2022/lib/components/layoutV2/version.component.mjs +63 -0
- package/esm2022/lib/components/pages/error/error.page.component.mjs +3 -3
- package/esm2022/lib/components/pages/not-found/not-found.page.component.mjs +3 -3
- package/esm2022/lib/components/tableview/table/column-filter/column-filter.component.mjs +2 -2
- package/esm2022/lib/components/tableview/table/column-filter-full/column-filter-full.component.mjs +2 -2
- package/esm2022/lib/components/tableview/table/column-value/column-value.component.mjs +2 -2
- package/esm2022/lib/components/tableview/table/table.component.mjs +3 -3
- package/esm2022/lib/models/config.model.mjs +1 -1
- package/esm2022/lib/models/index.mjs +2 -1
- package/esm2022/lib/models/menu-config.model.mjs +2 -0
- package/esm2022/lib/models/menu.model.mjs +1 -1
- package/esm2022/lib/router/route-builder.mjs +14 -2
- package/esm2022/lib/router/routes-builder.mjs +9 -1
- package/esm2022/lib/services/action-executor.service.mjs +3 -4
- package/esm2022/lib/utils/route.util.mjs +25 -1
- package/fesm2022/mediusinc-mng-commons.mjs +831 -88
- package/fesm2022/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/components/form/autocomplete/autocomplete.component.d.ts +4 -3
- package/lib/components/form/date-range/date-range.component.d.ts +2 -1
- package/lib/components/layoutV2/breadcrumb.component.d.ts +10 -0
- package/lib/components/layoutV2/footer.component.d.ts +8 -0
- package/lib/components/layoutV2/index.d.ts +7 -0
- package/lib/components/layoutV2/main-layout.component.d.ts +23 -0
- package/lib/components/layoutV2/menu-item.component.d.ts +38 -0
- package/lib/components/layoutV2/menu.component.d.ts +12 -0
- package/lib/components/layoutV2/model/index.d.ts +2 -0
- package/lib/components/layoutV2/model/layout-state.model.d.ts +11 -0
- package/lib/components/layoutV2/model/menu.model.d.ts +4 -0
- package/lib/components/layoutV2/services/index.d.ts +2 -0
- package/lib/components/layoutV2/services/main-layout.component.service.d.ts +14 -0
- package/lib/components/layoutV2/services/menu.service.d.ts +22 -0
- package/lib/components/layoutV2/sidebar.component.d.ts +19 -0
- package/lib/components/layoutV2/topbar-user.component.d.ts +16 -0
- package/lib/components/layoutV2/topbar.component.d.ts +23 -0
- package/lib/components/layoutV2/version.component.d.ts +19 -0
- package/lib/models/config.model.d.ts +9 -8
- package/lib/models/index.d.ts +1 -0
- package/lib/models/menu-config.model.d.ts +15 -0
- package/lib/models/menu.model.d.ts +2 -0
- package/lib/router/route-builder.d.ts +6 -1
- package/lib/router/routes-builder.d.ts +5 -0
- package/lib/utils/route.util.d.ts +19 -30
- package/package.json +2 -2
- package/scss/common/layout/_breadcrumb.scss +0 -1
- package/scss/mng-commons-dark-v2.scss +9 -0
- package/scss/mng-commons-light-v2.scss +9 -0
- package/scss/v2/layout/_animation.scss +53 -0
- package/scss/v2/layout/_breadcrumb.scss +97 -0
- package/scss/v2/layout/_config.scss +42 -0
- package/scss/v2/layout/_content.scss +3 -0
- package/scss/v2/layout/_fonts.scss +32 -0
- package/scss/v2/layout/_layout_dark.scss +12 -0
- package/scss/v2/layout/_layout_light.scss +12 -0
- package/scss/v2/layout/_main.scss +54 -0
- package/scss/v2/layout/_profile.scss +10 -0
- package/scss/v2/layout/_responsive.scss +131 -0
- package/scss/v2/layout/_sidebar_drawer.scss +283 -0
- package/scss/v2/layout/_sidebar_horizontal.scss +168 -0
- package/scss/v2/layout/_sidebar_reveal.scss +201 -0
- package/scss/v2/layout/_sidebar_slim.scss +157 -0
- package/scss/v2/layout/_sidebar_slim_plus.scss +167 -0
- package/scss/v2/layout/_sidebar_vertical.scss +176 -0
- package/scss/v2/layout/_topbar.scss +174 -0
- package/scss/v2/layout/_typography.scss +62 -0
- package/scss/v2/layout/_utils.scss +33 -0
- package/scss/v2/layout/layout.scss +24 -0
- package/scss/v2/layout/mng/_mng_layout_footer.scss +33 -0
- package/scss/v2/layout/mng/_mng_layout_menu.scss +10 -0
- package/scss/v2/layout/mng/_mng_layout_styles.scss +3 -0
- package/scss/v2/layout/mng/_mng_layout_topbar.scss +16 -0
- package/scss/v2/layout/preloading.scss +84 -0
- package/scss/v2/theme/theme-base/_colors.scss +18 -0
- package/scss/v2/theme/theme-base/_common.scss +73 -0
- package/scss/v2/theme/theme-base/_components.scss +106 -0
- package/scss/v2/theme/theme-base/_mixins.scss +203 -0
- package/scss/v2/theme/theme-base/components/button/_button.scss +564 -0
- package/scss/v2/theme/theme-base/components/button/_speeddial.scss +86 -0
- package/scss/v2/theme/theme-base/components/button/_splitbutton.scss +381 -0
- package/scss/v2/theme/theme-base/components/data/_carousel.scss +37 -0
- package/scss/v2/theme/theme-base/components/data/_datatable.scss +338 -0
- package/scss/v2/theme/theme-base/components/data/_dataview.scss +55 -0
- package/scss/v2/theme/theme-base/components/data/_filter.scss +138 -0
- package/scss/v2/theme/theme-base/components/data/_fullcalendar.scss +329 -0
- package/scss/v2/theme/theme-base/components/data/_orderlist.scss +103 -0
- package/scss/v2/theme/theme-base/components/data/_organizationchart.scss +50 -0
- package/scss/v2/theme/theme-base/components/data/_paginator.scss +92 -0
- package/scss/v2/theme/theme-base/components/data/_picklist.scss +103 -0
- package/scss/v2/theme/theme-base/components/data/_timeline.scss +38 -0
- package/scss/v2/theme/theme-base/components/data/_tree.scss +149 -0
- package/scss/v2/theme/theme-base/components/data/_treetable.scss +256 -0
- package/scss/v2/theme/theme-base/components/data/_virtualscroller.scss +28 -0
- package/scss/v2/theme/theme-base/components/file/_fileupload.scss +58 -0
- package/scss/v2/theme/theme-base/components/input/_autocomplete.scss +117 -0
- package/scss/v2/theme/theme-base/components/input/_calendar.scss +263 -0
- package/scss/v2/theme/theme-base/components/input/_cascadeselect.scss +130 -0
- package/scss/v2/theme/theme-base/components/input/_checkbox.scss +90 -0
- package/scss/v2/theme/theme-base/components/input/_chips.scss +54 -0
- package/scss/v2/theme/theme-base/components/input/_colorpicker.scss +19 -0
- package/scss/v2/theme/theme-base/components/input/_dropdown.scss +135 -0
- package/scss/v2/theme/theme-base/components/input/_editor.scss +122 -0
- package/scss/v2/theme/theme-base/components/input/_inputgroup.scss +75 -0
- package/scss/v2/theme/theme-base/components/input/_inputmask.scss +16 -0
- package/scss/v2/theme/theme-base/components/input/_inputnumber.scss +28 -0
- package/scss/v2/theme/theme-base/components/input/_inputswitch.scss +60 -0
- package/scss/v2/theme/theme-base/components/input/_inputtext.scss +99 -0
- package/scss/v2/theme/theme-base/components/input/_listbox.scss +82 -0
- package/scss/v2/theme/theme-base/components/input/_multiselect.scss +173 -0
- package/scss/v2/theme/theme-base/components/input/_password.scss +52 -0
- package/scss/v2/theme/theme-base/components/input/_radiobutton.scss +78 -0
- package/scss/v2/theme/theme-base/components/input/_rating.scss +55 -0
- package/scss/v2/theme/theme-base/components/input/_selectbutton.scss +50 -0
- package/scss/v2/theme/theme-base/components/input/_slider.scss +71 -0
- package/scss/v2/theme/theme-base/components/input/_togglebutton.scss +48 -0
- package/scss/v2/theme/theme-base/components/input/_treeselect.scss +139 -0
- package/scss/v2/theme/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/scss/v2/theme/theme-base/components/menu/_contextmenu.scss +61 -0
- package/scss/v2/theme/theme-base/components/menu/_dock.scss +86 -0
- package/scss/v2/theme/theme-base/components/menu/_megamenu.scss +106 -0
- package/scss/v2/theme/theme-base/components/menu/_menu.scss +45 -0
- package/scss/v2/theme/theme-base/components/menu/_menubar.scss +188 -0
- package/scss/v2/theme/theme-base/components/menu/_panelmenu.scss +140 -0
- package/scss/v2/theme/theme-base/components/menu/_slidemenu.scss +64 -0
- package/scss/v2/theme/theme-base/components/menu/_steps.scss +56 -0
- package/scss/v2/theme/theme-base/components/menu/_tabmenu.scss +74 -0
- package/scss/v2/theme/theme-base/components/menu/_tieredmenu.scss +65 -0
- package/scss/v2/theme/theme-base/components/messages/_inlinemessage.scss +69 -0
- package/scss/v2/theme/theme-base/components/messages/_message.scss +107 -0
- package/scss/v2/theme/theme-base/components/messages/_toast.scss +100 -0
- package/scss/v2/theme/theme-base/components/misc/_avatar.scss +30 -0
- package/scss/v2/theme/theme-base/components/misc/_badge.scss +48 -0
- package/scss/v2/theme/theme-base/components/misc/_blockui.scss +0 -0
- package/scss/v2/theme/theme-base/components/misc/_chip.scss +38 -0
- package/scss/v2/theme/theme-base/components/misc/_inplace.scss +17 -0
- package/scss/v2/theme/theme-base/components/misc/_progressbar.scss +17 -0
- package/scss/v2/theme/theme-base/components/misc/_scrolltop.scss +25 -0
- package/scss/v2/theme/theme-base/components/misc/_skeleton.scss +8 -0
- package/scss/v2/theme/theme-base/components/misc/_tag.scss +40 -0
- package/scss/v2/theme/theme-base/components/misc/_terminal.scss +11 -0
- package/scss/v2/theme/theme-base/components/multimedia/_galleria.scss +149 -0
- package/scss/v2/theme/theme-base/components/multimedia/_image.scss +49 -0
- package/scss/v2/theme/theme-base/components/overlay/_confirmpopup.scss +72 -0
- package/scss/v2/theme/theme-base/components/overlay/_dialog.scss +69 -0
- package/scss/v2/theme/theme-base/components/overlay/_overlaypanel.scss +64 -0
- package/scss/v2/theme/theme-base/components/overlay/_sidebar.scss +27 -0
- package/scss/v2/theme/theme-base/components/overlay/_tooltip.scss +33 -0
- package/scss/v2/theme/theme-base/components/panel/_accordion.scss +119 -0
- package/scss/v2/theme/theme-base/components/panel/_card.scss +30 -0
- package/scss/v2/theme/theme-base/components/panel/_divider.scss +31 -0
- package/scss/v2/theme/theme-base/components/panel/_fieldset.scss +47 -0
- package/scss/v2/theme/theme-base/components/panel/_panel.scss +58 -0
- package/scss/v2/theme/theme-base/components/panel/_scrollpanel.scss +6 -0
- package/scss/v2/theme/theme-base/components/panel/_splitter.scss +19 -0
- package/scss/v2/theme/theme-base/components/panel/_tabview.scss +78 -0
- package/scss/v2/theme/theme-base/components/panel/_toolbar.scss +11 -0
- package/scss/v2/theme/theme-base/mng/_mng_mixins.scss +69 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_autocomplete.scss +34 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_button.scss +68 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_datatable.scss +146 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_datepicker.scss +21 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_dialog.scss +206 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_dropdown.scss +22 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_fileupload.scss +24 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_forms.scss +66 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_image.scss +27 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_input.scss +31 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_menu.scss +5 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_multiselect.scss +20 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_styles.scss +17 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_tableview.scss +97 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_tabview.scss +11 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_toast.scss +3 -0
- package/scss/v2/theme/theme-base/mng/_mng_theme_toolbar.scss +5 -0
- package/scss/v2/theme/theme-base/mng/_mng_variables.scss +15 -0
- package/scss/v2/theme/theme-dark/_extensions.scss +100 -0
- package/scss/v2/theme/theme-dark/_variables.scss +937 -0
- package/scss/v2/theme/theme-dark/blue/theme.scss +13 -0
- package/scss/v2/theme/theme-light/_extensions.scss +100 -0
- package/scss/v2/theme/theme-light/_variables.scss +937 -0
- package/scss/v2/theme/theme-light/blue/theme.scss +13 -0
|
@@ -0,0 +1,381 @@
|
|
|
1
|
+
.p-splitbutton {
|
|
2
|
+
border-radius: $borderRadius;
|
|
3
|
+
|
|
4
|
+
&.p-button-outlined {
|
|
5
|
+
> .p-button {
|
|
6
|
+
background-color: transparent;
|
|
7
|
+
color: $buttonBg;
|
|
8
|
+
border: $outlinedButtonBorder;
|
|
9
|
+
|
|
10
|
+
@include button-states {
|
|
11
|
+
&:hover {
|
|
12
|
+
background: rgba($buttonBg, $textButtonHoverBgOpacity);
|
|
13
|
+
color: $buttonBg;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&:active {
|
|
17
|
+
background: rgba($buttonBg, $textButtonActiveBgOpacity);
|
|
18
|
+
color: $buttonBg;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.p-button-plain {
|
|
24
|
+
> .p-button {
|
|
25
|
+
color: $plainButtonTextColor;
|
|
26
|
+
border-color: $plainButtonTextColor;
|
|
27
|
+
|
|
28
|
+
@include button-states {
|
|
29
|
+
&:hover {
|
|
30
|
+
background: $plainButtonHoverBgColor;
|
|
31
|
+
color: $plainButtonTextColor;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&:active {
|
|
35
|
+
background: $plainButtonActiveBgColor;
|
|
36
|
+
color: $plainButtonTextColor;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&.p-button-text {
|
|
44
|
+
> .p-button {
|
|
45
|
+
background-color: transparent;
|
|
46
|
+
color: $buttonBg;
|
|
47
|
+
border-color: transparent;
|
|
48
|
+
|
|
49
|
+
@include button-states {
|
|
50
|
+
&:hover {
|
|
51
|
+
background: rgba($buttonBg, $textButtonHoverBgOpacity);
|
|
52
|
+
color: $buttonBg;
|
|
53
|
+
border-color: transparent;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&:active {
|
|
57
|
+
background: rgba($buttonBg, $textButtonActiveBgOpacity);
|
|
58
|
+
color: $buttonBg;
|
|
59
|
+
border-color: transparent;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&.p-button-plain {
|
|
65
|
+
> .p-button {
|
|
66
|
+
color: $plainButtonTextColor;
|
|
67
|
+
|
|
68
|
+
@include button-states {
|
|
69
|
+
&:hover {
|
|
70
|
+
background: $plainButtonHoverBgColor;
|
|
71
|
+
color: $plainButtonTextColor;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&:active {
|
|
75
|
+
background: $plainButtonActiveBgColor;
|
|
76
|
+
color: $plainButtonTextColor;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
&.p-button-raised {
|
|
85
|
+
box-shadow: $raisedButtonShadow;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
&.p-button-rounded {
|
|
89
|
+
border-radius: $roundedButtonBorderRadius;
|
|
90
|
+
|
|
91
|
+
> .p-button {
|
|
92
|
+
border-radius: $roundedButtonBorderRadius;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
&.p-button-sm {
|
|
97
|
+
> .p-button {
|
|
98
|
+
@include scaledFontSize($fontSize, $scaleSM);
|
|
99
|
+
@include scaledPadding($buttonPadding, $scaleSM);
|
|
100
|
+
|
|
101
|
+
.p-button-icon {
|
|
102
|
+
@include scaledFontSize($primeIconFontSize, $scaleSM);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
&.p-button-lg {
|
|
108
|
+
> .p-button {
|
|
109
|
+
@include scaledFontSize($fontSize, $scaleLG);
|
|
110
|
+
@include scaledPadding($buttonPadding, $scaleLG);
|
|
111
|
+
|
|
112
|
+
.p-button-icon {
|
|
113
|
+
@include scaledFontSize($primeIconFontSize, $scaleLG);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.p-splitbutton.p-button-secondary {
|
|
120
|
+
&.p-button-outlined {
|
|
121
|
+
> .p-button {
|
|
122
|
+
background-color: transparent;
|
|
123
|
+
color: $secondaryButtonBg;
|
|
124
|
+
border: $outlinedButtonBorder;
|
|
125
|
+
|
|
126
|
+
@include button-states {
|
|
127
|
+
&:hover {
|
|
128
|
+
background: rgba($secondaryButtonBg, $textButtonHoverBgOpacity);
|
|
129
|
+
color: $secondaryButtonBg;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
&:active {
|
|
133
|
+
background: rgba($secondaryButtonBg, $textButtonActiveBgOpacity);
|
|
134
|
+
color: $secondaryButtonBg;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
&.p-button-text {
|
|
141
|
+
> .p-button {
|
|
142
|
+
background-color: transparent;
|
|
143
|
+
color: $secondaryButtonBg;
|
|
144
|
+
border-color: transparent;
|
|
145
|
+
|
|
146
|
+
@include button-states {
|
|
147
|
+
&:hover {
|
|
148
|
+
background: rgba($secondaryButtonBg, $textButtonHoverBgOpacity);
|
|
149
|
+
border-color: transparent;
|
|
150
|
+
color: $secondaryButtonBg;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
&:active {
|
|
154
|
+
background: rgba($secondaryButtonBg, $textButtonActiveBgOpacity);
|
|
155
|
+
border-color: transparent;
|
|
156
|
+
color: $secondaryButtonBg;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.p-splitbutton.p-button-info {
|
|
164
|
+
&.p-button-outlined {
|
|
165
|
+
> .p-button {
|
|
166
|
+
background-color: transparent;
|
|
167
|
+
color: $infoButtonBg;
|
|
168
|
+
border: $outlinedButtonBorder;
|
|
169
|
+
|
|
170
|
+
@include button-states {
|
|
171
|
+
&:hover {
|
|
172
|
+
background: rgba($infoButtonBg, $textButtonHoverBgOpacity);
|
|
173
|
+
color: $infoButtonBg;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
&:active {
|
|
177
|
+
background: rgba($infoButtonBg, $textButtonActiveBgOpacity);
|
|
178
|
+
color: $infoButtonBg;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
&.p-button-text {
|
|
185
|
+
> .p-button {
|
|
186
|
+
background-color: transparent;
|
|
187
|
+
color: $infoButtonBg;
|
|
188
|
+
border-color: transparent;
|
|
189
|
+
|
|
190
|
+
@include button-states {
|
|
191
|
+
&:hover {
|
|
192
|
+
background: rgba($infoButtonBg, $textButtonHoverBgOpacity);
|
|
193
|
+
border-color: transparent;
|
|
194
|
+
color: $infoButtonBg;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
&:active {
|
|
198
|
+
background: rgba($infoButtonBg, $textButtonActiveBgOpacity);
|
|
199
|
+
border-color: transparent;
|
|
200
|
+
color: $infoButtonBg;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.p-splitbutton.p-button-success {
|
|
208
|
+
&.p-button-outlined {
|
|
209
|
+
> .p-button {
|
|
210
|
+
background-color: transparent;
|
|
211
|
+
color: $successButtonBg;
|
|
212
|
+
border: $outlinedButtonBorder;
|
|
213
|
+
|
|
214
|
+
@include button-states {
|
|
215
|
+
&:hover {
|
|
216
|
+
background: rgba($successButtonBg, $textButtonHoverBgOpacity);
|
|
217
|
+
color: $successButtonBg;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
&:active {
|
|
221
|
+
background: rgba($successButtonBg, $textButtonActiveBgOpacity);
|
|
222
|
+
color: $successButtonBg;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
&.p-button-text {
|
|
229
|
+
> .p-button {
|
|
230
|
+
background-color: transparent;
|
|
231
|
+
color: $successButtonBg;
|
|
232
|
+
border-color: transparent;
|
|
233
|
+
|
|
234
|
+
@include button-states {
|
|
235
|
+
&:hover {
|
|
236
|
+
background: rgba($successButtonBg, $textButtonHoverBgOpacity);
|
|
237
|
+
border-color: transparent;
|
|
238
|
+
color: $successButtonBg;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
&:active {
|
|
242
|
+
background: rgba($successButtonBg, $textButtonActiveBgOpacity);
|
|
243
|
+
border-color: transparent;
|
|
244
|
+
color: $successButtonBg;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.p-splitbutton.p-button-warning {
|
|
252
|
+
&.p-button-outlined {
|
|
253
|
+
> .p-button {
|
|
254
|
+
background-color: transparent;
|
|
255
|
+
color: $warningButtonBg;
|
|
256
|
+
border: $outlinedButtonBorder;
|
|
257
|
+
|
|
258
|
+
@include button-states {
|
|
259
|
+
&:hover {
|
|
260
|
+
background: rgba($warningButtonBg, $textButtonHoverBgOpacity);
|
|
261
|
+
color: $warningButtonBg;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
&:active {
|
|
265
|
+
background: rgba($warningButtonBg, $textButtonActiveBgOpacity);
|
|
266
|
+
color: $warningButtonBg;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
&.p-button-text {
|
|
273
|
+
> .p-button {
|
|
274
|
+
background-color: transparent;
|
|
275
|
+
color: $warningButtonBg;
|
|
276
|
+
border-color: transparent;
|
|
277
|
+
|
|
278
|
+
@include button-states {
|
|
279
|
+
&:hover {
|
|
280
|
+
background: rgba($warningButtonBg, $textButtonHoverBgOpacity);
|
|
281
|
+
border-color: transparent;
|
|
282
|
+
color: $warningButtonBg;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
&:active {
|
|
286
|
+
background: rgba($warningButtonBg, $textButtonActiveBgOpacity);
|
|
287
|
+
border-color: transparent;
|
|
288
|
+
color: $warningButtonBg;
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.p-splitbutton.p-button-help {
|
|
296
|
+
&.p-button-outlined {
|
|
297
|
+
> .p-button {
|
|
298
|
+
background-color: transparent;
|
|
299
|
+
color: $helpButtonBg;
|
|
300
|
+
border: $outlinedButtonBorder;
|
|
301
|
+
|
|
302
|
+
@include button-states {
|
|
303
|
+
&:hover {
|
|
304
|
+
background: rgba($helpButtonBg, $textButtonHoverBgOpacity);
|
|
305
|
+
color: $helpButtonBg;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
&:active {
|
|
309
|
+
background: rgba($helpButtonBg, $textButtonActiveBgOpacity);
|
|
310
|
+
color: $helpButtonBg;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
&.p-button-text {
|
|
317
|
+
> .p-button {
|
|
318
|
+
background-color: transparent;
|
|
319
|
+
color: $helpButtonBg;
|
|
320
|
+
border-color: transparent;
|
|
321
|
+
|
|
322
|
+
@include button-states {
|
|
323
|
+
&:hover {
|
|
324
|
+
background: rgba($helpButtonBg, $textButtonHoverBgOpacity);
|
|
325
|
+
border-color: transparent;
|
|
326
|
+
color: $helpButtonBg;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
&:active {
|
|
330
|
+
background: rgba($helpButtonBg, $textButtonActiveBgOpacity);
|
|
331
|
+
border-color: transparent;
|
|
332
|
+
color: $helpButtonBg;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.p-splitbutton.p-button-danger {
|
|
340
|
+
&.p-button-outlined {
|
|
341
|
+
> .p-button {
|
|
342
|
+
background-color: transparent;
|
|
343
|
+
color: $dangerButtonBg;
|
|
344
|
+
border: $outlinedButtonBorder;
|
|
345
|
+
|
|
346
|
+
@include button-states {
|
|
347
|
+
&:hover {
|
|
348
|
+
background: rgba($dangerButtonBg, $textButtonHoverBgOpacity);
|
|
349
|
+
color: $dangerButtonBg;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
&:active {
|
|
353
|
+
background: rgba($dangerButtonBg, $textButtonActiveBgOpacity);
|
|
354
|
+
color: $dangerButtonBg;
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
&.p-button-text {
|
|
361
|
+
> .p-button {
|
|
362
|
+
background-color: transparent;
|
|
363
|
+
color: $dangerButtonBg;
|
|
364
|
+
border-color: transparent;
|
|
365
|
+
|
|
366
|
+
@include button-states {
|
|
367
|
+
&:hover {
|
|
368
|
+
background: rgba($dangerButtonBg, $textButtonHoverBgOpacity);
|
|
369
|
+
border-color: transparent;
|
|
370
|
+
color: $dangerButtonBg;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
&:active {
|
|
374
|
+
background: rgba($dangerButtonBg, $textButtonActiveBgOpacity);
|
|
375
|
+
border-color: transparent;
|
|
376
|
+
color: $dangerButtonBg;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.p-carousel {
|
|
2
|
+
.p-carousel-content {
|
|
3
|
+
.p-carousel-prev,
|
|
4
|
+
.p-carousel-next {
|
|
5
|
+
@include action-icon();
|
|
6
|
+
margin: $inlineSpacing;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-carousel-indicators {
|
|
11
|
+
padding: $carouselIndicatorsPadding;
|
|
12
|
+
|
|
13
|
+
.p-carousel-indicator {
|
|
14
|
+
margin-right: $inlineSpacing;
|
|
15
|
+
margin-bottom: $inlineSpacing;
|
|
16
|
+
|
|
17
|
+
button {
|
|
18
|
+
background-color: $carouselIndicatorBg;
|
|
19
|
+
width: $carouselIndicatorWidth;
|
|
20
|
+
height: $carouselIndicatorHeight;
|
|
21
|
+
transition: $actionIconTransition;
|
|
22
|
+
border-radius: $carouselIndicatorBorderRadius;
|
|
23
|
+
|
|
24
|
+
&:hover {
|
|
25
|
+
background: $carouselIndicatorHoverBg;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.p-highlight {
|
|
30
|
+
button {
|
|
31
|
+
background: $highlightBg;
|
|
32
|
+
color: $highlightTextColor;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|