spiderly 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/esm2022/lib/components/auth/auth.module.mjs +65 -0
- package/esm2022/lib/components/auth/login/login.component.mjs +60 -0
- package/esm2022/lib/components/auth/partials/auth.component.mjs +53 -0
- package/esm2022/lib/components/auth/partials/login-verification.component.mjs +39 -0
- package/esm2022/lib/components/auth/partials/registration-verification.component.mjs +37 -0
- package/esm2022/lib/components/auth/partials/verification-wrapper.component.mjs +74 -0
- package/esm2022/lib/components/auth/registration/registration.component.mjs +59 -0
- package/esm2022/lib/components/base-details/role-base-details.component.mjs +171 -0
- package/esm2022/lib/components/base-form/base-form copy.mjs +247 -0
- package/esm2022/lib/components/card-skeleton/card-skeleton.component.mjs +25 -0
- package/esm2022/lib/components/footer/footer.component.mjs +16 -0
- package/esm2022/lib/components/index-card/index-card.component.mjs +57 -0
- package/esm2022/lib/components/info-card/info-card.component.mjs +29 -0
- package/esm2022/lib/components/layout/layout-base.component.mjs +120 -0
- package/esm2022/lib/components/layout/sidebar/menuitem.component.mjs +161 -0
- package/esm2022/lib/components/layout/sidebar/sidebar-menu.component.mjs +34 -0
- package/esm2022/lib/components/layout/sidebar/sidebar-menu.service.mjs +26 -0
- package/esm2022/lib/components/layout/sidebar/sidebar.component.mjs +21 -0
- package/esm2022/lib/components/layout/topbar/topbar.component.mjs +115 -0
- package/esm2022/lib/components/not-found/not-found.component.mjs +20 -0
- package/esm2022/lib/components/required/required.component.mjs +12 -0
- package/esm2022/lib/components/spiderly-buttons/google-button/google-button.component.mjs +43 -0
- package/esm2022/lib/components/spiderly-buttons/return-button/return-button.component.mjs +37 -0
- package/esm2022/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.mjs +20 -0
- package/esm2022/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.mjs +68 -0
- package/esm2022/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.mjs +22 -0
- package/esm2022/lib/components/spiderly-data-table/spiderly-data-table.component.mjs +502 -0
- package/esm2022/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.mjs +42 -0
- package/esm2022/lib/components/spiderly-form-control/spiderly-form-control.mjs +36 -0
- package/esm2022/lib/components/spiderly-panels/panel-body/panel-body.component.mjs +19 -0
- package/esm2022/lib/components/spiderly-panels/panel-footer/panel-footer.component.mjs +14 -0
- package/esm2022/lib/components/spiderly-panels/panel-header/panel-header.component.mjs +49 -0
- package/esm2022/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.mjs +20 -0
- package/esm2022/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.mjs +63 -0
- package/esm2022/lib/components/spiderly-panels/spiderly-panels.module.mjs +49 -0
- package/esm2022/lib/controls/base-autocomplete-control.mjs +18 -0
- package/esm2022/lib/controls/base-control.mjs +62 -0
- package/esm2022/lib/controls/base-dropdown-control.mjs +37 -0
- package/esm2022/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.mjs +60 -0
- package/esm2022/lib/controls/spiderly-calendar/spiderly-calendar.component.mjs +39 -0
- package/esm2022/lib/controls/spiderly-checkbox/spiderly-checkbox.component.mjs +45 -0
- package/esm2022/lib/controls/spiderly-colorpick/spiderly-colorpick.component.mjs +40 -0
- package/esm2022/lib/controls/spiderly-controls.module.mjs +112 -0
- package/esm2022/lib/controls/spiderly-dropdown/spiderly-dropdown.component.mjs +40 -0
- package/esm2022/lib/controls/spiderly-editor/spiderly-editor.component.mjs +59 -0
- package/esm2022/lib/controls/spiderly-file/spiderly-file.component.mjs +106 -0
- package/esm2022/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.mjs +38 -0
- package/esm2022/lib/controls/spiderly-multiselect/spiderly-multiselect.component.mjs +34 -0
- package/esm2022/lib/controls/spiderly-number/spiderly-number.component.mjs +44 -0
- package/esm2022/lib/controls/spiderly-password/spiderly-password.component.mjs +37 -0
- package/esm2022/lib/controls/spiderly-textarea/spiderly-textarea.component.mjs +34 -0
- package/esm2022/lib/controls/spiderly-textbox/spiderly-textbox.component.mjs +45 -0
- package/esm2022/lib/entities/base-entity.mjs +18 -0
- package/esm2022/lib/entities/codebook.mjs +10 -0
- package/esm2022/lib/entities/init-company-auth-dialog-details.mjs +9 -0
- package/esm2022/lib/entities/init-top-bar-data.mjs +12 -0
- package/esm2022/lib/entities/is-authorized-for-save-event.mjs +9 -0
- package/esm2022/lib/entities/last-menu-icon-index-clicked.mjs +8 -0
- package/esm2022/lib/entities/lazy-load-selected-ids-result.mjs +11 -0
- package/esm2022/lib/entities/menuchangeevent.mjs +3 -0
- package/esm2022/lib/entities/mime-type.mjs +15 -0
- package/esm2022/lib/entities/namebook.mjs +9 -0
- package/esm2022/lib/entities/primeng-option.mjs +9 -0
- package/esm2022/lib/entities/security-entities.mjs +169 -0
- package/esm2022/lib/entities/simple-save-result.mjs +9 -0
- package/esm2022/lib/entities/spiderly-button.mjs +11 -0
- package/esm2022/lib/entities/table-filter-context.mjs +3 -0
- package/esm2022/lib/entities/table-filter-sort-meta.mjs +3 -0
- package/esm2022/lib/entities/table-filter.mjs +15 -0
- package/esm2022/lib/entities/table-response.mjs +3 -0
- package/esm2022/lib/enums/security-enums.mjs +26 -0
- package/esm2022/lib/enums/verification-type-codes.mjs +6 -0
- package/esm2022/lib/guards/auth.guard.mjs +40 -0
- package/esm2022/lib/guards/not-auth.guard.mjs +32 -0
- package/esm2022/lib/handlers/spiderly-error-handler.mjs +30 -0
- package/esm2022/lib/handlers/spiderly-transloco-fallback-strategy.mjs +24 -0
- package/esm2022/lib/interceptors/http-loading.interceptor.mjs +27 -0
- package/esm2022/lib/interceptors/json-parser.interceptor.mjs +47 -0
- package/esm2022/lib/interceptors/jwt.interceptor.mjs +27 -0
- package/esm2022/lib/interceptors/unauthorized.interceptor.mjs +64 -0
- package/esm2022/lib/modules/core.module.mjs +140 -0
- package/esm2022/lib/modules/primeng.module.mjs +278 -0
- package/esm2022/lib/modules/spiderly-transloco.module.mjs +44 -0
- package/esm2022/lib/services/api.service.security.mjs +86 -0
- package/esm2022/lib/services/app-initializer.mjs +6 -0
- package/esm2022/lib/services/app-layout-base.service.mjs +132 -0
- package/esm2022/lib/services/auth-base.service.mjs +220 -0
- package/esm2022/lib/services/base-form.service.mjs +124 -0
- package/esm2022/lib/services/config-base.service.mjs +33 -0
- package/esm2022/lib/services/helper-functions.mjs +229 -0
- package/esm2022/lib/services/spiderly-message.service.mjs +64 -0
- package/esm2022/lib/services/spiderly-transloco-loader.mjs +20 -0
- package/esm2022/lib/services/translate-labels-abstract.service.mjs +15 -0
- package/esm2022/lib/services/validator-abstract.service.mjs +51 -0
- package/esm2022/public-api.mjs +94 -0
- package/esm2022/spiderly.mjs +5 -0
- package/fesm2022/spiderly.mjs +4807 -0
- package/fesm2022/spiderly.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/auth/auth.module.d.ts +17 -0
- package/lib/components/auth/login/login.component.d.ts +35 -0
- package/lib/components/auth/partials/auth.component.d.ts +21 -0
- package/lib/components/auth/partials/login-verification.component.d.ts +18 -0
- package/lib/components/auth/partials/registration-verification.component.d.ts +17 -0
- package/lib/components/auth/partials/verification-wrapper.component.d.ts +31 -0
- package/lib/components/auth/registration/registration.component.d.ts +34 -0
- package/lib/components/base-details/role-base-details.component.d.ts +50 -0
- package/lib/components/base-form/base-form copy.d.ts +54 -0
- package/lib/components/card-skeleton/card-skeleton.component.d.ts +12 -0
- package/lib/components/footer/footer.component.d.ts +9 -0
- package/lib/components/index-card/index-card.component.d.ts +22 -0
- package/lib/components/info-card/info-card.component.d.ts +11 -0
- package/lib/components/layout/layout-base.component.d.ts +37 -0
- package/lib/components/layout/sidebar/menuitem.component.d.ts +43 -0
- package/lib/components/layout/sidebar/sidebar-menu.component.d.ts +23 -0
- package/lib/components/layout/sidebar/sidebar-menu.service.d.ts +12 -0
- package/lib/components/layout/sidebar/sidebar.component.d.ts +11 -0
- package/lib/components/layout/topbar/topbar.component.d.ts +45 -0
- package/lib/components/not-found/not-found.component.d.ts +9 -0
- package/lib/components/required/required.component.d.ts +6 -0
- package/lib/components/spiderly-buttons/google-button/google-button.component.d.ts +17 -0
- package/lib/components/spiderly-buttons/return-button/return-button.component.d.ts +10 -0
- package/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.d.ts +6 -0
- package/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.d.ts +27 -0
- package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts +8 -0
- package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +157 -0
- package/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.d.ts +11 -0
- package/lib/components/spiderly-form-control/spiderly-form-control.d.ts +37 -0
- package/lib/components/spiderly-panels/panel-body/panel-body.component.d.ts +9 -0
- package/lib/components/spiderly-panels/panel-footer/panel-footer.component.d.ts +8 -0
- package/lib/components/spiderly-panels/panel-header/panel-header.component.d.ts +29 -0
- package/lib/components/spiderly-panels/spiderly-card/spiderly-card.component.d.ts +10 -0
- package/lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component.d.ts +25 -0
- package/lib/components/spiderly-panels/spiderly-panels.module.d.ts +13 -0
- package/lib/controls/base-autocomplete-control.d.ts +9 -0
- package/lib/controls/base-control.d.ts +23 -0
- package/lib/controls/base-dropdown-control.d.ts +18 -0
- package/lib/controls/spiderly-autocomplete/spiderly-autocomplete.component.d.ts +18 -0
- package/lib/controls/spiderly-calendar/spiderly-calendar.component.d.ts +13 -0
- package/lib/controls/spiderly-checkbox/spiderly-checkbox.component.d.ts +14 -0
- package/lib/controls/spiderly-colorpick/spiderly-colorpick.component.d.ts +11 -0
- package/lib/controls/spiderly-controls.module.d.ts +22 -0
- package/lib/controls/spiderly-dropdown/spiderly-dropdown.component.d.ts +14 -0
- package/lib/controls/spiderly-editor/spiderly-editor.component.d.ts +16 -0
- package/lib/controls/spiderly-file/spiderly-file.component.d.ts +36 -0
- package/lib/controls/spiderly-multiautocomplete/spiderly-multiautocomplete.component.d.ts +13 -0
- package/lib/controls/spiderly-multiselect/spiderly-multiselect.component.d.ts +11 -0
- package/lib/controls/spiderly-number/spiderly-number.component.d.ts +15 -0
- package/lib/controls/spiderly-password/spiderly-password.component.d.ts +12 -0
- package/lib/controls/spiderly-textarea/spiderly-textarea.component.d.ts +11 -0
- package/lib/controls/spiderly-textbox/spiderly-textbox.component.d.ts +15 -0
- package/lib/entities/base-entity.d.ts +14 -0
- package/lib/entities/codebook.d.ts +9 -0
- package/lib/entities/init-company-auth-dialog-details.d.ts +9 -0
- package/lib/entities/init-top-bar-data.d.ts +16 -0
- package/lib/entities/is-authorized-for-save-event.d.ts +9 -0
- package/lib/entities/last-menu-icon-index-clicked.d.ts +7 -0
- package/lib/entities/lazy-load-selected-ids-result.d.ts +9 -0
- package/lib/entities/menuchangeevent.d.ts +4 -0
- package/lib/entities/mime-type.d.ts +11 -0
- package/lib/entities/namebook.d.ts +9 -0
- package/lib/entities/primeng-option.d.ts +9 -0
- package/lib/entities/security-entities.d.ts +211 -0
- package/lib/entities/simple-save-result.d.ts +7 -0
- package/lib/entities/spiderly-button.d.ts +13 -0
- package/lib/entities/table-filter-context.d.ts +5 -0
- package/lib/entities/table-filter-sort-meta.d.ts +4 -0
- package/lib/entities/table-filter.d.ts +23 -0
- package/lib/entities/table-response.d.ts +4 -0
- package/lib/enums/security-enums.d.ts +22 -0
- package/lib/enums/verification-type-codes.d.ts +4 -0
- package/lib/guards/auth.guard.d.ts +15 -0
- package/lib/guards/not-auth.guard.d.ts +12 -0
- package/lib/handlers/spiderly-error-handler.d.ts +14 -0
- package/lib/handlers/spiderly-transloco-fallback-strategy.d.ts +13 -0
- package/lib/interceptors/http-loading.interceptor.d.ts +11 -0
- package/lib/interceptors/json-parser.interceptor.d.ts +11 -0
- package/lib/interceptors/jwt.interceptor.d.ts +11 -0
- package/lib/interceptors/unauthorized.interceptor.d.ts +16 -0
- package/lib/modules/core.module.d.ts +13 -0
- package/lib/modules/primeng.module.d.ts +42 -0
- package/lib/modules/spiderly-transloco.module.d.ts +9 -0
- package/lib/services/api.service.security.d.ts +35 -0
- package/lib/services/app-initializer.d.ts +4 -0
- package/lib/services/app-layout-base.service.d.ts +60 -0
- package/lib/services/auth-base.service.d.ts +55 -0
- package/lib/services/base-form.service.d.ts +27 -0
- package/lib/services/config-base.service.d.ts +24 -0
- package/lib/services/helper-functions.d.ts +37 -0
- package/lib/services/spiderly-message.service.d.ts +17 -0
- package/lib/services/spiderly-transloco-loader.d.ts +10 -0
- package/lib/services/translate-labels-abstract.service.d.ts +7 -0
- package/lib/services/validator-abstract.service.d.ts +13 -0
- package/package.json +60 -0
- package/public-api.d.ts +90 -0
- package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +34 -0
- package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +10 -0
- package/styles/styles/layout/_config.scss +42 -0
- package/styles/styles/layout/_content.scss +12 -0
- package/styles/styles/layout/_footer.scss +9 -0
- package/styles/styles/layout/_main.scss +28 -0
- package/styles/styles/layout/_menu.scss +135 -0
- package/styles/styles/layout/_mixins.scss +13 -0
- package/styles/styles/layout/_preloading.scss +47 -0
- package/styles/styles/layout/_responsive.scss +100 -0
- package/styles/styles/layout/_spiderly-controls.scss +12 -0
- package/styles/styles/layout/_topbar.scss +231 -0
- package/styles/styles/layout/_typography.scss +63 -0
- package/styles/styles/layout/_utils.scss +20 -0
- package/styles/styles/layout/_variables.scss +903 -0
- package/styles/styles/layout/layout.scss +13 -0
- package/styles/styles/shared.scss +519 -0
- package/styles/styles/styles.scss +6 -0
- package/styles/styles/theme/base/_colors.scss +18 -0
- package/styles/styles/theme/base/_common.scss +75 -0
- package/styles/styles/theme/base/_components.scss +106 -0
- package/styles/styles/theme/base/_mixins.scss +343 -0
- package/styles/styles/theme/base/components/button/_button.scss +564 -0
- package/styles/styles/theme/base/components/button/_speeddial.scss +96 -0
- package/styles/styles/theme/base/components/button/_splitbutton.scss +381 -0
- package/styles/styles/theme/base/components/data/_carousel.scss +37 -0
- package/styles/styles/theme/base/components/data/_datatable.scss +338 -0
- package/styles/styles/theme/base/components/data/_dataview.scss +55 -0
- package/styles/styles/theme/base/components/data/_filter.scss +138 -0
- package/styles/styles/theme/base/components/data/_orderlist.scss +103 -0
- package/styles/styles/theme/base/components/data/_organizationchart.scss +50 -0
- package/styles/styles/theme/base/components/data/_paginator.scss +92 -0
- package/styles/styles/theme/base/components/data/_picklist.scss +103 -0
- package/styles/styles/theme/base/components/data/_timeline.scss +81 -0
- package/styles/styles/theme/base/components/data/_tree.scss +149 -0
- package/styles/styles/theme/base/components/data/_treetable.scss +256 -0
- package/styles/styles/theme/base/components/data/_virtualscroller.scss +28 -0
- package/styles/styles/theme/base/components/file/_fileupload.scss +64 -0
- package/styles/styles/theme/base/components/input/_autocomplete.scss +118 -0
- package/styles/styles/theme/base/components/input/_calendar.scss +263 -0
- package/styles/styles/theme/base/components/input/_cascadeselect.scss +130 -0
- package/styles/styles/theme/base/components/input/_checkbox.scss +90 -0
- package/styles/styles/theme/base/components/input/_chips.scss +55 -0
- package/styles/styles/theme/base/components/input/_colorpicker.scss +26 -0
- package/styles/styles/theme/base/components/input/_dropdown.scss +152 -0
- package/styles/styles/theme/base/components/input/_editor.scss +122 -0
- package/styles/styles/theme/base/components/input/_inputgroup.scss +75 -0
- package/styles/styles/theme/base/components/input/_inputmask.scss +16 -0
- package/styles/styles/theme/base/components/input/_inputnumber.scss +28 -0
- package/styles/styles/theme/base/components/input/_inputswitch.scss +60 -0
- package/styles/styles/theme/base/components/input/_inputtext.scss +100 -0
- package/styles/styles/theme/base/components/input/_listbox.scss +82 -0
- package/styles/styles/theme/base/components/input/_multiselect.scss +173 -0
- package/styles/styles/theme/base/components/input/_password.scss +52 -0
- package/styles/styles/theme/base/components/input/_radiobutton.scss +78 -0
- package/styles/styles/theme/base/components/input/_rating.scss +55 -0
- package/styles/styles/theme/base/components/input/_selectbutton.scss +50 -0
- package/styles/styles/theme/base/components/input/_slider.scss +71 -0
- package/styles/styles/theme/base/components/input/_togglebutton.scss +48 -0
- package/styles/styles/theme/base/components/input/_treeselect.scss +139 -0
- package/styles/styles/theme/base/components/menu/_breadcrumb.scss +42 -0
- package/styles/styles/theme/base/components/menu/_contextmenu.scss +39 -0
- package/styles/styles/theme/base/components/menu/_dock.scss +95 -0
- package/styles/styles/theme/base/components/menu/_megamenu.scss +55 -0
- package/styles/styles/theme/base/components/menu/_menu.scss +37 -0
- package/styles/styles/theme/base/components/menu/_menubar.scss +141 -0
- package/styles/styles/theme/base/components/menu/_panelmenu.scss +153 -0
- package/styles/styles/theme/base/components/menu/_slidemenu.scss +59 -0
- package/styles/styles/theme/base/components/menu/_steps.scss +56 -0
- package/styles/styles/theme/base/components/menu/_tabmenu.scss +74 -0
- package/styles/styles/theme/base/components/menu/_tieredmenu.scss +43 -0
- package/styles/styles/theme/base/components/messages/_inlinemessage.scss +69 -0
- package/styles/styles/theme/base/components/messages/_message.scss +107 -0
- package/styles/styles/theme/base/components/messages/_toast.scss +103 -0
- package/styles/styles/theme/base/components/misc/_avatar.scss +30 -0
- package/styles/styles/theme/base/components/misc/_badge.scss +48 -0
- package/styles/styles/theme/base/components/misc/_blockui.scss +0 -0
- package/styles/styles/theme/base/components/misc/_chip.scss +42 -0
- package/styles/styles/theme/base/components/misc/_inplace.scss +17 -0
- package/styles/styles/theme/base/components/misc/_progressbar.scss +17 -0
- package/styles/styles/theme/base/components/misc/_scrolltop.scss +25 -0
- package/styles/styles/theme/base/components/misc/_skeleton.scss +8 -0
- package/styles/styles/theme/base/components/misc/_tag.scss +40 -0
- package/styles/styles/theme/base/components/misc/_terminal.scss +12 -0
- package/styles/styles/theme/base/components/multimedia/_galleria.scss +155 -0
- package/styles/styles/theme/base/components/multimedia/_image.scss +49 -0
- package/styles/styles/theme/base/components/overlay/_confirmpopup.scss +72 -0
- package/styles/styles/theme/base/components/overlay/_dialog.scss +73 -0
- package/styles/styles/theme/base/components/overlay/_overlaypanel.scss +64 -0
- package/styles/styles/theme/base/components/overlay/_sidebar.scss +27 -0
- package/styles/styles/theme/base/components/overlay/_tooltip.scss +33 -0
- package/styles/styles/theme/base/components/panel/_accordion.scss +119 -0
- package/styles/styles/theme/base/components/panel/_card.scss +30 -0
- package/styles/styles/theme/base/components/panel/_divider.scss +31 -0
- package/styles/styles/theme/base/components/panel/_fieldset.scss +47 -0
- package/styles/styles/theme/base/components/panel/_panel.scss +58 -0
- package/styles/styles/theme/base/components/panel/_scrollpanel.scss +6 -0
- package/styles/styles/theme/base/components/panel/_splitter.scss +19 -0
- package/styles/styles/theme/base/components/panel/_tabview.scss +82 -0
- package/styles/styles/theme/base/components/panel/_toolbar.scss +11 -0
- package/styles/styles/theme/saga/_extensions.scss +27 -0
- package/styles/styles/theme/saga/_variables.scss +1 -0
- package/styles/styles/theme/saga/saga-blue/_extensions.scss +2 -0
- package/styles/styles/theme/saga/saga-blue/_fonts.scss +1 -0
- package/styles/styles/theme/saga/saga-blue/_variables.scss +1 -0
- package/styles/styles/theme/saga/saga-blue/theme.scss +4 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare class BaseEntity {
|
|
2
|
+
pipedProperties?: PipedProperty[];
|
|
3
|
+
typeName?: string;
|
|
4
|
+
constructor(typeName: string);
|
|
5
|
+
}
|
|
6
|
+
export declare class PipedProperty {
|
|
7
|
+
pipe: PropertyPipes;
|
|
8
|
+
control: string;
|
|
9
|
+
constructor(p: PropertyPipes, c: string);
|
|
10
|
+
}
|
|
11
|
+
export declare enum PropertyPipes {
|
|
12
|
+
IntegerPipe = 0,
|
|
13
|
+
DecimalPipe = 1
|
|
14
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BaseEntity } from "./base-entity";
|
|
2
|
+
import { User } from "./security-entities";
|
|
3
|
+
export declare class InitTopBarData extends BaseEntity {
|
|
4
|
+
companyName?: string;
|
|
5
|
+
userProfilePath?: string;
|
|
6
|
+
unreadNotificationsCount?: number;
|
|
7
|
+
showProfileIcon?: boolean;
|
|
8
|
+
currentUser?: User;
|
|
9
|
+
constructor({ companyName, userProfilePath, unreadNotificationsCount, showProfileIcon, currentUser, }?: {
|
|
10
|
+
companyName?: string;
|
|
11
|
+
userProfilePath?: string;
|
|
12
|
+
unreadNotificationsCount?: number;
|
|
13
|
+
showProfileIcon?: boolean;
|
|
14
|
+
currentUser?: User;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseEntity } from "./base-entity";
|
|
2
|
+
export declare class IsAuthorizedForSaveEvent extends BaseEntity {
|
|
3
|
+
isAuthorizedForSave?: boolean;
|
|
4
|
+
currentUserPermissionCodes?: string[];
|
|
5
|
+
constructor({ isAuthorizedForSave, currentUserPermissionCodes, }?: {
|
|
6
|
+
isAuthorizedForSave?: boolean;
|
|
7
|
+
currentUserPermissionCodes?: string[];
|
|
8
|
+
});
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseEntity } from "../entities/base-entity";
|
|
2
|
+
export declare class LazyLoadSelectedIdsResult extends BaseEntity {
|
|
3
|
+
selectedIds?: number[];
|
|
4
|
+
totalRecordsSelected?: number;
|
|
5
|
+
constructor({ selectedIds, totalRecordsSelected, }?: {
|
|
6
|
+
selectedIds?: number[];
|
|
7
|
+
totalRecordsSelected?: number;
|
|
8
|
+
});
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare class MimeTypes {
|
|
2
|
+
readonly value: string;
|
|
3
|
+
private constructor();
|
|
4
|
+
static Pdf: MimeTypes;
|
|
5
|
+
static Zip: MimeTypes;
|
|
6
|
+
static Jpeg: MimeTypes;
|
|
7
|
+
static Png: MimeTypes;
|
|
8
|
+
static Svg: MimeTypes;
|
|
9
|
+
static Webp: MimeTypes;
|
|
10
|
+
toString(): string;
|
|
11
|
+
}
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
import { BaseEntity } from "./base-entity";
|
|
2
|
+
import { RegistrationVerificationResultStatusCodes } from "../enums/security-enums";
|
|
3
|
+
import { Namebook } from "./namebook";
|
|
4
|
+
export declare class User extends BaseEntity {
|
|
5
|
+
id?: number;
|
|
6
|
+
email?: string;
|
|
7
|
+
constructor({ id, email, }?: {
|
|
8
|
+
id?: number;
|
|
9
|
+
email?: string;
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
export declare class JwtAuthResult extends BaseEntity {
|
|
13
|
+
userId?: number;
|
|
14
|
+
userEmail?: string;
|
|
15
|
+
accessToken?: string;
|
|
16
|
+
token?: RefreshToken;
|
|
17
|
+
constructor({ userId, userEmail, accessToken, token }?: {
|
|
18
|
+
userId?: number;
|
|
19
|
+
userEmail?: string;
|
|
20
|
+
accessToken?: string;
|
|
21
|
+
token?: RefreshToken;
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
export declare class RolePermission extends BaseEntity {
|
|
25
|
+
roleDisplayName?: string;
|
|
26
|
+
roleId?: number;
|
|
27
|
+
permissionDisplayName?: string;
|
|
28
|
+
permissionId?: number;
|
|
29
|
+
constructor({ roleDisplayName, roleId, permissionDisplayName, permissionId }?: {
|
|
30
|
+
roleDisplayName?: string;
|
|
31
|
+
roleId?: number;
|
|
32
|
+
permissionDisplayName?: string;
|
|
33
|
+
permissionId?: number;
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
export declare class RolePermissionSaveBody extends BaseEntity {
|
|
37
|
+
rolePermissionDTO?: RolePermission;
|
|
38
|
+
constructor({ rolePermissionDTO }?: {
|
|
39
|
+
rolePermissionDTO?: RolePermission;
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
export declare class AuthResult extends BaseEntity {
|
|
43
|
+
userId?: number;
|
|
44
|
+
email?: string;
|
|
45
|
+
accessToken?: string;
|
|
46
|
+
refreshToken?: string;
|
|
47
|
+
constructor({ userId, email, accessToken, refreshToken }?: {
|
|
48
|
+
userId?: number;
|
|
49
|
+
email?: string;
|
|
50
|
+
accessToken?: string;
|
|
51
|
+
refreshToken?: string;
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
export declare class VerificationTokenRequest extends BaseEntity {
|
|
55
|
+
verificationCode?: string;
|
|
56
|
+
browserId?: string;
|
|
57
|
+
email?: string;
|
|
58
|
+
constructor({ verificationCode, browserId, email }?: {
|
|
59
|
+
verificationCode?: string;
|
|
60
|
+
browserId?: string;
|
|
61
|
+
email?: string;
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
export declare class RegistrationVerificationResult extends BaseEntity {
|
|
65
|
+
status?: RegistrationVerificationResultStatusCodes;
|
|
66
|
+
message?: string;
|
|
67
|
+
constructor({ status, message }?: {
|
|
68
|
+
status?: RegistrationVerificationResultStatusCodes;
|
|
69
|
+
message?: string;
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
export declare class RegistrationVerificationToken extends BaseEntity {
|
|
73
|
+
email?: string;
|
|
74
|
+
browserId?: string;
|
|
75
|
+
expireAt?: Date;
|
|
76
|
+
constructor({ email, browserId, expireAt }?: {
|
|
77
|
+
email?: string;
|
|
78
|
+
browserId?: string;
|
|
79
|
+
expireAt?: Date;
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
export declare class ExternalProvider extends BaseEntity {
|
|
83
|
+
idToken?: string;
|
|
84
|
+
browserId?: string;
|
|
85
|
+
constructor({ idToken, browserId }?: {
|
|
86
|
+
idToken?: string;
|
|
87
|
+
browserId?: string;
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
export declare class UserRole extends BaseEntity {
|
|
91
|
+
roleId?: number;
|
|
92
|
+
userId?: number;
|
|
93
|
+
constructor({ roleId, userId }?: {
|
|
94
|
+
roleId?: number;
|
|
95
|
+
userId?: number;
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
export declare class UserRoleSaveBody extends BaseEntity {
|
|
99
|
+
userRoleDTO?: UserRole;
|
|
100
|
+
constructor({ userRoleDTO }?: {
|
|
101
|
+
userRoleDTO?: UserRole;
|
|
102
|
+
});
|
|
103
|
+
}
|
|
104
|
+
export declare class LoginVerificationToken extends BaseEntity {
|
|
105
|
+
email?: string;
|
|
106
|
+
userId?: number;
|
|
107
|
+
browserId?: string;
|
|
108
|
+
expireAt?: Date;
|
|
109
|
+
constructor({ email, userId, browserId, expireAt }?: {
|
|
110
|
+
email?: string;
|
|
111
|
+
userId?: number;
|
|
112
|
+
browserId?: string;
|
|
113
|
+
expireAt?: Date;
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
export declare class Login extends BaseEntity {
|
|
117
|
+
email?: string;
|
|
118
|
+
browserId?: string;
|
|
119
|
+
constructor({ email, browserId }?: {
|
|
120
|
+
email?: string;
|
|
121
|
+
browserId?: string;
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
export declare class RefreshTokenRequest extends BaseEntity {
|
|
125
|
+
refreshToken?: string;
|
|
126
|
+
browserId?: string;
|
|
127
|
+
constructor({ refreshToken, browserId }?: {
|
|
128
|
+
refreshToken?: string;
|
|
129
|
+
browserId?: string;
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
export declare class Registration extends BaseEntity {
|
|
133
|
+
email?: string;
|
|
134
|
+
browserId?: string;
|
|
135
|
+
constructor({ email, browserId }?: {
|
|
136
|
+
email?: string;
|
|
137
|
+
browserId?: string;
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
export declare class Role extends BaseEntity {
|
|
141
|
+
name?: string;
|
|
142
|
+
description?: string;
|
|
143
|
+
version?: number;
|
|
144
|
+
id?: number;
|
|
145
|
+
createdAt?: Date;
|
|
146
|
+
modifiedAt?: Date;
|
|
147
|
+
constructor({ name, description, version, id, createdAt, modifiedAt }?: {
|
|
148
|
+
name?: string;
|
|
149
|
+
description?: string;
|
|
150
|
+
version?: number;
|
|
151
|
+
id?: number;
|
|
152
|
+
createdAt?: Date;
|
|
153
|
+
modifiedAt?: Date;
|
|
154
|
+
});
|
|
155
|
+
}
|
|
156
|
+
export declare class RoleMainUIForm extends BaseEntity {
|
|
157
|
+
roleDTO?: Role;
|
|
158
|
+
usersNamebookDTOList?: Namebook[];
|
|
159
|
+
permissionsNamebookDTOList?: Namebook[];
|
|
160
|
+
constructor({ roleDTO, usersNamebookDTOList, permissionsNamebookDTOList }?: {
|
|
161
|
+
roleDTO?: Role;
|
|
162
|
+
usersNamebookDTOList?: Namebook[];
|
|
163
|
+
permissionsNamebookDTOList?: Namebook[];
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
export declare class RoleSaveBody extends BaseEntity {
|
|
167
|
+
roleDTO?: Role;
|
|
168
|
+
selectedPermissionsIds?: number[];
|
|
169
|
+
selectedUsersIds?: number[];
|
|
170
|
+
constructor({ roleDTO, selectedPermissionsIds, selectedUsersIds }?: {
|
|
171
|
+
roleDTO?: Role;
|
|
172
|
+
selectedPermissionsIds?: number[];
|
|
173
|
+
selectedUsersIds?: number[];
|
|
174
|
+
});
|
|
175
|
+
}
|
|
176
|
+
export declare class RefreshToken extends BaseEntity {
|
|
177
|
+
email?: string;
|
|
178
|
+
ipAddress?: string;
|
|
179
|
+
browserId?: string;
|
|
180
|
+
tokenString?: string;
|
|
181
|
+
expireAt?: Date;
|
|
182
|
+
constructor({ email, ipAddress, browserId, tokenString, expireAt }?: {
|
|
183
|
+
email?: string;
|
|
184
|
+
ipAddress?: string;
|
|
185
|
+
browserId?: string;
|
|
186
|
+
tokenString?: string;
|
|
187
|
+
expireAt?: Date;
|
|
188
|
+
});
|
|
189
|
+
}
|
|
190
|
+
export declare class Permission extends BaseEntity {
|
|
191
|
+
name?: string;
|
|
192
|
+
nameLatin?: string;
|
|
193
|
+
description?: string;
|
|
194
|
+
descriptionLatin?: string;
|
|
195
|
+
code?: string;
|
|
196
|
+
id?: number;
|
|
197
|
+
constructor({ name, nameLatin, description, descriptionLatin, code, id }?: {
|
|
198
|
+
name?: string;
|
|
199
|
+
nameLatin?: string;
|
|
200
|
+
description?: string;
|
|
201
|
+
descriptionLatin?: string;
|
|
202
|
+
code?: string;
|
|
203
|
+
id?: number;
|
|
204
|
+
});
|
|
205
|
+
}
|
|
206
|
+
export declare class PermissionSaveBody extends BaseEntity {
|
|
207
|
+
permissionDTO?: Permission;
|
|
208
|
+
constructor({ permissionDTO }?: {
|
|
209
|
+
permissionDTO?: Permission;
|
|
210
|
+
});
|
|
211
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BaseEntity } from "../entities/base-entity";
|
|
2
|
+
export declare class SpiderlyButton extends BaseEntity {
|
|
3
|
+
label?: string;
|
|
4
|
+
icon?: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
onClick?: () => void;
|
|
7
|
+
constructor({ label, icon, disabled, onClick, }?: {
|
|
8
|
+
label?: string;
|
|
9
|
+
icon?: string;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
onClick?: () => void;
|
|
12
|
+
});
|
|
13
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { BaseEntity } from "../entities/base-entity";
|
|
2
|
+
import { TableFilterContext } from "../entities/table-filter-context";
|
|
3
|
+
import { TableFilterSortMeta } from "../entities/table-filter-sort-meta";
|
|
4
|
+
export declare class TableFilter extends BaseEntity {
|
|
5
|
+
filters?: Map<string, TableFilterContext[]>;
|
|
6
|
+
first?: number;
|
|
7
|
+
rows?: number;
|
|
8
|
+
sortField?: string;
|
|
9
|
+
sortOrder?: number;
|
|
10
|
+
multiSortMeta?: TableFilterSortMeta[];
|
|
11
|
+
additionalFilterIdInt?: number;
|
|
12
|
+
additionalFilterIdLong?: number;
|
|
13
|
+
constructor({ filters, first, rows, sortField, sortOrder, multiSortMeta, additionalFilterIdInt, additionalFilterIdLong, }?: {
|
|
14
|
+
filters?: Map<string, TableFilterContext[]>;
|
|
15
|
+
first?: number;
|
|
16
|
+
rows?: number;
|
|
17
|
+
sortField?: string;
|
|
18
|
+
sortOrder?: number;
|
|
19
|
+
multiSortMeta?: TableFilterSortMeta[];
|
|
20
|
+
additionalFilterIdInt?: number;
|
|
21
|
+
additionalFilterIdLong?: number;
|
|
22
|
+
});
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare enum LoginVerificationResultStatusCodes {
|
|
2
|
+
}
|
|
3
|
+
export declare enum RegistrationVerificationResultStatusCodes {
|
|
4
|
+
UserDoesNotExistAndDoesNotHaveValidToken = 0,
|
|
5
|
+
UserWithoutPasswordExists = 1,
|
|
6
|
+
UserWithPasswordExists = 2,
|
|
7
|
+
UnexpectedError = 3
|
|
8
|
+
}
|
|
9
|
+
export declare enum SecurityPermissionCodes {
|
|
10
|
+
ReadUser = "ReadUser",
|
|
11
|
+
UpdateUser = "UpdateUser",
|
|
12
|
+
InsertUser = "InsertUser",
|
|
13
|
+
DeleteUser = "DeleteUser",
|
|
14
|
+
ReadRole = "ReadRole",
|
|
15
|
+
UpdateRole = "UpdateRole",
|
|
16
|
+
InsertRole = "InsertRole",
|
|
17
|
+
DeleteRole = "DeleteRole",
|
|
18
|
+
ReadPermission = "ReadPermission",
|
|
19
|
+
UpdatePermission = "UpdatePermission",
|
|
20
|
+
InsertPermission = "InsertPermission",
|
|
21
|
+
DeletePermission = "DeletePermission"
|
|
22
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CanActivate, Router } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { AuthBaseService } from '../services/auth-base.service';
|
|
4
|
+
import { ConfigBaseService } from '../services/config-base.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AuthGuard implements CanActivate {
|
|
7
|
+
private authService;
|
|
8
|
+
private router;
|
|
9
|
+
private config;
|
|
10
|
+
constructor(authService: AuthBaseService, router: Router, config: ConfigBaseService);
|
|
11
|
+
canActivate(): Observable<boolean>;
|
|
12
|
+
private checkAuth;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthGuard, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthGuard>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CanActivate } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { AuthBaseService } from '../services/auth-base.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class NotAuthGuard implements CanActivate {
|
|
6
|
+
private authService;
|
|
7
|
+
constructor(authService: AuthBaseService);
|
|
8
|
+
canActivate(): Observable<boolean>;
|
|
9
|
+
private checkAuth;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotAuthGuard, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NotAuthGuard>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TranslocoService } from '@jsverse/transloco';
|
|
2
|
+
import { ErrorHandler } from '@angular/core';
|
|
3
|
+
import { SpiderlyMessageService } from '../services/spiderly-message.service';
|
|
4
|
+
import { ConfigBaseService } from '../services/config-base.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SpiderlyErrorHandler implements ErrorHandler {
|
|
7
|
+
private messageService;
|
|
8
|
+
private translocoService;
|
|
9
|
+
private config;
|
|
10
|
+
constructor(messageService: SpiderlyMessageService, translocoService: TranslocoService, config: ConfigBaseService);
|
|
11
|
+
handleError(error: any): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyErrorHandler, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SpiderlyErrorHandler>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TranslocoFallbackStrategy, TranslocoService } from '@jsverse/transloco';
|
|
2
|
+
import { HashMap, TranslocoMissingHandler, TranslocoMissingHandlerData } from "@jsverse/transloco";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SpiderlyTranslocoFallbackStrategy implements TranslocoFallbackStrategy {
|
|
5
|
+
getNextLangs(failedLang: string): string[];
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyTranslocoFallbackStrategy, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SpiderlyTranslocoFallbackStrategy>;
|
|
8
|
+
}
|
|
9
|
+
export declare class SpiderlyTranslocoMissingHandler implements TranslocoMissingHandler {
|
|
10
|
+
private translocoService;
|
|
11
|
+
constructor(translocoService: TranslocoService);
|
|
12
|
+
handle(key: string, data: TranslocoMissingHandlerData, params?: HashMap): string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from "@angular/common/http";
|
|
2
|
+
import { NgxSpinnerService } from "ngx-spinner";
|
|
3
|
+
import { Observable } from "rxjs";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HttpLoadingInterceptor implements HttpInterceptor {
|
|
6
|
+
private spinner;
|
|
7
|
+
constructor(spinner: NgxSpinnerService);
|
|
8
|
+
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HttpLoadingInterceptor, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HttpLoadingInterceptor>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class JsonHttpInterceptor implements HttpInterceptor {
|
|
5
|
+
private dateRegex;
|
|
6
|
+
constructor();
|
|
7
|
+
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
8
|
+
private convertDates;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JsonHttpInterceptor, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JsonHttpInterceptor>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ConfigBaseService } from '../services/config-base.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class JwtInterceptor implements HttpInterceptor {
|
|
6
|
+
private config;
|
|
7
|
+
constructor(config: ConfigBaseService);
|
|
8
|
+
intercept(request: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JwtInterceptor, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JwtInterceptor>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { SpiderlyMessageService } from '../services/spiderly-message.service';
|
|
4
|
+
import { TranslocoService } from '@jsverse/transloco';
|
|
5
|
+
import { ConfigBaseService } from '../services/config-base.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class UnauthorizedInterceptor implements HttpInterceptor {
|
|
8
|
+
private messageService;
|
|
9
|
+
private translocoService;
|
|
10
|
+
private config;
|
|
11
|
+
constructor(messageService: SpiderlyMessageService, translocoService: TranslocoService, config: ConfigBaseService);
|
|
12
|
+
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
13
|
+
private handleAuthError;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UnauthorizedInterceptor, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UnauthorizedInterceptor>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/platform-browser";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/common/http";
|
|
5
|
+
import * as i4 from "@angular/platform-browser/animations";
|
|
6
|
+
import * as i5 from "primeng/toast";
|
|
7
|
+
import * as i6 from "primeng/confirmdialog";
|
|
8
|
+
export declare class CoreModule {
|
|
9
|
+
constructor(core: CoreModule);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CoreModule, [{ optional: true; skipSelf: true; }]>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, never, [typeof i1.BrowserModule, typeof i2.CommonModule, typeof i3.HttpClientModule, typeof i4.BrowserAnimationsModule, typeof i5.ToastModule, typeof i6.ConfirmDialogModule], [typeof i1.BrowserModule, typeof i2.CommonModule, typeof i3.HttpClientModule, typeof i4.BrowserAnimationsModule, typeof i5.ToastModule, typeof i6.ConfirmDialogModule]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "primeng/table";
|
|
3
|
+
import * as i2 from "primeng/button";
|
|
4
|
+
import * as i3 from "primeng/multiselect";
|
|
5
|
+
import * as i4 from "primeng/inputtext";
|
|
6
|
+
import * as i5 from "primeng/inputtextarea";
|
|
7
|
+
import * as i6 from "primeng/dropdown";
|
|
8
|
+
import * as i7 from "primeng/tooltip";
|
|
9
|
+
import * as i8 from "primeng/inputswitch";
|
|
10
|
+
import * as i9 from "primeng/dialog";
|
|
11
|
+
import * as i10 from "primeng/calendar";
|
|
12
|
+
import * as i11 from "primeng/checkbox";
|
|
13
|
+
import * as i12 from "primeng/password";
|
|
14
|
+
import * as i13 from "primeng/toast";
|
|
15
|
+
import * as i14 from "primeng/confirmdialog";
|
|
16
|
+
import * as i15 from "primeng/sidebar";
|
|
17
|
+
import * as i16 from "primeng/badge";
|
|
18
|
+
import * as i17 from "primeng/radiobutton";
|
|
19
|
+
import * as i18 from "primeng/ripple";
|
|
20
|
+
import * as i19 from "primeng/panel";
|
|
21
|
+
import * as i20 from "primeng/autocomplete";
|
|
22
|
+
import * as i21 from "primeng/avatar";
|
|
23
|
+
import * as i22 from "primeng/avatargroup";
|
|
24
|
+
import * as i23 from "primeng/progressbar";
|
|
25
|
+
import * as i24 from "primeng/divider";
|
|
26
|
+
import * as i25 from "primeng/inputnumber";
|
|
27
|
+
import * as i26 from "primeng/overlaypanel";
|
|
28
|
+
import * as i27 from "primeng/menu";
|
|
29
|
+
import * as i28 from "primeng/paginator";
|
|
30
|
+
import * as i29 from "primeng/editor";
|
|
31
|
+
import * as i30 from "primeng/inputgroup";
|
|
32
|
+
import * as i31 from "primeng/inputgroupaddon";
|
|
33
|
+
import * as i32 from "primeng/timeline";
|
|
34
|
+
import * as i33 from "primeng/card";
|
|
35
|
+
import * as i34 from "primeng/colorpicker";
|
|
36
|
+
import * as i35 from "primeng/fileupload";
|
|
37
|
+
import * as i36 from "primeng/dataview";
|
|
38
|
+
export declare class PrimengModule {
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrimengModule, never>;
|
|
40
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PrimengModule, never, [typeof i1.TableModule, typeof i2.ButtonModule, typeof i3.MultiSelectModule, typeof i4.InputTextModule, typeof i5.InputTextareaModule, typeof i6.DropdownModule, typeof i7.TooltipModule, typeof i8.InputSwitchModule, typeof i9.DialogModule, typeof i10.CalendarModule, typeof i10.CalendarModule, typeof i11.CheckboxModule, typeof i12.PasswordModule, typeof i13.ToastModule, typeof i14.ConfirmDialogModule, typeof i15.SidebarModule, typeof i16.BadgeModule, typeof i17.RadioButtonModule, typeof i18.RippleModule, typeof i19.PanelModule, typeof i20.AutoCompleteModule, typeof i21.AvatarModule, typeof i22.AvatarGroupModule, typeof i23.ProgressBarModule, typeof i24.DividerModule, typeof i25.InputNumberModule, typeof i26.OverlayPanelModule, typeof i27.MenuModule, typeof i28.PaginatorModule, typeof i29.EditorModule, typeof i30.InputGroupModule, typeof i31.InputGroupAddonModule, typeof i32.TimelineModule, typeof i33.CardModule, typeof i34.ColorPickerModule, typeof i35.FileUploadModule, typeof i36.DataViewModule], [typeof i1.TableModule, typeof i2.ButtonModule, typeof i3.MultiSelectModule, typeof i4.InputTextModule, typeof i5.InputTextareaModule, typeof i6.DropdownModule, typeof i7.TooltipModule, typeof i8.InputSwitchModule, typeof i9.DialogModule, typeof i10.CalendarModule, typeof i10.CalendarModule, typeof i11.CheckboxModule, typeof i12.PasswordModule, typeof i13.ToastModule, typeof i14.ConfirmDialogModule, typeof i15.SidebarModule, typeof i16.BadgeModule, typeof i17.RadioButtonModule, typeof i18.RippleModule, typeof i19.PanelModule, typeof i20.AutoCompleteModule, typeof i21.AvatarModule, typeof i22.AvatarGroupModule, typeof i23.ProgressBarModule, typeof i24.DividerModule, typeof i25.InputNumberModule, typeof i26.OverlayPanelModule, typeof i27.MenuModule, typeof i28.PaginatorModule, typeof i29.EditorModule, typeof i30.InputGroupModule, typeof i31.InputGroupAddonModule, typeof i32.TimelineModule, typeof i33.CardModule, typeof i34.ColorPickerModule, typeof i35.FileUploadModule, typeof i36.DataViewModule]>;
|
|
41
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PrimengModule>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@jsverse/transloco";
|
|
4
|
+
export declare class SpiderlyTranslocoModule {
|
|
5
|
+
static forRoot(): ModuleWithProviders<SpiderlyTranslocoModule>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyTranslocoModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SpiderlyTranslocoModule, never, [typeof i1.TranslocoModule], [typeof i1.TranslocoModule]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SpiderlyTranslocoModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { Namebook } from '../entities/namebook';
|
|
4
|
+
import { TableFilter } from '../entities/table-filter';
|
|
5
|
+
import { Login, Registration, RegistrationVerificationResult, RefreshTokenRequest, AuthResult, Role, User, ExternalProvider, VerificationTokenRequest, RoleSaveBody, RoleMainUIForm } from '../entities/security-entities';
|
|
6
|
+
import { ConfigBaseService } from './config-base.service';
|
|
7
|
+
import { TableResponse } from '../entities/table-response';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class ApiSecurityService {
|
|
10
|
+
protected http: HttpClient;
|
|
11
|
+
protected config: ConfigBaseService;
|
|
12
|
+
constructor(http: HttpClient, config: ConfigBaseService);
|
|
13
|
+
register: (request: VerificationTokenRequest) => Observable<AuthResult>;
|
|
14
|
+
sendRegistrationVerificationEmail: (registrationDTO: Registration) => Observable<RegistrationVerificationResult>;
|
|
15
|
+
login: (request: VerificationTokenRequest) => Observable<AuthResult>;
|
|
16
|
+
loginExternal: (externalProviderDTO: ExternalProvider) => Observable<AuthResult>;
|
|
17
|
+
sendLoginVerificationEmail: (loginDTO: Login) => Observable<any>;
|
|
18
|
+
logout: (browserId: string) => Observable<any>;
|
|
19
|
+
refreshToken: (request: RefreshTokenRequest) => Observable<AuthResult>;
|
|
20
|
+
getCurrentUser: () => Observable<User>;
|
|
21
|
+
getCurrentUserPermissionCodes: () => Observable<string[]>;
|
|
22
|
+
getRoleTableData: (dto: TableFilter) => Observable<TableResponse>;
|
|
23
|
+
exportRoleTableDataToExcel: (dto: TableFilter) => Observable<any>;
|
|
24
|
+
deleteRole: (id: number) => Observable<any>;
|
|
25
|
+
getRoleMainUIFormDTO: (id: number) => Observable<RoleMainUIForm>;
|
|
26
|
+
getRole: (id: number) => Observable<Role>;
|
|
27
|
+
saveRole: (dto: RoleSaveBody) => Observable<Role>;
|
|
28
|
+
getUsersNamebookListForRole: (roleId: number) => Observable<Namebook[]>;
|
|
29
|
+
getPermissionsDropdownListForRole: () => Observable<Namebook[]>;
|
|
30
|
+
getPermissionsNamebookListForRole: (roleId: number) => Observable<Namebook[]>;
|
|
31
|
+
getUsersAutocompleteListForRole: (limit: number, query: string) => Observable<Namebook[]>;
|
|
32
|
+
getUnreadNotificationsCountForCurrentUser: () => Observable<number>;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiSecurityService, never>;
|
|
34
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiSecurityService>;
|
|
35
|
+
}
|