spiderly 0.0.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/README.md +3 -0
- package/esm2022/lib/components/auth/auth.module.mjs +65 -0
- package/esm2022/lib/components/auth/login/login.component.mjs +60 -0
- package/esm2022/lib/components/auth/partials/auth.component.mjs +53 -0
- package/esm2022/lib/components/auth/partials/login-verification.component.mjs +39 -0
- package/esm2022/lib/components/auth/partials/registration-verification.component.mjs +37 -0
- package/esm2022/lib/components/auth/partials/verification-wrapper.component.mjs +74 -0
- package/esm2022/lib/components/auth/registration/registration.component.mjs +59 -0
- package/esm2022/lib/components/base-details/role-base-details.component.mjs +171 -0
- package/esm2022/lib/components/base-form/base-form copy.mjs +247 -0
- package/esm2022/lib/components/card-skeleton/card-skeleton.component.mjs +25 -0
- package/esm2022/lib/components/footer/footer.component.mjs +16 -0
- package/esm2022/lib/components/index-card/index-card.component.mjs +57 -0
- package/esm2022/lib/components/info-card/info-card.component.mjs +29 -0
- package/esm2022/lib/components/layout/layout-base.component.mjs +120 -0
- package/esm2022/lib/components/layout/sidebar/menuitem.component.mjs +161 -0
- package/esm2022/lib/components/layout/sidebar/sidebar-menu.component.mjs +34 -0
- package/esm2022/lib/components/layout/sidebar/sidebar-menu.service.mjs +26 -0
- package/esm2022/lib/components/layout/sidebar/sidebar.component.mjs +21 -0
- package/esm2022/lib/components/layout/topbar/topbar.component.mjs +115 -0
- package/esm2022/lib/components/not-found/not-found.component.mjs +20 -0
- package/esm2022/lib/components/required/required.component.mjs +12 -0
- package/esm2022/lib/components/spiderly-buttons/google-button/google-button.component.mjs +43 -0
- package/esm2022/lib/components/spiderly-buttons/return-button/return-button.component.mjs +37 -0
- package/esm2022/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.mjs +20 -0
- package/esm2022/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.mjs +68 -0
- package/esm2022/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.mjs +22 -0
- package/esm2022/lib/components/spiderly-data-table/spiderly-data-table.component.mjs +502 -0
- package/esm2022/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.mjs +42 -0
- package/esm2022/lib/components/spiderly-form-control/spiderly-form-control.mjs +36 -0
- package/esm2022/lib/components/spiderly-panels/panel-body/panel-body.component.mjs +19 -0
- package/esm2022/lib/components/spiderly-panels/panel-footer/panel-footer.component.mjs +14 -0
- package/esm2022/lib/components/spiderly-panels/panel-header/panel-header.component.mjs +49 -0
- package/esm2022/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.mjs +20 -0
- package/esm2022/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.mjs +63 -0
- package/esm2022/lib/components/spiderly-panels/spiderly-panels.module.mjs +49 -0
- package/esm2022/lib/controls/base-autocomplete-control.mjs +18 -0
- package/esm2022/lib/controls/base-control.mjs +62 -0
- package/esm2022/lib/controls/base-dropdown-control.mjs +37 -0
- package/esm2022/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.mjs +60 -0
- package/esm2022/lib/controls/spiderly-calendar/spiderly-calendar.component.mjs +39 -0
- package/esm2022/lib/controls/spiderly-checkbox/spiderly-checkbox.component.mjs +45 -0
- package/esm2022/lib/controls/spiderly-colorpick/spiderly-colorpick.component.mjs +40 -0
- package/esm2022/lib/controls/spiderly-controls.module.mjs +112 -0
- package/esm2022/lib/controls/spiderly-dropdown/spiderly-dropdown.component.mjs +40 -0
- package/esm2022/lib/controls/spiderly-editor/spiderly-editor.component.mjs +59 -0
- package/esm2022/lib/controls/spiderly-file/spiderly-file.component.mjs +106 -0
- package/esm2022/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.mjs +38 -0
- package/esm2022/lib/controls/spiderly-multiselect/spiderly-multiselect.component.mjs +34 -0
- package/esm2022/lib/controls/spiderly-number/spiderly-number.component.mjs +44 -0
- package/esm2022/lib/controls/spiderly-password/spiderly-password.component.mjs +37 -0
- package/esm2022/lib/controls/spiderly-textarea/spiderly-textarea.component.mjs +34 -0
- package/esm2022/lib/controls/spiderly-textbox/spiderly-textbox.component.mjs +45 -0
- package/esm2022/lib/entities/base-entity.mjs +18 -0
- package/esm2022/lib/entities/codebook.mjs +10 -0
- package/esm2022/lib/entities/init-company-auth-dialog-details.mjs +9 -0
- package/esm2022/lib/entities/init-top-bar-data.mjs +12 -0
- package/esm2022/lib/entities/is-authorized-for-save-event.mjs +9 -0
- package/esm2022/lib/entities/last-menu-icon-index-clicked.mjs +8 -0
- package/esm2022/lib/entities/lazy-load-selected-ids-result.mjs +11 -0
- package/esm2022/lib/entities/menuchangeevent.mjs +3 -0
- package/esm2022/lib/entities/mime-type.mjs +15 -0
- package/esm2022/lib/entities/namebook.mjs +9 -0
- package/esm2022/lib/entities/primeng-option.mjs +9 -0
- package/esm2022/lib/entities/security-entities.mjs +169 -0
- package/esm2022/lib/entities/simple-save-result.mjs +9 -0
- package/esm2022/lib/entities/spiderly-button.mjs +11 -0
- package/esm2022/lib/entities/table-filter-context.mjs +3 -0
- package/esm2022/lib/entities/table-filter-sort-meta.mjs +3 -0
- package/esm2022/lib/entities/table-filter.mjs +15 -0
- package/esm2022/lib/entities/table-response.mjs +3 -0
- package/esm2022/lib/enums/security-enums.mjs +26 -0
- package/esm2022/lib/enums/verification-type-codes.mjs +6 -0
- package/esm2022/lib/guards/auth.guard.mjs +40 -0
- package/esm2022/lib/guards/not-auth.guard.mjs +32 -0
- package/esm2022/lib/handlers/spiderly-error-handler.mjs +30 -0
- package/esm2022/lib/handlers/spiderly-transloco-fallback-strategy.mjs +24 -0
- package/esm2022/lib/interceptors/http-loading.interceptor.mjs +27 -0
- package/esm2022/lib/interceptors/json-parser.interceptor.mjs +47 -0
- package/esm2022/lib/interceptors/jwt.interceptor.mjs +27 -0
- package/esm2022/lib/interceptors/unauthorized.interceptor.mjs +64 -0
- package/esm2022/lib/modules/core.module.mjs +140 -0
- package/esm2022/lib/modules/primeng.module.mjs +278 -0
- package/esm2022/lib/modules/spiderly-transloco.module.mjs +44 -0
- package/esm2022/lib/services/api.service.security.mjs +86 -0
- package/esm2022/lib/services/app-initializer.mjs +6 -0
- package/esm2022/lib/services/app-layout-base.service.mjs +132 -0
- package/esm2022/lib/services/auth-base.service.mjs +220 -0
- package/esm2022/lib/services/base-form.service.mjs +124 -0
- package/esm2022/lib/services/config-base.service.mjs +33 -0
- package/esm2022/lib/services/helper-functions.mjs +229 -0
- package/esm2022/lib/services/spiderly-message.service.mjs +64 -0
- package/esm2022/lib/services/spiderly-transloco-loader.mjs +20 -0
- package/esm2022/lib/services/translate-labels-abstract.service.mjs +15 -0
- package/esm2022/lib/services/validator-abstract.service.mjs +51 -0
- package/esm2022/public-api.mjs +94 -0
- package/esm2022/spiderly.mjs +5 -0
- package/fesm2022/spiderly.mjs +4807 -0
- package/fesm2022/spiderly.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/auth/auth.module.d.ts +17 -0
- package/lib/components/auth/login/login.component.d.ts +35 -0
- package/lib/components/auth/partials/auth.component.d.ts +21 -0
- package/lib/components/auth/partials/login-verification.component.d.ts +18 -0
- package/lib/components/auth/partials/registration-verification.component.d.ts +17 -0
- package/lib/components/auth/partials/verification-wrapper.component.d.ts +31 -0
- package/lib/components/auth/registration/registration.component.d.ts +34 -0
- package/lib/components/base-details/role-base-details.component.d.ts +50 -0
- package/lib/components/base-form/base-form copy.d.ts +54 -0
- package/lib/components/card-skeleton/card-skeleton.component.d.ts +12 -0
- package/lib/components/footer/footer.component.d.ts +9 -0
- package/lib/components/index-card/index-card.component.d.ts +22 -0
- package/lib/components/info-card/info-card.component.d.ts +11 -0
- package/lib/components/layout/layout-base.component.d.ts +37 -0
- package/lib/components/layout/sidebar/menuitem.component.d.ts +43 -0
- package/lib/components/layout/sidebar/sidebar-menu.component.d.ts +23 -0
- package/lib/components/layout/sidebar/sidebar-menu.service.d.ts +12 -0
- package/lib/components/layout/sidebar/sidebar.component.d.ts +11 -0
- package/lib/components/layout/topbar/topbar.component.d.ts +45 -0
- package/lib/components/not-found/not-found.component.d.ts +9 -0
- package/lib/components/required/required.component.d.ts +6 -0
- package/lib/components/spiderly-buttons/google-button/google-button.component.d.ts +17 -0
- package/lib/components/spiderly-buttons/return-button/return-button.component.d.ts +10 -0
- package/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.d.ts +6 -0
- package/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.d.ts +27 -0
- package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts +8 -0
- package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +157 -0
- package/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.d.ts +11 -0
- package/lib/components/spiderly-form-control/spiderly-form-control.d.ts +37 -0
- package/lib/components/spiderly-panels/panel-body/panel-body.component.d.ts +9 -0
- package/lib/components/spiderly-panels/panel-footer/panel-footer.component.d.ts +8 -0
- package/lib/components/spiderly-panels/panel-header/panel-header.component.d.ts +29 -0
- package/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.d.ts +10 -0
- package/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.d.ts +25 -0
- package/lib/components/spiderly-panels/spiderly-panels.module.d.ts +13 -0
- package/lib/controls/base-autocomplete-control.d.ts +9 -0
- package/lib/controls/base-control.d.ts +23 -0
- package/lib/controls/base-dropdown-control.d.ts +18 -0
- package/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.d.ts +18 -0
- package/lib/controls/spiderly-calendar/spiderly-calendar.component.d.ts +13 -0
- package/lib/controls/spiderly-checkbox/spiderly-checkbox.component.d.ts +14 -0
- package/lib/controls/spiderly-colorpick/spiderly-colorpick.component.d.ts +11 -0
- package/lib/controls/spiderly-controls.module.d.ts +22 -0
- package/lib/controls/spiderly-dropdown/spiderly-dropdown.component.d.ts +14 -0
- package/lib/controls/spiderly-editor/spiderly-editor.component.d.ts +16 -0
- package/lib/controls/spiderly-file/spiderly-file.component.d.ts +36 -0
- package/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.d.ts +13 -0
- package/lib/controls/spiderly-multiselect/spiderly-multiselect.component.d.ts +11 -0
- package/lib/controls/spiderly-number/spiderly-number.component.d.ts +15 -0
- package/lib/controls/spiderly-password/spiderly-password.component.d.ts +12 -0
- package/lib/controls/spiderly-textarea/spiderly-textarea.component.d.ts +11 -0
- package/lib/controls/spiderly-textbox/spiderly-textbox.component.d.ts +15 -0
- package/lib/entities/base-entity.d.ts +14 -0
- package/lib/entities/codebook.d.ts +9 -0
- package/lib/entities/init-company-auth-dialog-details.d.ts +9 -0
- package/lib/entities/init-top-bar-data.d.ts +16 -0
- package/lib/entities/is-authorized-for-save-event.d.ts +9 -0
- package/lib/entities/last-menu-icon-index-clicked.d.ts +7 -0
- package/lib/entities/lazy-load-selected-ids-result.d.ts +9 -0
- package/lib/entities/menuchangeevent.d.ts +4 -0
- package/lib/entities/mime-type.d.ts +11 -0
- package/lib/entities/namebook.d.ts +9 -0
- package/lib/entities/primeng-option.d.ts +9 -0
- package/lib/entities/security-entities.d.ts +211 -0
- package/lib/entities/simple-save-result.d.ts +7 -0
- package/lib/entities/spiderly-button.d.ts +13 -0
- package/lib/entities/table-filter-context.d.ts +5 -0
- package/lib/entities/table-filter-sort-meta.d.ts +4 -0
- package/lib/entities/table-filter.d.ts +23 -0
- package/lib/entities/table-response.d.ts +4 -0
- package/lib/enums/security-enums.d.ts +22 -0
- package/lib/enums/verification-type-codes.d.ts +4 -0
- package/lib/guards/auth.guard.d.ts +15 -0
- package/lib/guards/not-auth.guard.d.ts +12 -0
- package/lib/handlers/spiderly-error-handler.d.ts +14 -0
- package/lib/handlers/spiderly-transloco-fallback-strategy.d.ts +13 -0
- package/lib/interceptors/http-loading.interceptor.d.ts +11 -0
- package/lib/interceptors/json-parser.interceptor.d.ts +11 -0
- package/lib/interceptors/jwt.interceptor.d.ts +11 -0
- package/lib/interceptors/unauthorized.interceptor.d.ts +16 -0
- package/lib/modules/core.module.d.ts +13 -0
- package/lib/modules/primeng.module.d.ts +42 -0
- package/lib/modules/spiderly-transloco.module.d.ts +9 -0
- package/lib/services/api.service.security.d.ts +35 -0
- package/lib/services/app-initializer.d.ts +4 -0
- package/lib/services/app-layout-base.service.d.ts +60 -0
- package/lib/services/auth-base.service.d.ts +55 -0
- package/lib/services/base-form.service.d.ts +27 -0
- package/lib/services/config-base.service.d.ts +24 -0
- package/lib/services/helper-functions.d.ts +37 -0
- package/lib/services/spiderly-message.service.d.ts +17 -0
- package/lib/services/spiderly-transloco-loader.d.ts +10 -0
- package/lib/services/translate-labels-abstract.service.d.ts +7 -0
- package/lib/services/validator-abstract.service.d.ts +13 -0
- package/package.json +60 -0
- package/public-api.d.ts +90 -0
- package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +34 -0
- package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +10 -0
- package/styles/styles/layout/_config.scss +42 -0
- package/styles/styles/layout/_content.scss +12 -0
- package/styles/styles/layout/_footer.scss +9 -0
- package/styles/styles/layout/_main.scss +28 -0
- package/styles/styles/layout/_menu.scss +135 -0
- package/styles/styles/layout/_mixins.scss +13 -0
- package/styles/styles/layout/_preloading.scss +47 -0
- package/styles/styles/layout/_responsive.scss +100 -0
- package/styles/styles/layout/_spiderly-controls.scss +12 -0
- package/styles/styles/layout/_topbar.scss +231 -0
- package/styles/styles/layout/_typography.scss +63 -0
- package/styles/styles/layout/_utils.scss +20 -0
- package/styles/styles/layout/_variables.scss +903 -0
- package/styles/styles/layout/layout.scss +13 -0
- package/styles/styles/shared.scss +519 -0
- package/styles/styles/styles.scss +6 -0
- package/styles/styles/theme/base/_colors.scss +18 -0
- package/styles/styles/theme/base/_common.scss +75 -0
- package/styles/styles/theme/base/_components.scss +106 -0
- package/styles/styles/theme/base/_mixins.scss +343 -0
- package/styles/styles/theme/base/components/button/_button.scss +564 -0
- package/styles/styles/theme/base/components/button/_speeddial.scss +96 -0
- package/styles/styles/theme/base/components/button/_splitbutton.scss +381 -0
- package/styles/styles/theme/base/components/data/_carousel.scss +37 -0
- package/styles/styles/theme/base/components/data/_datatable.scss +338 -0
- package/styles/styles/theme/base/components/data/_dataview.scss +55 -0
- package/styles/styles/theme/base/components/data/_filter.scss +138 -0
- package/styles/styles/theme/base/components/data/_orderlist.scss +103 -0
- package/styles/styles/theme/base/components/data/_organizationchart.scss +50 -0
- package/styles/styles/theme/base/components/data/_paginator.scss +92 -0
- package/styles/styles/theme/base/components/data/_picklist.scss +103 -0
- package/styles/styles/theme/base/components/data/_timeline.scss +81 -0
- package/styles/styles/theme/base/components/data/_tree.scss +149 -0
- package/styles/styles/theme/base/components/data/_treetable.scss +256 -0
- package/styles/styles/theme/base/components/data/_virtualscroller.scss +28 -0
- package/styles/styles/theme/base/components/file/_fileupload.scss +64 -0
- package/styles/styles/theme/base/components/input/_autocomplete.scss +118 -0
- package/styles/styles/theme/base/components/input/_calendar.scss +263 -0
- package/styles/styles/theme/base/components/input/_cascadeselect.scss +130 -0
- package/styles/styles/theme/base/components/input/_checkbox.scss +90 -0
- package/styles/styles/theme/base/components/input/_chips.scss +55 -0
- package/styles/styles/theme/base/components/input/_colorpicker.scss +26 -0
- package/styles/styles/theme/base/components/input/_dropdown.scss +152 -0
- package/styles/styles/theme/base/components/input/_editor.scss +122 -0
- package/styles/styles/theme/base/components/input/_inputgroup.scss +75 -0
- package/styles/styles/theme/base/components/input/_inputmask.scss +16 -0
- package/styles/styles/theme/base/components/input/_inputnumber.scss +28 -0
- package/styles/styles/theme/base/components/input/_inputswitch.scss +60 -0
- package/styles/styles/theme/base/components/input/_inputtext.scss +100 -0
- package/styles/styles/theme/base/components/input/_listbox.scss +82 -0
- package/styles/styles/theme/base/components/input/_multiselect.scss +173 -0
- package/styles/styles/theme/base/components/input/_password.scss +52 -0
- package/styles/styles/theme/base/components/input/_radiobutton.scss +78 -0
- package/styles/styles/theme/base/components/input/_rating.scss +55 -0
- package/styles/styles/theme/base/components/input/_selectbutton.scss +50 -0
- package/styles/styles/theme/base/components/input/_slider.scss +71 -0
- package/styles/styles/theme/base/components/input/_togglebutton.scss +48 -0
- package/styles/styles/theme/base/components/input/_treeselect.scss +139 -0
- package/styles/styles/theme/base/components/menu/_breadcrumb.scss +42 -0
- package/styles/styles/theme/base/components/menu/_contextmenu.scss +39 -0
- package/styles/styles/theme/base/components/menu/_dock.scss +95 -0
- package/styles/styles/theme/base/components/menu/_megamenu.scss +55 -0
- package/styles/styles/theme/base/components/menu/_menu.scss +37 -0
- package/styles/styles/theme/base/components/menu/_menubar.scss +141 -0
- package/styles/styles/theme/base/components/menu/_panelmenu.scss +153 -0
- package/styles/styles/theme/base/components/menu/_slidemenu.scss +59 -0
- package/styles/styles/theme/base/components/menu/_steps.scss +56 -0
- package/styles/styles/theme/base/components/menu/_tabmenu.scss +74 -0
- package/styles/styles/theme/base/components/menu/_tieredmenu.scss +43 -0
- package/styles/styles/theme/base/components/messages/_inlinemessage.scss +69 -0
- package/styles/styles/theme/base/components/messages/_message.scss +107 -0
- package/styles/styles/theme/base/components/messages/_toast.scss +103 -0
- package/styles/styles/theme/base/components/misc/_avatar.scss +30 -0
- package/styles/styles/theme/base/components/misc/_badge.scss +48 -0
- package/styles/styles/theme/base/components/misc/_blockui.scss +0 -0
- package/styles/styles/theme/base/components/misc/_chip.scss +42 -0
- package/styles/styles/theme/base/components/misc/_inplace.scss +17 -0
- package/styles/styles/theme/base/components/misc/_progressbar.scss +17 -0
- package/styles/styles/theme/base/components/misc/_scrolltop.scss +25 -0
- package/styles/styles/theme/base/components/misc/_skeleton.scss +8 -0
- package/styles/styles/theme/base/components/misc/_tag.scss +40 -0
- package/styles/styles/theme/base/components/misc/_terminal.scss +12 -0
- package/styles/styles/theme/base/components/multimedia/_galleria.scss +155 -0
- package/styles/styles/theme/base/components/multimedia/_image.scss +49 -0
- package/styles/styles/theme/base/components/overlay/_confirmpopup.scss +72 -0
- package/styles/styles/theme/base/components/overlay/_dialog.scss +73 -0
- package/styles/styles/theme/base/components/overlay/_overlaypanel.scss +64 -0
- package/styles/styles/theme/base/components/overlay/_sidebar.scss +27 -0
- package/styles/styles/theme/base/components/overlay/_tooltip.scss +33 -0
- package/styles/styles/theme/base/components/panel/_accordion.scss +119 -0
- package/styles/styles/theme/base/components/panel/_card.scss +30 -0
- package/styles/styles/theme/base/components/panel/_divider.scss +31 -0
- package/styles/styles/theme/base/components/panel/_fieldset.scss +47 -0
- package/styles/styles/theme/base/components/panel/_panel.scss +58 -0
- package/styles/styles/theme/base/components/panel/_scrollpanel.scss +6 -0
- package/styles/styles/theme/base/components/panel/_splitter.scss +19 -0
- package/styles/styles/theme/base/components/panel/_tabview.scss +82 -0
- package/styles/styles/theme/base/components/panel/_toolbar.scss +11 -0
- package/styles/styles/theme/saga/_extensions.scss +27 -0
- package/styles/styles/theme/saga/_variables.scss +1 -0
- package/styles/styles/theme/saga/saga-blue/_extensions.scss +2 -0
- package/styles/styles/theme/saga/saga-blue/_fonts.scss +1 -0
- package/styles/styles/theme/saga/saga-blue/_variables.scss +1 -0
- package/styles/styles/theme/saga/saga-blue/theme.scss +4 -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: var(--primary-color);
|
|
8
|
+
border: $outlinedButtonBorder;
|
|
9
|
+
|
|
10
|
+
@include button-states {
|
|
11
|
+
&:hover {
|
|
12
|
+
background: rgba(var(--primary-color), $textButtonHoverBgOpacity);
|
|
13
|
+
color: var(--primary-color);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&:active {
|
|
17
|
+
background: rgba(var(--primary-color), $textButtonActiveBgOpacity);
|
|
18
|
+
color: var(--primary-color);
|
|
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: var(--primary-color);
|
|
47
|
+
border-color: transparent;
|
|
48
|
+
|
|
49
|
+
@include button-states {
|
|
50
|
+
&:hover {
|
|
51
|
+
background: rgba(var(--primary-color), $textButtonHoverBgOpacity);
|
|
52
|
+
color: var(--primary-color);
|
|
53
|
+
border-color: transparent;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&:active {
|
|
57
|
+
background: rgba(var(--primary-color), $textButtonActiveBgOpacity);
|
|
58
|
+
color: var(--primary-color);
|
|
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: var(--highlight-bg);
|
|
32
|
+
color: $highlightTextColor;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|