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,173 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.p-multiselect {
|
|
4
|
+
background: $inputBg;
|
|
5
|
+
border: $inputBorder;
|
|
6
|
+
transition: $formElementTransition;
|
|
7
|
+
border-radius: $borderRadius;
|
|
8
|
+
|
|
9
|
+
&:not(.p-disabled):hover {
|
|
10
|
+
border-color: var(--primary-color);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&:not(.p-disabled).p-focus {
|
|
14
|
+
@include focused-input();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-multiselect-label {
|
|
18
|
+
padding: $inputPadding;
|
|
19
|
+
transition: $formElementTransition;
|
|
20
|
+
|
|
21
|
+
&.p-placeholder {
|
|
22
|
+
color: $inputPlaceholderTextColor;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.p-multiselect-chip {
|
|
27
|
+
.p-multiselect-label {
|
|
28
|
+
gap: $inlineSpacing;
|
|
29
|
+
}
|
|
30
|
+
.p-multiselect-token {
|
|
31
|
+
padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
|
|
32
|
+
background: var(--highlight-bg);
|
|
33
|
+
color: $highlightTextColor;
|
|
34
|
+
border-radius: $borderRadius;
|
|
35
|
+
|
|
36
|
+
.p-multiselect-token-icon {
|
|
37
|
+
margin-left: $inlineSpacing;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.p-multiselect-trigger {
|
|
43
|
+
background: transparent;
|
|
44
|
+
color: $inputIconColor;
|
|
45
|
+
width: $inputGroupAddOnMinWidth;
|
|
46
|
+
border-top-right-radius: $borderRadius;
|
|
47
|
+
border-bottom-right-radius: $borderRadius;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.p-inputwrapper-filled {
|
|
52
|
+
.p-multiselect {
|
|
53
|
+
&.p-multiselect-chip {
|
|
54
|
+
.p-multiselect-label {
|
|
55
|
+
padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.p-multiselect-panel {
|
|
62
|
+
background: $inputOverlayBg;
|
|
63
|
+
color: $inputListTextColor;
|
|
64
|
+
border: $inputOverlayBorder;
|
|
65
|
+
border-radius: $borderRadius;
|
|
66
|
+
box-shadow: $inputOverlayShadow;
|
|
67
|
+
|
|
68
|
+
.p-multiselect-header {
|
|
69
|
+
padding: $inputListHeaderPadding;
|
|
70
|
+
border-bottom: $inputListHeaderBorder;
|
|
71
|
+
color: $inputListHeaderTextColor;
|
|
72
|
+
background: $inputOverlayHeaderBg;
|
|
73
|
+
margin: $inputListHeaderMargin;
|
|
74
|
+
border-top-right-radius: $borderRadius;
|
|
75
|
+
border-top-left-radius: $borderRadius;
|
|
76
|
+
|
|
77
|
+
.p-multiselect-filter-container {
|
|
78
|
+
.p-inputtext {
|
|
79
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.p-multiselect-filter-icon {
|
|
83
|
+
right: nth($inputPadding, 2);
|
|
84
|
+
color: $inputIconColor;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.p-checkbox {
|
|
89
|
+
margin-right: $inlineSpacing;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.p-multiselect-close {
|
|
93
|
+
margin-left: $inlineSpacing;
|
|
94
|
+
@include action-icon();
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.p-multiselect-items {
|
|
99
|
+
padding: $inputListPadding;
|
|
100
|
+
|
|
101
|
+
.p-multiselect-item {
|
|
102
|
+
margin: $inputListItemMargin;
|
|
103
|
+
padding: $inputListItemPadding;
|
|
104
|
+
border: $inputListItemBorder;
|
|
105
|
+
color: $inputListItemTextColor;
|
|
106
|
+
background: $inputListItemBg;
|
|
107
|
+
transition: $listItemTransition;
|
|
108
|
+
border-radius: $inputListItemBorderRadius;
|
|
109
|
+
|
|
110
|
+
&.p-highlight {
|
|
111
|
+
color: $highlightTextColor;
|
|
112
|
+
background: var(--highlight-bg);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&:not(.p-highlight):not(.p-disabled):hover {
|
|
116
|
+
color: $inputListItemTextHoverColor;
|
|
117
|
+
background: $inputListItemHoverBg;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
&:focus {
|
|
121
|
+
@include focused-listitem();
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.p-checkbox {
|
|
125
|
+
margin-right: $inlineSpacing;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
.p-multiselect-item-group {
|
|
131
|
+
margin: $submenuHeaderMargin;
|
|
132
|
+
padding: $submenuHeaderPadding;
|
|
133
|
+
color: $submenuHeaderTextColor;
|
|
134
|
+
background: $submenuHeaderBg;
|
|
135
|
+
font-weight: $submenuHeaderFontWeight;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.p-multiselect-empty-message {
|
|
139
|
+
padding: $inputListItemPadding;
|
|
140
|
+
color: $inputListItemTextColor;
|
|
141
|
+
background: $inputListItemBg;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
p-multiselect.ng-dirty.ng-invalid > .p-multiselect {
|
|
147
|
+
@include invalid-input();
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.p-input-filled {
|
|
151
|
+
.p-multiselect {
|
|
152
|
+
background: $inputFilledBg;
|
|
153
|
+
|
|
154
|
+
&:not(.p-disabled):hover {
|
|
155
|
+
background-color: $inputFilledHoverBg;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
&:not(.p-disabled).p-focus {
|
|
159
|
+
background-color: $inputFilledFocusBg;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
p-multiselect.p-multiselect-clearable {
|
|
165
|
+
.p-multiselect-label-container {
|
|
166
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.p-multiselect-clear-icon {
|
|
170
|
+
color: $inputIconColor;
|
|
171
|
+
right: $inputGroupAddOnMinWidth;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
p-password.ng-invalid.ng-dirty > .p-password > .p-inputtext {
|
|
2
|
+
@include invalid-input();
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.p-password-panel {
|
|
6
|
+
padding: $panelContentPadding;
|
|
7
|
+
background: $panelContentBg;
|
|
8
|
+
color: $panelContentTextColor;
|
|
9
|
+
border: $overlayContentBorder;
|
|
10
|
+
box-shadow: $inputOverlayShadow;
|
|
11
|
+
border-radius: $borderRadius;
|
|
12
|
+
|
|
13
|
+
.p-password-meter {
|
|
14
|
+
margin-bottom: $inlineSpacing;
|
|
15
|
+
background: $passwordMeterBg;
|
|
16
|
+
|
|
17
|
+
.p-password-strength {
|
|
18
|
+
&.weak {
|
|
19
|
+
background: $passwordWeakBg;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.medium {
|
|
23
|
+
background: $passwordMediumBg;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.strong {
|
|
27
|
+
background: $passwordStrongBg;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
p-password.p-password-clearable {
|
|
34
|
+
.p-password-input {
|
|
35
|
+
padding-right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
|
|
36
|
+
}
|
|
37
|
+
.p-password-clear-icon {
|
|
38
|
+
color: $inputIconColor;
|
|
39
|
+
right: nth($inputPadding, 2);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
p-password.p-password-clearable.p-password-mask{
|
|
44
|
+
.p-password-input {
|
|
45
|
+
padding-right: nth($inputPadding, 2) * 3 + $primeIconFontSize * 2;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.p-password-clear-icon {
|
|
49
|
+
color: $inputIconColor;
|
|
50
|
+
right: nth($inputPadding, 2) * 2 + $primeIconFontSize;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
.p-radiobutton {
|
|
2
|
+
width: $radiobuttonWidth;
|
|
3
|
+
height: $radiobuttonHeight;
|
|
4
|
+
|
|
5
|
+
.p-radiobutton-box {
|
|
6
|
+
border: $radiobuttonBorder;
|
|
7
|
+
background: $inputBg;
|
|
8
|
+
width: $radiobuttonWidth;
|
|
9
|
+
height: $radiobuttonHeight;
|
|
10
|
+
color: $textColor;
|
|
11
|
+
border-radius: 50%;
|
|
12
|
+
transition: $formElementTransition;
|
|
13
|
+
|
|
14
|
+
&:not(.p-disabled):not(.p-highlight):hover {
|
|
15
|
+
border-color: var(--primary-color);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&:not(.p-disabled).p-focus {
|
|
19
|
+
@include focused-input();
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.p-radiobutton-icon {
|
|
23
|
+
width: $radiobuttonIconSize;
|
|
24
|
+
height: $radiobuttonIconSize;
|
|
25
|
+
transition-duration: $transitionDuration;
|
|
26
|
+
background-color: $radiobuttonIconActiveColor;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.p-highlight {
|
|
30
|
+
border-color: var(--primary-color);
|
|
31
|
+
background: var(--primary-color);
|
|
32
|
+
|
|
33
|
+
&:not(.p-disabled):hover {
|
|
34
|
+
border-color: var(--primary-darker-color);
|
|
35
|
+
background: var(--primary-darker-color);
|
|
36
|
+
color: $radiobuttonIconActiveHoverColor;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
p-radiobutton.ng-dirty.ng-invalid > .p-radiobutton > .p-radiobutton-box {
|
|
43
|
+
@include invalid-input();
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.p-input-filled {
|
|
47
|
+
.p-radiobutton {
|
|
48
|
+
.p-radiobutton-box {
|
|
49
|
+
background-color: $inputFilledBg;
|
|
50
|
+
|
|
51
|
+
&:not(.p-disabled):hover {
|
|
52
|
+
background-color: $inputFilledHoverBg;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&.p-highlight {
|
|
56
|
+
background: var(--primary-color);
|
|
57
|
+
|
|
58
|
+
&:not(.p-disabled):hover {
|
|
59
|
+
background: var(--primary-darker-color);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.p-radiobutton-label {
|
|
67
|
+
margin-left: $inlineSpacing;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@if (var(--highlight-bg) == var(--primary-color)) {
|
|
71
|
+
.p-highlight {
|
|
72
|
+
.p-radiobutton {
|
|
73
|
+
.p-radiobutton-box {
|
|
74
|
+
border-color: $radiobuttonIconActiveColor;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
.p-rating {
|
|
2
|
+
gap: $inlineSpacing;
|
|
3
|
+
|
|
4
|
+
.p-rating-icon {
|
|
5
|
+
color: $ratingStarIconOffColor;
|
|
6
|
+
margin-left: $inlineSpacing;
|
|
7
|
+
transition: $formElementTransition;
|
|
8
|
+
font-size: $ratingIconFontSize;
|
|
9
|
+
|
|
10
|
+
&.p-icon {
|
|
11
|
+
width: $ratingIconFontSize;
|
|
12
|
+
height: $ratingIconFontSize;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&.p-rating-cancel {
|
|
16
|
+
color: $ratingCancelIconColor;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&:focus {
|
|
20
|
+
@include focused();
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&:first-child {
|
|
24
|
+
margin-left: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.p-rating-icon-active {
|
|
28
|
+
color: var(--primary-color);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&:not(.p-disabled):not(.p-readonly) {
|
|
33
|
+
.p-rating-icon {
|
|
34
|
+
&:hover {
|
|
35
|
+
color: var(--primary-color);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&.p-rating-cancel {
|
|
39
|
+
&:hover {
|
|
40
|
+
color: $ratingCancelIconHoverColor;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@if (var(--highlight-bg) == var(--primary-color)) {
|
|
48
|
+
.p-highlight {
|
|
49
|
+
.p-rating {
|
|
50
|
+
.p-rating-icon {
|
|
51
|
+
color: $highlightTextColor;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.p-selectbutton {
|
|
2
|
+
.p-button {
|
|
3
|
+
background: $toggleButtonBg;
|
|
4
|
+
border: $toggleButtonBorder;
|
|
5
|
+
color: $toggleButtonTextColor;
|
|
6
|
+
transition: $formElementTransition;
|
|
7
|
+
|
|
8
|
+
.p-button-icon-left,
|
|
9
|
+
.p-button-icon-right {
|
|
10
|
+
color: $toggleButtonIconColor;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&:not(.p-disabled):not(.p-highlight):hover {
|
|
14
|
+
background: $toggleButtonHoverBg;
|
|
15
|
+
border-color: $toggleButtonHoverBorderColor;
|
|
16
|
+
color: $toggleButtonTextHoverColor;
|
|
17
|
+
|
|
18
|
+
.p-button-icon-left,
|
|
19
|
+
.p-button-icon-right {
|
|
20
|
+
color: $toggleButtonIconHoverColor;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.p-highlight {
|
|
25
|
+
background: var(--primary-color);
|
|
26
|
+
border-color: var(--primary-color);
|
|
27
|
+
color: $toggleButtonTextActiveColor;
|
|
28
|
+
|
|
29
|
+
.p-button-icon-left,
|
|
30
|
+
.p-button-icon-right {
|
|
31
|
+
color: $toggleButtonIconActiveColor;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&:hover {
|
|
35
|
+
background: var(--primary-dark-color);
|
|
36
|
+
border-color: var(--primary-dark-color);
|
|
37
|
+
color: $toggleButtonTextActiveHoverColor;
|
|
38
|
+
|
|
39
|
+
.p-button-icon-left,
|
|
40
|
+
.p-button-icon-right {
|
|
41
|
+
color: $toggleButtonIconActiveHoverColor;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
p-selectbutton.ng-dirty.ng-invalid > .p-selectbutton > .p-button {
|
|
49
|
+
@include invalid-input();
|
|
50
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.p-slider {
|
|
4
|
+
background: $sliderBg;
|
|
5
|
+
border: $sliderBorder;
|
|
6
|
+
border-radius: $borderRadius;
|
|
7
|
+
|
|
8
|
+
&.p-slider-horizontal {
|
|
9
|
+
height: $sliderHorizontalHeight;
|
|
10
|
+
|
|
11
|
+
.p-slider-handle {
|
|
12
|
+
margin-top: math.div(-1 * $sliderHandleHeight, 2);
|
|
13
|
+
margin-left: math.div(-1 * $sliderHandleWidth, 2);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.p-slider-vertical {
|
|
18
|
+
width: $sliderVerticalWidth;
|
|
19
|
+
|
|
20
|
+
.p-slider-handle {
|
|
21
|
+
margin-left: math.div(-1 * $sliderHandleWidth, 2);
|
|
22
|
+
margin-bottom: math.div(-1 * $sliderHandleHeight, 2);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.p-slider-handle {
|
|
27
|
+
height: $sliderHandleHeight;
|
|
28
|
+
width: $sliderHandleWidth;
|
|
29
|
+
background: $sliderHandleBg;
|
|
30
|
+
border: 2px solid var(--primary-color);
|
|
31
|
+
border-radius: 2px solid var(--primary-color)Radius;
|
|
32
|
+
transition: $formElementTransition;
|
|
33
|
+
|
|
34
|
+
&:focus {
|
|
35
|
+
@include focused();
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.p-slider-range {
|
|
40
|
+
background: var(--primary-color);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&:not(.p-disabled) {
|
|
44
|
+
.p-slider-handle:hover {
|
|
45
|
+
background: var(--primary-color);
|
|
46
|
+
border-color: var(--primary-color);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.p-slider-animate {
|
|
51
|
+
&.p-slider-horizontal {
|
|
52
|
+
.p-slider-handle {
|
|
53
|
+
transition: $formElementTransition, left $transitionDuration;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.p-slider-range {
|
|
57
|
+
transition: width $transitionDuration;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&.p-slider-vertical {
|
|
62
|
+
.p-slider-handle {
|
|
63
|
+
transition: $formElementTransition, bottom $transitionDuration;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.p-slider-range {
|
|
67
|
+
transition: height $transitionDuration;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
.p-togglebutton.p-button {
|
|
2
|
+
background: $toggleButtonBg;
|
|
3
|
+
border: $toggleButtonBorder;
|
|
4
|
+
color: $toggleButtonTextColor;
|
|
5
|
+
transition: $formElementTransition;
|
|
6
|
+
|
|
7
|
+
.p-button-icon-left,
|
|
8
|
+
.p-button-icon-right {
|
|
9
|
+
color: $toggleButtonIconColor;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&:not(.p-disabled):not(.p-highlight):hover {
|
|
13
|
+
background: $toggleButtonHoverBg;
|
|
14
|
+
border-color: $toggleButtonHoverBorderColor;
|
|
15
|
+
color: $toggleButtonTextHoverColor;
|
|
16
|
+
|
|
17
|
+
.p-button-icon-left,
|
|
18
|
+
.p-button-icon-right {
|
|
19
|
+
color: $toggleButtonIconHoverColor;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.p-highlight {
|
|
24
|
+
background: var(--primary-color);
|
|
25
|
+
border-color: var(--primary-color);
|
|
26
|
+
color: $toggleButtonTextActiveColor;
|
|
27
|
+
|
|
28
|
+
.p-button-icon-left,
|
|
29
|
+
.p-button-icon-right {
|
|
30
|
+
color: $toggleButtonIconActiveColor;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:hover {
|
|
34
|
+
background: var(--primary-dark-color);
|
|
35
|
+
border-color: var(--primary-dark-color);
|
|
36
|
+
color: $toggleButtonTextActiveHoverColor;
|
|
37
|
+
|
|
38
|
+
.p-button-icon-left,
|
|
39
|
+
.p-button-icon-right {
|
|
40
|
+
color: $toggleButtonIconActiveHoverColor;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
p-togglebutton.ng-dirty.ng-invalid > .p-togglebutton.p-button {
|
|
47
|
+
@include invalid-input();
|
|
48
|
+
}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.p-treeselect {
|
|
4
|
+
background: $inputBg;
|
|
5
|
+
border: $inputBorder;
|
|
6
|
+
transition: $formElementTransition;
|
|
7
|
+
border-radius: $borderRadius;
|
|
8
|
+
|
|
9
|
+
&:not(.p-disabled):hover {
|
|
10
|
+
border-color: var(--primary-color);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&:not(.p-disabled).p-focus {
|
|
14
|
+
@include focused-input();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-treeselect-label {
|
|
18
|
+
padding: $inputPadding;
|
|
19
|
+
transition: $formElementTransition;
|
|
20
|
+
|
|
21
|
+
&.p-placeholder {
|
|
22
|
+
color: $inputPlaceholderTextColor;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.p-treeselect-chip {
|
|
27
|
+
.p-treeselect-token {
|
|
28
|
+
padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
|
|
29
|
+
margin-right: $inlineSpacing;
|
|
30
|
+
background: $chipBg;
|
|
31
|
+
color: $chipTextColor;
|
|
32
|
+
border-radius: $chipBorderRadius;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.p-treeselect-trigger {
|
|
37
|
+
background: transparent;
|
|
38
|
+
color: $inputIconColor;
|
|
39
|
+
width: $inputGroupAddOnMinWidth;
|
|
40
|
+
border-top-right-radius: $borderRadius;
|
|
41
|
+
border-bottom-right-radius: $borderRadius;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
p-treeselect.ng-invalid.ng-dirty > .p-treeselect {
|
|
46
|
+
@include invalid-input();
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.p-inputwrapper-filled {
|
|
50
|
+
.p-treeselect {
|
|
51
|
+
&.p-treeselect-chip {
|
|
52
|
+
.p-treeselect-label {
|
|
53
|
+
padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.p-treeselect-panel {
|
|
60
|
+
background: $inputOverlayBg;
|
|
61
|
+
color: $inputListTextColor;
|
|
62
|
+
border: $inputOverlayBorder;
|
|
63
|
+
border-radius: $borderRadius;
|
|
64
|
+
box-shadow: $inputOverlayShadow;
|
|
65
|
+
|
|
66
|
+
.p-treeselect-header {
|
|
67
|
+
padding: $inputListHeaderPadding;
|
|
68
|
+
border-bottom: $inputListHeaderBorder;
|
|
69
|
+
color: $inputListHeaderTextColor;
|
|
70
|
+
background: $inputOverlayHeaderBg;
|
|
71
|
+
margin: $inputListHeaderMargin;
|
|
72
|
+
border-top-right-radius: $borderRadius;
|
|
73
|
+
border-top-left-radius: $borderRadius;
|
|
74
|
+
|
|
75
|
+
.p-treeselect-filter-container {
|
|
76
|
+
margin-right: $inlineSpacing;
|
|
77
|
+
|
|
78
|
+
.p-treeselect-filter {
|
|
79
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.p-treeselect-filter-icon {
|
|
83
|
+
right: nth($inputPadding, 2);
|
|
84
|
+
color: $inputIconColor;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&.p-treeselect-clearable-filter {
|
|
88
|
+
.p-treeselect-filter {
|
|
89
|
+
padding-right: 2 * (nth($inputPadding, 2) + $primeIconFontSize);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.p-treeselect-filter-clear-icon {
|
|
93
|
+
right: (2 * nth($inputPadding, 2)) + $primeIconFontSize;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.p-treeselect-close {
|
|
99
|
+
@include action-icon();
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.p-treeselect-items-wrapper {
|
|
104
|
+
.p-tree {
|
|
105
|
+
border: 0 none;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.p-treeselect-empty-message {
|
|
109
|
+
padding: $inputListItemPadding;
|
|
110
|
+
color: $inputListItemTextColor;
|
|
111
|
+
background: $inputListItemBg;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.p-input-filled {
|
|
117
|
+
.p-treeselect {
|
|
118
|
+
background: $inputFilledBg;
|
|
119
|
+
|
|
120
|
+
&:not(.p-disabled):hover {
|
|
121
|
+
background-color: $inputFilledHoverBg;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
&:not(.p-disabled).p-focus {
|
|
125
|
+
background-color: $inputFilledFocusBg;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
p-treeselect.p-treeselect-clearable {
|
|
131
|
+
.p-treeselect-label-container {
|
|
132
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.p-treeselect-clear-icon {
|
|
136
|
+
color: $inputIconColor;
|
|
137
|
+
right: $buttonIconOnlyWidth;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
.p-breadcrumb {
|
|
2
|
+
background: $breadcrumbBg;
|
|
3
|
+
border: $breadcrumbBorder;
|
|
4
|
+
border-radius: $borderRadius;
|
|
5
|
+
padding: $breadcrumbPadding;
|
|
6
|
+
|
|
7
|
+
.p-breadcrumb-list {
|
|
8
|
+
li {
|
|
9
|
+
.p-menuitem-link {
|
|
10
|
+
transition: $listItemTransition;
|
|
11
|
+
border-radius: $borderRadius;
|
|
12
|
+
|
|
13
|
+
&:focus-visible {
|
|
14
|
+
@include focused();
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-menuitem-text {
|
|
18
|
+
color: $breadcrumbItemTextColor;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.p-menuitem-icon {
|
|
22
|
+
color: $breadcrumbItemIconColor;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.p-menuitem-separator {
|
|
27
|
+
margin: 0 $inlineSpacing 0 $inlineSpacing;
|
|
28
|
+
color: $breadcrumbSeparatorColor;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:last-child {
|
|
32
|
+
.p-menuitem-text {
|
|
33
|
+
color: $breadcrumbLastItemTextColor;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.p-menuitem-icon {
|
|
37
|
+
color: $breadcrumbLastItemIconColor;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|