spiderly 0.0.8 → 19.0.1
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/eslint.config.js +32 -0
- package/ng-package.json +10 -0
- package/package.json +55 -65
- package/src/lib/components/auth/login/login.component.html +25 -0
- package/src/lib/components/auth/login/login.component.ts +77 -0
- package/src/lib/components/auth/partials/auth.component.html +29 -0
- package/src/lib/components/auth/partials/auth.component.ts +60 -0
- package/src/lib/components/auth/partials/login-verification.component.html +2 -0
- package/src/lib/components/auth/partials/login-verification.component.ts +41 -0
- package/src/lib/components/auth/partials/registration-verification.component.html +1 -0
- package/src/lib/components/auth/partials/registration-verification.component.ts +41 -0
- package/src/lib/components/auth/partials/verification-wrapper.component.html +39 -0
- package/src/lib/components/auth/partials/verification-wrapper.component.ts +68 -0
- package/src/lib/components/auth/registration/registration.component.html +31 -0
- package/src/lib/components/auth/registration/registration.component.ts +77 -0
- package/src/lib/components/base-details/role-base-details.component.html +33 -0
- package/src/lib/components/base-details/role-base-details.component.ts +194 -0
- package/src/lib/components/base-form/base-form copy.ts +356 -0
- package/src/lib/components/card-skeleton/card-skeleton.component.html +8 -0
- package/src/lib/components/card-skeleton/card-skeleton.component.ts +21 -0
- package/src/lib/components/footer/app.footer.component.ts +17 -0
- package/src/lib/components/footer/footer.component.html +3 -0
- package/src/lib/components/footer/footer.component.ts +17 -0
- package/src/lib/components/index-card/index-card.component.html +15 -0
- package/src/lib/components/index-card/index-card.component.ts +48 -0
- package/src/lib/components/info-card/info-card.component.html +18 -0
- package/src/lib/components/info-card/info-card.component.ts +29 -0
- package/src/lib/components/layout/layout-base.component.ts +140 -0
- package/src/lib/components/layout/sidebar/menuitem.component.html +40 -0
- package/src/lib/components/layout/sidebar/menuitem.component.ts +179 -0
- package/src/lib/components/layout/sidebar/sidebar-menu.component.html +6 -0
- package/src/lib/components/layout/sidebar/sidebar-menu.component.ts +44 -0
- package/src/lib/components/layout/sidebar/sidebar-menu.service.ts +22 -0
- package/src/lib/components/layout/sidebar/sidebar.component.html +1 -0
- package/src/lib/components/layout/sidebar/sidebar.component.ts +20 -0
- package/src/lib/components/layout/topbar/topbar.component.html +64 -0
- package/src/lib/components/layout/topbar/topbar.component.ts +137 -0
- package/src/lib/components/not-found/not-found.component.html +27 -0
- package/src/lib/components/not-found/not-found.component.ts +22 -0
- package/src/lib/components/required/required.component.html +1 -0
- package/src/lib/components/required/required.component.ts +13 -0
- package/src/lib/components/spiderly-buttons/google-button/google-button.component.html +5 -0
- package/src/lib/components/spiderly-buttons/google-button/google-button.component.ts +53 -0
- package/src/lib/components/spiderly-buttons/return-button/return-button.component.html +3 -0
- package/src/lib/components/spiderly-buttons/return-button/return-button.component.ts +35 -0
- package/src/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.html +14 -0
- package/src/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.ts +27 -0
- package/src/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.ts +61 -0
- package/src/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.html +15 -0
- package/src/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.ts +24 -0
- package/src/lib/components/spiderly-data-table/spiderly-data-table.component.html +93 -0
- package/{styles → src/lib}/components/spiderly-data-table/spiderly-data-table.component.scss +15 -0
- package/src/lib/components/spiderly-data-table/spiderly-data-table.component.ts +614 -0
- package/src/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.html +17 -0
- package/src/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.ts +39 -0
- package/src/lib/components/spiderly-form-control/spiderly-form-control.ts +60 -0
- package/src/lib/components/spiderly-panels/panel-body/panel-body.component.html +8 -0
- package/src/lib/components/spiderly-panels/panel-body/panel-body.component.ts +16 -0
- package/src/lib/components/spiderly-panels/panel-footer/panel-footer.component.html +8 -0
- package/{styles → src/lib}/components/spiderly-panels/panel-footer/panel-footer.component.scss +3 -3
- package/src/lib/components/spiderly-panels/panel-footer/panel-footer.component.ts +15 -0
- package/src/lib/components/spiderly-panels/panel-header/panel-header.component.html +25 -0
- package/src/lib/components/spiderly-panels/panel-header/panel-header.component.ts +69 -0
- package/src/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.html +7 -0
- package/src/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.ts +17 -0
- package/src/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.html +40 -0
- package/src/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +11 -0
- package/src/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.ts +42 -0
- package/src/lib/components/spiderly-panels/spiderly-panels.module.ts +32 -0
- package/src/lib/controls/base-autocomplete-control.ts +17 -0
- package/src/lib/controls/base-control.ts +60 -0
- package/src/lib/controls/base-dropdown-control.ts +37 -0
- package/src/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.html +36 -0
- package/src/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.ts +56 -0
- package/src/lib/controls/spiderly-calendar/spiderly-calendar.component.html +21 -0
- package/src/lib/controls/spiderly-calendar/spiderly-calendar.component.ts +37 -0
- package/src/lib/controls/spiderly-checkbox/spiderly-checkbox.component.html +16 -0
- package/src/lib/controls/spiderly-checkbox/spiderly-checkbox.component.ts +38 -0
- package/src/lib/controls/spiderly-colorpick/spiderly-colorpick.component.html +33 -0
- package/src/lib/controls/spiderly-colorpick/spiderly-colorpick.component.ts +40 -0
- package/src/lib/controls/spiderly-controls.module.ts +61 -0
- package/src/lib/controls/spiderly-dropdown/spiderly-dropdown.component.html +27 -0
- package/src/lib/controls/spiderly-dropdown/spiderly-dropdown.component.ts +39 -0
- package/src/lib/controls/spiderly-editor/spiderly-editor.component.html +22 -0
- package/src/lib/controls/spiderly-editor/spiderly-editor.component.ts +58 -0
- package/src/lib/controls/spiderly-file/spiderly-file.component.html +54 -0
- package/src/lib/controls/spiderly-file/spiderly-file.component.ts +123 -0
- package/src/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.html +30 -0
- package/src/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.ts +38 -0
- package/src/lib/controls/spiderly-multiselect/spiderly-multiselect.component.html +23 -0
- package/src/lib/controls/spiderly-multiselect/spiderly-multiselect.component.ts +32 -0
- package/src/lib/controls/spiderly-number/spiderly-number.component.html +19 -0
- package/src/lib/controls/spiderly-number/spiderly-number.component.ts +37 -0
- package/src/lib/controls/spiderly-password/spiderly-password.component.html +17 -0
- package/src/lib/controls/spiderly-password/spiderly-password.component.ts +34 -0
- package/src/lib/controls/spiderly-textarea/spiderly-textarea.component.html +18 -0
- package/src/lib/controls/spiderly-textarea/spiderly-textarea.component.ts +32 -0
- package/src/lib/controls/spiderly-textbox/spiderly-textbox.component.html +23 -0
- package/src/lib/controls/spiderly-textbox/spiderly-textbox.component.ts +41 -0
- package/src/lib/entities/base-entity.ts +25 -0
- package/src/lib/entities/codebook.ts +23 -0
- package/src/lib/entities/init-company-auth-dialog-details.ts +22 -0
- package/src/lib/entities/init-top-bar-data.ts +35 -0
- package/src/lib/entities/is-authorized-for-save-event.ts +22 -0
- package/src/lib/entities/last-menu-icon-index-clicked.ts +18 -0
- package/src/lib/entities/lazy-load-selected-ids-result.ts +22 -0
- package/{lib/entities/menuchangeevent.d.ts → src/lib/entities/menuchangeevent.ts} +4 -4
- package/src/lib/entities/mime-type.ts +15 -0
- package/src/lib/entities/namebook.ts +22 -0
- package/src/lib/entities/primeng-option.ts +23 -0
- package/src/lib/entities/readonly-object.ts +1 -0
- package/src/lib/entities/security-entities.ts +548 -0
- package/src/lib/entities/simple-save-result.ts +19 -0
- package/src/lib/entities/spiderly-button.ts +30 -0
- package/{lib/entities/table-filter-context.d.ts → src/lib/entities/table-filter-context.ts} +6 -5
- package/src/lib/entities/table-filter-sort-meta.ts +5 -0
- package/{lib/entities/table-filter.d.ts → src/lib/entities/table-filter.ts} +48 -23
- package/src/lib/entities/table-response.ts +5 -0
- package/src/lib/enums/security-enums.ts +28 -0
- package/src/lib/enums/verification-type-codes.ts +5 -0
- package/src/lib/guards/auth.guard.ts +39 -0
- package/src/lib/guards/not-auth.guard.ts +32 -0
- package/src/lib/handlers/spiderly-error-handler.ts +32 -0
- package/src/lib/handlers/spiderly-transloco-fallback-strategy.ts +25 -0
- package/src/lib/interceptors/http-loading.interceptor.ts +21 -0
- package/src/lib/interceptors/json-parser.interceptor.ts +44 -0
- package/src/lib/interceptors/jwt.interceptor.ts +18 -0
- package/src/lib/interceptors/unauthorized.interceptor.ts +77 -0
- package/src/lib/modules/core.module.ts +22 -0
- package/src/lib/modules/primeng.module.ts +122 -0
- package/src/lib/modules/spiderly-transloco.module.ts +50 -0
- package/src/lib/services/api.service.security.ts +120 -0
- package/src/lib/services/app-initializer.ts +9 -0
- package/src/lib/services/app-layout-base.service.ts +184 -0
- package/src/lib/services/auth-base.service.ts +271 -0
- package/src/lib/services/base-form.service.ts +178 -0
- package/src/lib/services/config-base.service.ts +36 -0
- package/src/lib/services/helper-functions.ts +288 -0
- package/src/lib/services/spiderly-message.service.ts +66 -0
- package/src/lib/services/spiderly-transloco-loader.ts +15 -0
- package/src/lib/services/translate-labels-abstract.service.ts +13 -0
- package/src/lib/services/validator-abstract.service.ts +63 -0
- package/{styles → src/lib}/styles/layout/_config.scss +2 -2
- package/{styles → src/lib}/styles/layout/_content.scss +2 -0
- package/{styles → src/lib}/styles/layout/_footer.scss +2 -0
- package/{styles → src/lib}/styles/layout/_main.scss +6 -3
- package/{styles → src/lib}/styles/layout/_menu.scss +10 -7
- package/{styles → src/lib}/styles/layout/_mixins.scss +2 -2
- package/{styles → src/lib}/styles/layout/_preloading.scss +1 -1
- package/{styles → src/lib}/styles/layout/_responsive.scss +2 -0
- package/{styles → src/lib}/styles/layout/_spiderly-controls.scss +2 -0
- package/{styles → src/lib}/styles/layout/_topbar.scss +16 -11
- package/{styles → src/lib}/styles/layout/_typography.scss +1 -1
- package/{styles → src/lib}/styles/layout/_utils.scss +1 -1
- package/{styles → src/lib}/styles/layout/_variables.scss +59 -53
- package/src/lib/styles/layout/layout.scss +13 -0
- package/{styles → src/lib}/styles/shared.scss +70 -42
- package/src/lib/styles/styles.scss +3 -0
- package/{public-api.d.ts → src/public-api.ts} +103 -90
- package/tsconfig.lib.json +17 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/esm2022/lib/components/auth/auth.module.mjs +0 -65
- package/esm2022/lib/components/auth/login/login.component.mjs +0 -60
- package/esm2022/lib/components/auth/partials/auth.component.mjs +0 -53
- package/esm2022/lib/components/auth/partials/login-verification.component.mjs +0 -39
- package/esm2022/lib/components/auth/partials/registration-verification.component.mjs +0 -37
- package/esm2022/lib/components/auth/partials/verification-wrapper.component.mjs +0 -74
- package/esm2022/lib/components/auth/registration/registration.component.mjs +0 -59
- package/esm2022/lib/components/base-details/role-base-details.component.mjs +0 -171
- package/esm2022/lib/components/base-form/base-form copy.mjs +0 -247
- package/esm2022/lib/components/card-skeleton/card-skeleton.component.mjs +0 -25
- package/esm2022/lib/components/footer/footer.component.mjs +0 -16
- package/esm2022/lib/components/index-card/index-card.component.mjs +0 -57
- package/esm2022/lib/components/info-card/info-card.component.mjs +0 -29
- package/esm2022/lib/components/layout/layout-base.component.mjs +0 -121
- package/esm2022/lib/components/layout/sidebar/menuitem.component.mjs +0 -161
- package/esm2022/lib/components/layout/sidebar/sidebar-menu.component.mjs +0 -34
- package/esm2022/lib/components/layout/sidebar/sidebar-menu.service.mjs +0 -26
- package/esm2022/lib/components/layout/sidebar/sidebar.component.mjs +0 -21
- package/esm2022/lib/components/layout/topbar/topbar.component.mjs +0 -115
- package/esm2022/lib/components/not-found/not-found.component.mjs +0 -20
- package/esm2022/lib/components/required/required.component.mjs +0 -12
- package/esm2022/lib/components/spiderly-buttons/google-button/google-button.component.mjs +0 -43
- package/esm2022/lib/components/spiderly-buttons/return-button/return-button.component.mjs +0 -37
- package/esm2022/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.mjs +0 -20
- package/esm2022/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.mjs +0 -68
- package/esm2022/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.mjs +0 -22
- package/esm2022/lib/components/spiderly-data-table/spiderly-data-table.component.mjs +0 -501
- package/esm2022/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.mjs +0 -42
- package/esm2022/lib/components/spiderly-form-control/spiderly-form-control.mjs +0 -36
- package/esm2022/lib/components/spiderly-panels/panel-body/panel-body.component.mjs +0 -19
- package/esm2022/lib/components/spiderly-panels/panel-footer/panel-footer.component.mjs +0 -14
- package/esm2022/lib/components/spiderly-panels/panel-header/panel-header.component.mjs +0 -49
- package/esm2022/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.mjs +0 -20
- package/esm2022/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.mjs +0 -63
- package/esm2022/lib/components/spiderly-panels/spiderly-panels.module.mjs +0 -49
- package/esm2022/lib/controls/base-autocomplete-control.mjs +0 -18
- package/esm2022/lib/controls/base-control.mjs +0 -62
- package/esm2022/lib/controls/base-dropdown-control.mjs +0 -37
- package/esm2022/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.mjs +0 -60
- package/esm2022/lib/controls/spiderly-calendar/spiderly-calendar.component.mjs +0 -39
- package/esm2022/lib/controls/spiderly-checkbox/spiderly-checkbox.component.mjs +0 -45
- package/esm2022/lib/controls/spiderly-colorpick/spiderly-colorpick.component.mjs +0 -40
- package/esm2022/lib/controls/spiderly-controls.module.mjs +0 -112
- package/esm2022/lib/controls/spiderly-dropdown/spiderly-dropdown.component.mjs +0 -40
- package/esm2022/lib/controls/spiderly-editor/spiderly-editor.component.mjs +0 -59
- package/esm2022/lib/controls/spiderly-file/spiderly-file.component.mjs +0 -106
- package/esm2022/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.mjs +0 -38
- package/esm2022/lib/controls/spiderly-multiselect/spiderly-multiselect.component.mjs +0 -34
- package/esm2022/lib/controls/spiderly-number/spiderly-number.component.mjs +0 -44
- package/esm2022/lib/controls/spiderly-password/spiderly-password.component.mjs +0 -37
- package/esm2022/lib/controls/spiderly-textarea/spiderly-textarea.component.mjs +0 -34
- package/esm2022/lib/controls/spiderly-textbox/spiderly-textbox.component.mjs +0 -45
- package/esm2022/lib/entities/base-entity.mjs +0 -18
- package/esm2022/lib/entities/codebook.mjs +0 -10
- package/esm2022/lib/entities/init-company-auth-dialog-details.mjs +0 -9
- package/esm2022/lib/entities/init-top-bar-data.mjs +0 -12
- package/esm2022/lib/entities/is-authorized-for-save-event.mjs +0 -9
- package/esm2022/lib/entities/last-menu-icon-index-clicked.mjs +0 -8
- package/esm2022/lib/entities/lazy-load-selected-ids-result.mjs +0 -11
- package/esm2022/lib/entities/menuchangeevent.mjs +0 -3
- package/esm2022/lib/entities/mime-type.mjs +0 -15
- package/esm2022/lib/entities/namebook.mjs +0 -9
- package/esm2022/lib/entities/primeng-option.mjs +0 -9
- package/esm2022/lib/entities/security-entities.mjs +0 -169
- package/esm2022/lib/entities/simple-save-result.mjs +0 -9
- package/esm2022/lib/entities/spiderly-button.mjs +0 -11
- package/esm2022/lib/entities/table-filter-context.mjs +0 -3
- package/esm2022/lib/entities/table-filter-sort-meta.mjs +0 -3
- package/esm2022/lib/entities/table-filter.mjs +0 -15
- package/esm2022/lib/entities/table-response.mjs +0 -3
- package/esm2022/lib/enums/security-enums.mjs +0 -26
- package/esm2022/lib/enums/verification-type-codes.mjs +0 -6
- package/esm2022/lib/guards/auth.guard.mjs +0 -40
- package/esm2022/lib/guards/not-auth.guard.mjs +0 -32
- package/esm2022/lib/handlers/spiderly-error-handler.mjs +0 -30
- package/esm2022/lib/handlers/spiderly-transloco-fallback-strategy.mjs +0 -24
- package/esm2022/lib/interceptors/http-loading.interceptor.mjs +0 -27
- package/esm2022/lib/interceptors/json-parser.interceptor.mjs +0 -47
- package/esm2022/lib/interceptors/jwt.interceptor.mjs +0 -27
- package/esm2022/lib/interceptors/unauthorized.interceptor.mjs +0 -64
- package/esm2022/lib/modules/core.module.mjs +0 -140
- package/esm2022/lib/modules/primeng.module.mjs +0 -278
- package/esm2022/lib/modules/spiderly-transloco.module.mjs +0 -44
- package/esm2022/lib/services/api.service.security.mjs +0 -86
- package/esm2022/lib/services/app-initializer.mjs +0 -6
- package/esm2022/lib/services/app-layout-base.service.mjs +0 -132
- package/esm2022/lib/services/auth-base.service.mjs +0 -220
- package/esm2022/lib/services/base-form.service.mjs +0 -124
- package/esm2022/lib/services/config-base.service.mjs +0 -33
- package/esm2022/lib/services/helper-functions.mjs +0 -229
- package/esm2022/lib/services/spiderly-message.service.mjs +0 -64
- package/esm2022/lib/services/spiderly-transloco-loader.mjs +0 -20
- package/esm2022/lib/services/translate-labels-abstract.service.mjs +0 -15
- package/esm2022/lib/services/validator-abstract.service.mjs +0 -51
- package/esm2022/public-api.mjs +0 -94
- package/esm2022/spiderly.mjs +0 -5
- package/fesm2022/spiderly.mjs +0 -4807
- package/fesm2022/spiderly.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/components/auth/auth.module.d.ts +0 -17
- package/lib/components/auth/login/login.component.d.ts +0 -35
- package/lib/components/auth/partials/auth.component.d.ts +0 -21
- package/lib/components/auth/partials/login-verification.component.d.ts +0 -18
- package/lib/components/auth/partials/registration-verification.component.d.ts +0 -17
- package/lib/components/auth/partials/verification-wrapper.component.d.ts +0 -31
- package/lib/components/auth/registration/registration.component.d.ts +0 -34
- package/lib/components/base-details/role-base-details.component.d.ts +0 -50
- package/lib/components/base-form/base-form copy.d.ts +0 -54
- package/lib/components/card-skeleton/card-skeleton.component.d.ts +0 -12
- package/lib/components/footer/footer.component.d.ts +0 -9
- package/lib/components/index-card/index-card.component.d.ts +0 -22
- package/lib/components/info-card/info-card.component.d.ts +0 -11
- package/lib/components/layout/layout-base.component.d.ts +0 -37
- package/lib/components/layout/sidebar/menuitem.component.d.ts +0 -43
- package/lib/components/layout/sidebar/sidebar-menu.component.d.ts +0 -23
- package/lib/components/layout/sidebar/sidebar-menu.service.d.ts +0 -12
- package/lib/components/layout/sidebar/sidebar.component.d.ts +0 -11
- package/lib/components/layout/topbar/topbar.component.d.ts +0 -45
- package/lib/components/not-found/not-found.component.d.ts +0 -9
- package/lib/components/required/required.component.d.ts +0 -6
- package/lib/components/spiderly-buttons/google-button/google-button.component.d.ts +0 -17
- package/lib/components/spiderly-buttons/return-button/return-button.component.d.ts +0 -10
- package/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.d.ts +0 -6
- package/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.d.ts +0 -27
- package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts +0 -8
- package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +0 -157
- package/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.d.ts +0 -11
- package/lib/components/spiderly-form-control/spiderly-form-control.d.ts +0 -37
- package/lib/components/spiderly-panels/panel-body/panel-body.component.d.ts +0 -9
- package/lib/components/spiderly-panels/panel-footer/panel-footer.component.d.ts +0 -8
- package/lib/components/spiderly-panels/panel-header/panel-header.component.d.ts +0 -29
- package/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.d.ts +0 -10
- package/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.d.ts +0 -25
- package/lib/components/spiderly-panels/spiderly-panels.module.d.ts +0 -13
- package/lib/controls/base-autocomplete-control.d.ts +0 -9
- package/lib/controls/base-control.d.ts +0 -23
- package/lib/controls/base-dropdown-control.d.ts +0 -18
- package/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.d.ts +0 -18
- package/lib/controls/spiderly-calendar/spiderly-calendar.component.d.ts +0 -13
- package/lib/controls/spiderly-checkbox/spiderly-checkbox.component.d.ts +0 -14
- package/lib/controls/spiderly-colorpick/spiderly-colorpick.component.d.ts +0 -11
- package/lib/controls/spiderly-controls.module.d.ts +0 -22
- package/lib/controls/spiderly-dropdown/spiderly-dropdown.component.d.ts +0 -14
- package/lib/controls/spiderly-editor/spiderly-editor.component.d.ts +0 -16
- package/lib/controls/spiderly-file/spiderly-file.component.d.ts +0 -36
- package/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.d.ts +0 -13
- package/lib/controls/spiderly-multiselect/spiderly-multiselect.component.d.ts +0 -11
- package/lib/controls/spiderly-number/spiderly-number.component.d.ts +0 -15
- package/lib/controls/spiderly-password/spiderly-password.component.d.ts +0 -12
- package/lib/controls/spiderly-textarea/spiderly-textarea.component.d.ts +0 -11
- package/lib/controls/spiderly-textbox/spiderly-textbox.component.d.ts +0 -15
- package/lib/entities/base-entity.d.ts +0 -14
- package/lib/entities/codebook.d.ts +0 -9
- package/lib/entities/init-company-auth-dialog-details.d.ts +0 -9
- package/lib/entities/init-top-bar-data.d.ts +0 -16
- package/lib/entities/is-authorized-for-save-event.d.ts +0 -9
- package/lib/entities/last-menu-icon-index-clicked.d.ts +0 -7
- package/lib/entities/lazy-load-selected-ids-result.d.ts +0 -9
- package/lib/entities/mime-type.d.ts +0 -11
- package/lib/entities/namebook.d.ts +0 -9
- package/lib/entities/primeng-option.d.ts +0 -9
- package/lib/entities/security-entities.d.ts +0 -211
- package/lib/entities/simple-save-result.d.ts +0 -7
- package/lib/entities/spiderly-button.d.ts +0 -13
- package/lib/entities/table-filter-sort-meta.d.ts +0 -4
- package/lib/entities/table-response.d.ts +0 -4
- package/lib/enums/security-enums.d.ts +0 -22
- package/lib/enums/verification-type-codes.d.ts +0 -4
- package/lib/guards/auth.guard.d.ts +0 -15
- package/lib/guards/not-auth.guard.d.ts +0 -12
- package/lib/handlers/spiderly-error-handler.d.ts +0 -14
- package/lib/handlers/spiderly-transloco-fallback-strategy.d.ts +0 -13
- package/lib/interceptors/http-loading.interceptor.d.ts +0 -11
- package/lib/interceptors/json-parser.interceptor.d.ts +0 -11
- package/lib/interceptors/jwt.interceptor.d.ts +0 -11
- package/lib/interceptors/unauthorized.interceptor.d.ts +0 -16
- package/lib/modules/core.module.d.ts +0 -13
- package/lib/modules/primeng.module.d.ts +0 -42
- package/lib/modules/spiderly-transloco.module.d.ts +0 -9
- package/lib/services/api.service.security.d.ts +0 -35
- package/lib/services/app-initializer.d.ts +0 -4
- package/lib/services/app-layout-base.service.d.ts +0 -60
- package/lib/services/auth-base.service.d.ts +0 -55
- package/lib/services/base-form.service.d.ts +0 -27
- package/lib/services/config-base.service.d.ts +0 -24
- package/lib/services/helper-functions.d.ts +0 -37
- package/lib/services/spiderly-message.service.d.ts +0 -17
- package/lib/services/spiderly-transloco-loader.d.ts +0 -10
- package/lib/services/translate-labels-abstract.service.d.ts +0 -7
- package/lib/services/validator-abstract.service.d.ts +0 -13
- package/styles/styles/layout/layout.scss +0 -13
- package/styles/styles/styles.scss +0 -6
- package/styles/styles/theme/base/_colors.scss +0 -18
- package/styles/styles/theme/base/_common.scss +0 -75
- package/styles/styles/theme/base/_components.scss +0 -106
- package/styles/styles/theme/base/_mixins.scss +0 -343
- package/styles/styles/theme/base/components/button/_button.scss +0 -564
- package/styles/styles/theme/base/components/button/_speeddial.scss +0 -96
- package/styles/styles/theme/base/components/button/_splitbutton.scss +0 -381
- package/styles/styles/theme/base/components/data/_carousel.scss +0 -37
- package/styles/styles/theme/base/components/data/_datatable.scss +0 -338
- package/styles/styles/theme/base/components/data/_dataview.scss +0 -55
- package/styles/styles/theme/base/components/data/_filter.scss +0 -138
- package/styles/styles/theme/base/components/data/_orderlist.scss +0 -103
- package/styles/styles/theme/base/components/data/_organizationchart.scss +0 -50
- package/styles/styles/theme/base/components/data/_paginator.scss +0 -92
- package/styles/styles/theme/base/components/data/_picklist.scss +0 -103
- package/styles/styles/theme/base/components/data/_timeline.scss +0 -81
- package/styles/styles/theme/base/components/data/_tree.scss +0 -149
- package/styles/styles/theme/base/components/data/_treetable.scss +0 -256
- package/styles/styles/theme/base/components/data/_virtualscroller.scss +0 -28
- package/styles/styles/theme/base/components/file/_fileupload.scss +0 -64
- package/styles/styles/theme/base/components/input/_autocomplete.scss +0 -118
- package/styles/styles/theme/base/components/input/_calendar.scss +0 -263
- package/styles/styles/theme/base/components/input/_cascadeselect.scss +0 -130
- package/styles/styles/theme/base/components/input/_checkbox.scss +0 -90
- package/styles/styles/theme/base/components/input/_chips.scss +0 -55
- package/styles/styles/theme/base/components/input/_colorpicker.scss +0 -26
- package/styles/styles/theme/base/components/input/_dropdown.scss +0 -152
- package/styles/styles/theme/base/components/input/_editor.scss +0 -122
- package/styles/styles/theme/base/components/input/_inputgroup.scss +0 -75
- package/styles/styles/theme/base/components/input/_inputmask.scss +0 -16
- package/styles/styles/theme/base/components/input/_inputnumber.scss +0 -28
- package/styles/styles/theme/base/components/input/_inputswitch.scss +0 -60
- package/styles/styles/theme/base/components/input/_inputtext.scss +0 -100
- package/styles/styles/theme/base/components/input/_listbox.scss +0 -82
- package/styles/styles/theme/base/components/input/_multiselect.scss +0 -173
- package/styles/styles/theme/base/components/input/_password.scss +0 -52
- package/styles/styles/theme/base/components/input/_radiobutton.scss +0 -78
- package/styles/styles/theme/base/components/input/_rating.scss +0 -55
- package/styles/styles/theme/base/components/input/_selectbutton.scss +0 -50
- package/styles/styles/theme/base/components/input/_slider.scss +0 -71
- package/styles/styles/theme/base/components/input/_togglebutton.scss +0 -48
- package/styles/styles/theme/base/components/input/_treeselect.scss +0 -139
- package/styles/styles/theme/base/components/menu/_breadcrumb.scss +0 -42
- package/styles/styles/theme/base/components/menu/_contextmenu.scss +0 -39
- package/styles/styles/theme/base/components/menu/_dock.scss +0 -95
- package/styles/styles/theme/base/components/menu/_megamenu.scss +0 -55
- package/styles/styles/theme/base/components/menu/_menu.scss +0 -37
- package/styles/styles/theme/base/components/menu/_menubar.scss +0 -141
- package/styles/styles/theme/base/components/menu/_panelmenu.scss +0 -153
- package/styles/styles/theme/base/components/menu/_slidemenu.scss +0 -59
- package/styles/styles/theme/base/components/menu/_steps.scss +0 -56
- package/styles/styles/theme/base/components/menu/_tabmenu.scss +0 -74
- package/styles/styles/theme/base/components/menu/_tieredmenu.scss +0 -43
- package/styles/styles/theme/base/components/messages/_inlinemessage.scss +0 -69
- package/styles/styles/theme/base/components/messages/_message.scss +0 -107
- package/styles/styles/theme/base/components/messages/_toast.scss +0 -103
- package/styles/styles/theme/base/components/misc/_avatar.scss +0 -30
- package/styles/styles/theme/base/components/misc/_badge.scss +0 -48
- package/styles/styles/theme/base/components/misc/_blockui.scss +0 -0
- package/styles/styles/theme/base/components/misc/_chip.scss +0 -42
- package/styles/styles/theme/base/components/misc/_inplace.scss +0 -17
- package/styles/styles/theme/base/components/misc/_progressbar.scss +0 -17
- package/styles/styles/theme/base/components/misc/_scrolltop.scss +0 -25
- package/styles/styles/theme/base/components/misc/_skeleton.scss +0 -8
- package/styles/styles/theme/base/components/misc/_tag.scss +0 -40
- package/styles/styles/theme/base/components/misc/_terminal.scss +0 -12
- package/styles/styles/theme/base/components/multimedia/_galleria.scss +0 -155
- package/styles/styles/theme/base/components/multimedia/_image.scss +0 -49
- package/styles/styles/theme/base/components/overlay/_confirmpopup.scss +0 -72
- package/styles/styles/theme/base/components/overlay/_dialog.scss +0 -73
- package/styles/styles/theme/base/components/overlay/_overlaypanel.scss +0 -64
- package/styles/styles/theme/base/components/overlay/_sidebar.scss +0 -27
- package/styles/styles/theme/base/components/overlay/_tooltip.scss +0 -33
- package/styles/styles/theme/base/components/panel/_accordion.scss +0 -119
- package/styles/styles/theme/base/components/panel/_card.scss +0 -30
- package/styles/styles/theme/base/components/panel/_divider.scss +0 -31
- package/styles/styles/theme/base/components/panel/_fieldset.scss +0 -47
- package/styles/styles/theme/base/components/panel/_panel.scss +0 -58
- package/styles/styles/theme/base/components/panel/_scrollpanel.scss +0 -6
- package/styles/styles/theme/base/components/panel/_splitter.scss +0 -19
- package/styles/styles/theme/base/components/panel/_tabview.scss +0 -82
- package/styles/styles/theme/base/components/panel/_toolbar.scss +0 -11
- package/styles/styles/theme/saga/_extensions.scss +0 -27
- package/styles/styles/theme/saga/_variables.scss +0 -1
- package/styles/styles/theme/saga/saga-blue/_extensions.scss +0 -2
- package/styles/styles/theme/saga/saga-blue/_fonts.scss +0 -1
- package/styles/styles/theme/saga/saga-blue/_variables.scss +0 -1
- package/styles/styles/theme/saga/saga-blue/theme.scss +0 -4
package/index.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./registration/registration.component";
|
|
3
|
-
import * as i2 from "./login/login.component";
|
|
4
|
-
import * as i3 from "@angular/router";
|
|
5
|
-
import * as i4 from "@angular/common";
|
|
6
|
-
import * as i5 from "@angular/forms";
|
|
7
|
-
import * as i6 from "./partials/auth.component";
|
|
8
|
-
import * as i7 from "../../modules/primeng.module";
|
|
9
|
-
import * as i8 from "../../controls/spiderly-controls.module";
|
|
10
|
-
import * as i9 from "./partials/login-verification.component";
|
|
11
|
-
import * as i10 from "./partials/registration-verification.component";
|
|
12
|
-
import * as i11 from "@jsverse/transloco";
|
|
13
|
-
export declare class AuthModule {
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AuthModule, [typeof i1.RegistrationComponent, typeof i2.LoginComponent], [typeof i3.RouterModule, typeof i4.CommonModule, typeof i5.ReactiveFormsModule, typeof i6.AuthComponent, typeof i7.PrimengModule, typeof i8.SpiderlyControlsModule, typeof i9.LoginVerificationComponent, typeof i10.RegistrationVerificationComponent, typeof i11.TranslocoDirective], never>;
|
|
16
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AuthModule>;
|
|
17
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
2
|
-
import { ChangeDetectorRef, KeyValueDiffers, OnInit } from '@angular/core';
|
|
3
|
-
import { HttpClient } from '@angular/common/http';
|
|
4
|
-
import { TranslocoService } from '@jsverse/transloco';
|
|
5
|
-
import { BaseFormCopy } from '../../base-form/base-form copy';
|
|
6
|
-
import { Login } from '../../../entities/security-entities';
|
|
7
|
-
import { SpiderlyFormGroup } from '../../spiderly-form-control/spiderly-form-control';
|
|
8
|
-
import { SpiderlyMessageService } from '../../../services/spiderly-message.service';
|
|
9
|
-
import { BaseFormService } from '../../../services/base-form.service';
|
|
10
|
-
import { AuthBaseService } from '../../../services/auth-base.service';
|
|
11
|
-
import { ConfigBaseService } from '../../../services/config-base.service';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
export declare class LoginComponent extends BaseFormCopy implements OnInit {
|
|
14
|
-
protected differs: KeyValueDiffers;
|
|
15
|
-
protected http: HttpClient;
|
|
16
|
-
protected messageService: SpiderlyMessageService;
|
|
17
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
18
|
-
protected router: Router;
|
|
19
|
-
protected route: ActivatedRoute;
|
|
20
|
-
protected translocoService: TranslocoService;
|
|
21
|
-
protected baseFormService: BaseFormService;
|
|
22
|
-
private authService;
|
|
23
|
-
private config;
|
|
24
|
-
loginFormGroup: SpiderlyFormGroup<Login>;
|
|
25
|
-
companyName: string;
|
|
26
|
-
showEmailSentDialog: boolean;
|
|
27
|
-
usersCanRegister: boolean;
|
|
28
|
-
constructor(differs: KeyValueDiffers, http: HttpClient, messageService: SpiderlyMessageService, changeDetectorRef: ChangeDetectorRef, router: Router, route: ActivatedRoute, translocoService: TranslocoService, baseFormService: BaseFormService, authService: AuthBaseService, config: ConfigBaseService);
|
|
29
|
-
ngOnInit(): void;
|
|
30
|
-
initLoginFormGroup(model: Login): void;
|
|
31
|
-
companyNameChange(companyName: string): void;
|
|
32
|
-
sendLoginVerificationEmail(): void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "app-login", never, {}, {}, never, never, false, never>;
|
|
35
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import { ConfigBaseService } from "../../../services/config-base.service";
|
|
3
|
-
import { AuthBaseService } from "../../../services/auth-base.service";
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AuthComponent {
|
|
6
|
-
private config;
|
|
7
|
-
private authService;
|
|
8
|
-
private initCompanyAuthDialogDetailsSubscription;
|
|
9
|
-
onCompanyNameChange: EventEmitter<string>;
|
|
10
|
-
showGoogleAuth: boolean;
|
|
11
|
-
hasGoogleAuth: boolean;
|
|
12
|
-
companyName: string;
|
|
13
|
-
image: string;
|
|
14
|
-
constructor(config: ConfigBaseService, authService: AuthBaseService);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
initCompanyDetails(): void;
|
|
17
|
-
onGoogleSignIn(googleWrapper: any): void;
|
|
18
|
-
ngOnDestroy(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AuthComponent, "auth", never, { "showGoogleAuth": { "alias": "showGoogleAuth"; "required": false; }; }, { "onCompanyNameChange": "onCompanyNameChange"; }, never, ["*"], true, never>;
|
|
21
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { TranslocoService } from '@jsverse/transloco';
|
|
3
|
-
import { SpiderlyMessageService } from '../../../services/spiderly-message.service';
|
|
4
|
-
import { AuthBaseService } from '../../../services/auth-base.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class LoginVerificationComponent implements OnInit {
|
|
7
|
-
private authService;
|
|
8
|
-
private messageService;
|
|
9
|
-
private translocoService;
|
|
10
|
-
email: string;
|
|
11
|
-
userId: number;
|
|
12
|
-
constructor(authService: AuthBaseService, messageService: SpiderlyMessageService, translocoService: TranslocoService);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
resendVerificationToken(): void;
|
|
15
|
-
onCodeSubmit(event: string): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoginVerificationComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoginVerificationComponent, "login-verification", never, { "email": { "alias": "email"; "required": false; }; "userId": { "alias": "userId"; "required": false; }; }, {}, never, never, true, never>;
|
|
18
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { TranslocoService } from '@jsverse/transloco';
|
|
3
|
-
import { SpiderlyMessageService } from '../../../services/spiderly-message.service';
|
|
4
|
-
import { AuthBaseService } from '../../../services/auth-base.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class RegistrationVerificationComponent implements OnInit {
|
|
7
|
-
private authService;
|
|
8
|
-
private messageService;
|
|
9
|
-
private translocoService;
|
|
10
|
-
email: string;
|
|
11
|
-
constructor(authService: AuthBaseService, messageService: SpiderlyMessageService, translocoService: TranslocoService);
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
resendVerificationToken(): void;
|
|
14
|
-
onCodeSubmit(event: string): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RegistrationVerificationComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RegistrationVerificationComponent, "registration-verification", never, { "email": { "alias": "email"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter, KeyValueDiffers, OnInit } from '@angular/core';
|
|
2
|
-
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
-
import { TranslocoService } from '@jsverse/transloco';
|
|
5
|
-
import { BaseFormCopy } from '../../base-form/base-form copy';
|
|
6
|
-
import { BaseFormService } from '../../../services/base-form.service';
|
|
7
|
-
import { SpiderlyFormGroup } from '../../spiderly-form-control/spiderly-form-control';
|
|
8
|
-
import { VerificationTokenRequest } from '../../../entities/security-entities';
|
|
9
|
-
import { SpiderlyMessageService } from '../../../services/spiderly-message.service';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class VerificationWrapperComponent extends BaseFormCopy implements OnInit {
|
|
12
|
-
protected differs: KeyValueDiffers;
|
|
13
|
-
protected http: HttpClient;
|
|
14
|
-
protected messageService: SpiderlyMessageService;
|
|
15
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
16
|
-
protected router: Router;
|
|
17
|
-
protected route: ActivatedRoute;
|
|
18
|
-
protected translocoService: TranslocoService;
|
|
19
|
-
protected baseFormService: BaseFormService;
|
|
20
|
-
verificationTokenRequestFormGroup: SpiderlyFormGroup<VerificationTokenRequest>;
|
|
21
|
-
email: string;
|
|
22
|
-
onResendVerificationToken: EventEmitter<any>;
|
|
23
|
-
onCodeSubmit: EventEmitter<string>;
|
|
24
|
-
constructor(differs: KeyValueDiffers, http: HttpClient, messageService: SpiderlyMessageService, changeDetectorRef: ChangeDetectorRef, router: Router, route: ActivatedRoute, translocoService: TranslocoService, baseFormService: BaseFormService);
|
|
25
|
-
ngOnInit(): void;
|
|
26
|
-
initVerificationTokenRequestFormGroup(model: VerificationTokenRequest): void;
|
|
27
|
-
codeSubmit(): void;
|
|
28
|
-
resendVerificationToken(): void;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<VerificationWrapperComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VerificationWrapperComponent, "verification-wrapper", never, { "email": { "alias": "email"; "required": false; }; }, { "onResendVerificationToken": "onResendVerificationToken"; "onCodeSubmit": "onCodeSubmit"; }, never, never, true, never>;
|
|
31
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
2
|
-
import { ChangeDetectorRef, KeyValueDiffers, OnInit } from '@angular/core';
|
|
3
|
-
import { HttpClient } from '@angular/common/http';
|
|
4
|
-
import { TranslocoService } from '@jsverse/transloco';
|
|
5
|
-
import { LayoutBaseService } from '../../../services/app-layout-base.service';
|
|
6
|
-
import { AuthBaseService } from '../../../services/auth-base.service';
|
|
7
|
-
import { BaseFormCopy } from '../../base-form/base-form copy';
|
|
8
|
-
import { SpiderlyFormGroup } from '../../spiderly-form-control/spiderly-form-control';
|
|
9
|
-
import { Registration } from '../../../entities/security-entities';
|
|
10
|
-
import { SpiderlyMessageService } from '../../../services/spiderly-message.service';
|
|
11
|
-
import { BaseFormService } from '../../../services/base-form.service';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
export declare class RegistrationComponent extends BaseFormCopy implements OnInit {
|
|
14
|
-
protected differs: KeyValueDiffers;
|
|
15
|
-
protected http: HttpClient;
|
|
16
|
-
protected messageService: SpiderlyMessageService;
|
|
17
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
18
|
-
protected router: Router;
|
|
19
|
-
protected route: ActivatedRoute;
|
|
20
|
-
protected translocoService: TranslocoService;
|
|
21
|
-
protected baseFormService: BaseFormService;
|
|
22
|
-
layoutService: LayoutBaseService;
|
|
23
|
-
private authService;
|
|
24
|
-
registrationFormGroup: SpiderlyFormGroup<Registration>;
|
|
25
|
-
companyName: string;
|
|
26
|
-
showEmailSentDialog: boolean;
|
|
27
|
-
constructor(differs: KeyValueDiffers, http: HttpClient, messageService: SpiderlyMessageService, changeDetectorRef: ChangeDetectorRef, router: Router, route: ActivatedRoute, translocoService: TranslocoService, baseFormService: BaseFormService, layoutService: LayoutBaseService, authService: AuthBaseService);
|
|
28
|
-
ngOnInit(): void;
|
|
29
|
-
initRegistrationFormGroup(model: Registration): void;
|
|
30
|
-
companyNameChange(companyName: string): void;
|
|
31
|
-
sendRegistrationVerificationEmail(): void;
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RegistrationComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RegistrationComponent, "app-registration", never, {}, {}, never, never, false, never>;
|
|
34
|
-
}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { Observable, Subscription } from 'rxjs';
|
|
4
|
-
import { MenuItem } from 'primeng/api';
|
|
5
|
-
import { SpiderlyFormArray, SpiderlyFormControl, SpiderlyFormGroup } from '../spiderly-form-control/spiderly-form-control';
|
|
6
|
-
import { BaseEntity } from '../../entities/base-entity';
|
|
7
|
-
import { LastMenuIconIndexClicked } from '../../entities/last-menu-icon-index-clicked';
|
|
8
|
-
import { Role } from '../../entities/security-entities';
|
|
9
|
-
import { SpiderlyButton } from '../../entities/spiderly-button';
|
|
10
|
-
import { BaseFormService } from '../../services/base-form.service';
|
|
11
|
-
import { ApiSecurityService } from '../../services/api.service.security';
|
|
12
|
-
import { PrimengOption } from '../../entities/primeng-option';
|
|
13
|
-
import { AutoCompleteCompleteEvent } from 'primeng/autocomplete';
|
|
14
|
-
import { IsAuthorizedForSaveEvent } from '../../entities/is-authorized-for-save-event';
|
|
15
|
-
import { AuthBaseService } from '../../services/auth-base.service';
|
|
16
|
-
import * as i0 from "@angular/core";
|
|
17
|
-
export declare class RoleBaseDetailsComponent {
|
|
18
|
-
private apiService;
|
|
19
|
-
private route;
|
|
20
|
-
private baseFormService;
|
|
21
|
-
private authService;
|
|
22
|
-
onSave: EventEmitter<void>;
|
|
23
|
-
onRoleFormGroupInitFinish: EventEmitter<void>;
|
|
24
|
-
getCrudMenuForOrderedData: (formArray: SpiderlyFormArray, modelConstructor: BaseEntity, lastMenuIconIndexClicked: LastMenuIconIndexClicked, adjustFormArrayManually: boolean) => MenuItem[];
|
|
25
|
-
formGroup: SpiderlyFormGroup;
|
|
26
|
-
roleFormGroup: SpiderlyFormGroup<Role>;
|
|
27
|
-
additionalButtons: SpiderlyButton[];
|
|
28
|
-
authorizationForSaveSubscription: Subscription;
|
|
29
|
-
authorizedForSaveObservable: () => Observable<boolean>;
|
|
30
|
-
isAuthorizedForSave: boolean;
|
|
31
|
-
onIsAuthorizedForSaveChange: EventEmitter<IsAuthorizedForSaveEvent>;
|
|
32
|
-
modelId: number;
|
|
33
|
-
loading: boolean;
|
|
34
|
-
roleSaveBodyName: string;
|
|
35
|
-
usersForRoleOptions: PrimengOption[];
|
|
36
|
-
permissionsForRoleOptions: PrimengOption[];
|
|
37
|
-
selectedUsersForRole: SpiderlyFormControl<PrimengOption[]>;
|
|
38
|
-
selectedPermissionsForRole: SpiderlyFormControl<number[]>;
|
|
39
|
-
constructor(apiService: ApiSecurityService, route: ActivatedRoute, baseFormService: BaseFormService, authService: AuthBaseService);
|
|
40
|
-
ngOnInit(): void;
|
|
41
|
-
initRoleFormGroup(role: Role): void;
|
|
42
|
-
handleAuthorizationForSave: () => Observable<void>;
|
|
43
|
-
searchUsersForRole(event: AutoCompleteCompleteEvent): void;
|
|
44
|
-
control(formControlName: string, formGroup: SpiderlyFormGroup): SpiderlyFormControl<any>;
|
|
45
|
-
getFormArrayGroups<T>(formArray: SpiderlyFormArray): SpiderlyFormGroup<T>[];
|
|
46
|
-
save(): void;
|
|
47
|
-
ngOnDestroy(): void;
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoleBaseDetailsComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RoleBaseDetailsComponent, "role-base-details", never, { "getCrudMenuForOrderedData": { "alias": "getCrudMenuForOrderedData"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "roleFormGroup": { "alias": "roleFormGroup"; "required": false; }; "additionalButtons": { "alias": "additionalButtons"; "required": false; }; "authorizedForSaveObservable": { "alias": "authorizedForSaveObservable"; "required": false; }; }, { "onSave": "onSave"; "onRoleFormGroupInitFinish": "onRoleFormGroupInitFinish"; "onIsAuthorizedForSaveChange": "onIsAuthorizedForSaveChange"; }, never, never, true, never>;
|
|
50
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { BaseFormService } from './../../services/base-form.service';
|
|
2
|
-
import { ChangeDetectorRef, KeyValueDiffers, OnInit } from '@angular/core';
|
|
3
|
-
import { SpiderlyFormArray, SpiderlyFormControl, SpiderlyFormGroup } from '../spiderly-form-control/spiderly-form-control';
|
|
4
|
-
import { HttpClient } from '@angular/common/http';
|
|
5
|
-
import { SpiderlyMessageService } from '../../services/spiderly-message.service';
|
|
6
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
7
|
-
import { MenuItem } from 'primeng/api';
|
|
8
|
-
import { TranslocoService } from '@jsverse/transloco';
|
|
9
|
-
import { BaseEntity } from '../../entities/base-entity';
|
|
10
|
-
import { LastMenuIconIndexClicked } from '../../entities/last-menu-icon-index-clicked';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
export declare class BaseFormCopy implements OnInit {
|
|
13
|
-
protected differs: KeyValueDiffers;
|
|
14
|
-
protected http: HttpClient;
|
|
15
|
-
protected messageService: SpiderlyMessageService;
|
|
16
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
17
|
-
protected router: Router;
|
|
18
|
-
protected route: ActivatedRoute;
|
|
19
|
-
protected translocoService: TranslocoService;
|
|
20
|
-
protected baseFormService: BaseFormService;
|
|
21
|
-
formGroup: SpiderlyFormGroup;
|
|
22
|
-
saveBody: any;
|
|
23
|
-
successfulSaveToastDescription: string;
|
|
24
|
-
loading: boolean;
|
|
25
|
-
private modelDiffer;
|
|
26
|
-
constructor(differs: KeyValueDiffers, http: HttpClient, messageService: SpiderlyMessageService, changeDetectorRef: ChangeDetectorRef, router: Router, route: ActivatedRoute, translocoService: TranslocoService, baseFormService: BaseFormService);
|
|
27
|
-
ngOnInit(): void;
|
|
28
|
-
initFormGroup: <T>(formGroup: SpiderlyFormGroup<T>, parentFormGroup: SpiderlyFormGroup, modelConstructor: any, propertyNameInSaveBody: string, updateOnChangeControls?: (keyof T)[]) => SpiderlyFormGroup<T>;
|
|
29
|
-
createFormGroup: <T>(formGroup: SpiderlyFormGroup<T>, modelConstructor: T & BaseEntity, updateOnChangeControls?: (keyof T)[]) => SpiderlyFormGroup<T>;
|
|
30
|
-
control: <T extends BaseEntity>(formControlName: string & keyof T, formGroup: SpiderlyFormGroup<T>) => { [P in keyof T]: SpiderlyFormControl<T[P]>; }[string & keyof T];
|
|
31
|
-
onSave: (reroute?: boolean) => void;
|
|
32
|
-
rerouteToSavedObject: (rerouteId: number | string) => void;
|
|
33
|
-
onBeforeSave: (saveBody?: any) => void;
|
|
34
|
-
onAfterSave: () => void;
|
|
35
|
-
onAfterSaveRequest: () => void;
|
|
36
|
-
areFormGroupsFromParentFormGroupValid(): boolean;
|
|
37
|
-
getFormArrayControlByIndex<T>(formControlName: keyof T & string, formArray: SpiderlyFormArray<T>, index: number, filter?: (formGroups: SpiderlyFormGroup<T>[]) => SpiderlyFormGroup<T>[]): SpiderlyFormControl;
|
|
38
|
-
getFormArrayControls<T>(formControlName: keyof T & string, formArray: SpiderlyFormArray<T>, filter?: (formGroups: SpiderlyFormGroup<T>[]) => SpiderlyFormGroup<T>[]): SpiderlyFormControl[];
|
|
39
|
-
getFormArrayGroups<T>(formArray: SpiderlyFormArray<T>): SpiderlyFormGroup<T>[];
|
|
40
|
-
addNewFormGroupToFormArray<T>(formArray: SpiderlyFormArray<T>, modelConstructor: T & BaseEntity, index: number): SpiderlyFormGroup;
|
|
41
|
-
initFormArray<T>(parentFormGroup: SpiderlyFormGroup, modelList: (T & BaseEntity)[], modelConstructor: T & BaseEntity, formArraySaveBodyName: string, formArrayTranslationKey: string, required?: boolean): SpiderlyFormArray<T>;
|
|
42
|
-
removeFormControlFromTheFormArray(formArray: SpiderlyFormArray, index: number): void;
|
|
43
|
-
removeFormControlsFromTheFormArray(formArray: SpiderlyFormArray, indexes: number[]): void;
|
|
44
|
-
areFormArraysValid(): boolean;
|
|
45
|
-
onBeforeSaveList(): void;
|
|
46
|
-
onAfterSaveList(): void;
|
|
47
|
-
onAfterSaveListRequest(): void;
|
|
48
|
-
getCrudMenuForOrderedData: (formArray: SpiderlyFormArray, modelConstructor: BaseEntity, lastMenuIconIndexClicked: LastMenuIconIndexClicked, adjustFormArrayManually?: boolean) => MenuItem[];
|
|
49
|
-
onBeforeRemove: (formArray: SpiderlyFormArray, modelConstructor: any, lastMenuIconIndexClicked: number) => void;
|
|
50
|
-
onBeforeAddAbove: (formArray: SpiderlyFormArray, modelConstructor: any, lastMenuIconIndexClicked: number) => void;
|
|
51
|
-
onBeforeAddBelow: (formArray: SpiderlyFormArray, modelConstructor: any, lastMenuIconIndexClicked: number) => void;
|
|
52
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseFormCopy, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseFormCopy, "base-form", never, {}, {}, never, never, false, never>;
|
|
54
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CardSkeletonComponent {
|
|
3
|
-
height: number;
|
|
4
|
-
titleHeight: number;
|
|
5
|
-
dataHeight: number;
|
|
6
|
-
padding: number;
|
|
7
|
-
titleMarginBottom: number;
|
|
8
|
-
titleMarginTop: number;
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardSkeletonComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardSkeletonComponent, "card-skeleton", never, { "height": { "alias": "height"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ConfigBaseService } from '../../services/config-base.service';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class FooterComponent {
|
|
4
|
-
private config;
|
|
5
|
-
companyName: string;
|
|
6
|
-
constructor(config: ConfigBaseService);
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "footer", never, {}, {}, never, never, true, never>;
|
|
9
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormBuilder } from '@angular/forms';
|
|
3
|
-
import { MenuItem } from 'primeng/api';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class IndexCardComponent {
|
|
6
|
-
protected formBuilder: FormBuilder;
|
|
7
|
-
last: boolean;
|
|
8
|
-
index: number;
|
|
9
|
-
header: string;
|
|
10
|
-
description: string;
|
|
11
|
-
showRemoveIcon: boolean;
|
|
12
|
-
showCrudMenu: boolean;
|
|
13
|
-
crudMenu: MenuItem[];
|
|
14
|
-
onMenuIconClick: EventEmitter<number>;
|
|
15
|
-
onRemoveIconClick: EventEmitter<null>;
|
|
16
|
-
constructor(formBuilder: FormBuilder);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
menuIconClick(index: number): void;
|
|
19
|
-
removeIconClick(): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IndexCardComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IndexCardComponent, "index-card", never, { "last": { "alias": "last"; "required": false; }; "index": { "alias": "index"; "required": false; }; "header": { "alias": "header"; "required": false; }; "description": { "alias": "description"; "required": false; }; "showRemoveIcon": { "alias": "showRemoveIcon"; "required": false; }; "showCrudMenu": { "alias": "showCrudMenu"; "required": false; }; "crudMenu": { "alias": "crudMenu"; "required": false; }; }, { "onMenuIconClick": "onMenuIconClick"; "onRemoveIconClick": "onRemoveIconClick"; }, never, ["*"], true, never>;
|
|
22
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { FormBuilder } from '@angular/forms';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class InfoCardComponent {
|
|
4
|
-
protected formBuilder: FormBuilder;
|
|
5
|
-
header: string;
|
|
6
|
-
description: string;
|
|
7
|
-
constructor(formBuilder: FormBuilder);
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoCardComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoCardComponent, "info-card", never, { "header": { "alias": "header"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
11
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { OnDestroy, Renderer2 } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import { Subscription } from 'rxjs';
|
|
4
|
-
import { AppSidebarComponent } from './sidebar/sidebar.component';
|
|
5
|
-
import { AppTopBarComponent } from './topbar/topbar.component';
|
|
6
|
-
import { LayoutBaseService } from '../../services/app-layout-base.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class LayoutBaseComponent implements OnDestroy {
|
|
9
|
-
protected layoutService: LayoutBaseService;
|
|
10
|
-
protected renderer: Renderer2;
|
|
11
|
-
protected router: Router;
|
|
12
|
-
overlayMenuOpenSubscription: Subscription;
|
|
13
|
-
menuOutsideClickListener: any;
|
|
14
|
-
profileMenuOutsideClickListener: any;
|
|
15
|
-
appSidebar: AppSidebarComponent;
|
|
16
|
-
appTopbar: AppTopBarComponent;
|
|
17
|
-
constructor(layoutService: LayoutBaseService, renderer: Renderer2, router: Router);
|
|
18
|
-
hideMenu(): void;
|
|
19
|
-
hideProfileMenu(): void;
|
|
20
|
-
blockBodyScroll(): void;
|
|
21
|
-
unblockBodyScroll(): void;
|
|
22
|
-
get containerClass(): {
|
|
23
|
-
'layout-theme-light': boolean;
|
|
24
|
-
'layout-theme-dark': boolean;
|
|
25
|
-
'layout-overlay': boolean;
|
|
26
|
-
'layout-static': boolean;
|
|
27
|
-
'layout-static-inactive': boolean;
|
|
28
|
-
'layout-overlay-active': boolean;
|
|
29
|
-
'layout-mobile-active': boolean;
|
|
30
|
-
'p-input-filled': boolean;
|
|
31
|
-
'p-ripple-disabled': boolean;
|
|
32
|
-
};
|
|
33
|
-
ngOnDestroy(): void;
|
|
34
|
-
onAfterNgDestroy: () => void;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutBaseComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutBaseComponent, "layout-base", never, {}, {}, never, never, true, never>;
|
|
37
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import { SidebarMenuService } from './sidebar-menu.service';
|
|
4
|
-
import { SpiderlyMenuItem } from './sidebar-menu.component';
|
|
5
|
-
import { AutoCompleteCompleteEvent } from 'primeng/autocomplete';
|
|
6
|
-
import { SpiderlyFormControl } from '../../spiderly-form-control/spiderly-form-control';
|
|
7
|
-
import { PrimengOption } from '../../../entities/primeng-option';
|
|
8
|
-
import { LayoutBaseService } from '../../../services/app-layout-base.service';
|
|
9
|
-
import { AuthBaseService } from '../../../services/auth-base.service';
|
|
10
|
-
import { ApiSecurityService } from '../../../services/api.service.security';
|
|
11
|
-
import { ConfigBaseService } from '../../../services/config-base.service';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
export declare class MenuitemComponent implements OnInit, OnDestroy {
|
|
14
|
-
layoutService: LayoutBaseService;
|
|
15
|
-
private cd;
|
|
16
|
-
router: Router;
|
|
17
|
-
private menuService;
|
|
18
|
-
private authService;
|
|
19
|
-
private apiService;
|
|
20
|
-
private config;
|
|
21
|
-
item: SpiderlyMenuItem;
|
|
22
|
-
index: number;
|
|
23
|
-
root: boolean;
|
|
24
|
-
parentKey: string;
|
|
25
|
-
active: boolean;
|
|
26
|
-
private menuSourceSubscription;
|
|
27
|
-
private menuResetSubscription;
|
|
28
|
-
private permissionSubscription;
|
|
29
|
-
key: string;
|
|
30
|
-
selectedPartner: SpiderlyFormControl;
|
|
31
|
-
partnerOptions: PrimengOption[];
|
|
32
|
-
constructor(layoutService: LayoutBaseService, cd: ChangeDetectorRef, router: Router, menuService: SidebarMenuService, authService: AuthBaseService, apiService: ApiSecurityService, config: ConfigBaseService);
|
|
33
|
-
ngOnInit(): void;
|
|
34
|
-
updateActiveStateFromRoute(): void;
|
|
35
|
-
itemClick(event: Event): void;
|
|
36
|
-
get submenuAnimation(): "collapsed" | "expanded";
|
|
37
|
-
get activeClass(): boolean;
|
|
38
|
-
searchPartners(event: AutoCompleteCompleteEvent): void;
|
|
39
|
-
partnersAutocompleteButtonClick: () => Promise<void>;
|
|
40
|
-
ngOnDestroy(): void;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MenuitemComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuitemComponent, "[menuitem]", never, { "item": { "alias": "item"; "required": false; }; "index": { "alias": "index"; "required": false; }; "root": { "alias": "root"; "required": false; }; "parentKey": { "alias": "parentKey"; "required": false; }; }, {}, never, never, true, never>;
|
|
43
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { TranslocoService } from '@jsverse/transloco';
|
|
2
|
-
import { OnInit } from '@angular/core';
|
|
3
|
-
import { MenuItem } from 'primeng/api';
|
|
4
|
-
import { LayoutBaseService } from '../../../services/app-layout-base.service';
|
|
5
|
-
import { AuthBaseService } from '../../../services/auth-base.service';
|
|
6
|
-
import { ConfigBaseService } from '../../../services/config-base.service';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export interface SpiderlyMenuItem extends MenuItem {
|
|
9
|
-
hasPermission?: (permissionCodes: string[]) => boolean;
|
|
10
|
-
showPartnerDialog?: boolean;
|
|
11
|
-
}
|
|
12
|
-
export declare class SidebarMenuComponent implements OnInit {
|
|
13
|
-
layoutService: LayoutBaseService;
|
|
14
|
-
private authService;
|
|
15
|
-
private translocoService;
|
|
16
|
-
private config;
|
|
17
|
-
menu: SpiderlyMenuItem[];
|
|
18
|
-
constructor(layoutService: LayoutBaseService, authService: AuthBaseService, translocoService: TranslocoService, config: ConfigBaseService);
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
ngOnDestroy(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarMenuComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarMenuComponent, "sidebar-menu", never, { "menu": { "alias": "menu"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { MenuChangeEvent } from '../../../entities/menuchangeevent';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SidebarMenuService {
|
|
4
|
-
private menuSource;
|
|
5
|
-
private resetSource;
|
|
6
|
-
menuSource$: import("rxjs").Observable<MenuChangeEvent>;
|
|
7
|
-
resetSource$: import("rxjs").Observable<unknown>;
|
|
8
|
-
onMenuStateChange(event: MenuChangeEvent): void;
|
|
9
|
-
reset(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarMenuService, never>;
|
|
11
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SidebarMenuService>;
|
|
12
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import { SpiderlyMenuItem } from './sidebar-menu.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AppSidebarComponent {
|
|
5
|
-
el: ElementRef;
|
|
6
|
-
menu: SpiderlyMenuItem[];
|
|
7
|
-
constructor(el: ElementRef);
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AppSidebarComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppSidebarComponent, "sidebar", never, { "menu": { "alias": "menu"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { TranslocoService } from '@jsverse/transloco';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
3
|
-
import { ElementRef, OnDestroy } from '@angular/core';
|
|
4
|
-
import { AuthBaseService } from '../../../services/auth-base.service';
|
|
5
|
-
import { LayoutBaseService } from '../../../services/app-layout-base.service';
|
|
6
|
-
import { ApiSecurityService } from '../../../services/api.service.security';
|
|
7
|
-
import { ConfigBaseService } from '../../../services/config-base.service';
|
|
8
|
-
import { User } from '../../../entities/security-entities';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
interface SpiderlyMenuItem {
|
|
11
|
-
label?: string;
|
|
12
|
-
icon?: string;
|
|
13
|
-
showSeparator?: boolean;
|
|
14
|
-
onClick?: () => void;
|
|
15
|
-
showNotificationBadge?: boolean;
|
|
16
|
-
}
|
|
17
|
-
export declare class AppTopBarComponent implements OnDestroy {
|
|
18
|
-
layoutService: LayoutBaseService;
|
|
19
|
-
private authService;
|
|
20
|
-
private apiService;
|
|
21
|
-
protected router: Router;
|
|
22
|
-
private translocoService;
|
|
23
|
-
private config;
|
|
24
|
-
private initTopBarSubscription;
|
|
25
|
-
currentUser: User;
|
|
26
|
-
userProfilePath: string;
|
|
27
|
-
unreadNotificationsCount: number;
|
|
28
|
-
menuItems: SpiderlyMenuItem[];
|
|
29
|
-
avatarLabel: string;
|
|
30
|
-
companyName: string;
|
|
31
|
-
showProfileIcon: boolean;
|
|
32
|
-
notificationMenuItem: SpiderlyMenuItem;
|
|
33
|
-
menuButton: ElementRef;
|
|
34
|
-
menu: ElementRef;
|
|
35
|
-
topbarProfileDropdownMenuButton: ElementRef;
|
|
36
|
-
constructor(layoutService: LayoutBaseService, authService: AuthBaseService, apiService: ApiSecurityService, router: Router, translocoService: TranslocoService, config: ConfigBaseService);
|
|
37
|
-
ngOnInit(): Promise<void>;
|
|
38
|
-
onAfterNgOnInit: () => void;
|
|
39
|
-
onDocumentClick(event: any): void;
|
|
40
|
-
routeToUserPage(): void;
|
|
41
|
-
ngOnDestroy(): void;
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AppTopBarComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppTopBarComponent, "topbar", never, {}, {}, never, never, true, never>;
|
|
44
|
-
}
|
|
45
|
-
export {};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ConfigBaseService } from '../../services/config-base.service';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class NotFoundComponent {
|
|
4
|
-
private config;
|
|
5
|
-
companyName: string;
|
|
6
|
-
constructor(config: ConfigBaseService);
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotFoundComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotFoundComponent, "not-found", never, {}, {}, never, never, true, never>;
|
|
9
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class RequiredComponent {
|
|
3
|
-
constructor();
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RequiredComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RequiredComponent, "required", never, {}, {}, never, never, true, never>;
|
|
6
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class GoogleButtonComponent {
|
|
4
|
-
loginWithGoogle: EventEmitter<any>;
|
|
5
|
-
constructor();
|
|
6
|
-
createFakeGoogleWrapper: () => {
|
|
7
|
-
click: () => void;
|
|
8
|
-
};
|
|
9
|
-
handleGoogleLogin(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleButtonComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoogleButtonComponent, "google-button", never, {}, { "loginWithGoogle": "loginWithGoogle"; }, never, never, true, never>;
|
|
12
|
-
}
|
|
13
|
-
declare global {
|
|
14
|
-
interface Window {
|
|
15
|
-
google: any;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Router } from '@angular/router';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SpiderlyReturnButtonComponent {
|
|
4
|
-
private router;
|
|
5
|
-
navigateUrl: string;
|
|
6
|
-
constructor(router: Router);
|
|
7
|
-
onReturn(): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyReturnButtonComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyReturnButtonComponent, "return-button", never, { "navigateUrl": { "alias": "navigateUrl"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { SpiderlyButtonBaseComponent } from "../spiderly-button-base/spiderly-button-base";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SpiderlyButtonComponent extends SpiderlyButtonBaseComponent {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyButtonComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyButtonComponent, "spiderly-button", never, {}, {}, never, ["*"], true, never>;
|
|
6
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import { Router } from "@angular/router";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SpiderlyButtonBaseComponent {
|
|
5
|
-
private router;
|
|
6
|
-
icon: string;
|
|
7
|
-
label: string;
|
|
8
|
-
outlined: boolean;
|
|
9
|
-
rounded: boolean;
|
|
10
|
-
styleClass: string;
|
|
11
|
-
routerLink: string;
|
|
12
|
-
style: {
|
|
13
|
-
[klass: string]: any;
|
|
14
|
-
};
|
|
15
|
-
class: string;
|
|
16
|
-
severity: 'success' | 'info' | 'warning' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined;
|
|
17
|
-
disabled: boolean;
|
|
18
|
-
onClick: EventEmitter<Event>;
|
|
19
|
-
private clickSubject;
|
|
20
|
-
private subscription;
|
|
21
|
-
constructor(router: Router);
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
handleClick: (event: Event) => void;
|
|
24
|
-
ngOnDestroy(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyButtonBaseComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyButtonBaseComponent, "spiderly-button-base", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "outlined": { "alias": "outlined"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; "style": { "alias": "style"; "required": false; }; "class": { "alias": "class"; "required": false; }; "severity": { "alias": "severity"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onClick": "onClick"; }, never, never, true, never>;
|
|
27
|
-
}
|