@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
package/index.d.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { PresentationDesignerBaseService } from "../services/presentation-setting/presentation-designer-base.service";
|
|
2
|
+
import { GenericValidationStateService } from "../services/validation/generic-validation-state.service";
|
|
3
|
+
import { InputRegistryService } from "../services/validation/input-registry.service";
|
|
4
|
+
export declare const appProviders: (typeof GenericValidationStateService | typeof InputRegistryService | typeof PresentationDesignerBaseService)[];
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const HtmlTemplates: {
|
|
2
|
+
tableSTART: () => string;
|
|
3
|
+
tableEND: () => string;
|
|
4
|
+
rowSTART: () => string;
|
|
5
|
+
rowEND: () => string;
|
|
6
|
+
columnSTART: (width: string) => string;
|
|
7
|
+
columnEND: () => string;
|
|
8
|
+
spanPropertySTART: () => string;
|
|
9
|
+
spanPropertyEND: () => string;
|
|
10
|
+
spanValueSTART: () => string;
|
|
11
|
+
spanValueEND: () => string;
|
|
12
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const LocalizationKeys: {
|
|
2
|
+
savedSuccessfully: string;
|
|
3
|
+
retrievedSuccessfully: string;
|
|
4
|
+
createdSuccessfully: string;
|
|
5
|
+
updatedSuccessfully: string;
|
|
6
|
+
deletedSuccessfully: string;
|
|
7
|
+
confirmDelete: string;
|
|
8
|
+
calculatedSuccessfully: string;
|
|
9
|
+
generatedSuccessfully: string;
|
|
10
|
+
payementsadded: string;
|
|
11
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export declare const DateFormatDisplay = "dd-MM-yyyy";
|
|
2
|
+
export declare const DateTimeFormatDisplay = "dd-MM-yyyy HH:mm:ss";
|
|
3
|
+
export declare const SeparateurMillier = ",";
|
|
4
|
+
export declare const SeparateurDecimal = ".";
|
|
5
|
+
export declare const DatePickerDateFormat = "dd/mm/yy";
|
|
6
|
+
export declare const DatePickerTimeFormat = "HH:mm:ss";
|
|
7
|
+
export declare const DatePickerDateTimeFormat = "dd/mm/yy HH:mm:ss";
|
|
8
|
+
export declare const TS_ValidDateFormat = "yyyy-MM-dd";
|
|
9
|
+
export declare const TS_ValidTimeFormat = "HH:mm:ss";
|
|
10
|
+
export declare const TS_ValidDateTimeFormat = "dd/MM/yyyy HH:mm:ss";
|
|
11
|
+
export declare const DateFormat = "dd/MM/yyyy";
|
|
12
|
+
export declare const TimeFormat = "HH:mm:ss";
|
|
13
|
+
export declare const DateTimeFormat = "dd/MM/yyyy HH:mm:ss";
|
|
14
|
+
export declare const TimeZoneLocale = "UTC";
|
|
15
|
+
export declare const ApiDateTimeFormat: string;
|
|
16
|
+
export declare const tokenQueryParamName: string;
|
|
17
|
+
export declare const DefaultSocieteDevise: {
|
|
18
|
+
uid: undefined;
|
|
19
|
+
nombreDecimales: number;
|
|
20
|
+
codeDevise: string;
|
|
21
|
+
numeroDevise: undefined;
|
|
22
|
+
libelleDevise: undefined;
|
|
23
|
+
nombreDevises: undefined;
|
|
24
|
+
compteBancaireDefaut: undefined;
|
|
25
|
+
};
|
|
26
|
+
export declare const authorization: {
|
|
27
|
+
encryptedAuthTokenName: string;
|
|
28
|
+
};
|
|
29
|
+
export declare const userLanguage: {
|
|
30
|
+
userLanguage: string;
|
|
31
|
+
};
|
|
32
|
+
export declare const menuItems: {
|
|
33
|
+
menuItems: string;
|
|
34
|
+
};
|
|
35
|
+
export declare const defaultCardHeader: {
|
|
36
|
+
image: string;
|
|
37
|
+
};
|
|
38
|
+
export declare const requestHeaderNames: {
|
|
39
|
+
duplicate: string;
|
|
40
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare const AuthorizationSegments: {
|
|
2
|
+
db: string;
|
|
3
|
+
authentication: string;
|
|
4
|
+
multiTenancy: string;
|
|
5
|
+
menu: string;
|
|
6
|
+
authorization: string;
|
|
7
|
+
login: string;
|
|
8
|
+
register: string;
|
|
9
|
+
verifyCode: string;
|
|
10
|
+
resendVerificationCode: string;
|
|
11
|
+
proceedLogin: string;
|
|
12
|
+
logout: string;
|
|
13
|
+
logoutWithToken: string;
|
|
14
|
+
lockOpen: string;
|
|
15
|
+
generate: string;
|
|
16
|
+
checkPermissions: string;
|
|
17
|
+
connectionAsKeyValuePair: string;
|
|
18
|
+
getConnectedUsers: string;
|
|
19
|
+
getMyTenants: string;
|
|
20
|
+
deleteUnconfirmedUsers: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const AuthorizationEndpoints: {
|
|
23
|
+
register: () => string;
|
|
24
|
+
proceedLogin: (username: string, tenantUid: string) => string;
|
|
25
|
+
logoutWithToken: () => string;
|
|
26
|
+
getMenuItems: () => string;
|
|
27
|
+
checkPermission: (permission: string) => string;
|
|
28
|
+
getAvailableConnectionStrings: () => string;
|
|
29
|
+
getConnectedUsers: () => string;
|
|
30
|
+
getMyTenants: () => string;
|
|
31
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const Segment: {
|
|
2
|
+
base: string;
|
|
3
|
+
reportingServiceBase: string;
|
|
4
|
+
dashboardingAppUrl: string;
|
|
5
|
+
identityPlatformUrlApi: string;
|
|
6
|
+
identityPlatformUrlFront: string;
|
|
7
|
+
appBaseHref: string;
|
|
8
|
+
remoteLocalizationServiceBaseUrl: string;
|
|
9
|
+
production: boolean;
|
|
10
|
+
};
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
export declare const AdministrationSegments: {
|
|
2
|
+
fichier: string;
|
|
3
|
+
allMinimal: string;
|
|
4
|
+
minimal: string;
|
|
5
|
+
allAsKeyValuePair: string;
|
|
6
|
+
asKeyValuePair: string;
|
|
7
|
+
groupe: string;
|
|
8
|
+
utilisateur: string;
|
|
9
|
+
admin: string;
|
|
10
|
+
utilisateurAffectation: string;
|
|
11
|
+
dbUpdate: string;
|
|
12
|
+
getLangueEnum: string;
|
|
13
|
+
getNiveauEnum: string;
|
|
14
|
+
getConnexionEnum: string;
|
|
15
|
+
getAffichageAlerteEnum: string;
|
|
16
|
+
classw: string;
|
|
17
|
+
importAllWorkflowClasses: string;
|
|
18
|
+
classwEtat: string;
|
|
19
|
+
workflowEtat: string;
|
|
20
|
+
workflow: string;
|
|
21
|
+
alert: string;
|
|
22
|
+
entityConfiguration: string;
|
|
23
|
+
workflowEtatSuivant: string;
|
|
24
|
+
workflowEtatFonctionnalite: string;
|
|
25
|
+
personne: string;
|
|
26
|
+
workflowInstance: string;
|
|
27
|
+
fonctionnalite: string;
|
|
28
|
+
VhistoriqueWorkflow: string;
|
|
29
|
+
VtableauDeBordWorkflow: string;
|
|
30
|
+
vgestionDesDroits: string;
|
|
31
|
+
vgestionDesDroitsPersonnalisee: string;
|
|
32
|
+
module: string;
|
|
33
|
+
menu: string;
|
|
34
|
+
sousMenu: string;
|
|
35
|
+
getAllMenusAsKeyValuePairByModuleId: string;
|
|
36
|
+
getAllSousMenusAsKeyValuePairByMenuId: string;
|
|
37
|
+
getAllFonctionnalitesAsKeyValuePairBySousMenuId: string;
|
|
38
|
+
getAllTypeFonctionnaliteEnum: string;
|
|
39
|
+
getById: string;
|
|
40
|
+
getAll: string;
|
|
41
|
+
getAllPaged: string;
|
|
42
|
+
add: string;
|
|
43
|
+
update: string;
|
|
44
|
+
delete: string;
|
|
45
|
+
getEnum: string;
|
|
46
|
+
getByCurrentUser: string;
|
|
47
|
+
getenumchoixtypeADMINISTRATION: string;
|
|
48
|
+
getcreatemodel: string;
|
|
49
|
+
createADMINISTRATION: string;
|
|
50
|
+
getByParamUser: string;
|
|
51
|
+
getAllByCurrentUserId: string;
|
|
52
|
+
getAsKeyValuePairByClasswId: string;
|
|
53
|
+
getAsKeyValuePairByWorkflowId: string;
|
|
54
|
+
updateWorkflowList: string;
|
|
55
|
+
getFonctionnaliteAsKeyValuePairByWorkflowId: string;
|
|
56
|
+
getWorkflowEtatSuivantAsKeyValuePairByWorkflowEtatId: string;
|
|
57
|
+
getWorkflowAsKeyValuePairByClasswId: string;
|
|
58
|
+
getWorkflowInstanceAsKeyValuePairByWorkflowId: string;
|
|
59
|
+
getAllClasswByNom: string;
|
|
60
|
+
getClasswByNom: string;
|
|
61
|
+
getAllClasswEtatAsKeyPairValue: string;
|
|
62
|
+
GetAllFonctionnaliteWorkflowClassW: string;
|
|
63
|
+
getCurrentUser: string;
|
|
64
|
+
getCurrentUserWithRoles: string;
|
|
65
|
+
getSqlFiles: string;
|
|
66
|
+
getSqlText: string;
|
|
67
|
+
executeSqlFiles: string;
|
|
68
|
+
executeAllSqlFiles: string;
|
|
69
|
+
journalApplication: string;
|
|
70
|
+
statusHistory: string;
|
|
71
|
+
classe: string;
|
|
72
|
+
groupeFonctionnalite: string;
|
|
73
|
+
toEnableAllSelectedPermissions: string;
|
|
74
|
+
toDisableAllSelectedPermissions: string;
|
|
75
|
+
toEnableAllFiltredPermissions: string;
|
|
76
|
+
toDisableAllFiltredPermissions: string;
|
|
77
|
+
getWorkflowEntityInformation: string;
|
|
78
|
+
getWorkflowEtatSuivant: string;
|
|
79
|
+
updateEntityWorkflowInformation: string;
|
|
80
|
+
updateCurrentUserLight: string;
|
|
81
|
+
clearPassword: string;
|
|
82
|
+
changePassword: string;
|
|
83
|
+
changePasswordInvalid: string;
|
|
84
|
+
entityInfo: string;
|
|
85
|
+
entityInfoAndRelations: string;
|
|
86
|
+
getAllFiltredByIdObject: string;
|
|
87
|
+
getAllFiltredByUidObjet: string;
|
|
88
|
+
getAllPagedAsync: string;
|
|
89
|
+
updateMasterParameters: string;
|
|
90
|
+
getMasterParameters: string;
|
|
91
|
+
getConnectedUsers: string;
|
|
92
|
+
getWorkflowEtatFormByClassName: string;
|
|
93
|
+
entityInfoController: string;
|
|
94
|
+
getWorkflowConditionPassageOperatorEnum: string;
|
|
95
|
+
getByCodeModule: string;
|
|
96
|
+
getDescriminatorClassValues: string;
|
|
97
|
+
formulaire: string;
|
|
98
|
+
getAllTypeColonneEnumAsync: string;
|
|
99
|
+
getTypeColonneEnumAsync: string;
|
|
100
|
+
getAffectationUtilisateur: string;
|
|
101
|
+
modeleImport: string;
|
|
102
|
+
colonneByClassNameAsKeyValuePair: string;
|
|
103
|
+
Note: string;
|
|
104
|
+
status: string;
|
|
105
|
+
getEntityStatusAsKeyValuePair: string;
|
|
106
|
+
getMenuData: string;
|
|
107
|
+
apiExplorer: string;
|
|
108
|
+
byBusinessClass: string;
|
|
109
|
+
entityRelations: string;
|
|
110
|
+
entityValidations: string;
|
|
111
|
+
endpointsInfo: string;
|
|
112
|
+
};
|
|
113
|
+
export declare const AdministrationEndpoints: {
|
|
114
|
+
getAllEntityStatus: (classeName: string | undefined) => string;
|
|
115
|
+
getAffectationUtilisateur: (type: string) => string;
|
|
116
|
+
getAllFiltredByIdObject: (targetId: string) => string;
|
|
117
|
+
getAllFiltredByUidObject: (objectId: string) => string;
|
|
118
|
+
getAllClassw: () => string;
|
|
119
|
+
getAllClasswMinimal: () => string;
|
|
120
|
+
getClasswMinimal: () => string;
|
|
121
|
+
getAllClasswEtat: () => string;
|
|
122
|
+
getAllClasswEtatMinimal: () => string;
|
|
123
|
+
getClasswEtatMinimal: () => string;
|
|
124
|
+
getWorkflowEtatAsKeyValuePair: () => string;
|
|
125
|
+
getWorkflowEtatFonctionnaliteAsKeyValuePair: () => string;
|
|
126
|
+
getAllWorkflowEtatFonctionnaliteAsKeyValuePair: () => string;
|
|
127
|
+
getAsKeyValuePairByClasswId: (id?: string) => string;
|
|
128
|
+
getAsKeyValuePairByWorkflowId: (id?: string) => string;
|
|
129
|
+
updateWorkflowList: () => string;
|
|
130
|
+
getFonctionnaliteAsKeyValuePairByWorkflowEtatUid: (id?: string) => string;
|
|
131
|
+
getAllClasswEtatAsKeyPairValue: () => string;
|
|
132
|
+
getAllWorkflow: () => string;
|
|
133
|
+
getAllWorkflowAsKeyValuePair: () => string;
|
|
134
|
+
getWorkflowAsKeyValuePair: () => string;
|
|
135
|
+
getAllFonctionnalite: () => string;
|
|
136
|
+
getAllFonctionnaliteWorkflowByClassW: (classeW?: string) => string;
|
|
137
|
+
getFonctionnaliteAsKeyValuePair: () => string;
|
|
138
|
+
getFonctionnaliteAutoriseAsKeyValuePair: () => string;
|
|
139
|
+
getAllTypeFonctionnaliteEnum: () => string;
|
|
140
|
+
getAllWorkflowInstance: () => string;
|
|
141
|
+
getAllWorkflowInstanceAsKeyValuePair: () => string;
|
|
142
|
+
getWorkflowInstanceAsKeyValuePair: () => string;
|
|
143
|
+
getWorkflowAsKeyValuePairByClasswId: (id?: string) => string;
|
|
144
|
+
getWorkflowInstanceAsKeyValuePairByWorkflowId: (id?: string) => string;
|
|
145
|
+
getAllGroupeMinimal: () => string;
|
|
146
|
+
getGroupeMinimal: () => string;
|
|
147
|
+
getLangueEnum: () => string;
|
|
148
|
+
getNiveauEnum: () => string;
|
|
149
|
+
getConnexionEnum: () => string;
|
|
150
|
+
getAdminConnexionEnum: () => string;
|
|
151
|
+
getAffichageAlerteEnum: () => string;
|
|
152
|
+
getFonctionnalitesAsKeyValuePair: () => string;
|
|
153
|
+
getAllFonctionnalitesAsKeyValuePairBySousMenuId: (moduleId?: string, menuId?: string, sousMenuId?: string) => string;
|
|
154
|
+
enableAllSelectedPermissions: () => string;
|
|
155
|
+
disableAllSelectedPermissions: () => string;
|
|
156
|
+
enableAllFiltredPermissions: () => string;
|
|
157
|
+
disableAllFiltredPermissions: () => string;
|
|
158
|
+
getModuleMinimal: () => string;
|
|
159
|
+
getAllModuleMinimal: () => string;
|
|
160
|
+
getMenuMinimal: () => string;
|
|
161
|
+
getAllMenusAsKeyValuePairByModuleId: (id?: string) => string;
|
|
162
|
+
getSousMenuAsKeyValuePair: () => string;
|
|
163
|
+
getAllSousMenusAsKeyValuePairByMenuId: (id?: string) => string;
|
|
164
|
+
GetCurrentUser: () => string;
|
|
165
|
+
GetCurrentUserWithRoles: () => string;
|
|
166
|
+
GetSqlFiles: () => string;
|
|
167
|
+
GetSqlText: (id: string) => string;
|
|
168
|
+
ExecuteSqlFiles: () => string;
|
|
169
|
+
ExecuteAllSqlFiles: () => string;
|
|
170
|
+
getAllUtilisateurMinimal: () => string;
|
|
171
|
+
getUtilisateurMinimal: () => string;
|
|
172
|
+
getAllClasseMinimal: () => string;
|
|
173
|
+
getClasseMinimal: () => string;
|
|
174
|
+
getEntityWorklfowInstanceInformation: () => string;
|
|
175
|
+
getWorkflowEtatSuivantByWorkflowEtat: (workflowEtatUid: string) => string;
|
|
176
|
+
updateEntityWorkflowInformation: () => string;
|
|
177
|
+
updateCurrentUserLight: () => string;
|
|
178
|
+
importAllWorkflowClasses: () => string;
|
|
179
|
+
clearPassword: () => string;
|
|
180
|
+
changePassword: () => string;
|
|
181
|
+
updateMasterParameters: () => string;
|
|
182
|
+
changePasswordInvalid: () => string;
|
|
183
|
+
getEntityInformations: (businessClassName: string) => string;
|
|
184
|
+
getEntityInformationsAndRelations: (businessClass: string) => string;
|
|
185
|
+
GetAllEntitiesInformations: () => string;
|
|
186
|
+
createOrUpdateEntityInformations: () => string;
|
|
187
|
+
deleteEntityInformations: (className: string) => string;
|
|
188
|
+
getClasswByNom: () => string;
|
|
189
|
+
getEntityColumns: (businessClassName: string) => string;
|
|
190
|
+
getWorkflowConditionPassageOperatorEnum: () => string;
|
|
191
|
+
getConnectedUsers: () => string;
|
|
192
|
+
getWorkflowEtatFormByClassName: (className: string) => string;
|
|
193
|
+
getAlertByCodeModule: (codeModule: string, alertDisplay: string) => string;
|
|
194
|
+
getColonnesByClassNameAsKeyValuePair: (parentEntityName: string, columnName?: string) => string;
|
|
195
|
+
getDescriminatorValuesByClassName: (className: string) => string;
|
|
196
|
+
getAllTypeColonneEnumAsync: () => string;
|
|
197
|
+
getMenuInfo: () => string;
|
|
198
|
+
refreshMenu: () => string;
|
|
199
|
+
getApiAsKeyValuePair: () => string;
|
|
200
|
+
getAllApiAsKeyValuePair: () => string;
|
|
201
|
+
getAllApiAsKeyValuePairByBusinessClassName: (businessClass?: string) => string;
|
|
202
|
+
getEntityRelations: () => string;
|
|
203
|
+
getEntityValidations: (businessClass: string) => string;
|
|
204
|
+
getEndpointsInfos: (businessClass: string) => string;
|
|
205
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export declare const ImportExportSegments: {
|
|
2
|
+
modeleImport: string;
|
|
3
|
+
colonneByClassNameAsKeyValuePair: string;
|
|
4
|
+
classChildsAsKeyValuePair: string;
|
|
5
|
+
colonneByNameAndClassNameAsKeyValuePair: string;
|
|
6
|
+
executeImport: string;
|
|
7
|
+
executeExport: string;
|
|
8
|
+
executeExportJson: string;
|
|
9
|
+
executeExportJsonServer: string;
|
|
10
|
+
executeImportJson: string;
|
|
11
|
+
executeImportJsonFromServer: string;
|
|
12
|
+
getTypeImportEnum: string;
|
|
13
|
+
getJsonFiles: string;
|
|
14
|
+
getImportHistory: string;
|
|
15
|
+
deleteImport: string;
|
|
16
|
+
executeImportWithoutModel: string;
|
|
17
|
+
};
|
|
18
|
+
export declare const ImportExportEndPoints: {
|
|
19
|
+
getTypeNatureDocumentEnum: () => string;
|
|
20
|
+
getColonnesByClassNameAsKeyValuePair: (parentEntityName: string, columnName?: string) => string;
|
|
21
|
+
getColonneByNameAndClassNameAsKeyValuePair: (name?: string, className?: string) => string;
|
|
22
|
+
executeImport: (id: string) => string;
|
|
23
|
+
executeExport: (id: string) => string;
|
|
24
|
+
executeExportJson: (id: string) => string;
|
|
25
|
+
executeExportJsonServer: (id: string) => string;
|
|
26
|
+
executeImportJson: () => string;
|
|
27
|
+
executeImportJsonFromServer: (fileName: string, classe: string) => string;
|
|
28
|
+
getClassChildsAsKeyValuePair: (className?: string) => string;
|
|
29
|
+
getJsonFiles: (classe: string) => string;
|
|
30
|
+
getImportHistory: (classe: string) => string;
|
|
31
|
+
deleteImport: (codeImport: string, classe: string) => string;
|
|
32
|
+
executeImportWithoutModel: () => string;
|
|
33
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const PresentationSettingSegments: {
|
|
2
|
+
presentationSetting: string;
|
|
3
|
+
byForm: string;
|
|
4
|
+
getAll: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const PresentationSettingEndpoints: {
|
|
7
|
+
createPresentationSetting: () => string;
|
|
8
|
+
updatePresentationSetting: (uid: string) => string;
|
|
9
|
+
getPresentationSettingByComponentIdentifier: (componentIdentifer: string) => string;
|
|
10
|
+
getAllPresentationSettings: () => string;
|
|
11
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export declare const ReportingSegments: {
|
|
2
|
+
reporting: string;
|
|
3
|
+
addReportToBuiltIn: string;
|
|
4
|
+
getDefaultReportTemplate: string;
|
|
5
|
+
report: string;
|
|
6
|
+
formname: string;
|
|
7
|
+
reportToEditTemplate: string;
|
|
8
|
+
addReportToEditTemplate: string;
|
|
9
|
+
editReportToEditTemplate: string;
|
|
10
|
+
reportToPrint: string;
|
|
11
|
+
reportToTemplate: string;
|
|
12
|
+
uploadfile: string;
|
|
13
|
+
export: string;
|
|
14
|
+
exportToPdf: string;
|
|
15
|
+
default: string;
|
|
16
|
+
multiple: string;
|
|
17
|
+
byform: string;
|
|
18
|
+
withoutForm: string;
|
|
19
|
+
allformname: string;
|
|
20
|
+
updatelayout: string;
|
|
21
|
+
defaultReportTemplate: string;
|
|
22
|
+
addFromBuiltInTemplate: string;
|
|
23
|
+
addToBuiltInTemplate: string;
|
|
24
|
+
makeReportTemplateLayoutAsDefault: string;
|
|
25
|
+
getReportDescriminator: string;
|
|
26
|
+
deleteDefaultReportTemplateFile: string;
|
|
27
|
+
dashboardModule: string;
|
|
28
|
+
};
|
|
29
|
+
export declare const ReportingEndpoints: {
|
|
30
|
+
addToBuiltInTemplate: (reportUid: string) => string;
|
|
31
|
+
getDefaultReportTemplate: (formName: string) => string;
|
|
32
|
+
getReports: (key: string, descriminatorValue?: string) => string;
|
|
33
|
+
getEditionPersoReports: () => string;
|
|
34
|
+
getReportTemplateById: (key: string) => string;
|
|
35
|
+
addFromBuiltInTemplate: (formName: string, templateName: string, descriminatorValue?: string) => string;
|
|
36
|
+
deleteDefaultReportTemplate: (formName: string, templateName: string) => string;
|
|
37
|
+
addReportToModel: () => string;
|
|
38
|
+
addReportToPrint: () => string;
|
|
39
|
+
addReportToEditTemplate: () => string;
|
|
40
|
+
editReportToEditTemplate: () => string;
|
|
41
|
+
getAvailableFormNames: () => string;
|
|
42
|
+
exportReportFile: (reportTemplateUid: string) => string;
|
|
43
|
+
exportReportFileToPdf: (reportTemplateUid: string) => string;
|
|
44
|
+
uploadReportFile: (discriminatorValue?: string) => string;
|
|
45
|
+
deleteReport: (uid: string) => string;
|
|
46
|
+
setDefaultReport: (id: number) => string;
|
|
47
|
+
getDefaultReport: () => string;
|
|
48
|
+
deleteMultipleReports: () => string;
|
|
49
|
+
updateReportLayout: (id: number) => string;
|
|
50
|
+
makeReportLayoutAsDefaultLayout: () => string;
|
|
51
|
+
getReportDescriminator: (entityName: string, propertyName: string, propertyValue: string) => string;
|
|
52
|
+
getReportTemplateByModuleCode: (moduleCode: string) => string;
|
|
53
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const SharedSegments: {
|
|
2
|
+
objectInfo: string;
|
|
3
|
+
status: string;
|
|
4
|
+
getEntityStatusAsKeyValuePair: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const SharedEndPoints: {
|
|
7
|
+
getInfo: (classe: string, uid: string) => string;
|
|
8
|
+
getAllEntityStatus: (classeName: string | undefined) => string;
|
|
9
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export declare const IdentityPlatformSegments: {
|
|
2
|
+
tenants: string;
|
|
3
|
+
users: string;
|
|
4
|
+
userTenants: string;
|
|
5
|
+
parametres: string;
|
|
6
|
+
connectedUsers: string;
|
|
7
|
+
getAllPaged: string;
|
|
8
|
+
minimal: string;
|
|
9
|
+
allMinimal: string;
|
|
10
|
+
lockOpen: string;
|
|
11
|
+
logoutUser: string;
|
|
12
|
+
authentication: string;
|
|
13
|
+
login: string;
|
|
14
|
+
proceedLogin: string;
|
|
15
|
+
logout: string;
|
|
16
|
+
changePasswordInvalid: string;
|
|
17
|
+
clearPassword: string;
|
|
18
|
+
updateCurrentUserLight: string;
|
|
19
|
+
getCurrentUser: string;
|
|
20
|
+
getCurrentUserTenants: string;
|
|
21
|
+
progressBar: string;
|
|
22
|
+
getProgressBarByProcessName: string;
|
|
23
|
+
};
|
|
24
|
+
export declare const IdentityPlatformEndpoints: {
|
|
25
|
+
getAllUsersMinimal: () => string;
|
|
26
|
+
getUserMinimal: () => string;
|
|
27
|
+
getAllTenantsMinimal: () => string;
|
|
28
|
+
getTenantMinimal: () => string;
|
|
29
|
+
createTenant: () => string;
|
|
30
|
+
updateTenant: (uid: string) => string;
|
|
31
|
+
deleteTenant: (uid: string) => string;
|
|
32
|
+
getAllPaged: () => string;
|
|
33
|
+
getTenantById: (uid: string) => string;
|
|
34
|
+
createUserTenant: () => string;
|
|
35
|
+
updateUserTenant: (uid: string) => string;
|
|
36
|
+
deleteUserTenant: (uid: string) => string;
|
|
37
|
+
getAllUserTenantPaged: () => string;
|
|
38
|
+
getUserTenantById: (uid: string) => string;
|
|
39
|
+
createUser: () => string;
|
|
40
|
+
updateUser: (uid: string) => string;
|
|
41
|
+
deleteUser: (uid: string) => string;
|
|
42
|
+
getAllUserPaged: () => string;
|
|
43
|
+
getUserById: (uid: string) => string;
|
|
44
|
+
lockOpen: () => string;
|
|
45
|
+
changePasswordInvalid: () => string;
|
|
46
|
+
getMasterParameters: () => string;
|
|
47
|
+
updateMasterParameters: () => string;
|
|
48
|
+
getConnectedUsers: () => string;
|
|
49
|
+
logoutWithToken: () => string;
|
|
50
|
+
login: () => string;
|
|
51
|
+
proceedLogin: () => string;
|
|
52
|
+
logout: () => string;
|
|
53
|
+
getCurrentUser: () => string;
|
|
54
|
+
clearPassword: () => string;
|
|
55
|
+
getCurrentUserTenants: () => string;
|
|
56
|
+
updateProgressBar: (id: string) => string;
|
|
57
|
+
createProgressBar: () => string;
|
|
58
|
+
getProgressBarByProcessName: (processName: string) => string;
|
|
59
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare enum ClaimTypes {
|
|
2
|
+
TenantUid = "TenantUid",
|
|
3
|
+
PrimarySid = "http://schemas.microsoft.com/ws/2008/06/identity/claims/primarysid",
|
|
4
|
+
Email = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
|
|
5
|
+
Name = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name",
|
|
6
|
+
NameIdentifier = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier",
|
|
7
|
+
Surname = "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname",
|
|
8
|
+
Langue = "Langue",
|
|
9
|
+
Role = "http://schemas.microsoft.com/ws/2008/06/identity/claims/role",
|
|
10
|
+
Actor = "http://schemas.xmlsoap.org/ws/2009/09/identity/claims/actor",
|
|
11
|
+
IsSaasAdmin = "IsSaasAdmin",
|
|
12
|
+
IsTenantAdmin = "IsTenantAdmin"
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare enum Component_Modes {
|
|
2
|
+
/*** Components use modes ***/
|
|
3
|
+
EDIT = "EDIT",
|
|
4
|
+
CREATE = "CREATE",
|
|
5
|
+
DELETE = "DELETE",
|
|
6
|
+
CONSULT = "CONSULT",
|
|
7
|
+
DUPLICATE = "DUPLICATE"
|
|
8
|
+
}
|
|
9
|
+
export declare const Modes: {
|
|
10
|
+
/*** Components use modes ***/
|
|
11
|
+
edit: string;
|
|
12
|
+
create: string;
|
|
13
|
+
ComboAdd: string;
|
|
14
|
+
delete: string;
|
|
15
|
+
consult: string;
|
|
16
|
+
duplicate: string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare enum DisplayTypes {
|
|
2
|
+
CURRENCY_SOCIETE_DISPLAY = "currency-Societe-Display",
|
|
3
|
+
DATE_DISPLAY = "date-Display",
|
|
4
|
+
DATETIME_DISPLAY = "date-time-Display",
|
|
5
|
+
CHECKBOX_DISPLAY = "checkBox-Display",
|
|
6
|
+
RATE_DISPLAY = "rate-Display",
|
|
7
|
+
CURRENCY_OTHER_DISPLAY = "currency-Other-Display",
|
|
8
|
+
DECIMAL_DISPLAY = "decimal-Display",
|
|
9
|
+
INTEGER_DISPLAY = "integer-Display",
|
|
10
|
+
NESTED_PROP_DISPLAY = "display-Nested-Prop",
|
|
11
|
+
TEXT_DISPLAY = "text-Display",
|
|
12
|
+
IMAGE_DISPLAY = "image-Display"
|
|
13
|
+
}
|
|
14
|
+
export declare const NumericDisplayTypes: string[];
|
|
15
|
+
export declare const DisplayTypeColors: {
|
|
16
|
+
[key in DisplayTypes]: string;
|
|
17
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EnumDescription } from "../types/enum-description.type";
|
|
2
|
+
export declare enum FilterOperatorType {
|
|
3
|
+
EQUAL = 0,
|
|
4
|
+
LESSOREQUAL = 1,
|
|
5
|
+
GREATEROREQUAL = 2,
|
|
6
|
+
LESS = 3,
|
|
7
|
+
GREATER = 4,
|
|
8
|
+
NOTEQUAL = 5,
|
|
9
|
+
CONTAINS = 6,
|
|
10
|
+
STARTSWITH = 7,
|
|
11
|
+
ENDSWITH = 8,
|
|
12
|
+
DATEIS = 9,
|
|
13
|
+
DATEISNOT = 10,
|
|
14
|
+
DATEISBEFORE = 11,
|
|
15
|
+
DATEISAFTER = 12,
|
|
16
|
+
NOTCONTAINS = 13
|
|
17
|
+
}
|
|
18
|
+
export declare const FilterOperatorTypeDescriptions: EnumDescription<number>;
|