@esfaenza/core 15.2.41 → 15.2.42-beta2
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/fontawesome/css/all.css +27093 -0
- package/assets/fontawesome/css/all.min.css +9 -0
- package/assets/fontawesome/css/brands.css +1522 -0
- package/assets/fontawesome/css/brands.min.css +6 -0
- package/assets/fontawesome/css/duotone.css +12491 -0
- package/assets/fontawesome/css/duotone.min.css +6 -0
- package/assets/fontawesome/css/fontawesome.css +12984 -0
- package/assets/fontawesome/css/fontawesome.min.css +9 -0
- package/assets/fontawesome/css/light.css +19 -0
- package/assets/fontawesome/css/light.min.css +6 -0
- package/assets/fontawesome/css/regular.css +19 -0
- package/assets/fontawesome/css/regular.min.css +6 -0
- package/assets/fontawesome/css/sharp-regular.css +19 -0
- package/assets/fontawesome/css/sharp-regular.min.css +6 -0
- package/assets/fontawesome/css/sharp-solid.css +19 -0
- package/assets/fontawesome/css/sharp-solid.min.css +6 -0
- package/assets/fontawesome/css/solid.css +19 -0
- package/assets/fontawesome/css/solid.min.css +6 -0
- package/assets/fontawesome/css/svg-with-js.css +638 -0
- package/assets/fontawesome/css/svg-with-js.min.css +6 -0
- package/assets/fontawesome/css/thin.css +19 -0
- package/assets/fontawesome/css/thin.min.css +6 -0
- package/assets/fontawesome/css/v4-font-face.css +26 -0
- package/assets/fontawesome/css/v4-font-face.min.css +6 -0
- package/assets/fontawesome/css/v4-shims.css +2194 -0
- package/assets/fontawesome/css/v4-shims.min.css +6 -0
- package/assets/fontawesome/css/v5-font-face.css +34 -0
- package/assets/fontawesome/css/v5-font-face.min.css +6 -0
- package/assets/fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-duotone-900.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-duotone-900.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-light-300.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-light-300.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-regular-400.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-regular-400.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-solid-900.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-solid-900.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-thin-100.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-thin-100.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- package/components/components.module.d.ts +22 -16
- package/components/page-structure/breadcrumb/breadcrumb.component.d.ts +23 -0
- package/components/{navbar → page-structure/navbar}/navbar.component.d.ts +6 -16
- package/components/{sidebar → page-structure/sidebar}/sidebar.component.d.ts +32 -5
- package/components/public-api.d.ts +20 -15
- package/components/search/es-filters/es-filters.component.d.ts +27 -0
- package/components/search/es-filters/es-filters.service.d.ts +6 -0
- package/components/search/filters-sidebar/filters-sidebar.component.d.ts +20 -0
- package/components/search/filters-sidebar-item/filters-sidebar-item.component.d.ts +16 -0
- package/components/search/filters-sidebar-section/filters-sidebar-section.component.d.ts +9 -0
- package/components/search/filters-topbar/filters-topbar.component.d.ts +38 -0
- package/domain/models/decorators/decorators.d.ts +1 -0
- package/domain/models/jace/ActiveModuleView.d.ts +8 -8
- package/domain/models/user/ChangePasswordDto.d.ts +9 -0
- package/domain/models/user/ChangeProfilePictureDto.d.ts +4 -0
- package/domain/models/user/UpdateAccountRecoverySettingsDto.d.ts +6 -0
- package/domain/public-api.d.ts +4 -0
- package/esm2020/components/components.module.mjs +74 -20
- package/esm2020/components/page-structure/back-top/back-top.component.mjs +43 -0
- package/esm2020/components/page-structure/base/base.component.mjs +55 -0
- package/esm2020/components/page-structure/base/reactive.component.mjs +26 -0
- package/esm2020/components/page-structure/breadcrumb/breadcrumb.component.mjs +70 -0
- package/esm2020/components/page-structure/error/404/pagenotfound.component.mjs +30 -0
- package/esm2020/components/page-structure/error/500/servererror.component.mjs +39 -0
- package/esm2020/components/page-structure/error/Angular/angularerror.component.mjs +55 -0
- package/esm2020/components/page-structure/external-page/external_pages.component.mjs +47 -0
- package/esm2020/components/{jace-login → page-structure/jace-login}/jace-login.component.mjs +1 -1
- package/esm2020/components/page-structure/jace-resource/jace-resource.component.mjs +65 -0
- package/esm2020/components/page-structure/navbar/modules-board/jace-modules-board.component.mjs +40 -0
- package/esm2020/components/page-structure/navbar/navbar.component.loc.mjs +36 -0
- package/esm2020/components/page-structure/navbar/navbar.component.mjs +161 -0
- package/esm2020/components/page-structure/page/pages.component.mjs +60 -0
- package/esm2020/components/page-structure/redirecter/redirecter.component.mjs +53 -0
- package/esm2020/components/page-structure/sidebar/sidebar.component.mjs +302 -0
- package/esm2020/components/public-api.mjs +21 -16
- package/esm2020/components/search/es-filters/es-filters.component.mjs +56 -0
- package/esm2020/components/search/es-filters/es-filters.service.mjs +19 -0
- package/esm2020/components/search/filters-sidebar/filters-sidebar.component.mjs +65 -0
- package/esm2020/components/search/filters-sidebar-item/filters-sidebar-item.component.mjs +39 -0
- package/esm2020/components/search/filters-sidebar-section/filters-sidebar-section.component.mjs +22 -0
- package/esm2020/components/search/filters-topbar/filters-topbar.component.mjs +94 -0
- package/esm2020/domain/models/decorators/decorators.mjs +6 -0
- package/esm2020/domain/models/jace/ActiveModuleView.mjs +1 -1
- package/esm2020/domain/models/user/ChangePasswordDto.mjs +11 -0
- package/esm2020/domain/models/user/ChangeProfilePictureDto.mjs +6 -0
- package/esm2020/domain/models/user/UpdateAccountRecoverySettingsDto.mjs +8 -0
- package/esm2020/domain/public-api.mjs +5 -1
- package/esm2020/lib/app.component.mjs +3 -3
- package/esm2020/lib/core.module.mjs +1 -1
- package/esm2020/services/classes/preferences/user/app.userpreferences.base.mjs +76 -0
- package/esm2020/services/public-api.mjs +2 -1
- package/fesm2015/esfaenza-core-components.mjs +532 -161
- package/fesm2015/esfaenza-core-components.mjs.map +1 -1
- package/fesm2015/esfaenza-core-domain.mjs +32 -1
- package/fesm2015/esfaenza-core-domain.mjs.map +1 -1
- package/fesm2015/esfaenza-core-services.mjs +85 -5
- package/fesm2015/esfaenza-core-services.mjs.map +1 -1
- package/fesm2015/esfaenza-core.mjs +2 -2
- package/fesm2015/esfaenza-core.mjs.map +1 -1
- package/fesm2020/esfaenza-core-components.mjs +527 -160
- package/fesm2020/esfaenza-core-components.mjs.map +1 -1
- package/fesm2020/esfaenza-core-domain.mjs +32 -1
- package/fesm2020/esfaenza-core-domain.mjs.map +1 -1
- package/fesm2020/esfaenza-core-services.mjs +72 -5
- package/fesm2020/esfaenza-core-services.mjs.map +1 -1
- package/fesm2020/esfaenza-core.mjs +2 -2
- package/fesm2020/esfaenza-core.mjs.map +1 -1
- package/lib/core.module.d.ts +2 -1
- package/package.json +2 -2
- package/services/classes/preferences/user/app.userpreferences.base.d.ts +23 -0
- package/services/public-api.d.ts +1 -0
- package/theme/styles/_base.scss +8 -23
- package/theme/styles/_bootstrap-override.scss +36 -62
- package/theme/styles/_libs-override.scss +43 -6
- package/theme/styles/_project-override.scss +66 -0
- package/theme/styles/_variables.scss +14 -42
- package/theme/styles/skins/enuma.scss +60 -0
- package/theme/styles/skins/etnograph.scss +52 -0
- package/theme/styles/skins/jace.scss +63 -0
- package/assets/fonts/fontawesome/FontAwesome.otf +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.eot +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.svg +0 -2671
- package/assets/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.woff +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.woff2 +0 -0
- package/assets/styles/font-awesome.min.css +0 -2929
- package/components/breadcrumb/breadcrumb.component.d.ts +0 -19
- package/esm2020/components/back-top/back-top.component.mjs +0 -43
- package/esm2020/components/base/base.component.mjs +0 -55
- package/esm2020/components/base/reactive.component.mjs +0 -26
- package/esm2020/components/breadcrumb/breadcrumb.component.mjs +0 -60
- package/esm2020/components/error/404/pagenotfound.component.mjs +0 -30
- package/esm2020/components/error/500/servererror.component.mjs +0 -39
- package/esm2020/components/error/Angular/angularerror.component.mjs +0 -55
- package/esm2020/components/external-page/external_pages.component.mjs +0 -47
- package/esm2020/components/jace-resource/jace-resource.component.mjs +0 -65
- package/esm2020/components/navbar/modules-board/jace-modules-board.component.mjs +0 -40
- package/esm2020/components/navbar/navbar.component.loc.mjs +0 -36
- package/esm2020/components/navbar/navbar.component.mjs +0 -208
- package/esm2020/components/page/pages.component.mjs +0 -60
- package/esm2020/components/redirecter/redirecter.component.mjs +0 -53
- package/esm2020/components/sidebar/sidebar.component.mjs +0 -210
- package/theme/styles/skins/_blue.scss +0 -16
- /package/components/{back-top → page-structure/back-top}/back-top.component.d.ts +0 -0
- /package/components/{base → page-structure/base}/base.component.d.ts +0 -0
- /package/components/{base → page-structure/base}/reactive.component.d.ts +0 -0
- /package/components/{error → page-structure/error}/404/pagenotfound.component.d.ts +0 -0
- /package/components/{error → page-structure/error}/500/servererror.component.d.ts +0 -0
- /package/components/{error → page-structure/error}/Angular/angularerror.component.d.ts +0 -0
- /package/components/{external-page → page-structure/external-page}/external_pages.component.d.ts +0 -0
- /package/components/{jace-login → page-structure/jace-login}/jace-login.component.d.ts +0 -0
- /package/components/{jace-resource → page-structure/jace-resource}/jace-resource.component.d.ts +0 -0
- /package/components/{navbar → page-structure/navbar}/modules-board/jace-modules-board.component.d.ts +0 -0
- /package/components/{navbar → page-structure/navbar}/navbar.component.loc.d.ts +0 -0
- /package/components/{page → page-structure/page}/pages.component.d.ts +0 -0
- /package/components/{redirecter → page-structure/redirecter}/redirecter.component.d.ts +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com
|
|
3
|
+
* License - https://fontawesome.com/license (Commercial License)
|
|
4
|
+
* Copyright 2023 Fonticons, Inc.
|
|
5
|
+
*/
|
|
6
|
+
.fa.fa-glass:before{content:"\f000"}.fa.fa-envelope-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-star-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-home:before{content:"\f015"}.fa.fa-file-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-list-alt:before{content:"\f022"}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-edit{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-edit:before{content:"\f044"}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart-o:before,.fa.fa-bar-chart:before{content:"\e0e3"}.fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-twitter-square:before{content:"\f081"}.fa.fa-facebook-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-square:before{content:"\f082"}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-github-square:before{content:"\f092"}.fa.fa-lemon-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-globe:before{content:"\f57d"}.fa.fa-tasks:before{content:"\f828"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-cut:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-save{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-save:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-magic:before{content:"\e2ca"}.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pinterest-square:before{content:"\f0d3"}.fa.fa-google-plus-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-square:before{content:"\f0d4"}.fa.fa-google-plus{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f625"}.fa.fa-comment-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard:before{content:"\f0ea"}.fa.fa-lightbulb-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f0ed"}.fa.fa-cloud-upload:before{content:"\f0ee"}.fa.fa-bell-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-star-half-o:before{content:"\f5c0"}.fa.fa-star-half-empty{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-star-half-empty:before{content:"\f5c0"}.fa.fa-star-half-full{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-star-half-full:before{content:"\f5c0"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before,.fa.fa-unlink:before{content:"\f127"}.fa.fa-calendar-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-unlock-alt:before{content:"\f09c"}.fa.fa-minus-square-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\24"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\e1bc"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f884"}.fa.fa-sort-amount-desc:before{content:"\f160"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-square:before{content:"\f431"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-xing-square:before{content:"\f169"}.fa.fa-youtube-play{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-tumblr-square:before{content:"\f174"}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo-square:before{content:"\f194"}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\e2bb"}.fa.fa-plus-square-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-google,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-reddit-square:before{content:"\f1a2"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-behance-square:before{content:"\f1b5"}.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-steam-square:before{content:"\f1b7"}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-life-bouy:before,.fa.fa-life-buoy:before,.fa.fa-life-saver:before,.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-git-square:before{content:"\f1d2"}.fa.fa-git,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-futbol-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-lastfm-square:before{content:"\f203"}.fa.fa-angellist,.fa.fa-ioxhost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before,.fa.fa-transgender:before{content:"\f224"}.fa.fa-transgender-alt:before{content:"\f225"}.fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-clone{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-creative-commons,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-odnoklassniki-square:before{content:"\f264"}.fa.fa-chrome,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-internet-explorer,.fa.fa-opera,.fa.fa-safari,.fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-viadeo,.fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-viadeo-square:before{content:"\f2aa"}.fa.fa-snapchat,.fa.fa-snapchat-ghost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-ghost:before{content:"\f2ab"}.fa.fa-snapchat-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-square:before{content:"\f2ad"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-themeisle,.fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 6 Pro";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-meetup,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com
|
|
3
|
+
* License - https://fontawesome.com/license (Commercial License)
|
|
4
|
+
* Copyright 2023 Fonticons, Inc.
|
|
5
|
+
*/
|
|
6
|
+
@font-face {
|
|
7
|
+
font-family: 'Font Awesome 5 Brands';
|
|
8
|
+
font-display: block;
|
|
9
|
+
font-weight: 400;
|
|
10
|
+
src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); }
|
|
11
|
+
|
|
12
|
+
@font-face {
|
|
13
|
+
font-family: 'Font Awesome 5 Pro';
|
|
14
|
+
font-display: block;
|
|
15
|
+
font-weight: 900;
|
|
16
|
+
src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }
|
|
17
|
+
|
|
18
|
+
@font-face {
|
|
19
|
+
font-family: 'Font Awesome 5 Pro';
|
|
20
|
+
font-display: block;
|
|
21
|
+
font-weight: 400;
|
|
22
|
+
src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); }
|
|
23
|
+
|
|
24
|
+
@font-face {
|
|
25
|
+
font-family: 'Font Awesome 5 Pro';
|
|
26
|
+
font-display: block;
|
|
27
|
+
font-weight: 300;
|
|
28
|
+
src: url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.ttf") format("truetype"); }
|
|
29
|
+
|
|
30
|
+
@font-face {
|
|
31
|
+
font-family: 'Font Awesome 5 Duotone';
|
|
32
|
+
font-display: block;
|
|
33
|
+
font-weight: 900;
|
|
34
|
+
src: url("../webfonts/fa-duotone-900.woff2") format("woff2"), url("../webfonts/fa-duotone-900.ttf") format("truetype"); }
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com
|
|
3
|
+
* License - https://fontawesome.com/license (Commercial License)
|
|
4
|
+
* Copyright 2023 Fonticons, Inc.
|
|
5
|
+
*/
|
|
6
|
+
@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Pro";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Pro";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Pro";font-display:block;font-weight:300;src:url(../webfonts/fa-light-300.woff2) format("woff2"),url(../webfonts/fa-light-300.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Duotone";font-display:block;font-weight:900;src:url(../webfonts/fa-duotone-900.woff2) format("woff2"),url(../webfonts/fa-duotone-900.ttf) format("truetype")}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -9,23 +9,29 @@ import * as i7 from "@angular/material/slide-toggle";
|
|
|
9
9
|
import * as i8 from "ngx-bootstrap/dropdown";
|
|
10
10
|
import * as i9 from "@esfaenza/es-table";
|
|
11
11
|
import * as i10 from "ngx-bootstrap/modal";
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "./
|
|
14
|
-
import * as i13 from "./
|
|
15
|
-
import * as i14 from "./error/
|
|
16
|
-
import * as i15 from "./error/
|
|
17
|
-
import * as i16 from "./page/
|
|
18
|
-
import * as i17 from "./
|
|
19
|
-
import * as i18 from "./
|
|
20
|
-
import * as i19 from "./
|
|
21
|
-
import * as i20 from "./navbar/
|
|
22
|
-
import * as i21 from "./
|
|
23
|
-
import * as i22 from "./
|
|
24
|
-
import * as i23 from "./
|
|
25
|
-
import * as i24 from "./
|
|
26
|
-
import * as i25 from "./es-modal/es-modal
|
|
12
|
+
import * as i11 from "@esfaenza/forms-and-validations";
|
|
13
|
+
import * as i12 from "./page-structure/back-top/back-top.component";
|
|
14
|
+
import * as i13 from "./page-structure/breadcrumb/breadcrumb.component";
|
|
15
|
+
import * as i14 from "./page-structure/error/404/pagenotfound.component";
|
|
16
|
+
import * as i15 from "./page-structure/error/500/servererror.component";
|
|
17
|
+
import * as i16 from "./page-structure/error/Angular/angularerror.component";
|
|
18
|
+
import * as i17 from "./page-structure/page/pages.component";
|
|
19
|
+
import * as i18 from "./page-structure/external-page/external_pages.component";
|
|
20
|
+
import * as i19 from "./page-structure/jace-login/jace-login.component";
|
|
21
|
+
import * as i20 from "./page-structure/navbar/modules-board/jace-modules-board.component";
|
|
22
|
+
import * as i21 from "./page-structure/navbar/navbar.component";
|
|
23
|
+
import * as i22 from "./page-structure/redirecter/redirecter.component";
|
|
24
|
+
import * as i23 from "./page-structure/sidebar/sidebar.component";
|
|
25
|
+
import * as i24 from "./page-structure/jace-resource/jace-resource.component";
|
|
26
|
+
import * as i25 from "./es-modal/es-modal.component";
|
|
27
|
+
import * as i26 from "./es-modal/es-modal-head/es-modal-head.component";
|
|
28
|
+
import * as i27 from "./search/filters-topbar/filters-topbar.component";
|
|
29
|
+
import * as i28 from "./search/filters-sidebar/filters-sidebar.component";
|
|
30
|
+
import * as i29 from "./search/filters-sidebar-section/filters-sidebar-section.component";
|
|
31
|
+
import * as i30 from "./search/filters-sidebar-item/filters-sidebar-item.component";
|
|
32
|
+
import * as i31 from "./search/es-filters/es-filters.component";
|
|
27
33
|
export declare class ComponentsModule {
|
|
28
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentsModule, never>;
|
|
29
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, never, [typeof i1.CommonModule, typeof i2.RouterModule, typeof i3.FormsModule, typeof i4.DirectivesModule, typeof i5.LocalizationModule, typeof i6.ProgressbarModule, typeof i7.MatSlideToggleModule, typeof i8.BsDropdownModule, typeof i9.EsTableModule, typeof i10.ModalModule, typeof i11.
|
|
35
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, never, [typeof i1.CommonModule, typeof i2.RouterModule, typeof i3.FormsModule, typeof i4.DirectivesModule, typeof i5.LocalizationModule, typeof i6.ProgressbarModule, typeof i7.MatSlideToggleModule, typeof i8.BsDropdownModule, typeof i9.EsTableModule, typeof i10.ModalModule, typeof i11.FormsAndValidationsModule, typeof i12.BackTop, typeof i13.Breadcrumb, typeof i14.PageNotFoundComponent, typeof i15.ServerErrorComponent, typeof i16.AngularErrorComponent, typeof i17.PagesComponent, typeof i18.ExternalPagesComponent, typeof i19.JaceLoginComponent, typeof i20.JaceModulesBoardComponent, typeof i21.Navbar, typeof i22.RedirecterComponent, typeof i23.Sidebar, typeof i24.JaceResourceComponent, typeof i25.EsModalComponent, typeof i26.EsModalHeadComponent, typeof i27.FiltersHorizontalComponent, typeof i28.FiltersVerticalComponent, typeof i29.FiltersVerticalSectionComponent, typeof i30.FiltersVerticalItemComponent, typeof i31.EsFiltersComponent], [typeof i12.BackTop, typeof i13.Breadcrumb, typeof i14.PageNotFoundComponent, typeof i15.ServerErrorComponent, typeof i16.AngularErrorComponent, typeof i17.PagesComponent, typeof i18.ExternalPagesComponent, typeof i19.JaceLoginComponent, typeof i20.JaceModulesBoardComponent, typeof i21.Navbar, typeof i22.RedirecterComponent, typeof i23.Sidebar, typeof i24.JaceResourceComponent, typeof i25.EsModalComponent, typeof i26.EsModalHeadComponent, typeof i27.FiltersHorizontalComponent, typeof i28.FiltersVerticalComponent, typeof i29.FiltersVerticalSectionComponent, typeof i30.FiltersVerticalItemComponent, typeof i31.EsFiltersComponent]>;
|
|
30
36
|
static ɵinj: i0.ɵɵInjectorDeclaration<ComponentsModule>;
|
|
31
37
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Title } from "@angular/platform-browser";
|
|
2
|
+
import { ActivatedRoute, Router, UrlTree } from "@angular/router";
|
|
3
|
+
import { AppState } from "@esfaenza/core/services";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class Breadcrumb {
|
|
6
|
+
_state: AppState;
|
|
7
|
+
private router;
|
|
8
|
+
private _activatedRoute;
|
|
9
|
+
private _titleService;
|
|
10
|
+
MainLink: BreadcrumbItem;
|
|
11
|
+
SubLinks: BreadcrumbItem[];
|
|
12
|
+
constructor(_state: AppState, router: Router, _activatedRoute: ActivatedRoute, _titleService: Title);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
onSubNavigation(tree: UrlTree, title: string): void;
|
|
15
|
+
onMainNavigation(tree: UrlTree, title: string): void;
|
|
16
|
+
private getRouterLink;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Breadcrumb, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Breadcrumb, "breadcrumb", never, {}, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
20
|
+
export declare class BreadcrumbItem {
|
|
21
|
+
title: string;
|
|
22
|
+
routerLink: any[];
|
|
23
|
+
}
|
|
@@ -5,14 +5,13 @@ import { CacheService, PreferencesService } from "@esfaenza/preferences";
|
|
|
5
5
|
import { LocalizationService } from "@esfaenza/localizations";
|
|
6
6
|
import { MessageService } from "@esfaenza/extensions";
|
|
7
7
|
import { HTTPService } from "@esfaenza/httpservice";
|
|
8
|
-
import { JaceIdentity, ActiveModuleView, ApplicationJob
|
|
9
|
-
import { AppState, CompletedJobRedirectionService,
|
|
8
|
+
import { JaceIdentity, ActiveModuleView, ApplicationJob } from "@esfaenza/core/domain";
|
|
9
|
+
import { AppState, CompletedJobRedirectionService, TokenService } from "@esfaenza/core/services";
|
|
10
10
|
import { ReactiveComponent } from "../base/reactive.component";
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
export declare class Navbar extends ReactiveComponent {
|
|
13
13
|
private prefsService;
|
|
14
14
|
private cacheService;
|
|
15
|
-
globalSearchService: GlobalSearchService;
|
|
16
15
|
private MessageDef;
|
|
17
16
|
private notifications;
|
|
18
17
|
private msgExts;
|
|
@@ -32,7 +31,7 @@ export declare class Navbar extends ReactiveComponent {
|
|
|
32
31
|
private newVersionWarned;
|
|
33
32
|
navbar: ElementRef;
|
|
34
33
|
Modules: ActiveModuleView[];
|
|
35
|
-
constructor(prefsService: PreferencesService, cacheService: CacheService,
|
|
34
|
+
constructor(prefsService: PreferencesService, cacheService: CacheService, MessageDef: BaseMessageService, notifications: NotificationsService, msgExts: MessageService, lc: LocalizationService, http: HTTPService, cdr: ChangeDetectorRef, _state: AppState, sr: TokenService, router: Router, cjrService: CompletedJobRedirectionService, extensionComponents: Type<any>[]);
|
|
36
35
|
ngOnDestroy(): void;
|
|
37
36
|
private handleBaseNotifications;
|
|
38
37
|
private checkIdentity;
|
|
@@ -44,20 +43,11 @@ export declare class Navbar extends ReactiveComponent {
|
|
|
44
43
|
changeModule(): void;
|
|
45
44
|
changeTenant(): void;
|
|
46
45
|
clearUserPreferences(): void;
|
|
47
|
-
clearCacheClient(): void;
|
|
48
|
-
clearCacheServer(): void;
|
|
49
46
|
clearAll(): void;
|
|
50
47
|
clearMessages(): void;
|
|
51
48
|
completedJobClicked(job: ApplicationJob): void;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
searchTerm: string;
|
|
55
|
-
searchingTerm: boolean;
|
|
56
|
-
searchResult: SearchResultContainer;
|
|
57
|
-
searchRequest(): void;
|
|
58
|
-
searchModelChanged(): void;
|
|
59
|
-
closeSearch(): void;
|
|
60
|
-
FilterSearchResults(item?: SearchResult): void;
|
|
49
|
+
showModules: boolean;
|
|
50
|
+
onShowModules(): void;
|
|
61
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<Navbar, never>;
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Navbar, "navbar", never, {}, {}, never,
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Navbar, "navbar", never, {}, {}, never, ["*"], true, never>;
|
|
63
53
|
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, NgZone, Type } from "@angular/core";
|
|
2
2
|
import { Router } from "@angular/router";
|
|
3
3
|
import { LocalizationService } from "@esfaenza/localizations";
|
|
4
|
-
import { ApplicationMenu } from "@esfaenza/core/domain";
|
|
5
|
-
import { AppState, MenuFilteringService } from "@esfaenza/core/services";
|
|
6
|
-
import { UtilityService } from "@esfaenza/extensions";
|
|
4
|
+
import { ApplicationMenu, SearchResult, SearchResultContainer } from "@esfaenza/core/domain";
|
|
5
|
+
import { AppState, GlobalSearchService, MenuFilteringService, TokenService } from "@esfaenza/core/services";
|
|
6
|
+
import { MessageService, UtilityService } from "@esfaenza/extensions";
|
|
7
7
|
import { AccessControlService } from "@esfaenza/access-control";
|
|
8
|
+
import { HTTPService } from "@esfaenza/httpservice";
|
|
9
|
+
import { SafeResourceUrl } from "@angular/platform-browser";
|
|
8
10
|
import * as i0 from "@angular/core";
|
|
9
11
|
export declare class Sidebar {
|
|
10
12
|
lc: LocalizationService;
|
|
@@ -17,6 +19,10 @@ export declare class Sidebar {
|
|
|
17
19
|
private aac;
|
|
18
20
|
private menuItemsRaw;
|
|
19
21
|
private menuFilteringService;
|
|
22
|
+
sr: TokenService;
|
|
23
|
+
private https;
|
|
24
|
+
private msgs;
|
|
25
|
+
globalSearchService: GlobalSearchService;
|
|
20
26
|
menuItems: Array<any>;
|
|
21
27
|
menuHeight: number;
|
|
22
28
|
isMenuCollapsed: boolean;
|
|
@@ -24,8 +30,13 @@ export declare class Sidebar {
|
|
|
24
30
|
showHoverElem: boolean;
|
|
25
31
|
hoverElemHeight: number;
|
|
26
32
|
hoverElemTop: number;
|
|
33
|
+
applicationVersion: string;
|
|
34
|
+
applicationName: string;
|
|
35
|
+
user: string;
|
|
36
|
+
tenant: string;
|
|
37
|
+
SearchModel: string;
|
|
27
38
|
sidebar: ElementRef;
|
|
28
|
-
constructor(lc: LocalizationService, lcMenu: Type<LocalizationService>, cdr: ChangeDetectorRef, _elementRef: ElementRef, _router: Router, _state: AppState, zone: NgZone, utiExts: UtilityService, aac: AccessControlService, menuItemsRaw: ApplicationMenu[], menuFilteringService: MenuFilteringService);
|
|
39
|
+
constructor(lc: LocalizationService, lcMenu: Type<LocalizationService>, cdr: ChangeDetectorRef, _elementRef: ElementRef, _router: Router, _state: AppState, zone: NgZone, utiExts: UtilityService, aac: AccessControlService, menuItemsRaw: ApplicationMenu[], menuFilteringService: MenuFilteringService, sr: TokenService, https: HTTPService, msgs: MessageService, globalSearchService: GlobalSearchService);
|
|
29
40
|
ngOnInit(): Promise<void>;
|
|
30
41
|
private getMenuItems;
|
|
31
42
|
private checkSubMenuOverClaims;
|
|
@@ -39,6 +50,22 @@ export declare class Sidebar {
|
|
|
39
50
|
updateSidebarHeight(): void;
|
|
40
51
|
collapseMenu(jQueryevent: any, item: any): boolean;
|
|
41
52
|
private outsideAngularClickHandler;
|
|
42
|
-
|
|
53
|
+
onChangeTenant(): void;
|
|
54
|
+
onLogout(): void;
|
|
55
|
+
safeprofilepic: SafeResourceUrl;
|
|
56
|
+
private getUserProfileData;
|
|
57
|
+
SelectedResult: SearchResult;
|
|
58
|
+
ShowSingleTable: boolean;
|
|
59
|
+
searchTerm: string;
|
|
60
|
+
searchingTerm: boolean;
|
|
61
|
+
searchResult: SearchResultContainer;
|
|
62
|
+
onSearchRequest(): void;
|
|
63
|
+
onSearchModelChanged(): void;
|
|
64
|
+
closeSearch(): void;
|
|
65
|
+
FilterSearchResults(item?: SearchResult): void;
|
|
66
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Sidebar, [null, { optional: true; }, null, null, null, null, null, null, null, null, null, null, null, null, null]>;
|
|
43
67
|
static ɵcmp: i0.ɵɵComponentDeclaration<Sidebar, "sidebar", never, {}, {}, never, never, true, never>;
|
|
44
68
|
}
|
|
69
|
+
export declare class ProfilePicture {
|
|
70
|
+
image: string;
|
|
71
|
+
}
|
|
@@ -1,18 +1,23 @@
|
|
|
1
|
-
export * from './back-top/back-top.component';
|
|
2
|
-
export * from './breadcrumb/breadcrumb.component';
|
|
3
|
-
export * from './error/404/pagenotfound.component';
|
|
4
|
-
export * from './error/500/servererror.component';
|
|
5
|
-
export * from './error/Angular/angularerror.component';
|
|
6
|
-
export * from './page/pages.component';
|
|
7
|
-
export * from './external-page/external_pages.component';
|
|
8
|
-
export * from './jace-login/jace-login.component';
|
|
9
|
-
export * from './navbar/navbar.component';
|
|
10
|
-
export * from './navbar/modules-board/jace-modules-board.component';
|
|
11
|
-
export * from './redirecter/redirecter.component';
|
|
12
|
-
export * from './sidebar/sidebar.component';
|
|
13
|
-
export * from './base/base.component';
|
|
14
|
-
export * from './base/reactive.component';
|
|
15
|
-
export * from './jace-resource/jace-resource.component';
|
|
1
|
+
export * from './page-structure/back-top/back-top.component';
|
|
2
|
+
export * from './page-structure/breadcrumb/breadcrumb.component';
|
|
3
|
+
export * from './page-structure/error/404/pagenotfound.component';
|
|
4
|
+
export * from './page-structure/error/500/servererror.component';
|
|
5
|
+
export * from './page-structure/error/Angular/angularerror.component';
|
|
6
|
+
export * from './page-structure/page/pages.component';
|
|
7
|
+
export * from './page-structure/external-page/external_pages.component';
|
|
8
|
+
export * from './page-structure/jace-login/jace-login.component';
|
|
9
|
+
export * from './page-structure/navbar/navbar.component';
|
|
10
|
+
export * from './page-structure/navbar/modules-board/jace-modules-board.component';
|
|
11
|
+
export * from './page-structure/redirecter/redirecter.component';
|
|
12
|
+
export * from './page-structure/sidebar/sidebar.component';
|
|
13
|
+
export * from './page-structure/base/base.component';
|
|
14
|
+
export * from './page-structure/base/reactive.component';
|
|
15
|
+
export * from './page-structure/jace-resource/jace-resource.component';
|
|
16
16
|
export * from './components.module';
|
|
17
17
|
export * from "./es-modal/es-modal.component";
|
|
18
18
|
export * from "./es-modal/es-modal-head/es-modal-head.component";
|
|
19
|
+
export * from './search/filters-topbar/filters-topbar.component';
|
|
20
|
+
export * from './search/filters-sidebar/filters-sidebar.component';
|
|
21
|
+
export * from './search/filters-sidebar-section/filters-sidebar-section.component';
|
|
22
|
+
export * from './search/filters-sidebar-item/filters-sidebar-item.component';
|
|
23
|
+
export * from './search/es-filters/es-filters.component';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { EsFiltersService } from "./es-filters.service";
|
|
3
|
+
import { FiltersHorizontalComponent } from "../filters-topbar/filters-topbar.component";
|
|
4
|
+
import { FiltersVerticalComponent } from "../filters-sidebar/filters-sidebar.component";
|
|
5
|
+
import { KeyValue } from "@esfaenza/core/domain";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class EsFiltersComponent {
|
|
8
|
+
private filtersService;
|
|
9
|
+
SearchView: any;
|
|
10
|
+
DefaultFilters: string[];
|
|
11
|
+
Title: string;
|
|
12
|
+
Description: string;
|
|
13
|
+
onSendSearch: EventEmitter<void>;
|
|
14
|
+
filters_h: FiltersHorizontalComponent;
|
|
15
|
+
filters_v: FiltersVerticalComponent;
|
|
16
|
+
Sources: {
|
|
17
|
+
id: string;
|
|
18
|
+
source: KeyValue[];
|
|
19
|
+
}[];
|
|
20
|
+
constructor(filtersService: EsFiltersService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
onUpdateFiltersTop(): void;
|
|
23
|
+
onShowFilters(): void;
|
|
24
|
+
emitSendSearch(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EsFiltersComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EsFiltersComponent, "es-filters", never, { "SearchView": "SearchView"; "DefaultFilters": "DefaultFilters"; "Title": "Title"; "Description": "Description"; "Sources": "Sources"; }, { "onSendSearch": "onSendSearch"; }, never, ["*"], true, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { UtilityService } from "@esfaenza/extensions";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const SlideInFromRight: import("@angular/animations").AnimationReferenceMetadata;
|
|
5
|
+
export declare class FiltersVerticalComponent {
|
|
6
|
+
private utiExts;
|
|
7
|
+
searchView: any;
|
|
8
|
+
DefaultFilters: string[];
|
|
9
|
+
Title: string;
|
|
10
|
+
Description: string;
|
|
11
|
+
onSendSearch: EventEmitter<void>;
|
|
12
|
+
BackupView: any;
|
|
13
|
+
constructor(utiExts: UtilityService);
|
|
14
|
+
onShowFilters(): void;
|
|
15
|
+
onHideFilters(confirm: boolean): void;
|
|
16
|
+
private doShowFilters;
|
|
17
|
+
private doHideFilters;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FiltersVerticalComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FiltersVerticalComponent, "filters-sidebar", never, { "searchView": "searchView"; "DefaultFilters": "DefaultFilters"; "Title": "Title"; "Description": "Description"; }, { "onSendSearch": "onSendSearch"; }, never, ["*"], true, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EsFiltersService } from "../es-filters/es-filters.service";
|
|
2
|
+
import { KeyValue } from "@esfaenza/core/domain";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FiltersVerticalItemComponent {
|
|
5
|
+
private filtersService;
|
|
6
|
+
SearchView: any;
|
|
7
|
+
Required: boolean;
|
|
8
|
+
propName: string;
|
|
9
|
+
type: "input" | "select" | "multiselect" | "date" | "boolean";
|
|
10
|
+
source: KeyValue[];
|
|
11
|
+
get labelName(): string;
|
|
12
|
+
constructor(filtersService: EsFiltersService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FiltersVerticalItemComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FiltersVerticalItemComponent, "filters-sidebar-item", never, { "SearchView": "SearchView"; "Required": "Required"; "propName": "propName"; "type": "type"; "source": "source"; }, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FiltersVerticalSectionComponent {
|
|
3
|
+
Title: string;
|
|
4
|
+
isCollapsed: boolean;
|
|
5
|
+
constructor();
|
|
6
|
+
onCollapse(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FiltersVerticalSectionComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FiltersVerticalSectionComponent, "filters-sidebar-section", never, { "Title": "Title"; }, {}, never, ["*"], true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { ClipboardService, MessageService } from "@esfaenza/extensions";
|
|
3
|
+
import { KeyValue } from "@esfaenza/core/domain";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FiltersHorizontalComponent {
|
|
6
|
+
private cbs;
|
|
7
|
+
private msgs;
|
|
8
|
+
searchView: any;
|
|
9
|
+
sources: {
|
|
10
|
+
id: string;
|
|
11
|
+
source: KeyValue[];
|
|
12
|
+
}[];
|
|
13
|
+
DefaultFilters: string[];
|
|
14
|
+
onShowFilters: EventEmitter<void>;
|
|
15
|
+
onSendSearch: EventEmitter<void>;
|
|
16
|
+
Filters: EstableFilter[];
|
|
17
|
+
trackByFilter: (_: number, item: EstableFilter) => string;
|
|
18
|
+
constructor(cbs: ClipboardService, msgs: MessageService);
|
|
19
|
+
onUpdateFilters(): void;
|
|
20
|
+
onRemoveFilter(id: string): void;
|
|
21
|
+
onClipboardCopy(item: EstableFilter): boolean;
|
|
22
|
+
onRemoveAllFilters(): void;
|
|
23
|
+
private doUpdateFilters;
|
|
24
|
+
private doRemoveFilter;
|
|
25
|
+
private doClipboardCopy;
|
|
26
|
+
private doRemoveAllFilters;
|
|
27
|
+
emitShowFilters(): void;
|
|
28
|
+
emitSendSearch(): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FiltersHorizontalComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FiltersHorizontalComponent, "filters-topbar", never, { "searchView": "searchView"; "sources": "sources"; "DefaultFilters": "DefaultFilters"; }, { "onShowFilters": "onShowFilters"; "onSendSearch": "onSendSearch"; }, never, never, true, never>;
|
|
31
|
+
}
|
|
32
|
+
export declare class EstableFilter {
|
|
33
|
+
id: string;
|
|
34
|
+
label: string;
|
|
35
|
+
value: string;
|
|
36
|
+
isdefault: boolean;
|
|
37
|
+
constructor(id: string, label: string, value: string, isdefault: boolean);
|
|
38
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Filter: (filterName: string) => (target: Object, propertyKey: string) => void;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare class ActiveModuleView {
|
|
2
|
-
idmodule
|
|
3
|
-
name
|
|
4
|
-
altname
|
|
5
|
-
category
|
|
6
|
-
tenant
|
|
7
|
-
uiurl
|
|
8
|
-
environment
|
|
9
|
-
href
|
|
2
|
+
idmodule?: number;
|
|
3
|
+
name?: string;
|
|
4
|
+
altname?: string;
|
|
5
|
+
category?: string;
|
|
6
|
+
tenant?: string;
|
|
7
|
+
uiurl?: string;
|
|
8
|
+
environment?: string;
|
|
9
|
+
href?: string;
|
|
10
10
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare class ChangePasswordDto {
|
|
2
|
+
accountid: string;
|
|
3
|
+
oldpwd: string;
|
|
4
|
+
newpwd: string;
|
|
5
|
+
confirmpwd: string;
|
|
6
|
+
changeall: boolean;
|
|
7
|
+
changeforexternals: boolean;
|
|
8
|
+
constructor(accountid: string, oldpwd: string, newpwd: string, confirmpwd: string, changeall?: boolean, changeforexternals?: boolean);
|
|
9
|
+
}
|
package/domain/public-api.d.ts
CHANGED
|
@@ -15,4 +15,8 @@ export * from './models/jace/JaceRole';
|
|
|
15
15
|
export * from './models/jace/JaceUser';
|
|
16
16
|
export * from './models/global_search/SaerchResultContainer';
|
|
17
17
|
export * from './models/global_search/SearchResult';
|
|
18
|
+
export * from './models/decorators/decorators';
|
|
19
|
+
export * from './models/user/ChangePasswordDto';
|
|
20
|
+
export * from './models/user/ChangeProfilePictureDto';
|
|
21
|
+
export * from './models/user/UpdateAccountRecoverySettingsDto';
|
|
18
22
|
export * from './tokens';
|