@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,45 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
|
|
3
|
+
import { TsiInputBase } from '../../../tsi-base/tsi-input-base/tsi-input-base.component';
|
|
4
|
+
import { LocalizePipe } from '../../../pipes/localize.pipe';
|
|
5
|
+
import { TsiNotificationService } from '../../../services/notification/tsi-notification.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TsiFileManagerComponent extends TsiInputBase<string | ArrayBuffer | undefined | null> {
|
|
8
|
+
private localize;
|
|
9
|
+
private notificationService;
|
|
10
|
+
private domSanitizer;
|
|
11
|
+
fileName: string | undefined;
|
|
12
|
+
name: string;
|
|
13
|
+
id: string | undefined;
|
|
14
|
+
accept: string;
|
|
15
|
+
maxFileSize: number;
|
|
16
|
+
multiple: boolean;
|
|
17
|
+
exploreOnDownload: boolean;
|
|
18
|
+
showUploadButton: boolean;
|
|
19
|
+
showCancelButton: boolean;
|
|
20
|
+
showDownloadButton: boolean;
|
|
21
|
+
chooseIcon: string;
|
|
22
|
+
chooseLabel: string;
|
|
23
|
+
showSelectButton: boolean;
|
|
24
|
+
showFileUpload: boolean;
|
|
25
|
+
onSelectFileManager: EventEmitter<any>;
|
|
26
|
+
onClear: EventEmitter<void>;
|
|
27
|
+
onRemove: EventEmitter<any>;
|
|
28
|
+
inputFieldChange: EventEmitter<any>;
|
|
29
|
+
fileNameChange: EventEmitter<string>;
|
|
30
|
+
imageUrl: string | null;
|
|
31
|
+
fileExtension?: string;
|
|
32
|
+
fileSizeError: string;
|
|
33
|
+
constructor(localize: LocalizePipe, notificationService: TsiNotificationService, domSanitizer: DomSanitizer);
|
|
34
|
+
getFileExtension(fileName: string): string | undefined;
|
|
35
|
+
onFileSelect(event: any): void;
|
|
36
|
+
onFileClear(): void;
|
|
37
|
+
onFileRemove(event: any): void;
|
|
38
|
+
convertFileToBase64(file: File): Promise<string>;
|
|
39
|
+
downloadFile(): void;
|
|
40
|
+
arrayBufferToBase64(buffer: ArrayBuffer): string;
|
|
41
|
+
get fileUrl(): SafeUrl;
|
|
42
|
+
fileExtensionImage(): boolean;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiFileManagerComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiFileManagerComponent, "Tsi-File-Manager", never, { "fileName": { "alias": "fileName"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "exploreOnDownload": { "alias": "exploreOnDownload"; "required": false; }; "showUploadButton": { "alias": "showUploadButton"; "required": false; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; }; "showDownloadButton": { "alias": "showDownloadButton"; "required": false; }; "chooseIcon": { "alias": "chooseIcon"; "required": false; }; "chooseLabel": { "alias": "chooseLabel"; "required": false; }; "showSelectButton": { "alias": "showSelectButton"; "required": false; }; "showFileUpload": { "alias": "showFileUpload"; "required": false; }; }, { "onSelectFileManager": "onSelectFileManager"; "onClear": "onClear"; "onRemove": "onRemove"; "inputFieldChange": "inputFieldChange"; "fileNameChange": "fileNameChange"; }, never, never, false, never>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { TsiInputBase } from '../../../tsi-base/tsi-input-base/tsi-input-base.component';
|
|
3
|
+
import { FormulaService } from '../../../services/formula.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TsiFormulaBoxComponent extends TsiInputBase {
|
|
6
|
+
private _formulaService;
|
|
7
|
+
cdRef: ChangeDetectorRef;
|
|
8
|
+
value: string;
|
|
9
|
+
endPoint: string;
|
|
10
|
+
valueChange: EventEmitter<string>;
|
|
11
|
+
suggestions: string[];
|
|
12
|
+
constructor(_formulaService: FormulaService, cdRef: ChangeDetectorRef);
|
|
13
|
+
onInputChange(val: string): void;
|
|
14
|
+
onSuggestionSelect(s: string): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiFormulaBoxComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiFormulaBoxComponent, "Tsi-Formula-Box", never, { "value": { "alias": "value"; "required": false; }; "endPoint": { "alias": "endPoint"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { TsiInputBase } from '../../../tsi-base/tsi-input-base/tsi-input-base.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TsiIntegerComponent extends TsiInputBase<number | undefined | string> {
|
|
6
|
+
class: any;
|
|
7
|
+
minValue?: number;
|
|
8
|
+
maxValue?: number;
|
|
9
|
+
delayChangeTime: number;
|
|
10
|
+
myFormControl: FormControl;
|
|
11
|
+
newItemEvent: EventEmitter<any>;
|
|
12
|
+
inputFieldChange: EventEmitter<any>;
|
|
13
|
+
infinityRef: number;
|
|
14
|
+
private isValueChanged;
|
|
15
|
+
valueChanged(): void;
|
|
16
|
+
onChangeofOptions(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiIntegerComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiIntegerComponent, "Tsi-Integer", never, { "class": { "alias": "class"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "delayChangeTime": { "alias": "delayChangeTime"; "required": false; }; }, { "newItemEvent": "newItemEvent"; "inputFieldChange": "inputFieldChange"; }, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { KeyValue } from '@angular/common';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { LayoutOrientation } from '../../../enums';
|
|
4
|
+
import { TsiInputBase } from '../../../tsi-base/tsi-input-base/tsi-input-base.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TsiRadioButtonComponent extends TsiInputBase<any> {
|
|
7
|
+
verticalLayoutOrientation: LayoutOrientation;
|
|
8
|
+
horizontalLayoutOrientation: LayoutOrientation;
|
|
9
|
+
dataSource?: Array<KeyValue<any, string>>;
|
|
10
|
+
class: any;
|
|
11
|
+
layoutOrientation: LayoutOrientation;
|
|
12
|
+
inputFieldChange: EventEmitter<string>;
|
|
13
|
+
onChangeofOptions(input: any): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiRadioButtonComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiRadioButtonComponent, "Tsi-Radio-Button", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "class": { "alias": "class"; "required": false; }; "layoutOrientation": { "alias": "layoutOrientation"; "required": false; }; }, { "inputFieldChange": "inputFieldChange"; }, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { TsiInputBase } from '../../../tsi-base/tsi-input-base/tsi-input-base.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TsiRateInputComponent extends TsiInputBase<number | undefined> implements OnInit {
|
|
5
|
+
required?: boolean;
|
|
6
|
+
isFraction?: boolean;
|
|
7
|
+
numOfDecimal?: number;
|
|
8
|
+
newItemEvent: EventEmitter<number>;
|
|
9
|
+
inputFieldChange: EventEmitter<number>;
|
|
10
|
+
private isValueChanged;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
valueChanged(): void;
|
|
13
|
+
onChangeofOptions(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiRateInputComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiRateInputComponent, "Tsi-Rate-Input", never, { "required": { "alias": "required"; "required": false; }; "isFraction": { "alias": "isFraction"; "required": false; }; "numOfDecimal": { "alias": "numOfDecimal"; "required": false; }; }, { "newItemEvent": "newItemEvent"; "inputFieldChange": "inputFieldChange"; }, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { ComboStatusModel } from '../../../interfaces';
|
|
5
|
+
import { TsiInputBase } from '../../../tsi-base/tsi-input-base/tsi-input-base.component';
|
|
6
|
+
import { EntityConfigurationService } from '../../../services/configuration/entity-configuration.service';
|
|
7
|
+
import { TsiNotificationService } from '../../../services/notification/tsi-notification.service';
|
|
8
|
+
import { TsiModalService } from '../../../services/modal/tsi-modal.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class TsiSearchComboComponent extends TsiInputBase<any> implements OnInit, OnDestroy {
|
|
11
|
+
entityConfigurationService: EntityConfigurationService;
|
|
12
|
+
private _tsiModalService;
|
|
13
|
+
private _messageService;
|
|
14
|
+
private _httpClient;
|
|
15
|
+
protected _cdRef?: ChangeDetectorRef | undefined;
|
|
16
|
+
private _datasource;
|
|
17
|
+
private _reloadSubscription;
|
|
18
|
+
private _isInputDatasource;
|
|
19
|
+
private _gottenDatasource;
|
|
20
|
+
private _bind?;
|
|
21
|
+
private _bindChangeEmitted;
|
|
22
|
+
private _currentRowItem?;
|
|
23
|
+
dataLoaded: boolean;
|
|
24
|
+
private _selected?;
|
|
25
|
+
private _dialogReference?;
|
|
26
|
+
isAr: boolean;
|
|
27
|
+
onEnterKey(event: any): void;
|
|
28
|
+
elementSourceUrl?: string;
|
|
29
|
+
listSourceUrl?: string | ((item: any) => string);
|
|
30
|
+
idField: string;
|
|
31
|
+
labelField: string;
|
|
32
|
+
multiple: boolean;
|
|
33
|
+
sort: boolean;
|
|
34
|
+
showClear: boolean;
|
|
35
|
+
reloadDataSource: Observable<any> | undefined;
|
|
36
|
+
isFiltered?: boolean;
|
|
37
|
+
selectedLabel?: string;
|
|
38
|
+
maxWidth: string;
|
|
39
|
+
businessClass: string;
|
|
40
|
+
get currentRowItem(): any;
|
|
41
|
+
set currentRowItem(value: any);
|
|
42
|
+
get datasource(): any[];
|
|
43
|
+
set datasource(datasource: any[]);
|
|
44
|
+
get bind(): any;
|
|
45
|
+
set bind(value: any);
|
|
46
|
+
bindChange: EventEmitter<any>;
|
|
47
|
+
dataSourceLoaded: EventEmitter<any>;
|
|
48
|
+
init: EventEmitter<ComboStatusModel>;
|
|
49
|
+
isLoaded: EventEmitter<ComboStatusModel>;
|
|
50
|
+
selectedLabelChange: EventEmitter<string>;
|
|
51
|
+
onClick: EventEmitter<any>;
|
|
52
|
+
onSearchButtonClick: EventEmitter<void>;
|
|
53
|
+
constructor(entityConfigurationService: EntityConfigurationService, _tsiModalService: TsiModalService, _messageService: TsiNotificationService, _httpClient: HttpClient, _cdRef?: ChangeDetectorRef | undefined);
|
|
54
|
+
ngOnDestroy(): void;
|
|
55
|
+
ngOnInit(): Promise<void>;
|
|
56
|
+
showSearchButton: boolean;
|
|
57
|
+
showAddButton: boolean;
|
|
58
|
+
showConsultButton?: boolean;
|
|
59
|
+
showUpdateButton?: boolean;
|
|
60
|
+
showAdvancedSearchButton: boolean;
|
|
61
|
+
checkIfAdvancedSearchComponentExists(): void;
|
|
62
|
+
checkIfFormNameExists(): Promise<void>;
|
|
63
|
+
openAdvancedSearchComponent(): void;
|
|
64
|
+
openSearchDialog(): void;
|
|
65
|
+
addElement(): void;
|
|
66
|
+
updateElement(): void;
|
|
67
|
+
consultElement(): void;
|
|
68
|
+
bindValueChanged(event: any): void;
|
|
69
|
+
searchValueChanged(searchValue: any): void;
|
|
70
|
+
onOpen(): void;
|
|
71
|
+
onHide(): void;
|
|
72
|
+
clearSelectedValue(): void;
|
|
73
|
+
private _loadDataSource;
|
|
74
|
+
private _loadServerSidePagedDataSource;
|
|
75
|
+
private _loadNotServerSidePagedDataSource;
|
|
76
|
+
private _loadBindElement;
|
|
77
|
+
private _compareFunction;
|
|
78
|
+
private _validateListInputs;
|
|
79
|
+
private _validateBindElementInputs;
|
|
80
|
+
private _initParametersWithDefaults;
|
|
81
|
+
private _initElementEndpoint;
|
|
82
|
+
private _initListDataSourceEndpoint;
|
|
83
|
+
private _initialLoadData;
|
|
84
|
+
private _onBindSet;
|
|
85
|
+
private _loadAllData;
|
|
86
|
+
private _initReloadDataSourceSubscription;
|
|
87
|
+
private _mapGottenDataSourceToLocalDatasource;
|
|
88
|
+
private _generateHttpParams;
|
|
89
|
+
onSearchComboClick(event: any): void;
|
|
90
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiSearchComboComponent, never>;
|
|
91
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiSearchComboComponent, "Tsi-Search-Combo", never, { "elementSourceUrl": { "alias": "elementSourceUrl"; "required": false; }; "listSourceUrl": { "alias": "listSourceUrl"; "required": false; }; "idField": { "alias": "id-field"; "required": false; }; "labelField": { "alias": "label-field"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "reloadDataSource": { "alias": "reloadDataSource"; "required": false; }; "isFiltered": { "alias": "isFiltered"; "required": false; }; "selectedLabel": { "alias": "selectedLabel"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "businessClass": { "alias": "businessClass"; "required": false; }; "currentRowItem": { "alias": "currentRowItem"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "bind": { "alias": "bind"; "required": false; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "showConsultButton": { "alias": "showConsultButton"; "required": false; }; "showUpdateButton": { "alias": "showUpdateButton"; "required": false; }; }, { "bindChange": "bindChange"; "dataSourceLoaded": "datasource-loaded"; "init": "init"; "isLoaded": "isLoaded"; "selectedLabelChange": "selectedLabelChange"; "onClick": "onClick"; "onSearchButtonClick": "onSearchButtonClick"; }, never, never, false, never>;
|
|
92
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { TsiInputBase } from '../../../tsi-base/tsi-input-base/tsi-input-base.component';
|
|
3
|
+
import { LocalizePipe } from '../../../pipes/localize.pipe';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TsiTextAreaComponent extends TsiInputBase<string | undefined> {
|
|
6
|
+
private _localizePipe;
|
|
7
|
+
rows?: number;
|
|
8
|
+
cols?: number;
|
|
9
|
+
newItemEvent: EventEmitter<string>;
|
|
10
|
+
inputFieldChange: EventEmitter<string>;
|
|
11
|
+
requiredMessage?: string;
|
|
12
|
+
maxLengthMessage?: string;
|
|
13
|
+
constructor(_localizePipe: LocalizePipe);
|
|
14
|
+
onChangeofOptions(input: string): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiTextAreaComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiTextAreaComponent, "Tsi-Text-Area", never, { "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; }, { "newItemEvent": "newItemEvent"; "inputFieldChange": "inputFieldChange"; }, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { TsiInputBase } from '../../../tsi-base/tsi-input-base/tsi-input-base.component';
|
|
4
|
+
import { AutoComplete } from '../../../enums';
|
|
5
|
+
import { LocalizePipe } from '../../../pipes/localize.pipe';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TsiTextBoxComponent extends TsiInputBase<string | undefined> {
|
|
8
|
+
private _localizePipe;
|
|
9
|
+
protected cdRef?: ChangeDetectorRef | undefined;
|
|
10
|
+
textBoxType: string;
|
|
11
|
+
autocomplete?: AutoComplete;
|
|
12
|
+
myFormControl: FormControl;
|
|
13
|
+
newItemEvent: EventEmitter<string>;
|
|
14
|
+
inputFieldChange: EventEmitter<string>;
|
|
15
|
+
requiredMessage?: string;
|
|
16
|
+
maxLengthMessage?: string;
|
|
17
|
+
constructor(_localizePipe: LocalizePipe, cdRef?: ChangeDetectorRef | undefined);
|
|
18
|
+
onChangeofOptions(input: string): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiTextBoxComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiTextBoxComponent, "Tsi-Text-Box", never, { "textBoxType": { "alias": "textBoxType"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; }, { "newItemEvent": "newItemEvent"; "inputFieldChange": "inputFieldChange"; }, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { TsiInputBase } from '../../../tsi-base/tsi-input-base/tsi-input-base.component';
|
|
3
|
+
import { TimeOnly } from '../../../types/time-only';
|
|
4
|
+
import { DateHelperService } from '../../../services/date-helper.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TsiTimePickerComponent extends TsiInputBase<TimeOnly | Date | string | undefined> {
|
|
7
|
+
private _dateHelperService;
|
|
8
|
+
private _value;
|
|
9
|
+
timeOnlyString: string | undefined;
|
|
10
|
+
datePickerFormat: string;
|
|
11
|
+
set inputField(value: TimeOnly | Date | string | undefined);
|
|
12
|
+
inputFieldChange: EventEmitter<string | Date | TimeOnly | undefined>;
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
constructor(_dateHelperService: DateHelperService);
|
|
17
|
+
onFocusOut(event: any): void;
|
|
18
|
+
onSelect(event: any): void;
|
|
19
|
+
_updateInputFieldFromStringDate(): void;
|
|
20
|
+
private _handleDateChange;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiTimePickerComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiTimePickerComponent, "tsi-time-picker", never, {}, { "inputFieldChange": "inputFieldChange"; }, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class LogoutPopupComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogoutPopupComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogoutPopupComponent, "app-logout-popup", never, {}, {}, never, never, false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { FileUpload } from 'primeng/fileupload';
|
|
3
|
+
import { TsiViewGridComponent } from '../output-components/tsi-view-grid/tsi-view-grid.component';
|
|
4
|
+
import { TooltipPosition } from '../../enums/tooltipPosition.enum';
|
|
5
|
+
import { GridColumn, ButtonClickResult } from '../../interfaces';
|
|
6
|
+
import { SearchField } from '../../models';
|
|
7
|
+
import { ModeleImportService, TsiConfirmationService, TsiNotificationService, ErrorResponseManagerService, TsiModalService } from '../../services';
|
|
8
|
+
import { TsiFormComponentBaseComponent } from '../../tsi-base/components/tsi-form-base/tsi-form-base.component';
|
|
9
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class ManageImportExportComponent extends TsiFormComponentBaseComponent implements OnInit, OnDestroy {
|
|
12
|
+
modeleImportService: ModeleImportService;
|
|
13
|
+
private confirmationService;
|
|
14
|
+
private notificationService;
|
|
15
|
+
config: DynamicDialogConfig;
|
|
16
|
+
private _tsiModalService;
|
|
17
|
+
private _errorResponseManagerService;
|
|
18
|
+
ref?: DynamicDialogRef<any> | undefined;
|
|
19
|
+
gridComponent: TsiViewGridComponent;
|
|
20
|
+
fileUploader: FileUpload;
|
|
21
|
+
viewGridComponent?: TsiViewGridComponent;
|
|
22
|
+
tooltipPosition: typeof TooltipPosition;
|
|
23
|
+
toUploadFileData: any;
|
|
24
|
+
onRemove($event: any): void;
|
|
25
|
+
onClear($event: any): void;
|
|
26
|
+
onFileSelected(event: any): void;
|
|
27
|
+
onImportFile(event: any): void;
|
|
28
|
+
columnsJson: Array<GridColumn>;
|
|
29
|
+
key: string;
|
|
30
|
+
gridData: any;
|
|
31
|
+
importFileToExecuteFileUpload?: FileUpload;
|
|
32
|
+
columns: any;
|
|
33
|
+
isImportFileToExecuteVisible: boolean;
|
|
34
|
+
toUploadToExecuteFile: any;
|
|
35
|
+
toUploadWithoutModel: any;
|
|
36
|
+
toImportModeleUid?: string;
|
|
37
|
+
columnsHistory: Array<GridColumn>;
|
|
38
|
+
historyGridData: any;
|
|
39
|
+
importHistoryKey: string;
|
|
40
|
+
searchFields: Array<SearchField>;
|
|
41
|
+
private _dialogRef?;
|
|
42
|
+
constructor(modeleImportService: ModeleImportService, confirmationService: TsiConfirmationService, notificationService: TsiNotificationService, config: DynamicDialogConfig, _tsiModalService: TsiModalService, _errorResponseManagerService: ErrorResponseManagerService, ref?: DynamicDialogRef<any> | undefined);
|
|
43
|
+
ngOnInit(): Promise<void>;
|
|
44
|
+
openModal(): void;
|
|
45
|
+
buttonClicked(data: ButtonClickResult): void;
|
|
46
|
+
exportData(id: string): void;
|
|
47
|
+
exportDataJson(id: string): void;
|
|
48
|
+
exportDataJsonServer(id: string): void;
|
|
49
|
+
downloadFile(data: any): void;
|
|
50
|
+
deleteModeleImport(data: any): void;
|
|
51
|
+
onImportFileToExecute_FileSelected(event: any): void;
|
|
52
|
+
onImportFileToExecute_Clear(event: any): void;
|
|
53
|
+
onImportFileToExecute_Remove(event: any): void;
|
|
54
|
+
onImportFileToExecute_ImportFile(event: any): void;
|
|
55
|
+
onImportFileWithoutModel_FileSelected(event: any): void;
|
|
56
|
+
onImportFileWithoutModel_Clear(event: any): void;
|
|
57
|
+
onImportFileWithoutModel_Remove(event: any): void;
|
|
58
|
+
onImportFileWithoutModel_ImportFile(event: any): void;
|
|
59
|
+
loadGridData(): void;
|
|
60
|
+
refreshGrid(): void;
|
|
61
|
+
handleButtonColumnExecuteClicked(event: ButtonClickResult): void;
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ManageImportExportComponent, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ManageImportExportComponent, "app-manage-import-export", never, {}, {}, never, never, false, never>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
|
+
import { TsiReportType } from '../../../enums';
|
|
4
|
+
import { TsiFormComponentBaseComponent } from '../../../tsi-base/components/tsi-form-base/tsi-form-base.component';
|
|
5
|
+
import { DashboardModuleService } from '../../../services/reporting/dashboard-module.service';
|
|
6
|
+
import { ReportingService } from '../../../services/reporting/reporting.service';
|
|
7
|
+
import { TsiNotificationService } from '../../../services/notification/tsi-notification.service';
|
|
8
|
+
import { TsiConfirmationService } from '../../../services/notification/tsi-confirmation.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class AddReportPopupComponent extends TsiFormComponentBaseComponent implements OnInit {
|
|
11
|
+
ref: DynamicDialogRef;
|
|
12
|
+
reportingService: ReportingService;
|
|
13
|
+
config: DynamicDialogConfig;
|
|
14
|
+
private notificationService;
|
|
15
|
+
private dashboardModuleService;
|
|
16
|
+
private _confirm;
|
|
17
|
+
dataSource: {
|
|
18
|
+
key: TsiReportType;
|
|
19
|
+
value: string;
|
|
20
|
+
}[];
|
|
21
|
+
isGetByIdRequest: boolean;
|
|
22
|
+
modes: {
|
|
23
|
+
edit: string;
|
|
24
|
+
create: string;
|
|
25
|
+
ComboAdd: string;
|
|
26
|
+
delete: string;
|
|
27
|
+
consult: string;
|
|
28
|
+
duplicate: string;
|
|
29
|
+
};
|
|
30
|
+
isEditionPersonnalise: boolean;
|
|
31
|
+
administrationEndpoints: {
|
|
32
|
+
getAllEntityStatus: (classeName: string | undefined) => string;
|
|
33
|
+
getAffectationUtilisateur: (type: string) => string;
|
|
34
|
+
getAllFiltredByIdObject: (targetId: string) => string;
|
|
35
|
+
getAllFiltredByUidObject: (objectId: string) => string;
|
|
36
|
+
getAllClassw: () => string;
|
|
37
|
+
getAllClasswMinimal: () => string;
|
|
38
|
+
getClasswMinimal: () => string;
|
|
39
|
+
getAllClasswEtat: () => string;
|
|
40
|
+
getAllClasswEtatMinimal: () => string;
|
|
41
|
+
getClasswEtatMinimal: () => string;
|
|
42
|
+
getWorkflowEtatAsKeyValuePair: () => string;
|
|
43
|
+
getWorkflowEtatFonctionnaliteAsKeyValuePair: () => string;
|
|
44
|
+
getAllWorkflowEtatFonctionnaliteAsKeyValuePair: () => string;
|
|
45
|
+
getAsKeyValuePairByClasswId: (id?: string | undefined) => string;
|
|
46
|
+
getAsKeyValuePairByWorkflowId: (id?: string | undefined) => string;
|
|
47
|
+
updateWorkflowList: () => string;
|
|
48
|
+
getFonctionnaliteAsKeyValuePairByWorkflowEtatUid: (id?: string | undefined) => string;
|
|
49
|
+
getAllClasswEtatAsKeyPairValue: () => string;
|
|
50
|
+
getAllWorkflow: () => string;
|
|
51
|
+
getAllWorkflowAsKeyValuePair: () => string;
|
|
52
|
+
getWorkflowAsKeyValuePair: () => string;
|
|
53
|
+
getAllFonctionnalite: () => string;
|
|
54
|
+
getAllFonctionnaliteWorkflowByClassW: (classeW?: string | undefined) => string;
|
|
55
|
+
getFonctionnaliteAsKeyValuePair: () => string;
|
|
56
|
+
getFonctionnaliteAutoriseAsKeyValuePair: () => string;
|
|
57
|
+
getAllTypeFonctionnaliteEnum: () => string;
|
|
58
|
+
getAllWorkflowInstance: () => string;
|
|
59
|
+
getAllWorkflowInstanceAsKeyValuePair: () => string;
|
|
60
|
+
getWorkflowInstanceAsKeyValuePair: () => string;
|
|
61
|
+
getWorkflowAsKeyValuePairByClasswId: (id?: string | undefined) => string;
|
|
62
|
+
getWorkflowInstanceAsKeyValuePairByWorkflowId: (id?: string | undefined) => string;
|
|
63
|
+
getAllGroupeMinimal: () => string;
|
|
64
|
+
getGroupeMinimal: () => string;
|
|
65
|
+
getLangueEnum: () => string;
|
|
66
|
+
getNiveauEnum: () => string;
|
|
67
|
+
getConnexionEnum: () => string;
|
|
68
|
+
getAdminConnexionEnum: () => string;
|
|
69
|
+
getAffichageAlerteEnum: () => string;
|
|
70
|
+
getFonctionnalitesAsKeyValuePair: () => string;
|
|
71
|
+
getAllFonctionnalitesAsKeyValuePairBySousMenuId: (moduleId?: string | undefined, menuId?: string | undefined, sousMenuId?: string | undefined) => string;
|
|
72
|
+
enableAllSelectedPermissions: () => string;
|
|
73
|
+
disableAllSelectedPermissions: () => string;
|
|
74
|
+
enableAllFiltredPermissions: () => string;
|
|
75
|
+
disableAllFiltredPermissions: () => string;
|
|
76
|
+
getModuleMinimal: () => string;
|
|
77
|
+
getAllModuleMinimal: () => string;
|
|
78
|
+
getMenuMinimal: () => string;
|
|
79
|
+
getAllMenusAsKeyValuePairByModuleId: (id?: string | undefined) => string;
|
|
80
|
+
getSousMenuAsKeyValuePair: () => string;
|
|
81
|
+
getAllSousMenusAsKeyValuePairByMenuId: (id?: string | undefined) => string;
|
|
82
|
+
GetCurrentUser: () => string;
|
|
83
|
+
GetCurrentUserWithRoles: () => string;
|
|
84
|
+
GetSqlFiles: () => string;
|
|
85
|
+
GetSqlText: (id: string) => string;
|
|
86
|
+
ExecuteSqlFiles: () => string;
|
|
87
|
+
ExecuteAllSqlFiles: () => string;
|
|
88
|
+
getAllUtilisateurMinimal: () => string;
|
|
89
|
+
getUtilisateurMinimal: () => string;
|
|
90
|
+
getAllClasseMinimal: () => string;
|
|
91
|
+
getClasseMinimal: () => string;
|
|
92
|
+
getEntityWorklfowInstanceInformation: () => string;
|
|
93
|
+
getWorkflowEtatSuivantByWorkflowEtat: (workflowEtatUid: string) => string;
|
|
94
|
+
updateEntityWorkflowInformation: () => string;
|
|
95
|
+
updateCurrentUserLight: () => string;
|
|
96
|
+
importAllWorkflowClasses: () => string;
|
|
97
|
+
clearPassword: () => string;
|
|
98
|
+
changePassword: () => string;
|
|
99
|
+
updateMasterParameters: () => string;
|
|
100
|
+
changePasswordInvalid: () => string;
|
|
101
|
+
getEntityInformations: (businessClassName: string) => string;
|
|
102
|
+
getEntityInformationsAndRelations: (businessClass: string) => string;
|
|
103
|
+
GetAllEntitiesInformations: () => string;
|
|
104
|
+
createOrUpdateEntityInformations: () => string;
|
|
105
|
+
deleteEntityInformations: (className: string) => string;
|
|
106
|
+
getClasswByNom: () => string;
|
|
107
|
+
getEntityColumns: (businessClassName: string) => string;
|
|
108
|
+
getWorkflowConditionPassageOperatorEnum: () => string;
|
|
109
|
+
getConnectedUsers: () => string;
|
|
110
|
+
getWorkflowEtatFormByClassName: (className: string) => string;
|
|
111
|
+
getAlertByCodeModule: (codeModule: string, alertDisplay: string) => string;
|
|
112
|
+
getColonnesByClassNameAsKeyValuePair: (parentEntityName: string, columnName?: string | undefined) => string;
|
|
113
|
+
getDescriminatorValuesByClassName: (className: string) => string;
|
|
114
|
+
getAllTypeColonneEnumAsync: () => string;
|
|
115
|
+
getMenuInfo: () => string;
|
|
116
|
+
refreshMenu: () => string;
|
|
117
|
+
getApiAsKeyValuePair: () => string;
|
|
118
|
+
getAllApiAsKeyValuePair: () => string;
|
|
119
|
+
getAllApiAsKeyValuePairByBusinessClassName: (businessClass?: string | undefined) => string;
|
|
120
|
+
getEntityRelations: () => string;
|
|
121
|
+
getEntityValidations: (businessClass: string) => string;
|
|
122
|
+
getEndpointsInfos: (businessClass: string) => string;
|
|
123
|
+
};
|
|
124
|
+
reportBusinessClass?: string;
|
|
125
|
+
customReportingMode?: boolean;
|
|
126
|
+
private _isReportForFiche;
|
|
127
|
+
get isReportForFiche(): boolean;
|
|
128
|
+
report: {
|
|
129
|
+
reportType: string;
|
|
130
|
+
reportName: string;
|
|
131
|
+
reportNameAbrege: string;
|
|
132
|
+
triOrdre: number;
|
|
133
|
+
module: string;
|
|
134
|
+
impress: string;
|
|
135
|
+
editionUnique: boolean;
|
|
136
|
+
endPointKey: string;
|
|
137
|
+
endPointValue: string;
|
|
138
|
+
param: string;
|
|
139
|
+
formName: string;
|
|
140
|
+
display: boolean;
|
|
141
|
+
};
|
|
142
|
+
modules: any[];
|
|
143
|
+
constructor(ref: DynamicDialogRef, reportingService: ReportingService, config: DynamicDialogConfig, notificationService: TsiNotificationService, dashboardModuleService: DashboardModuleService, _confirm: TsiConfirmationService);
|
|
144
|
+
ngOnInit(): void;
|
|
145
|
+
reportTypeChange(evt: any): void;
|
|
146
|
+
save(): void;
|
|
147
|
+
selectedEndpointChange(endpointValue: any): void;
|
|
148
|
+
private getAllModules;
|
|
149
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AddReportPopupComponent, never>;
|
|
150
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddReportPopupComponent, "app-add-report-popup", never, {}, {}, never, never, false, never>;
|
|
151
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { FileUpload } from 'primeng/fileupload';
|
|
4
|
+
import { TooltipPosition } from '../../enums/tooltipPosition.enum';
|
|
5
|
+
import { ButtonType } from '../../enums/button-type.enum';
|
|
6
|
+
import { GridSelectionMode, HttpMethodType } from '../../enums';
|
|
7
|
+
import { GridColumn, ButtonClickResult } from '../../interfaces';
|
|
8
|
+
import { ReportTemplateResponse, JsonDataConnection, KeyValuePair, OptionalEndpoints } from '../../models';
|
|
9
|
+
import { ReportingService, IdentityManagerService, TsiConfirmationService, TsiNotificationService, TsiModalService } from '../../services';
|
|
10
|
+
import { TsiFormComponentBaseComponent } from '../../tsi-base/components/tsi-form-base/tsi-form-base.component';
|
|
11
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
export declare class ManageReportingComponent extends TsiFormComponentBaseComponent implements OnInit, OnDestroy {
|
|
14
|
+
private reportingService;
|
|
15
|
+
private identityManagerService;
|
|
16
|
+
private confirmationService;
|
|
17
|
+
private notificationService;
|
|
18
|
+
ref: DynamicDialogRef;
|
|
19
|
+
config: DynamicDialogConfig;
|
|
20
|
+
private _tsiModalService;
|
|
21
|
+
private router;
|
|
22
|
+
readonly EDITION_PERSONNALISE = "app-edition-personnalise";
|
|
23
|
+
reports: ReportTemplateResponse[];
|
|
24
|
+
jsonDataConnection: JsonDataConnection | undefined;
|
|
25
|
+
jsonDataConnectionId: number | undefined;
|
|
26
|
+
reportToPrintId: number | undefined;
|
|
27
|
+
toUploadFileData: any;
|
|
28
|
+
columns: GridColumn[];
|
|
29
|
+
isFromForm: boolean;
|
|
30
|
+
formNames: KeyValuePair<string, string>[];
|
|
31
|
+
selectedReports: number[];
|
|
32
|
+
selectionMode: GridSelectionMode;
|
|
33
|
+
getFormNamesEndpoint: string;
|
|
34
|
+
globalFilterFields: string[];
|
|
35
|
+
refreshJobTimeOut: any;
|
|
36
|
+
previousFormName: string;
|
|
37
|
+
isUpdateReportFromFileDialogVisible: boolean;
|
|
38
|
+
toUploadToUpdateReportFileData: any;
|
|
39
|
+
selectedReportToUpdateFromFile: number | undefined;
|
|
40
|
+
defaultReportTemplateData: string[];
|
|
41
|
+
defaultTemplateColumns: GridColumn[];
|
|
42
|
+
tooltipPosition: typeof TooltipPosition;
|
|
43
|
+
private _dialogRef?;
|
|
44
|
+
isEditionPersonnalise: boolean;
|
|
45
|
+
entityId?: string;
|
|
46
|
+
reportDiscriminator?: any;
|
|
47
|
+
httpMethodType?: HttpMethodType;
|
|
48
|
+
requestData?: any;
|
|
49
|
+
private static readonly reportTypeLabels;
|
|
50
|
+
private _isReportForFiche;
|
|
51
|
+
get isReportForFiche(): boolean;
|
|
52
|
+
fileUpload?: FileUpload;
|
|
53
|
+
importFileToReportFileUpload?: FileUpload;
|
|
54
|
+
private readonly errorMessageKey;
|
|
55
|
+
private readonly dashboardModuleRoute;
|
|
56
|
+
buttonType: typeof ButtonType;
|
|
57
|
+
otherFormName: string | undefined;
|
|
58
|
+
otherFormEndpoint: string | undefined;
|
|
59
|
+
formEndpointBody: string | undefined;
|
|
60
|
+
isFormEndpointPaged: boolean;
|
|
61
|
+
filtersHtmlTemplate: string | undefined;
|
|
62
|
+
optionalEndpoints?: OptionalEndpoints;
|
|
63
|
+
customReportingMode?: boolean;
|
|
64
|
+
constructor(reportingService: ReportingService, identityManagerService: IdentityManagerService, confirmationService: TsiConfirmationService, notificationService: TsiNotificationService, ref: DynamicDialogRef, config: DynamicDialogConfig, _tsiModalService: TsiModalService, router: Router);
|
|
65
|
+
checkIfIsDevMode(): void;
|
|
66
|
+
ngOnInit(): Promise<void>;
|
|
67
|
+
ngOnDestroy(): void;
|
|
68
|
+
onRefresh(): Promise<void>;
|
|
69
|
+
onPrintDefault(event: any): void;
|
|
70
|
+
onFileSelected(event: any): void;
|
|
71
|
+
onImportFile(event: any): void;
|
|
72
|
+
onClear(event: any): void;
|
|
73
|
+
onRemove(event: any): void;
|
|
74
|
+
handleButtonColumnClicked(event: ButtonClickResult): void;
|
|
75
|
+
deleteDefaultReportFile(fileName: any): void;
|
|
76
|
+
onDeleteSelectedReports(): void;
|
|
77
|
+
onNewReport(): void;
|
|
78
|
+
private _closeModal;
|
|
79
|
+
onFormChange(): Promise<void>;
|
|
80
|
+
onImportFileToReportModalCancelClick(): void;
|
|
81
|
+
onImportFileToReportModalSaveClick(): void;
|
|
82
|
+
onImportFileToReport_FileSelected(event: any): void;
|
|
83
|
+
onImportFileToReport_ImportFile(event: any): void;
|
|
84
|
+
onImportFileToReport_Clear(event: any): void;
|
|
85
|
+
onImportFileToReport_Remove(event: any): void;
|
|
86
|
+
private getFormName;
|
|
87
|
+
private _refreshReports;
|
|
88
|
+
_viewReport(uid: string): void;
|
|
89
|
+
_sendReport(uid: string): void;
|
|
90
|
+
_editReport(uid: string): void;
|
|
91
|
+
private _deleteReport;
|
|
92
|
+
private _setDefaultReport;
|
|
93
|
+
private _exportReport;
|
|
94
|
+
private _importToReport;
|
|
95
|
+
private _newJsonDataConnection;
|
|
96
|
+
private _newReportToPrint;
|
|
97
|
+
private _newReportToTemplate;
|
|
98
|
+
private _newReportToEditTemplate;
|
|
99
|
+
private _refreshReportsJob;
|
|
100
|
+
private _showImportFileToReportDialog;
|
|
101
|
+
private _hideImportFileToReportDialog;
|
|
102
|
+
previewBuiltInReportTemplate(templateName: string): void;
|
|
103
|
+
_addFromBuiltInTemplates(templateName: any): void;
|
|
104
|
+
_addToBuiltInTemplates(reportId: string): void;
|
|
105
|
+
makeReportDefaultLayout(reportUid: string): void;
|
|
106
|
+
_viewDashboardt(uid: string): void;
|
|
107
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ManageReportingComponent, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ManageReportingComponent, "app-manage-reporting", never, { "otherFormName": { "alias": "otherFormName"; "required": false; }; "otherFormEndpoint": { "alias": "otherFormEndpoint"; "required": false; }; "formEndpointBody": { "alias": "formEndpointBody"; "required": false; }; "isFormEndpointPaged": { "alias": "isFormEndpointPaged"; "required": false; }; "filtersHtmlTemplate": { "alias": "filtersHtmlTemplate"; "required": false; }; "optionalEndpoints": { "alias": "optionalEndpoints"; "required": false; }; "customReportingMode": { "alias": "customReportingMode"; "required": false; }; }, {}, never, never, false, never>;
|
|
109
|
+
}
|
package/lib/tsi-components/message-components/tsi-error-message/tsi-error-message.component.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TsiErrorMessageComponent implements OnInit {
|
|
5
|
+
private _modalRef;
|
|
6
|
+
private _conf;
|
|
7
|
+
message?: string;
|
|
8
|
+
messages: string[];
|
|
9
|
+
isMessages: boolean;
|
|
10
|
+
constructor(_modalRef: DynamicDialogRef, _conf: DynamicDialogConfig);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
onCancel(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiErrorMessageComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiErrorMessageComponent, "app-tsi-error-message", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
package/lib/tsi-components/message-components/tsi-info-message/tsi-info-message.component.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TsiInfoMessageComponent implements OnInit {
|
|
5
|
+
private _modalRef;
|
|
6
|
+
private _conf;
|
|
7
|
+
message: string;
|
|
8
|
+
constructor(_modalRef: DynamicDialogRef, _conf: DynamicDialogConfig);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
onCancel(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiInfoMessageComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiInfoMessageComponent, "app-tsi-info-message", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|