@tsi-developpement/tsi-shared-ui 0.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/esm2022/lib/consts/app-providers.mjs +11 -0
- package/esm2022/lib/consts/html-template.const.mjs +40 -0
- package/esm2022/lib/consts/index.mjs +8 -0
- package/esm2022/lib/consts/localization-key.mjs +12 -0
- package/esm2022/lib/consts/locals.const.mjs +8 -0
- package/esm2022/lib/consts/queryParamNames.const.mjs +11 -0
- package/esm2022/lib/consts/themes.mjs +5 -0
- package/esm2022/lib/consts/tsi-consts.mjs +45 -0
- package/esm2022/lib/end-points/authorization-endpoints.mjs +35 -0
- package/esm2022/lib/end-points/baseuri.mjs +11 -0
- package/esm2022/lib/end-points/endpoints.mjs +208 -0
- package/esm2022/lib/end-points/import-export-endpoint.mjs +35 -0
- package/esm2022/lib/end-points/index.mjs +7 -0
- package/esm2022/lib/end-points/presentation-settings-endpoints.mjs +13 -0
- package/esm2022/lib/end-points/reporting-endpoints.mjs +55 -0
- package/esm2022/lib/end-points/shared-endpoint.mjs +12 -0
- package/esm2022/lib/end-points/user-identity-endpoints.mjs +61 -0
- package/esm2022/lib/enums/Language.mjs +9 -0
- package/esm2022/lib/enums/auto-complete.mjs +6 -0
- package/esm2022/lib/enums/button-type.enum.mjs +6 -0
- package/esm2022/lib/enums/claim-types.mjs +15 -0
- package/esm2022/lib/enums/code-format.mjs +6 -0
- package/esm2022/lib/enums/component-use-modes-enum.mjs +19 -0
- package/esm2022/lib/enums/css-units.mjs +10 -0
- package/esm2022/lib/enums/decimal-format.mjs +8 -0
- package/esm2022/lib/enums/display-types.mjs +35 -0
- package/esm2022/lib/enums/filter-operator-type.mjs +34 -0
- package/esm2022/lib/enums/form-validation-error.mjs +7 -0
- package/esm2022/lib/enums/grid-selection-mode.mjs +7 -0
- package/esm2022/lib/enums/grid-sort-mode.mjs +7 -0
- package/esm2022/lib/enums/http-method-types.mjs +6 -0
- package/esm2022/lib/enums/index.mjs +25 -0
- package/esm2022/lib/enums/input-types.mjs +20 -0
- package/esm2022/lib/enums/layout-orientation.mjs +6 -0
- package/esm2022/lib/enums/logout-reason-enum.mjs +8 -0
- package/esm2022/lib/enums/modal-size-enum.mjs +10 -0
- package/esm2022/lib/enums/report-type.mjs +9 -0
- package/esm2022/lib/enums/status.mjs +9 -0
- package/esm2022/lib/enums/text-box-type.mjs +7 -0
- package/esm2022/lib/enums/tooltipPosition.enum.mjs +8 -0
- package/esm2022/lib/enums/tsi-component-enum.mjs +40 -0
- package/esm2022/lib/enums/type-import.mjs +6 -0
- package/esm2022/lib/functions/array.functions.mjs +8 -0
- package/esm2022/lib/functions/index.mjs +3 -0
- package/esm2022/lib/functions/modal-open.function.mjs +69 -0
- package/esm2022/lib/guards/admin.guard.mjs +37 -0
- package/esm2022/lib/guards/auth.guard.mjs +30 -0
- package/esm2022/lib/guards/index.mjs +4 -0
- package/esm2022/lib/guards/permission.guard.mjs +32 -0
- package/esm2022/lib/interfaces/configuration/configuration.mjs +2 -0
- package/esm2022/lib/interfaces/generic-form/generic-form.mjs +118 -0
- package/esm2022/lib/interfaces/generic-types/dictionary.mjs +2 -0
- package/esm2022/lib/interfaces/grid/grid-configuration.mjs +2 -0
- package/esm2022/lib/interfaces/index.mjs +12 -0
- package/esm2022/lib/interfaces/modal/dynamic.component.mjs +7 -0
- package/esm2022/lib/interfaces/modal/modal-size.mjs +2 -0
- package/esm2022/lib/interfaces/pagination/pagination-base.mjs +2 -0
- package/esm2022/lib/interfaces/select-list/combo-status-model.mjs +10 -0
- package/esm2022/lib/interfaces/settings/app-settings.mjs +2 -0
- package/esm2022/lib/interfaces/styles/css-size-property.mjs +17 -0
- package/esm2022/lib/interfaces/translation/translation.mjs +2 -0
- package/esm2022/lib/models/Notes/Note.mjs +7 -0
- package/esm2022/lib/models/application/configuration/endpoint-infos.mjs +3 -0
- package/esm2022/lib/models/application/configuration/entity-delete-behavior.mjs +2 -0
- package/esm2022/lib/models/authorization/authorization-token-mapper.mjs +24 -0
- package/esm2022/lib/models/authorization/authorization-token.mjs +2 -0
- package/esm2022/lib/models/common/component-descriminator.mjs +2 -0
- package/esm2022/lib/models/common/entity-properties.mjs +2 -0
- package/esm2022/lib/models/common/entity-validations.mjs +2 -0
- package/esm2022/lib/models/common/event-schema.mjs +2 -0
- package/esm2022/lib/models/common/key-value-pair.mjs +2 -0
- package/esm2022/lib/models/entity-info/entity-info.mjs +29 -0
- package/esm2022/lib/models/filter/filter-by-existing-values.mjs +7 -0
- package/esm2022/lib/models/filter/paged-result-request-base.mjs +13 -0
- package/esm2022/lib/models/filter/search-field.mjs +2 -0
- package/esm2022/lib/models/import-export/import-export.mjs +15 -0
- package/esm2022/lib/models/index.mjs +38 -0
- package/esm2022/lib/models/journalisation-application/journalisation-application.mjs +10 -0
- package/esm2022/lib/models/journalisation-application/status-history.mjs +3 -0
- package/esm2022/lib/models/layout/layout-config.mjs +2 -0
- package/esm2022/lib/models/modal/bs-modal.mjs +6 -0
- package/esm2022/lib/models/presentation-settings/presentation-settings.mjs +8 -0
- package/esm2022/lib/models/progress-bar/progress-bar-create-request.mjs +2 -0
- package/esm2022/lib/models/progress-bar/progress-bar-response.mjs +8 -0
- package/esm2022/lib/models/progress-bar/progress-bar-update-request.mjs +3 -0
- package/esm2022/lib/models/remote-services-utility/subscription-result.mjs +17 -0
- package/esm2022/lib/models/reporting/json-data-connection.mjs +2 -0
- package/esm2022/lib/models/reporting/optional-endpoints.mjs +2 -0
- package/esm2022/lib/models/reporting/report-template-response.mjs +2 -0
- package/esm2022/lib/models/reporting/report-to-edit-template.mjs +2 -0
- package/esm2022/lib/models/reporting/report-to-print.mjs +2 -0
- package/esm2022/lib/models/reporting/report-to-template.mjs +2 -0
- package/esm2022/lib/models/settings/devise.mjs +3 -0
- package/esm2022/lib/models/settings/fichier.mjs +6 -0
- package/esm2022/lib/models/settings/type-fichier.mjs +3 -0
- package/esm2022/lib/models/tsi-card/tsi-card.mjs +3 -0
- package/esm2022/lib/models/user-identity/login-response.mjs +7 -0
- package/esm2022/lib/models/user-identity/tenant.mjs +3 -0
- package/esm2022/lib/models/user-identity/user-identity.mjs +3 -0
- package/esm2022/lib/models/workflow/workflow.mjs +14 -0
- package/esm2022/lib/package-initializer.mjs +7 -0
- package/esm2022/lib/pipes/cut-label.pipe.mjs +23 -0
- package/esm2022/lib/pipes/index.mjs +8 -0
- package/esm2022/lib/pipes/localize.pipe.mjs +51 -0
- package/esm2022/lib/pipes/modal-label.pipe.mjs +37 -0
- package/esm2022/lib/pipes/shorten.pipe.mjs +20 -0
- package/esm2022/lib/pipes/to-number.pipe.mjs +20 -0
- package/esm2022/lib/pipes/tsi-currency.pipe.mjs +29 -0
- package/esm2022/lib/pipes/tsi-decimal.pipe.mjs +21 -0
- package/esm2022/lib/providers/index.mjs +2 -0
- package/esm2022/lib/providers/shared-ui-tsi.provider.mjs +15 -0
- package/esm2022/lib/routes/admin.routes.mjs +5 -0
- package/esm2022/lib/routes/app.routes.mjs +7 -0
- package/esm2022/lib/routes/identity.routes.mjs +4 -0
- package/esm2022/lib/routes/index.mjs +5 -0
- package/esm2022/lib/routes/manage-reporting.routes.mjs +5 -0
- package/esm2022/lib/services/Component-Finder/tsi-component-finder.service.mjs +22 -0
- package/esm2022/lib/services/Import-Export/modele-import.service.mjs +59 -0
- package/esm2022/lib/services/Note/Note.service.mjs +35 -0
- package/esm2022/lib/services/UserIdentity/identity-platform-authentication.service.mjs +29 -0
- package/esm2022/lib/services/UserIdentity/user-identity.service.mjs +40 -0
- package/esm2022/lib/services/application/api-explorer.service.mjs +24 -0
- package/esm2022/lib/services/application/app.layout.service.mjs +97 -0
- package/esm2022/lib/services/application/parametres-application-parambase.service.mjs +20 -0
- package/esm2022/lib/services/authorization/authorization.service.mjs +124 -0
- package/esm2022/lib/services/authorization/identity-manager.service.mjs +97 -0
- package/esm2022/lib/services/base/crud-base.service.mjs +38 -0
- package/esm2022/lib/services/configuration/entity-configuration.service.mjs +49 -0
- package/esm2022/lib/services/currentUser/currentUser.service.mjs +49 -0
- package/esm2022/lib/services/date-helper.service.mjs +133 -0
- package/esm2022/lib/services/dialog-data.service.mjs +32 -0
- package/esm2022/lib/services/fichier/fichier-upload.service.mjs +44 -0
- package/esm2022/lib/services/fichier/fichier.service.mjs +20 -0
- package/esm2022/lib/services/formula.service.mjs +20 -0
- package/esm2022/lib/services/generator/html-template-generator.service.mjs +196 -0
- package/esm2022/lib/services/index.mjs +41 -0
- package/esm2022/lib/services/journalisation/journalisation-application.service.mjs +23 -0
- package/esm2022/lib/services/journalisation/status-history.service.mjs +23 -0
- package/esm2022/lib/services/layout/layout-helper.service.mjs +72 -0
- package/esm2022/lib/services/modal/tsi-bs-modal.service.mjs +37 -0
- package/esm2022/lib/services/modal/tsi-modal.service.mjs +21 -0
- package/esm2022/lib/services/module-code/module-code.service.mjs +31 -0
- package/esm2022/lib/services/module-main-parameter.service.mjs +31 -0
- package/esm2022/lib/services/notification/error-response-manager.service.mjs +57 -0
- package/esm2022/lib/services/notification/tsi-confirmation.service.mjs +37 -0
- package/esm2022/lib/services/notification/tsi-message.service.mjs +54 -0
- package/esm2022/lib/services/notification/tsi-notification.service.mjs +47 -0
- package/esm2022/lib/services/presentation-setting/presentation-designer-base.service.mjs +26 -0
- package/esm2022/lib/services/presentation-setting/presentation-designer.service.mjs +58 -0
- package/esm2022/lib/services/presentation-setting/presentation-setting.service.mjs +39 -0
- package/esm2022/lib/services/progress-bar/progress-bar-helper.service.mjs +39 -0
- package/esm2022/lib/services/progress-bar/progress-bar.service.mjs +30 -0
- package/esm2022/lib/services/record-info-popup.service.mjs +21 -0
- package/esm2022/lib/services/reporting/dashboard-module.service.mjs +24 -0
- package/esm2022/lib/services/reporting/reporting.service.mjs +111 -0
- package/esm2022/lib/services/settings/app-settings.service.mjs +47 -0
- package/esm2022/lib/services/settings/keyboard-shortcut.service.mjs +30 -0
- package/esm2022/lib/services/status/entityStatus.service.mjs +21 -0
- package/esm2022/lib/services/translation/translation.service.mjs +71 -0
- package/esm2022/lib/services/validation/entity-validations.service.mjs +21 -0
- package/esm2022/lib/services/validation/generic-validation-state.service.mjs +30 -0
- package/esm2022/lib/services/validation/input-registry.service.mjs +25 -0
- package/esm2022/lib/services/workflow/workflow-configuration.service.mjs +80 -0
- package/esm2022/lib/shared.module.mjs +643 -0
- package/esm2022/lib/tsi-base/components/app-base/app-base.component.mjs +101 -0
- package/esm2022/lib/tsi-base/components/tsi-base/tsi-base.component.mjs +25 -0
- package/esm2022/lib/tsi-base/components/tsi-form-base/tsi-form-base.component.mjs +645 -0
- package/esm2022/lib/tsi-base/components/tsi-list-base/tsi-list-base.component.mjs +514 -0
- package/esm2022/lib/tsi-base/index.mjs +6 -0
- package/esm2022/lib/tsi-base/tsi-input-base/tsi-input-base.component.mjs +141 -0
- package/esm2022/lib/tsi-components/alert-import-message/alert-import-message.component.mjs +19 -0
- package/esm2022/lib/tsi-components/button-components/Tsi-Submit-Button/tsi-submit-button.component.mjs +40 -0
- package/esm2022/lib/tsi-components/button-components/tsi-button/tsi-button.component.mjs +75 -0
- package/esm2022/lib/tsi-components/create-or-edit-entity-informations/create-or-edit-entity-informations.component.mjs +173 -0
- package/esm2022/lib/tsi-components/create-or-edit-modele-import/create-or-edit-modele-import.component.mjs +201 -0
- package/esm2022/lib/tsi-components/index.mjs +80 -0
- package/esm2022/lib/tsi-components/input-components/editable-grid/editable-grid.component.mjs +643 -0
- package/esm2022/lib/tsi-components/input-components/tsi-checkbox/tsi-checkbox.component.mjs +120 -0
- package/esm2022/lib/tsi-components/input-components/tsi-currency-other-input/tsi-currency-other-input.component.mjs +53 -0
- package/esm2022/lib/tsi-components/input-components/tsi-currency-societe-input/tsi-currency-societe-input.component.mjs +62 -0
- package/esm2022/lib/tsi-components/input-components/tsi-date-picker/tsi-date-picker.component.mjs +116 -0
- package/esm2022/lib/tsi-components/input-components/tsi-decimal-input/tsi-decimal-input.component.mjs +51 -0
- package/esm2022/lib/tsi-components/input-components/tsi-file-manager/tsi-file-manager.component.mjs +195 -0
- package/esm2022/lib/tsi-components/input-components/tsi-formula-box/tsi-formula-box.component.mjs +54 -0
- package/esm2022/lib/tsi-components/input-components/tsi-integer/tsi-integer.component.mjs +55 -0
- package/esm2022/lib/tsi-components/input-components/tsi-radio-button/tsi-radio-button.component.mjs +43 -0
- package/esm2022/lib/tsi-components/input-components/tsi-rate-input/tsi-rate-input.component.mjs +56 -0
- package/esm2022/lib/tsi-components/input-components/tsi-search-combo/tsi-search-combo.component.mjs +649 -0
- package/esm2022/lib/tsi-components/input-components/tsi-text-area/tsi-text-area.component.mjs +44 -0
- package/esm2022/lib/tsi-components/input-components/tsi-text-box/tsi-text-box.component.mjs +50 -0
- package/esm2022/lib/tsi-components/input-components/tsi-time-picker/tsi-time-picker.component.mjs +65 -0
- package/esm2022/lib/tsi-components/logout-popup/logout-popup.component.mjs +12 -0
- package/esm2022/lib/tsi-components/manage-import-export/manage-import-export.component.mjs +435 -0
- package/esm2022/lib/tsi-components/manage-reporting/add-report-popup/add-report-popup.component.mjs +148 -0
- package/esm2022/lib/tsi-components/manage-reporting/manage-reporting.component.mjs +1075 -0
- package/esm2022/lib/tsi-components/message-components/tsi-error-message/tsi-error-message.component.mjs +31 -0
- package/esm2022/lib/tsi-components/message-components/tsi-info-message/tsi-info-message.component.mjs +24 -0
- package/esm2022/lib/tsi-components/message-components/tsi-redirection-message/tsi-redirection-message.component.mjs +19 -0
- package/esm2022/lib/tsi-components/message-components/tsi-success-message/tsi-success-message.component.mjs +22 -0
- package/esm2022/lib/tsi-components/modal-component/modal.component.mjs +138 -0
- package/esm2022/lib/tsi-components/modal-loader/modal-loader.component.mjs +58 -0
- package/esm2022/lib/tsi-components/output-components/display-nested-prop/display-nested-prop.component.mjs +32 -0
- package/esm2022/lib/tsi-components/output-components/tsi-checkbox-display/tsi-checkbox-display.component.mjs +18 -0
- package/esm2022/lib/tsi-components/output-components/tsi-currency-other-display/tsi-currency-other-display.component.mjs +17 -0
- package/esm2022/lib/tsi-components/output-components/tsi-currency-societe-display/tsi-currency-societe-display.component.mjs +57 -0
- package/esm2022/lib/tsi-components/output-components/tsi-date-display/tsi-date-display.component.mjs +27 -0
- package/esm2022/lib/tsi-components/output-components/tsi-decimal-display/tsi-decimal-display.component.mjs +25 -0
- package/esm2022/lib/tsi-components/output-components/tsi-display-grid/tsi-display-grid.component.mjs +139 -0
- package/esm2022/lib/tsi-components/output-components/tsi-generic-grid/tsi-generic-grid.component.mjs +1509 -0
- package/esm2022/lib/tsi-components/output-components/tsi-image-display/tsi-image-display.component.mjs +144 -0
- package/esm2022/lib/tsi-components/output-components/tsi-integer-display/tsi-integer-display.component.mjs +13 -0
- package/esm2022/lib/tsi-components/output-components/tsi-label/tsi-label.component.mjs +24 -0
- package/esm2022/lib/tsi-components/output-components/tsi-label-legend/tsi-label-legend.component.mjs +18 -0
- package/esm2022/lib/tsi-components/output-components/tsi-legend/tsi-legend.component.mjs +20 -0
- package/esm2022/lib/tsi-components/output-components/tsi-paragraph/tsi-paragraph.component.mjs +17 -0
- package/esm2022/lib/tsi-components/output-components/tsi-rate-display/tsi-rate-display.component.mjs +30 -0
- package/esm2022/lib/tsi-components/output-components/tsi-time-display/tsi-time-display.component.mjs +17 -0
- package/esm2022/lib/tsi-components/output-components/tsi-view-grid/tsi-view-grid.component.mjs +427 -0
- package/esm2022/lib/tsi-components/reporting/reporting.component.mjs +667 -0
- package/esm2022/lib/tsi-components/spinner/spinner.component.mjs +15 -0
- package/esm2022/lib/tsi-components/tsi-bubble-info/tsi-bubble-info.component.mjs +21 -0
- package/esm2022/lib/tsi-components/tsi-calender/context-menu/context-menu.component.mjs +46 -0
- package/esm2022/lib/tsi-components/tsi-calender/tsi-calender.component.mjs +297 -0
- package/esm2022/lib/tsi-components/tsi-card/tsi-card.component.mjs +64 -0
- package/esm2022/lib/tsi-components/tsi-card-list/tsi-card-list.component.mjs +112 -0
- package/esm2022/lib/tsi-components/tsi-change-password/tsi-change-password.component.mjs +39 -0
- package/esm2022/lib/tsi-components/tsi-code-generator/tsi-code-generator.component.mjs +83 -0
- package/esm2022/lib/tsi-components/tsi-divider/tsi-divider.component.mjs +18 -0
- package/esm2022/lib/tsi-components/tsi-form/tsi-form.component.mjs +305 -0
- package/esm2022/lib/tsi-components/tsi-form-modal-footer/tsi-form-modal-footer.component.mjs +15 -0
- package/esm2022/lib/tsi-components/tsi-generic-crud/tsi-generic-crud.component.mjs +883 -0
- package/esm2022/lib/tsi-components/tsi-generic-form/tsi-generic-form.component.mjs +149 -0
- package/esm2022/lib/tsi-components/tsi-kanban/tsi-kanban.component.mjs +231 -0
- package/esm2022/lib/tsi-components/tsi-log-event-history/tsi-log-event-history.component.mjs +119 -0
- package/esm2022/lib/tsi-components/tsi-modal/tsi-modal.component.mjs +25 -0
- package/esm2022/lib/tsi-components/tsi-modal-footer/tsi-modal-footer.component.mjs +119 -0
- package/esm2022/lib/tsi-components/tsi-modal-header/tsi-modal-header.component.mjs +54 -0
- package/esm2022/lib/tsi-components/tsi-notes-avertir/tsi-notes-avertir.component.mjs +27 -0
- package/esm2022/lib/tsi-components/tsi-notes-createoredit/tsi-notes.component.mjs +123 -0
- package/esm2022/lib/tsi-components/tsi-notes-grid/tsi-notes-grid.component.mjs +41 -0
- package/esm2022/lib/tsi-components/tsi-popup-text-viewer/tsi-popup-text-viewer.component.mjs +187 -0
- package/esm2022/lib/tsi-components/tsi-progress-bar/tsi-progress-bar.component.mjs +170 -0
- package/esm2022/lib/tsi-components/tsi-search-box/tsi-search-box.component.mjs +142 -0
- package/esm2022/lib/tsi-components/tsi-send-mail/tsi-send-mail.component.mjs +37 -0
- package/esm2022/lib/tsi-components/tsi-tab-panel/tsi-tab-panel.component.mjs +52 -0
- package/esm2022/lib/tsi-components/tsi-tab-view/tsi-tab-view.component.mjs +46 -0
- package/esm2022/lib/tsi-components/tsi-tenants/tsi-tenants.component.mjs +122 -0
- package/esm2022/lib/tsi-components/tsi-tooltip/tsi-tooltip.component.mjs +21 -0
- package/esm2022/lib/tsi-components/tsi-upload-fiche/tsi-upload-fiche.component.mjs +186 -0
- package/esm2022/lib/tsi-components/tsi-upload-grid/tsi-upload-grid.component.mjs +54 -0
- package/esm2022/lib/tsi-directives/auto-select.directive.mjs +33 -0
- package/esm2022/lib/tsi-directives/busy.directive.mjs +32 -0
- package/esm2022/lib/tsi-directives/dynamic-component-loader/ad.directive.mjs +16 -0
- package/esm2022/lib/tsi-directives/index.mjs +8 -0
- package/esm2022/lib/tsi-directives/module-main-parameter.directive.mjs +16 -0
- package/esm2022/lib/tsi-directives/presentation-designer-base.directive.mjs +238 -0
- package/esm2022/lib/tsi-directives/presentation-designer.directive.mjs +205 -0
- package/esm2022/lib/tsi-directives/validation.directive.mjs +85 -0
- package/esm2022/lib/tsi-helpers/compoent-reference.helper.mjs +7 -0
- package/esm2022/lib/tsi-helpers/date-helper.mjs +21 -0
- package/esm2022/lib/tsi-helpers/export-excel.helper.mjs +40 -0
- package/esm2022/lib/tsi-helpers/filter-helper.mjs +126 -0
- package/esm2022/lib/tsi-helpers/grid-col-style.helper.mjs +7 -0
- package/esm2022/lib/tsi-helpers/guid.helper.mjs +19 -0
- package/esm2022/lib/tsi-helpers/helpers.mjs +9 -0
- package/esm2022/lib/tsi-helpers/index.mjs +13 -0
- package/esm2022/lib/tsi-helpers/mapping-helper.mjs +10 -0
- package/esm2022/lib/tsi-helpers/object.helper.mjs +6 -0
- package/esm2022/lib/tsi-helpers/primeng-translate-config.mjs +55 -0
- package/esm2022/lib/tsi-helpers/storage-manager.mjs +33 -0
- package/esm2022/lib/tsi-helpers/type-registry.helper.mjs +49 -0
- package/esm2022/lib/types/enum-description.type.mjs +2 -0
- package/esm2022/lib/types/index.mjs +3 -0
- package/esm2022/lib/types/time-only.mjs +42 -0
- package/esm2022/public-api.mjs +21 -0
- package/esm2022/tsi-developpement-tsi-shared-ui.mjs +5 -0
- package/esm2022/tsi-tsi-shared-ui.mjs +5 -0
- package/fesm2022/tsi-developpement-tsi-shared-ui.mjs +17486 -0
- package/fesm2022/tsi-developpement-tsi-shared-ui.mjs.map +1 -0
- package/fesm2022/tsi-tsi-shared-ui.mjs +17486 -0
- package/fesm2022/tsi-tsi-shared-ui.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/consts/app-providers.d.ts +4 -0
- package/lib/consts/html-template.const.d.ts +12 -0
- package/lib/consts/index.d.ts +7 -0
- package/lib/consts/localization-key.d.ts +11 -0
- package/lib/consts/locals.const.d.ts +7 -0
- package/lib/consts/queryParamNames.const.d.ts +10 -0
- package/lib/consts/themes.d.ts +4 -0
- package/lib/consts/tsi-consts.d.ts +40 -0
- package/lib/end-points/authorization-endpoints.d.ts +31 -0
- package/lib/end-points/baseuri.d.ts +10 -0
- package/lib/end-points/endpoints.d.ts +205 -0
- package/lib/end-points/import-export-endpoint.d.ts +33 -0
- package/lib/end-points/index.d.ts +6 -0
- package/lib/end-points/presentation-settings-endpoints.d.ts +11 -0
- package/lib/end-points/reporting-endpoints.d.ts +53 -0
- package/lib/end-points/shared-endpoint.d.ts +9 -0
- package/lib/end-points/user-identity-endpoints.d.ts +59 -0
- package/lib/enums/Language.d.ts +9 -0
- package/lib/enums/auto-complete.d.ts +4 -0
- package/lib/enums/button-type.enum.d.ts +4 -0
- package/lib/enums/claim-types.d.ts +13 -0
- package/lib/enums/code-format.d.ts +4 -0
- package/lib/enums/component-use-modes-enum.d.ts +17 -0
- package/lib/enums/css-units.d.ts +8 -0
- package/lib/enums/decimal-format.d.ts +6 -0
- package/lib/enums/display-types.d.ts +17 -0
- package/lib/enums/filter-operator-type.d.ts +18 -0
- package/lib/enums/form-validation-error.d.ts +11 -0
- package/lib/enums/grid-selection-mode.d.ts +5 -0
- package/lib/enums/grid-sort-mode.d.ts +5 -0
- package/lib/enums/http-method-types.d.ts +4 -0
- package/lib/enums/index.d.ts +24 -0
- package/lib/enums/input-types.d.ts +18 -0
- package/lib/enums/layout-orientation.d.ts +4 -0
- package/lib/enums/logout-reason-enum.d.ts +6 -0
- package/lib/enums/modal-size-enum.d.ts +10 -0
- package/lib/enums/report-type.d.ts +7 -0
- package/lib/enums/status.d.ts +7 -0
- package/lib/enums/text-box-type.d.ts +5 -0
- package/lib/enums/tooltipPosition.enum.d.ts +6 -0
- package/lib/enums/tsi-component-enum.d.ts +37 -0
- package/lib/enums/type-import.d.ts +4 -0
- package/lib/functions/array.functions.d.ts +1 -0
- package/lib/functions/index.d.ts +1 -0
- package/lib/functions/modal-open.function.d.ts +9 -0
- package/lib/guards/admin.guard.d.ts +14 -0
- package/lib/guards/auth.guard.d.ts +12 -0
- package/lib/guards/index.d.ts +3 -0
- package/lib/guards/permission.guard.d.ts +2 -0
- package/lib/interfaces/configuration/configuration.d.ts +10 -0
- package/lib/interfaces/generic-form/generic-form.d.ts +45 -0
- package/lib/interfaces/generic-types/dictionary.d.ts +3 -0
- package/lib/interfaces/grid/grid-configuration.d.ts +116 -0
- package/lib/interfaces/index.d.ts +11 -0
- package/lib/interfaces/modal/dynamic.component.d.ts +18 -0
- package/lib/interfaces/modal/modal-size.d.ts +4 -0
- package/lib/interfaces/pagination/pagination-base.d.ts +46 -0
- package/lib/interfaces/select-list/combo-status-model.d.ts +8 -0
- package/lib/interfaces/settings/app-settings.d.ts +4 -0
- package/lib/interfaces/styles/css-size-property.d.ts +10 -0
- package/lib/interfaces/translation/translation.d.ts +10 -0
- package/lib/models/Notes/Note.d.ts +25 -0
- package/lib/models/application/configuration/endpoint-infos.d.ts +6 -0
- package/lib/models/application/configuration/entity-delete-behavior.d.ts +6 -0
- package/lib/models/authorization/authorization-token-mapper.d.ts +4 -0
- package/lib/models/authorization/authorization-token.d.ts +16 -0
- package/lib/models/common/component-descriminator.d.ts +4 -0
- package/lib/models/common/entity-properties.d.ts +5 -0
- package/lib/models/common/entity-validations.d.ts +7 -0
- package/lib/models/common/event-schema.d.ts +6 -0
- package/lib/models/common/key-value-pair.d.ts +4 -0
- package/lib/models/entity-info/entity-info.d.ts +37 -0
- package/lib/models/filter/filter-by-existing-values.d.ts +6 -0
- package/lib/models/filter/paged-result-request-base.d.ts +16 -0
- package/lib/models/filter/search-field.d.ts +35 -0
- package/lib/models/import-export/import-export.d.ts +28 -0
- package/lib/models/index.d.ts +37 -0
- package/lib/models/journalisation-application/journalisation-application.d.ts +39 -0
- package/lib/models/journalisation-application/status-history.d.ts +12 -0
- package/lib/models/layout/layout-config.d.ts +3 -0
- package/lib/models/modal/bs-modal.d.ts +5 -0
- package/lib/models/presentation-settings/presentation-settings.d.ts +14 -0
- package/lib/models/progress-bar/progress-bar-create-request.d.ts +8 -0
- package/lib/models/progress-bar/progress-bar-response.d.ts +10 -0
- package/lib/models/progress-bar/progress-bar-update-request.d.ts +9 -0
- package/lib/models/remote-services-utility/subscription-result.d.ts +15 -0
- package/lib/models/reporting/json-data-connection.d.ts +6 -0
- package/lib/models/reporting/optional-endpoints.d.ts +8 -0
- package/lib/models/reporting/report-template-response.d.ts +13 -0
- package/lib/models/reporting/report-to-edit-template.d.ts +29 -0
- package/lib/models/reporting/report-to-print.d.ts +18 -0
- package/lib/models/reporting/report-to-template.d.ts +19 -0
- package/lib/models/settings/devise.d.ts +9 -0
- package/lib/models/settings/fichier.d.ts +14 -0
- package/lib/models/settings/type-fichier.d.ts +4 -0
- package/lib/models/tsi-card/tsi-card.d.ts +9 -0
- package/lib/models/user-identity/login-response.d.ts +8 -0
- package/lib/models/user-identity/tenant.d.ts +5 -0
- package/lib/models/user-identity/user-identity.d.ts +5 -0
- package/lib/models/workflow/workflow.d.ts +36 -0
- package/lib/package-initializer.d.ts +1 -0
- package/lib/pipes/cut-label.pipe.d.ts +7 -0
- package/lib/pipes/index.d.ts +7 -0
- package/lib/pipes/localize.pipe.d.ts +11 -0
- package/lib/pipes/modal-label.pipe.d.ts +10 -0
- package/lib/pipes/shorten.pipe.d.ts +7 -0
- package/lib/pipes/to-number.pipe.d.ts +7 -0
- package/lib/pipes/tsi-currency.pipe.d.ts +10 -0
- package/lib/pipes/tsi-decimal.pipe.d.ts +7 -0
- package/lib/providers/index.d.ts +1 -0
- package/lib/providers/shared-ui-tsi.provider.d.ts +8 -0
- package/lib/routes/admin.routes.d.ts +4 -0
- package/lib/routes/app.routes.d.ts +6 -0
- package/lib/routes/identity.routes.d.ts +3 -0
- package/lib/routes/index.d.ts +4 -0
- package/lib/routes/manage-reporting.routes.d.ts +4 -0
- package/lib/services/Component-Finder/tsi-component-finder.service.d.ts +10 -0
- package/lib/services/Import-Export/modele-import.service.d.ts +21 -0
- package/lib/services/Note/Note.service.d.ts +15 -0
- package/lib/services/UserIdentity/identity-platform-authentication.service.d.ts +13 -0
- package/lib/services/UserIdentity/user-identity.service.d.ts +15 -0
- package/lib/services/application/api-explorer.service.d.ts +13 -0
- package/lib/services/application/app.layout.service.d.ts +47 -0
- package/lib/services/application/parametres-application-parambase.service.d.ts +10 -0
- package/lib/services/authorization/authorization.service.d.ts +46 -0
- package/lib/services/authorization/identity-manager.service.d.ts +23 -0
- package/lib/services/base/crud-base.service.d.ts +20 -0
- package/lib/services/configuration/entity-configuration.service.d.ts +22 -0
- package/lib/services/currentUser/currentUser.service.d.ts +26 -0
- package/lib/services/date-helper.service.d.ts +32 -0
- package/lib/services/dialog-data.service.d.ts +12 -0
- package/lib/services/fichier/fichier-upload.service.d.ts +15 -0
- package/lib/services/fichier/fichier.service.d.ts +10 -0
- package/lib/services/formula.service.d.ts +10 -0
- package/lib/services/generator/html-template-generator.service.d.ts +28 -0
- package/lib/services/index.d.ts +40 -0
- package/lib/services/journalisation/journalisation-application.service.d.ts +12 -0
- package/lib/services/journalisation/status-history.service.d.ts +12 -0
- package/lib/services/layout/layout-helper.service.d.ts +25 -0
- package/lib/services/modal/tsi-bs-modal.service.d.ts +16 -0
- package/lib/services/modal/tsi-modal.service.d.ts +9 -0
- package/lib/services/module-code/module-code.service.d.ts +18 -0
- package/lib/services/module-main-parameter.service.d.ts +12 -0
- package/lib/services/notification/error-response-manager.service.d.ts +13 -0
- package/lib/services/notification/tsi-confirmation.service.d.ts +11 -0
- package/lib/services/notification/tsi-message.service.d.ts +13 -0
- package/lib/services/notification/tsi-notification.service.d.ts +18 -0
- package/lib/services/presentation-setting/presentation-designer-base.service.d.ts +14 -0
- package/lib/services/presentation-setting/presentation-designer.service.d.ts +19 -0
- package/lib/services/presentation-setting/presentation-setting.service.d.ts +16 -0
- package/lib/services/progress-bar/progress-bar-helper.service.d.ts +19 -0
- package/lib/services/progress-bar/progress-bar.service.d.ts +16 -0
- package/lib/services/record-info-popup.service.d.ts +10 -0
- package/lib/services/reporting/dashboard-module.service.d.ts +11 -0
- package/lib/services/reporting/reporting.service.d.ts +32 -0
- package/lib/services/settings/app-settings.service.d.ts +13 -0
- package/lib/services/settings/keyboard-shortcut.service.d.ts +9 -0
- package/lib/services/status/entityStatus.service.d.ts +11 -0
- package/lib/services/translation/translation.service.d.ts +20 -0
- package/lib/services/validation/entity-validations.service.d.ts +10 -0
- package/lib/services/validation/generic-validation-state.service.d.ts +15 -0
- package/lib/services/validation/input-registry.service.d.ts +11 -0
- package/lib/services/workflow/workflow-configuration.service.d.ts +28 -0
- package/lib/shared.module.d.ts +141 -0
- package/lib/tsi-base/components/app-base/app-base.component.d.ts +28 -0
- package/lib/tsi-base/components/tsi-base/tsi-base.component.d.ts +11 -0
- package/lib/tsi-base/components/tsi-form-base/tsi-form-base.component.d.ts +118 -0
- package/lib/tsi-base/components/tsi-list-base/tsi-list-base.component.d.ts +85 -0
- package/lib/tsi-base/index.d.ts +5 -0
- package/lib/tsi-base/tsi-input-base/tsi-input-base.component.d.ts +34 -0
- package/lib/tsi-components/alert-import-message/alert-import-message.component.d.ts +10 -0
- package/lib/tsi-components/button-components/Tsi-Submit-Button/tsi-submit-button.component.d.ts +16 -0
- package/lib/tsi-components/button-components/tsi-button/tsi-button.component.d.ts +26 -0
- package/lib/tsi-components/create-or-edit-entity-informations/create-or-edit-entity-informations.component.d.ts +31 -0
- package/lib/tsi-components/create-or-edit-modele-import/create-or-edit-modele-import.component.d.ts +52 -0
- package/lib/tsi-components/index.d.ts +79 -0
- package/lib/tsi-components/input-components/editable-grid/editable-grid.component.d.ts +127 -0
- package/lib/tsi-components/input-components/tsi-checkbox/tsi-checkbox.component.d.ts +30 -0
- package/lib/tsi-components/input-components/tsi-currency-other-input/tsi-currency-other-input.component.d.ts +18 -0
- package/lib/tsi-components/input-components/tsi-currency-societe-input/tsi-currency-societe-input.component.d.ts +21 -0
- package/lib/tsi-components/input-components/tsi-date-picker/tsi-date-picker.component.d.ts +38 -0
- package/lib/tsi-components/input-components/tsi-decimal-input/tsi-decimal-input.component.d.ts +14 -0
- package/lib/tsi-components/input-components/tsi-file-manager/tsi-file-manager.component.d.ts +45 -0
- package/lib/tsi-components/input-components/tsi-formula-box/tsi-formula-box.component.d.ts +17 -0
- package/lib/tsi-components/input-components/tsi-integer/tsi-integer.component.d.ts +19 -0
- package/lib/tsi-components/input-components/tsi-radio-button/tsi-radio-button.component.d.ts +16 -0
- package/lib/tsi-components/input-components/tsi-rate-input/tsi-rate-input.component.d.ts +16 -0
- package/lib/tsi-components/input-components/tsi-search-combo/tsi-search-combo.component.d.ts +92 -0
- package/lib/tsi-components/input-components/tsi-text-area/tsi-text-area.component.d.ts +17 -0
- package/lib/tsi-components/input-components/tsi-text-box/tsi-text-box.component.d.ts +21 -0
- package/lib/tsi-components/input-components/tsi-time-picker/tsi-time-picker.component.d.ts +23 -0
- package/lib/tsi-components/logout-popup/logout-popup.component.d.ts +5 -0
- package/lib/tsi-components/manage-import-export/manage-import-export.component.d.ts +64 -0
- package/lib/tsi-components/manage-reporting/add-report-popup/add-report-popup.component.d.ts +151 -0
- package/lib/tsi-components/manage-reporting/manage-reporting.component.d.ts +109 -0
- package/lib/tsi-components/message-components/tsi-error-message/tsi-error-message.component.d.ts +15 -0
- package/lib/tsi-components/message-components/tsi-info-message/tsi-info-message.component.d.ts +13 -0
- package/lib/tsi-components/message-components/tsi-redirection-message/tsi-redirection-message.component.d.ts +9 -0
- package/lib/tsi-components/message-components/tsi-success-message/tsi-success-message.component.d.ts +13 -0
- package/lib/tsi-components/modal-component/modal.component.d.ts +25 -0
- package/lib/tsi-components/modal-loader/modal-loader.component.d.ts +27 -0
- package/lib/tsi-components/output-components/display-nested-prop/display-nested-prop.component.d.ts +14 -0
- package/lib/tsi-components/output-components/tsi-checkbox-display/tsi-checkbox-display.component.d.ts +6 -0
- package/lib/tsi-components/output-components/tsi-currency-other-display/tsi-currency-other-display.component.d.ts +7 -0
- package/lib/tsi-components/output-components/tsi-currency-societe-display/tsi-currency-societe-display.component.d.ts +19 -0
- package/lib/tsi-components/output-components/tsi-date-display/tsi-date-display.component.d.ts +10 -0
- package/lib/tsi-components/output-components/tsi-decimal-display/tsi-decimal-display.component.d.ts +9 -0
- package/lib/tsi-components/output-components/tsi-display-grid/tsi-display-grid.component.d.ts +41 -0
- package/lib/tsi-components/output-components/tsi-generic-grid/tsi-generic-grid.component.d.ts +231 -0
- package/lib/tsi-components/output-components/tsi-image-display/tsi-image-display.component.d.ts +46 -0
- package/lib/tsi-components/output-components/tsi-integer-display/tsi-integer-display.component.d.ts +6 -0
- package/lib/tsi-components/output-components/tsi-label/tsi-label.component.d.ts +8 -0
- package/lib/tsi-components/output-components/tsi-label-legend/tsi-label-legend.component.d.ts +6 -0
- package/lib/tsi-components/output-components/tsi-legend/tsi-legend.component.d.ts +9 -0
- package/lib/tsi-components/output-components/tsi-paragraph/tsi-paragraph.component.d.ts +6 -0
- package/lib/tsi-components/output-components/tsi-rate-display/tsi-rate-display.component.d.ts +10 -0
- package/lib/tsi-components/output-components/tsi-time-display/tsi-time-display.component.d.ts +7 -0
- package/lib/tsi-components/output-components/tsi-view-grid/tsi-view-grid.component.d.ts +97 -0
- package/lib/tsi-components/reporting/reporting.component.d.ts +103 -0
- package/lib/tsi-components/spinner/spinner.component.d.ts +8 -0
- package/lib/tsi-components/tsi-bubble-info/tsi-bubble-info.component.d.ts +9 -0
- package/lib/tsi-components/tsi-calender/context-menu/context-menu.component.d.ts +25 -0
- package/lib/tsi-components/tsi-calender/tsi-calender.component.d.ts +50 -0
- package/lib/tsi-components/tsi-card/tsi-card.component.d.ts +25 -0
- package/lib/tsi-components/tsi-card-list/tsi-card-list.component.d.ts +35 -0
- package/lib/tsi-components/tsi-change-password/tsi-change-password.component.d.ts +21 -0
- package/lib/tsi-components/tsi-code-generator/tsi-code-generator.component.d.ts +23 -0
- package/lib/tsi-components/tsi-divider/tsi-divider.component.d.ts +6 -0
- package/lib/tsi-components/tsi-form/tsi-form.component.d.ts +91 -0
- package/lib/tsi-components/tsi-form-modal-footer/tsi-form-modal-footer.component.d.ts +8 -0
- package/lib/tsi-components/tsi-generic-crud/tsi-generic-crud.component.d.ts +156 -0
- package/lib/tsi-components/tsi-generic-form/tsi-generic-form.component.d.ts +28 -0
- package/lib/tsi-components/tsi-kanban/tsi-kanban.component.d.ts +68 -0
- package/lib/tsi-components/tsi-log-event-history/tsi-log-event-history.component.d.ts +35 -0
- package/lib/tsi-components/tsi-modal/tsi-modal.component.d.ts +10 -0
- package/lib/tsi-components/tsi-modal-footer/tsi-modal-footer.component.d.ts +38 -0
- package/lib/tsi-components/tsi-modal-header/tsi-modal-header.component.d.ts +19 -0
- package/lib/tsi-components/tsi-notes-avertir/tsi-notes-avertir.component.d.ts +13 -0
- package/lib/tsi-components/tsi-notes-createoredit/tsi-notes.component.d.ts +21 -0
- package/lib/tsi-components/tsi-notes-grid/tsi-notes-grid.component.d.ts +12 -0
- package/lib/tsi-components/tsi-popup-text-viewer/tsi-popup-text-viewer.component.d.ts +41 -0
- package/lib/tsi-components/tsi-progress-bar/tsi-progress-bar.component.d.ts +38 -0
- package/lib/tsi-components/tsi-search-box/tsi-search-box.component.d.ts +44 -0
- package/lib/tsi-components/tsi-send-mail/tsi-send-mail.component.d.ts +21 -0
- package/lib/tsi-components/tsi-tab-panel/tsi-tab-panel.component.d.ts +18 -0
- package/lib/tsi-components/tsi-tab-view/tsi-tab-view.component.d.ts +17 -0
- package/lib/tsi-components/tsi-tenants/tsi-tenants.component.d.ts +39 -0
- package/lib/tsi-components/tsi-tooltip/tsi-tooltip.component.d.ts +9 -0
- package/lib/tsi-components/tsi-upload-fiche/tsi-upload-fiche.component.d.ts +35 -0
- package/lib/tsi-components/tsi-upload-grid/tsi-upload-grid.component.d.ts +13 -0
- package/lib/tsi-directives/auto-select.directive.d.ts +9 -0
- package/lib/tsi-directives/busy.directive.d.ts +11 -0
- package/lib/tsi-directives/dynamic-component-loader/ad.directive.d.ts +8 -0
- package/lib/tsi-directives/index.d.ts +7 -0
- package/lib/tsi-directives/module-main-parameter.directive.d.ts +8 -0
- package/lib/tsi-directives/presentation-designer-base.directive.d.ts +41 -0
- package/lib/tsi-directives/presentation-designer.directive.d.ts +37 -0
- package/lib/tsi-directives/validation.directive.d.ts +18 -0
- package/lib/tsi-helpers/compoent-reference.helper.d.ts +5 -0
- package/lib/tsi-helpers/date-helper.d.ts +6 -0
- package/lib/tsi-helpers/export-excel.helper.d.ts +5 -0
- package/lib/tsi-helpers/filter-helper.d.ts +12 -0
- package/lib/tsi-helpers/grid-col-style.helper.d.ts +5 -0
- package/lib/tsi-helpers/guid.helper.d.ts +6 -0
- package/lib/tsi-helpers/helpers.d.ts +4 -0
- package/lib/tsi-helpers/index.d.ts +12 -0
- package/lib/tsi-helpers/mapping-helper.d.ts +5 -0
- package/lib/tsi-helpers/object.helper.d.ts +3 -0
- package/lib/tsi-helpers/primeng-translate-config.d.ts +54 -0
- package/lib/tsi-helpers/storage-manager.d.ts +8 -0
- package/lib/tsi-helpers/type-registry.helper.d.ts +34 -0
- package/lib/types/enum-description.type.d.ts +3 -0
- package/lib/types/index.d.ts +2 -0
- package/lib/types/time-only.d.ts +17 -0
- package/package.json +24 -0
- package/public-api.d.ts +17 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { CrudBaseService } from '../base/crud-base.service';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { ModeleImportCreateRequest } from '../../models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ModeleImportService extends CrudBaseService<ModeleImportCreateRequest, ModeleImportCreateRequest, ModeleImportCreateRequest, ModeleImportCreateRequest> {
|
|
7
|
+
protected httpClient: HttpClient;
|
|
8
|
+
constructor(httpClient: HttpClient);
|
|
9
|
+
executeImport(id: string, file: File): Observable<any>;
|
|
10
|
+
executeImportJson(fileName: string, classe: string): Observable<any>;
|
|
11
|
+
deleteImport(codeImport: string, classe: string): Observable<any>;
|
|
12
|
+
executeImportWithoutModel(file: File): Observable<any>;
|
|
13
|
+
executeExport(id: string): Observable<any>;
|
|
14
|
+
executeExportJson(id: string): Observable<any>;
|
|
15
|
+
executeExportJsonServer(id: string): Observable<any>;
|
|
16
|
+
uploadJsonFile(file: File): Observable<any>;
|
|
17
|
+
GetJsonFiles(classe: string): Observable<any>;
|
|
18
|
+
GetImportHistory(classe: string): Observable<any>;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModeleImportService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ModeleImportService>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { Note, NotePagedRequest, NotesGroupedByUserResponse } from '../../models/Notes/Note';
|
|
4
|
+
import { CrudBaseService } from '../base/crud-base.service';
|
|
5
|
+
import { DialogDataService } from '../dialog-data.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class NoteService extends CrudBaseService<Note, Note, Note, NotePagedRequest> {
|
|
8
|
+
protected httpClient: HttpClient;
|
|
9
|
+
private dialogDataService;
|
|
10
|
+
constructor(httpClient: HttpClient, dialogDataService: DialogDataService);
|
|
11
|
+
getAllPaged(model: NotePagedRequest): Observable<any>;
|
|
12
|
+
getAlertNotes(itemKey: string, className: string): Observable<NotesGroupedByUserResponse[]>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NoteService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NoteService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ProceedLoginRequest } from '../authorization/authorization.service';
|
|
4
|
+
import { LoginResponse } from '../../models/user-identity/login-response';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class IdentityPlatformAuthenticationService {
|
|
7
|
+
private _httpClient;
|
|
8
|
+
constructor(_httpClient: HttpClient);
|
|
9
|
+
logout(reason: string): Observable<any>;
|
|
10
|
+
proceedLoginAsync(proceedLoginRequest: ProceedLoginRequest, userToken?: string): Promise<LoginResponse>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdentityPlatformAuthenticationService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IdentityPlatformAuthenticationService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { CrudBaseService } from '../base/crud-base.service';
|
|
4
|
+
import { TenantDTO } from '../../models/user-identity/tenant';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class UserIdentityService extends CrudBaseService<any, any, any, any> {
|
|
7
|
+
protected httpClient: HttpClient;
|
|
8
|
+
constructor(httpClient: HttpClient);
|
|
9
|
+
GetCurrentUser(): Observable<any>;
|
|
10
|
+
ClearPassword(userUid: string): Observable<any>;
|
|
11
|
+
changePassword(email: string, oldPassword: string, newPassword: string, confirmedNewPassword: string): Observable<any>;
|
|
12
|
+
getCurrentUserTenants(): Observable<TenantDTO[]>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserIdentityService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserIdentityService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { EndpointInfos } from '../../models/application/configuration/endpoint-infos';
|
|
4
|
+
import { EntityDeleteBehaviorResponse } from '../../models/application/configuration/entity-delete-behavior';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ApiExplorerService {
|
|
7
|
+
private httpClient;
|
|
8
|
+
constructor(httpClient: HttpClient);
|
|
9
|
+
getEndpointsInfos(businessClass: string): Observable<EndpointInfos[]>;
|
|
10
|
+
getEntityRelations(): Observable<EntityDeleteBehaviorResponse[]>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiExplorerService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiExplorerService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { IdentityManagerService } from '../authorization/identity-manager.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface AppConfig {
|
|
4
|
+
inputStyle: string;
|
|
5
|
+
colorScheme: string;
|
|
6
|
+
theme: string;
|
|
7
|
+
ripple: boolean;
|
|
8
|
+
menuMode: string;
|
|
9
|
+
scale: number;
|
|
10
|
+
}
|
|
11
|
+
interface LayoutState {
|
|
12
|
+
staticMenuDesktopInactive: boolean;
|
|
13
|
+
overlayMenuActive: boolean;
|
|
14
|
+
profileSidebarVisible: boolean;
|
|
15
|
+
configSidebarVisible: boolean;
|
|
16
|
+
staticMenuMobileActive: boolean;
|
|
17
|
+
menuHoverActive: boolean;
|
|
18
|
+
}
|
|
19
|
+
export declare class LayoutService {
|
|
20
|
+
private _identityManagerService;
|
|
21
|
+
constructor(_identityManagerService: IdentityManagerService);
|
|
22
|
+
config: AppConfig;
|
|
23
|
+
isLoading: boolean;
|
|
24
|
+
state: LayoutState;
|
|
25
|
+
private configUpdate;
|
|
26
|
+
private overlayOpen;
|
|
27
|
+
configUpdate$: import("rxjs").Observable<AppConfig>;
|
|
28
|
+
overlayOpen$: import("rxjs").Observable<any>;
|
|
29
|
+
onMenuToggle(): void;
|
|
30
|
+
showProfileSidebar(): void;
|
|
31
|
+
showConfigSidebar(): void;
|
|
32
|
+
isOverlay(): boolean;
|
|
33
|
+
isDesktop(): boolean;
|
|
34
|
+
isMobile(): boolean;
|
|
35
|
+
onConfigUpdate(): void;
|
|
36
|
+
private showFullMenuSubject;
|
|
37
|
+
private enableRtlModeSubject;
|
|
38
|
+
showFullMenuSubject$: import("rxjs").Observable<boolean>;
|
|
39
|
+
enableRtlModeSubject$: import("rxjs").Observable<boolean>;
|
|
40
|
+
onShowFullMenu(isCollapsed: boolean): void;
|
|
41
|
+
enableRtlMode(): void;
|
|
42
|
+
disableRtlMode(): void;
|
|
43
|
+
isRtlModeEnabled(): any;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutService, never>;
|
|
45
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutService>;
|
|
46
|
+
}
|
|
47
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ParametresApplicationParambaseService {
|
|
5
|
+
protected httpClient: HttpClient;
|
|
6
|
+
constructor(httpClient: HttpClient);
|
|
7
|
+
getParametreApplicationParamBase(url: string): Observable<any>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ParametresApplicationParambaseService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ParametresApplicationParambaseService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { EnvironmentInjector } from '@angular/core';
|
|
3
|
+
import { Observable, Subject } from 'rxjs';
|
|
4
|
+
import { IdentityManagerService } from './identity-manager.service';
|
|
5
|
+
import { LayoutService } from '../application/app.layout.service';
|
|
6
|
+
import { IdentityPlatformAuthenticationService } from '../UserIdentity/identity-platform-authentication.service';
|
|
7
|
+
import { ModuleCodeService } from '../module-code/module-code.service';
|
|
8
|
+
import { logoutReasonEnum } from '../../enums/logout-reason-enum';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class AuthorizationService {
|
|
11
|
+
private httpClient;
|
|
12
|
+
layoutService: LayoutService;
|
|
13
|
+
private _injector;
|
|
14
|
+
private _identityPlatformAuthenticationService;
|
|
15
|
+
private _identityManager;
|
|
16
|
+
private _moduleCodeService;
|
|
17
|
+
private ipApiUrl;
|
|
18
|
+
isAuthenticated$: Subject<any>;
|
|
19
|
+
private jwtHelper;
|
|
20
|
+
private timeoutInterval;
|
|
21
|
+
private _dialogRef;
|
|
22
|
+
getIsAuthenticated(): Observable<any>;
|
|
23
|
+
constructor(httpClient: HttpClient, layoutService: LayoutService, _injector: EnvironmentInjector, _identityPlatformAuthenticationService: IdentityPlatformAuthenticationService, _identityManager: IdentityManagerService, _moduleCodeService: ModuleCodeService);
|
|
24
|
+
/**
|
|
25
|
+
* Authentication
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
runLogoutInterval(): void;
|
|
29
|
+
logout(reason: logoutReasonEnum): Promise<void>;
|
|
30
|
+
getMenuItems(): Observable<any>;
|
|
31
|
+
isAuthenticated(): boolean;
|
|
32
|
+
/**permissions */
|
|
33
|
+
checkPermission(permission: string): Promise<boolean>;
|
|
34
|
+
/**
|
|
35
|
+
* observables
|
|
36
|
+
*/
|
|
37
|
+
getIpAddress(): Observable<{
|
|
38
|
+
ip: string;
|
|
39
|
+
}>;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthorizationService, never>;
|
|
41
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthorizationService>;
|
|
42
|
+
}
|
|
43
|
+
export declare class ProceedLoginRequest {
|
|
44
|
+
tenantUid: string;
|
|
45
|
+
constructor(tenantUid: string);
|
|
46
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { JwtHelperService } from '@auth0/angular-jwt';
|
|
2
|
+
import { AuthorizationToken } from '../../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class IdentityManagerService {
|
|
5
|
+
private _jwtHelper;
|
|
6
|
+
constructor(_jwtHelper: JwtHelperService);
|
|
7
|
+
saveAuthToken(token: string): void;
|
|
8
|
+
saveRtlMode(value: string): void;
|
|
9
|
+
saveUserLanguage(value: string): void;
|
|
10
|
+
getUserLanguage(): string | null;
|
|
11
|
+
saveMenuItems(values: string): void;
|
|
12
|
+
getAuthToken(): string | null;
|
|
13
|
+
getMenuItems(): string | null;
|
|
14
|
+
getRtlMode(): string | null;
|
|
15
|
+
removeAuthToken(): void;
|
|
16
|
+
iHaveAuthToken(): boolean;
|
|
17
|
+
isMyAuthTokenValid(): boolean;
|
|
18
|
+
private isAuthTokenValid;
|
|
19
|
+
parseAuthToken(token: string | null | undefined): AuthorizationToken | undefined;
|
|
20
|
+
parseMyAuthToken(): AuthorizationToken;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdentityManagerService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IdentityManagerService>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { IPagedRequest, IPagedResponse } from '../../interfaces';
|
|
4
|
+
export declare abstract class CrudBaseService<TCreate, TUpdate, TById, TAllPaged, TAll = TAllPaged> {
|
|
5
|
+
protected _httpClient: HttpClient;
|
|
6
|
+
protected endpoint: string;
|
|
7
|
+
isDuplicate: boolean;
|
|
8
|
+
constructor(_httpClient: HttpClient, endpoint: string);
|
|
9
|
+
getAll(): Observable<Array<TAll>>;
|
|
10
|
+
getById(id: string): Observable<TById>;
|
|
11
|
+
create(model: TCreate): Observable<any>;
|
|
12
|
+
update(model: TUpdate, id: string): Observable<any>;
|
|
13
|
+
delete(id: string): Observable<any>;
|
|
14
|
+
getAllPaged(model: IPagedRequest): Observable<IPagedResponse<TAllPaged>>;
|
|
15
|
+
updateOldEndpoint(model: TUpdate): Observable<any>;
|
|
16
|
+
}
|
|
17
|
+
export declare const Segments: {
|
|
18
|
+
/*** Actions ***/
|
|
19
|
+
getAllPaged: string;
|
|
20
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { entityInfo, EntityInfoWithRelations, UpdateEntityInfoWithRelationsRequest } from '../../models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class EntityConfigurationService {
|
|
6
|
+
private httpClient;
|
|
7
|
+
private entityInformationsDictionnary;
|
|
8
|
+
constructor(httpClient: HttpClient);
|
|
9
|
+
getEntityInfo(businessClassName: string): Observable<entityInfo>;
|
|
10
|
+
getEntityInfoFromCache(businessClassName: string): Promise<entityInfo | undefined>;
|
|
11
|
+
GetAllEntityInfos(): Observable<entityInfo[]>;
|
|
12
|
+
getEntityInformationsAndRelations(businessClass: string): Observable<EntityInfoWithRelations>;
|
|
13
|
+
create(entityInfoWithRelations: EntityInfoWithRelations): Observable<EntityInfoWithRelations>;
|
|
14
|
+
update(updateEntityInfoWithRelationsRequest: UpdateEntityInfoWithRelationsRequest): Observable<UpdateEntityInfoWithRelationsRequest>;
|
|
15
|
+
delete(className: string): Observable<Object>;
|
|
16
|
+
getColonnesByClassNameAsKeyValuePair(className: string): Observable<{
|
|
17
|
+
key: string;
|
|
18
|
+
value: string;
|
|
19
|
+
}[]>;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EntityConfigurationService, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EntityConfigurationService>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface CurrentUser {
|
|
5
|
+
userNameWithPersonnes: string;
|
|
6
|
+
affichageAlertes: boolean;
|
|
7
|
+
langue: string;
|
|
8
|
+
personne: string;
|
|
9
|
+
client: string;
|
|
10
|
+
fournisseur: string;
|
|
11
|
+
}
|
|
12
|
+
export declare class CurrentUserService {
|
|
13
|
+
private http;
|
|
14
|
+
_currentUser$: BehaviorSubject<CurrentUser | null>;
|
|
15
|
+
private _currentUserLoaded;
|
|
16
|
+
private _currentUser;
|
|
17
|
+
constructor(http: HttpClient);
|
|
18
|
+
loadCurrentUser(): Promise<CurrentUser | undefined>;
|
|
19
|
+
get currentUser(): CurrentUser | undefined;
|
|
20
|
+
getPersonne(): Promise<string | null>;
|
|
21
|
+
getClient(): Promise<string | null>;
|
|
22
|
+
getFournisseur(): Promise<string | null>;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentUserService, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CurrentUserService>;
|
|
25
|
+
}
|
|
26
|
+
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { TimeOnly } from '../types/time-only';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DateHelperService {
|
|
4
|
+
dateFormat: string;
|
|
5
|
+
dateTimeFormat: string;
|
|
6
|
+
timeFormat: string;
|
|
7
|
+
constructor();
|
|
8
|
+
/**
|
|
9
|
+
* Converts a string to a Date by using the specified locale UTC and format DateFormat.
|
|
10
|
+
* @param dateString A string date in format DateFormat
|
|
11
|
+
*/
|
|
12
|
+
parseDateString(dateString: string): Date | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* Converts a string to a Date by using the specified locale UTC and format DateTimeFormat.
|
|
15
|
+
* @param dateString A string date in format DateTimeFormat
|
|
16
|
+
*/
|
|
17
|
+
parseDateTimeString(dateString: string): Date | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* Converts a string to a TimeOnly by using the format DateTimeFormat.
|
|
20
|
+
* @param timeString A string timeonly in format TimeFormat
|
|
21
|
+
*/
|
|
22
|
+
parseTimeString(timeString: string): TimeOnly | undefined;
|
|
23
|
+
createUtcDateFromDate(value: Date): Date | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* Converts a jsonString to a Date by using the specified locale UTC.
|
|
26
|
+
* @param jsonString A json string date gotten from remote api
|
|
27
|
+
*/
|
|
28
|
+
createUtcDateFromString(jsonString: string): Date | undefined;
|
|
29
|
+
extractTimeFromDate(value: Date): string;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateHelperService, never>;
|
|
31
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DateHelperService>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DialogDataService {
|
|
3
|
+
private data;
|
|
4
|
+
private eventSubject;
|
|
5
|
+
sendEvent(data: any): void;
|
|
6
|
+
getEvent(): import("rxjs").Observable<any>;
|
|
7
|
+
setData(data: any): void;
|
|
8
|
+
getData(): any;
|
|
9
|
+
clearData(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogDataService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DialogDataService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { CrudBaseService } from '../base/crud-base.service';
|
|
4
|
+
import { Fichier } from '../../models';
|
|
5
|
+
import { DialogDataService } from '../dialog-data.service';
|
|
6
|
+
import { IPagedRequest } from '../../interfaces/pagination/pagination-base';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class FichierUploadService extends CrudBaseService<Fichier, Fichier, Fichier, Fichier> {
|
|
9
|
+
protected httpClient: HttpClient;
|
|
10
|
+
private dialogDataService;
|
|
11
|
+
constructor(httpClient: HttpClient, dialogDataService: DialogDataService);
|
|
12
|
+
getAllPaged(model: IPagedRequest): Observable<any>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FichierUploadService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FichierUploadService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { CrudBaseService } from '../base/crud-base.service';
|
|
3
|
+
import { Fichier } from '../../models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FichierService extends CrudBaseService<Fichier, Fichier, Fichier, Fichier> {
|
|
6
|
+
protected httpClient: HttpClient;
|
|
7
|
+
constructor(httpClient: HttpClient);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FichierService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FichierService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FormulaService {
|
|
5
|
+
private _httpClient;
|
|
6
|
+
constructor(_httpClient: HttpClient);
|
|
7
|
+
getFormulaSuggestions(endpoint: string, term: string): Observable<any>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormulaService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormulaService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CurrencyPipe, DatePipe, DecimalPipe, PercentPipe } from '@angular/common';
|
|
2
|
+
import { IFilteredRequest } from '../../interfaces';
|
|
3
|
+
import { LocalizePipe } from '../../pipes/localize.pipe';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HtmlTemplateGeneratorService {
|
|
6
|
+
private datePipe;
|
|
7
|
+
private localizePipe;
|
|
8
|
+
private currencyPipe;
|
|
9
|
+
private decimalPipe;
|
|
10
|
+
private percentPipe;
|
|
11
|
+
private columnWidth;
|
|
12
|
+
constructor(datePipe: DatePipe, localizePipe: LocalizePipe, currencyPipe: CurrencyPipe, decimalPipe: DecimalPipe, percentPipe: PercentPipe);
|
|
13
|
+
generateGridFiltersTemplate(filters: IFilteredRequest[], isSearchBoxFilters?: boolean, columnsNumber?: number): string;
|
|
14
|
+
private _calculateColumnWidth;
|
|
15
|
+
private _addTable;
|
|
16
|
+
private _addRow;
|
|
17
|
+
private _addColumn;
|
|
18
|
+
private _addPropertySpan;
|
|
19
|
+
private _addValueSpan;
|
|
20
|
+
private _getPropertyText;
|
|
21
|
+
private _getValueText;
|
|
22
|
+
private _createPropertySpan;
|
|
23
|
+
private _createValueSpan;
|
|
24
|
+
private _createColumn;
|
|
25
|
+
private _createFakeColumn;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlTemplateGeneratorService, never>;
|
|
27
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HtmlTemplateGeneratorService>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export * from './base/crud-base.service';
|
|
2
|
+
export * from './Component-Finder/tsi-component-finder.service';
|
|
3
|
+
export * from './configuration/entity-configuration.service';
|
|
4
|
+
export * from './currentUser/currentUser.service';
|
|
5
|
+
export * from './generator/html-template-generator.service';
|
|
6
|
+
export * from './Import-Export/modele-import.service';
|
|
7
|
+
export * from './layout/layout-helper.service';
|
|
8
|
+
export * from './modal/tsi-bs-modal.service';
|
|
9
|
+
export * from './modal/tsi-modal.service';
|
|
10
|
+
export * from './module-code/module-code.service';
|
|
11
|
+
export * from './Note/Note.service';
|
|
12
|
+
export * from './notification/error-response-manager.service';
|
|
13
|
+
export * from './notification/tsi-confirmation.service';
|
|
14
|
+
export * from './notification/tsi-message.service';
|
|
15
|
+
export * from './notification/tsi-notification.service';
|
|
16
|
+
export * from './presentation-setting/presentation-designer.service';
|
|
17
|
+
export * from './presentation-setting/presentation-setting.service';
|
|
18
|
+
export * from './progress-bar/progress-bar-helper.service';
|
|
19
|
+
export * from './progress-bar/progress-bar.service';
|
|
20
|
+
export * from './reporting/reporting.service';
|
|
21
|
+
export * from './settings/app-settings.service';
|
|
22
|
+
export * from './settings/keyboard-shortcut.service';
|
|
23
|
+
export * from './translation/translation.service';
|
|
24
|
+
export * from './UserIdentity/identity-platform-authentication.service';
|
|
25
|
+
export * from './UserIdentity/user-identity.service';
|
|
26
|
+
export * from './validation/entity-validations.service';
|
|
27
|
+
export * from './validation/generic-validation-state.service';
|
|
28
|
+
export * from './validation/input-registry.service';
|
|
29
|
+
export * from './workflow/workflow-configuration.service';
|
|
30
|
+
export * from './application/api-explorer.service';
|
|
31
|
+
export * from './authorization/authorization.service';
|
|
32
|
+
export * from './authorization/identity-manager.service';
|
|
33
|
+
export * from './date-helper.service';
|
|
34
|
+
export * from './dialog-data.service';
|
|
35
|
+
export * from './formula.service';
|
|
36
|
+
export * from './module-main-parameter.service';
|
|
37
|
+
export * from './record-info-popup.service';
|
|
38
|
+
export * from './status/entityStatus.service';
|
|
39
|
+
export * from './journalisation/journalisation-application.service';
|
|
40
|
+
export * from './journalisation/status-history.service';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { JournalisationApplication } from '../../models/journalisation-application/journalisation-application';
|
|
4
|
+
import { CrudBaseService } from '../base/crud-base.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class JournalisationApplicationService extends CrudBaseService<JournalisationApplication, JournalisationApplication, JournalisationApplication, JournalisationApplication> {
|
|
7
|
+
protected httpClient: HttpClient;
|
|
8
|
+
constructor(httpClient: HttpClient);
|
|
9
|
+
getAllFiltredByIdObject(targetId: string): Observable<any>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JournalisationApplicationService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JournalisationApplicationService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { CrudBaseService } from '../base/crud-base.service';
|
|
4
|
+
import { StatusHistory } from '../../models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class StatusHistoryService extends CrudBaseService<StatusHistory, StatusHistory, StatusHistory, StatusHistory> {
|
|
7
|
+
protected httpClient: HttpClient;
|
|
8
|
+
constructor(httpClient: HttpClient);
|
|
9
|
+
getAllFiltredByUidObject(objectId: string): Observable<any>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StatusHistoryService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StatusHistoryService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import { LayoutConfiguration } from '../../models/layout/layout-config';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LayoutHelperService {
|
|
5
|
+
private readonly _layoutConfigurationKey;
|
|
6
|
+
private _layoutConfiguration;
|
|
7
|
+
private _isDesignMode;
|
|
8
|
+
_designModeListSubject: Subject<boolean>;
|
|
9
|
+
_designModeFormSubject: Subject<any>;
|
|
10
|
+
designModeListObservable: import("rxjs").Observable<boolean>;
|
|
11
|
+
designModeFormObservable: import("rxjs").Observable<any>;
|
|
12
|
+
get layoutConfiguration(): LayoutConfiguration;
|
|
13
|
+
set layoutConfiguration(_value: LayoutConfiguration);
|
|
14
|
+
set isDesignMode(_value: boolean);
|
|
15
|
+
get isDesignMode(): boolean;
|
|
16
|
+
/**
|
|
17
|
+
* ctor
|
|
18
|
+
*/
|
|
19
|
+
constructor();
|
|
20
|
+
private getCurrentLayoutConfigurationOrDefault;
|
|
21
|
+
private saveLayoutConfiguration;
|
|
22
|
+
private manageColorfulMode;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutHelperService, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutHelperService>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { DynamicComponentLoader, ModalOptions } from '../../interfaces/modal/dynamic.component';
|
|
4
|
+
import { BsModalRef } from '../../models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TsiBsModalService {
|
|
7
|
+
private _onSave;
|
|
8
|
+
private _onHide;
|
|
9
|
+
private _dynamicComponentLoader;
|
|
10
|
+
getMessage(): Observable<DynamicComponentLoader>;
|
|
11
|
+
getOnSave(): Observable<any>;
|
|
12
|
+
onSave(data?: any): void;
|
|
13
|
+
show(content: string | TemplateRef<any> | any, config?: ModalOptions): BsModalRef;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiBsModalService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TsiBsModalService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Type } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TsiModalService {
|
|
5
|
+
private _dialogService;
|
|
6
|
+
open(componentType: Type<any>, config: DynamicDialogConfig): DynamicDialogRef;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiModalService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TsiModalService>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface ModuleState {
|
|
4
|
+
moduleCode: string | undefined;
|
|
5
|
+
displayType: string | undefined;
|
|
6
|
+
}
|
|
7
|
+
export declare class ModuleCodeService {
|
|
8
|
+
private stateSubject;
|
|
9
|
+
state$: Observable<ModuleState>;
|
|
10
|
+
getState(): ModuleState;
|
|
11
|
+
setState(patch: Partial<ModuleState>): void;
|
|
12
|
+
setModuleCode(code: string): void;
|
|
13
|
+
setDisplayType(dt: string): void;
|
|
14
|
+
clearModuleCode(): void;
|
|
15
|
+
clearDisplayType(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModuleCodeService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ModuleCodeService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { DynamicComponentLoader } from '../interfaces/modal/dynamic.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ModuleMainParameterService {
|
|
5
|
+
private _mainParameterComponentLoader;
|
|
6
|
+
constructor();
|
|
7
|
+
show(loader: DynamicComponentLoader): void;
|
|
8
|
+
hide(): void;
|
|
9
|
+
getLoaderObservable(): Observable<DynamicComponentLoader | undefined>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModuleMainParameterService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ModuleMainParameterService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { HttpErrorResponse } from '@angular/common/http';
|
|
2
|
+
import { TsiMessageService } from './tsi-message.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ErrorResponseManagerService {
|
|
5
|
+
private _messageService;
|
|
6
|
+
constructor(_messageService: TsiMessageService);
|
|
7
|
+
showErrorMessage(response: HttpErrorResponse): void;
|
|
8
|
+
showValidationErrorMessage(response: HttpErrorResponse): void;
|
|
9
|
+
showErrorMessagesFromArrayString(errorMessages: string[]): void;
|
|
10
|
+
showUserFriendlyErrorMessage(response: HttpErrorResponse): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorResponseManagerService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorResponseManagerService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ConfirmationService } from 'primeng/api';
|
|
2
|
+
import { LocalizePipe } from '../../pipes/localize.pipe';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TsiConfirmationService {
|
|
5
|
+
private confirmationService;
|
|
6
|
+
private localize;
|
|
7
|
+
constructor(confirmationService: ConfirmationService, localize: LocalizePipe);
|
|
8
|
+
confirm(msg: string, title?: string, callback?: (result: boolean, info?: any) => void): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiConfirmationService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TsiConfirmationService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { LocalizePipe } from '../../pipes/localize.pipe';
|
|
2
|
+
import { TsiModalService } from '../modal/tsi-modal.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TsiMessageService {
|
|
5
|
+
private _tsiModalService;
|
|
6
|
+
private localizePipe;
|
|
7
|
+
constructor(_tsiModalService: TsiModalService, localizePipe: LocalizePipe);
|
|
8
|
+
success(msg: string, header?: string): void;
|
|
9
|
+
infoMessage(msg: string, width?: string, header?: string): void;
|
|
10
|
+
error(msg: string, header?: string, msgs?: string[]): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiMessageService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TsiMessageService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { HttpErrorResponse } from '@angular/common/http';
|
|
2
|
+
import { MessageService } from 'primeng/api';
|
|
3
|
+
import { TsiMessageService } from './tsi-message.service';
|
|
4
|
+
import { LocalizePipe } from '../../pipes/localize.pipe';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TsiNotificationService {
|
|
7
|
+
private _messageService;
|
|
8
|
+
private localizePipe;
|
|
9
|
+
private tsiMessageService;
|
|
10
|
+
constructor(_messageService: MessageService, localizePipe: LocalizePipe, tsiMessageService: TsiMessageService);
|
|
11
|
+
success(msg: string, header?: string): void;
|
|
12
|
+
info(msg: string, header?: string): void;
|
|
13
|
+
warn(msg: string, header?: string): void;
|
|
14
|
+
error(msg: string, header?: string): void;
|
|
15
|
+
showErrorMessage(error: HttpErrorResponse, header?: string): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiNotificationService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TsiNotificationService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import { PresentationDesignerDirectiveBase } from '../../tsi-directives/presentation-designer-base.directive';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PresentationDesignerBaseService {
|
|
5
|
+
directives: PresentationDesignerDirectiveBase[];
|
|
6
|
+
_addedDirectiveSubscription: Subject<PresentationDesignerDirectiveBase>;
|
|
7
|
+
addedDirectiveObservable: import("rxjs").Observable<PresentationDesignerDirectiveBase>;
|
|
8
|
+
constructor();
|
|
9
|
+
register(directive: PresentationDesignerDirectiveBase): void;
|
|
10
|
+
unregister(directive: PresentationDesignerDirectiveBase): void;
|
|
11
|
+
getDirectives(): (PresentationDesignerDirectiveBase)[];
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PresentationDesignerBaseService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PresentationDesignerBaseService>;
|
|
14
|
+
}
|