@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,156 @@
|
|
|
1
|
+
import { AfterContentChecked, ChangeDetectorRef, EnvironmentInjector, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { MenuItem } from 'primeng/api';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { ButtonType } from '../../enums/button-type.enum';
|
|
5
|
+
import { TsiGenericGridComponent } from '../output-components/tsi-generic-grid/tsi-generic-grid.component';
|
|
6
|
+
import { TooltipPosition } from '../../enums/tooltipPosition.enum';
|
|
7
|
+
import { entityInfo } from '../../models/entity-info/entity-info';
|
|
8
|
+
import { ButtonClickResult, GridColumn, IGridConfiguration, IModalSize, IPage, IPagedRequest } from '../../interfaces';
|
|
9
|
+
import { CrudBaseService } from '../../services/base/crud-base.service';
|
|
10
|
+
import { PresentationSetting } from '../../models/presentation-settings/presentation-settings';
|
|
11
|
+
import { EventSchema, SearchField, workflowInstanceInformationResponse } from '../../models';
|
|
12
|
+
import { GridSelectionMode } from '../../enums/grid-selection-mode';
|
|
13
|
+
import { DialogDataService } from '../../services/dialog-data.service';
|
|
14
|
+
import { FichierUploadService } from '../../services/fichier/fichier-upload.service';
|
|
15
|
+
import { RecordInfoPopupService } from '../../services/record-info-popup.service';
|
|
16
|
+
import { WorkflowConfigurationService } from '../../services/workflow/workflow-configuration.service';
|
|
17
|
+
import { EntityConfigurationService } from '../../services/configuration/entity-configuration.service';
|
|
18
|
+
import { LocalizePipe } from '../../pipes/localize.pipe';
|
|
19
|
+
import { TsiNotificationService } from '../../services/notification/tsi-notification.service';
|
|
20
|
+
import { NoteService } from '../../services/Note/Note.service';
|
|
21
|
+
import { TsiModalService } from '../../services/modal/tsi-modal.service';
|
|
22
|
+
import * as i0 from "@angular/core";
|
|
23
|
+
export declare class TsiGenericCrudComponent implements OnInit, AfterContentChecked {
|
|
24
|
+
private _messageService;
|
|
25
|
+
private _tsiModalService;
|
|
26
|
+
private _cdRef;
|
|
27
|
+
private localize;
|
|
28
|
+
private dialogDataService;
|
|
29
|
+
private fichierService;
|
|
30
|
+
private recordInfoPopupService;
|
|
31
|
+
private _workflowConfigurationService;
|
|
32
|
+
private _entityConfigService;
|
|
33
|
+
private notesService;
|
|
34
|
+
private _injector;
|
|
35
|
+
private _dialogRef?;
|
|
36
|
+
private _formEndpoint;
|
|
37
|
+
protected filterIcon: string;
|
|
38
|
+
protected filterTooltip: string;
|
|
39
|
+
private _isWorkflowEtatFormLoaded;
|
|
40
|
+
buttonType: typeof ButtonType;
|
|
41
|
+
tooltipPosition: typeof TooltipPosition;
|
|
42
|
+
configModeButtonId: string;
|
|
43
|
+
savePropertiesButtonClassName: string;
|
|
44
|
+
entityInfo: entityInfo | undefined;
|
|
45
|
+
items?: any[];
|
|
46
|
+
pagedRequest: IPagedRequest;
|
|
47
|
+
page: IPage<any>;
|
|
48
|
+
first: number;
|
|
49
|
+
rows: number;
|
|
50
|
+
formEndpointBody: string | undefined;
|
|
51
|
+
filtersHtmlTemplate?: string;
|
|
52
|
+
selectedColumns: GridColumn[];
|
|
53
|
+
_searchOnInit: boolean;
|
|
54
|
+
private _modalData;
|
|
55
|
+
genericGridComponent?: TsiGenericGridComponent;
|
|
56
|
+
set modalData(value: any);
|
|
57
|
+
columns: GridColumn[];
|
|
58
|
+
gridConfiguration?: IGridConfiguration;
|
|
59
|
+
cudComponent: any;
|
|
60
|
+
crudService?: CrudBaseService<any, any, any, any>;
|
|
61
|
+
header: string;
|
|
62
|
+
modalSize?: IModalSize;
|
|
63
|
+
descriminatorValue?: string;
|
|
64
|
+
presentationSettings?: PresentationSetting;
|
|
65
|
+
preventAddEvent?: boolean;
|
|
66
|
+
set formEndpoint(value: string | undefined);
|
|
67
|
+
get formEndpoint(): string | undefined;
|
|
68
|
+
private _formName?;
|
|
69
|
+
get formName(): string | undefined;
|
|
70
|
+
set formName(value: string | undefined);
|
|
71
|
+
private _isSearchButtonDisabled;
|
|
72
|
+
set isSearchButtonDisabled(value: boolean);
|
|
73
|
+
get isSearchButtonDisabled(): boolean;
|
|
74
|
+
showHeaderFilters: boolean;
|
|
75
|
+
showEditButton: boolean;
|
|
76
|
+
showDeleteButton: boolean;
|
|
77
|
+
showAddButton: boolean;
|
|
78
|
+
showConsultButton: boolean;
|
|
79
|
+
showUploadButton: boolean;
|
|
80
|
+
showNoteButton: boolean;
|
|
81
|
+
showDownloadButton: boolean;
|
|
82
|
+
showInfoButton: boolean;
|
|
83
|
+
showSearchField: boolean;
|
|
84
|
+
searchFields: SearchField[] | undefined;
|
|
85
|
+
showCalenderView: boolean;
|
|
86
|
+
calenderSchema: EventSchema | undefined;
|
|
87
|
+
showCardView: boolean;
|
|
88
|
+
showKanbanView: boolean;
|
|
89
|
+
showDuplicateButton: boolean;
|
|
90
|
+
selectKeyOnly: boolean;
|
|
91
|
+
selectionMode: GridSelectionMode;
|
|
92
|
+
selectedItems: Array<any>;
|
|
93
|
+
key: string;
|
|
94
|
+
id?: string;
|
|
95
|
+
_businessClass: string | undefined;
|
|
96
|
+
get businessClass(): string | undefined;
|
|
97
|
+
set businessClass(value: string | undefined);
|
|
98
|
+
set searchOnInit(value: boolean);
|
|
99
|
+
get searchOnInit(): boolean;
|
|
100
|
+
showGlobalSearch: boolean;
|
|
101
|
+
showExportButton: boolean;
|
|
102
|
+
showReporting: boolean;
|
|
103
|
+
selectedItemsChange: EventEmitter<Array<any>>;
|
|
104
|
+
searchFieldsValueChanged: EventEmitter<Array<SearchField>>;
|
|
105
|
+
buttonColumnClicked: EventEmitter<ButtonClickResult>;
|
|
106
|
+
clickCount: number;
|
|
107
|
+
currentIcon: string;
|
|
108
|
+
currentTooltip: string;
|
|
109
|
+
viewOptions: MenuItem[];
|
|
110
|
+
page$: BehaviorSubject<any>;
|
|
111
|
+
constructor(_messageService: TsiNotificationService, _tsiModalService: TsiModalService, _cdRef: ChangeDetectorRef, localize: LocalizePipe, dialogDataService: DialogDataService, fichierService: FichierUploadService, recordInfoPopupService: RecordInfoPopupService, _workflowConfigurationService: WorkflowConfigurationService, _entityConfigService: EntityConfigurationService, notesService: NoteService, _injector: EnvironmentInjector);
|
|
112
|
+
ngAfterContentChecked(): void;
|
|
113
|
+
getState(): import("primeng/api").TableState | null | undefined;
|
|
114
|
+
restoreState(configuration: string): void;
|
|
115
|
+
resetSelectedColumns(configuration: string): void;
|
|
116
|
+
getWorkflowEtatFormForCurrentBusinessClass(): Promise<void>;
|
|
117
|
+
getWorkflowEntityInformation(businessClass: string, uidObject?: string): Promise<workflowInstanceInformationResponse | undefined>;
|
|
118
|
+
searchFieldValueChanges(newSearchFieldValues: Array<SearchField>): void;
|
|
119
|
+
ngOnInit(): void;
|
|
120
|
+
isLastPage(): boolean;
|
|
121
|
+
isFirstPage(): boolean;
|
|
122
|
+
/**
|
|
123
|
+
* LazyLoad
|
|
124
|
+
*/
|
|
125
|
+
openNew(): void;
|
|
126
|
+
handleButtonColumnClicked(event: ButtonClickResult): Promise<void>;
|
|
127
|
+
saveFile(base64Data: any, fileName: string): void;
|
|
128
|
+
load(event: {
|
|
129
|
+
request: IPagedRequest;
|
|
130
|
+
isForCalendar: boolean;
|
|
131
|
+
}): void;
|
|
132
|
+
onSelectedItemsChange(event: any): void;
|
|
133
|
+
private _setformEndpointBody;
|
|
134
|
+
private _initModels;
|
|
135
|
+
private _loadDS;
|
|
136
|
+
private _editRow;
|
|
137
|
+
private _deleteRow;
|
|
138
|
+
private _consultRow;
|
|
139
|
+
private _duplicateRow;
|
|
140
|
+
private _openModal;
|
|
141
|
+
private _closeModal;
|
|
142
|
+
private _clonePagedRequest;
|
|
143
|
+
refresh(data: any): void;
|
|
144
|
+
displaySearchFields(): void;
|
|
145
|
+
handleCalendarEventClick(item: any): void;
|
|
146
|
+
private toggleListView;
|
|
147
|
+
private toggleCalenderView;
|
|
148
|
+
private toggleCardView;
|
|
149
|
+
private toggleKanbanView;
|
|
150
|
+
handleKeyDown(event: KeyboardEvent): void;
|
|
151
|
+
handleActionViewClick(): void;
|
|
152
|
+
private _handleActionWithAlertCheck;
|
|
153
|
+
onStatusFilterChanged(evt: any): void;
|
|
154
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiGenericCrudComponent, never>;
|
|
155
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiGenericCrudComponent, "Tsi-Generic-Crud", never, { "entityInfo": { "alias": "entityInfo"; "required": false; }; "modalData": { "alias": "modalData"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "gridConfiguration": { "alias": "gridConfiguration"; "required": false; }; "cudComponent": { "alias": "cudComponent"; "required": false; }; "crudService": { "alias": "crudService"; "required": false; }; "header": { "alias": "header"; "required": false; }; "modalSize": { "alias": "modalSize"; "required": false; }; "descriminatorValue": { "alias": "descriminatorValue"; "required": false; }; "presentationSettings": { "alias": "presentationSettings"; "required": false; }; "preventAddEvent": { "alias": "preventAddEvent"; "required": false; }; "formEndpoint": { "alias": "formEndpoint"; "required": false; }; "formName": { "alias": "formName"; "required": false; }; "isSearchButtonDisabled": { "alias": "isSearchButtonDisabled"; "required": false; }; "showHeaderFilters": { "alias": "showHeaderFilters"; "required": false; }; "showEditButton": { "alias": "showEditButton"; "required": false; }; "showDeleteButton": { "alias": "showDeleteButton"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "showConsultButton": { "alias": "showConsultButton"; "required": false; }; "showUploadButton": { "alias": "showUploadButton"; "required": false; }; "showNoteButton": { "alias": "showNoteButton"; "required": false; }; "showDownloadButton": { "alias": "showDownloadButton"; "required": false; }; "showInfoButton": { "alias": "showInfoButton"; "required": false; }; "showSearchField": { "alias": "showSearchField"; "required": false; }; "searchFields": { "alias": "searchFields"; "required": false; }; "showCalenderView": { "alias": "showCalenderView"; "required": false; }; "calenderSchema": { "alias": "calenderSchema"; "required": false; }; "showCardView": { "alias": "showCardView"; "required": false; }; "showKanbanView": { "alias": "showKanbanView"; "required": false; }; "showDuplicateButton": { "alias": "showDuplicateButton"; "required": false; }; "selectKeyOnly": { "alias": "selectKeyOnly"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "key": { "alias": "key"; "required": false; }; "id": { "alias": "id"; "required": false; }; "businessClass": { "alias": "businessClass"; "required": false; }; "searchOnInit": { "alias": "searchOnInit"; "required": false; }; "showGlobalSearch": { "alias": "showGlobalSearch"; "required": false; }; "showExportButton": { "alias": "showExportButton"; "required": false; }; "showReporting": { "alias": "showReporting"; "required": false; }; }, { "selectedItemsChange": "selectedItemsChange"; "searchFieldsValueChanged": "searchFieldsValueChanged"; "buttonColumnClicked": "buttonColumnClicked"; }, never, never, false, never>;
|
|
156
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
2
|
+
import { TsiComponentEnum } from '../../enums';
|
|
3
|
+
import { IGenericFormConfiguration, IFormBloc } from '../../interfaces';
|
|
4
|
+
import { CrudBaseService, TsiMessageService, TsiNotificationService, TsiConfirmationService } from '../../services';
|
|
5
|
+
import { TsiFormComponentBaseComponent } from '../../tsi-base/components/tsi-form-base/tsi-form-base.component';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TsiGenericFormComponent extends TsiFormComponentBaseComponent {
|
|
8
|
+
private _message;
|
|
9
|
+
private _notify;
|
|
10
|
+
private _confirm;
|
|
11
|
+
ref: DynamicDialogRef;
|
|
12
|
+
config: DynamicDialogConfig;
|
|
13
|
+
index: number;
|
|
14
|
+
openNext(): void;
|
|
15
|
+
openPrev(): void;
|
|
16
|
+
tsiComponents: typeof TsiComponentEnum;
|
|
17
|
+
crudService?: CrudBaseService<any, any, any, any>;
|
|
18
|
+
configuration?: IGenericFormConfiguration;
|
|
19
|
+
blocs: Array<IFormBloc>;
|
|
20
|
+
constructor(_message: TsiMessageService, _notify: TsiNotificationService, _confirm: TsiConfirmationService, ref: DynamicDialogRef, config: DynamicDialogConfig);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
save(): void;
|
|
23
|
+
private _saveCreateMode;
|
|
24
|
+
private _saveEditMode;
|
|
25
|
+
private _saveDeleteMode;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiGenericFormComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiGenericFormComponent, "tsi-generic-form", never, { "crudService": { "alias": "crudService"; "required": false; }; "configuration": { "alias": "configuration"; "required": false; }; "blocs": { "alias": "blocs"; "required": false; }; }, {}, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { PaginatorState } from 'primeng/paginator';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { ButtonClickResult } from '../../interfaces';
|
|
5
|
+
import { TsiCard } from '../../models';
|
|
6
|
+
import { AppBaseComponent } from '../../tsi-base/components/app-base/app-base.component';
|
|
7
|
+
import { LocalizePipe } from '../../pipes/localize.pipe';
|
|
8
|
+
import { CrudBaseService } from '../../services/base/crud-base.service';
|
|
9
|
+
import { EntityConfigurationService } from '../../services/configuration/entity-configuration.service';
|
|
10
|
+
import { TsiNotificationService } from '../../services/notification/tsi-notification.service';
|
|
11
|
+
import { EntityStatusService } from '../../services/status/entityStatus.service';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
/**
|
|
14
|
+
* TsiKanbanComponent
|
|
15
|
+
* Description: Displays a Kanban board view for TSI entities.
|
|
16
|
+
*/
|
|
17
|
+
export declare class TsiKanbanComponent extends AppBaseComponent implements OnInit {
|
|
18
|
+
private cdr;
|
|
19
|
+
private _entityConfig;
|
|
20
|
+
private _localize;
|
|
21
|
+
private _entityStatusService;
|
|
22
|
+
private _notificationService;
|
|
23
|
+
buttonClicked: EventEmitter<ButtonClickResult>;
|
|
24
|
+
callSearch: EventEmitter<any>;
|
|
25
|
+
cardBusinessClass: any;
|
|
26
|
+
header: any;
|
|
27
|
+
id: any;
|
|
28
|
+
page$: BehaviorSubject<any>;
|
|
29
|
+
crudService?: CrudBaseService<any, any, any, any>;
|
|
30
|
+
private _page;
|
|
31
|
+
set page(value: any);
|
|
32
|
+
get page(): any;
|
|
33
|
+
cards: TsiCard[];
|
|
34
|
+
cardMapByStatus: Map<string, TsiCard[]>;
|
|
35
|
+
draggedCard: TsiCard | null;
|
|
36
|
+
first: number;
|
|
37
|
+
rows: number;
|
|
38
|
+
totalCount: number;
|
|
39
|
+
isLoading: boolean;
|
|
40
|
+
originalStatus: string;
|
|
41
|
+
previousStatus: any;
|
|
42
|
+
localizedStatusLabels: {
|
|
43
|
+
key: string;
|
|
44
|
+
localized: string;
|
|
45
|
+
}[];
|
|
46
|
+
constructor(cdr: ChangeDetectorRef, _entityConfig: EntityConfigurationService, _localize: LocalizePipe, _entityStatusService: EntityStatusService, _notificationService: TsiNotificationService);
|
|
47
|
+
ngOnInit(): Promise<void>;
|
|
48
|
+
dragStart(_: DragEvent, card: TsiCard): void;
|
|
49
|
+
dragEnd(): void;
|
|
50
|
+
allowDrop(event: DragEvent): void;
|
|
51
|
+
trackByStatus(index: number, status: {
|
|
52
|
+
key: string;
|
|
53
|
+
localized: string;
|
|
54
|
+
}): string;
|
|
55
|
+
trackByCard(index: number, card: TsiCard): string | undefined;
|
|
56
|
+
drop(event: DragEvent, newStatusKey: string): void;
|
|
57
|
+
onPageChange(event: PaginatorState): void;
|
|
58
|
+
getStatusClass(card: TsiCard): string;
|
|
59
|
+
getLocalizedStatus(key: string | undefined): string;
|
|
60
|
+
private handlePageChange;
|
|
61
|
+
private getEntityInfo;
|
|
62
|
+
private getColKeys;
|
|
63
|
+
private mapItemsToCards;
|
|
64
|
+
private updateCardMap;
|
|
65
|
+
private getBusinessClassStatus;
|
|
66
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiKanbanComponent, never>;
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiKanbanComponent, "Tsi-kanban", never, { "cardBusinessClass": { "alias": "cardBusinessClass"; "required": false; }; "header": { "alias": "header"; "required": false; }; "id": { "alias": "id"; "required": false; }; "page$": { "alias": "page$"; "required": false; }; "crudService": { "alias": "crudService"; "required": false; }; "page": { "alias": "page"; "required": false; }; }, { "buttonClicked": "buttonClicked"; "callSearch": "callSearch"; }, never, never, false, never>;
|
|
68
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig } from 'primeng/dynamicdialog';
|
|
3
|
+
import { JournalisationApplication, TreeNode, TreeNode2 } from '../../models';
|
|
4
|
+
import { JournalisationApplicationService } from '../../services/journalisation/journalisation-application.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
interface Column {
|
|
7
|
+
field: string;
|
|
8
|
+
header: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class TsiLogEventHistoryComponent implements OnInit {
|
|
11
|
+
journalisationApplicationService: JournalisationApplicationService;
|
|
12
|
+
config: DynamicDialogConfig;
|
|
13
|
+
showOnlyModifiedFields: boolean | undefined;
|
|
14
|
+
cols: Column[];
|
|
15
|
+
oldTreeData: TreeNode[];
|
|
16
|
+
newTreeData: TreeNode[];
|
|
17
|
+
mergedTree: TreeNode2[];
|
|
18
|
+
filteredMergedTree: TreeNode2[];
|
|
19
|
+
headerTitle: string;
|
|
20
|
+
journalApplication: JournalisationApplication;
|
|
21
|
+
constructor(journalisationApplicationService: JournalisationApplicationService, config: DynamicDialogConfig);
|
|
22
|
+
isBoolean(value: any): boolean;
|
|
23
|
+
isChecked(value: string | null | undefined): boolean;
|
|
24
|
+
updateDisplayedTree(event: any): void;
|
|
25
|
+
private filterModifiedNodes;
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
markChangedNodes(oldNodes: TreeNode[], newNodes: TreeNode[]): void;
|
|
28
|
+
isObject(value: any): boolean;
|
|
29
|
+
objectKeys(obj: any): string[];
|
|
30
|
+
parseJsonValue(value: string): any;
|
|
31
|
+
displayKeyValue(value: any): string;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiLogEventHistoryComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiLogEventHistoryComponent, "app-tsi-log-event-history", never, {}, {}, never, never, false, never>;
|
|
34
|
+
}
|
|
35
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TsiModalComponent implements OnInit {
|
|
4
|
+
modalSize: any;
|
|
5
|
+
itemDialog: boolean;
|
|
6
|
+
constructor();
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiModalComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiModalComponent, "tsi-modal", never, { "modalSize": { "alias": "modalSize"; "required": false; }; "itemDialog": { "alias": "itemDialog"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EnvironmentInjector, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ButtonType } from '../../enums/button-type.enum';
|
|
3
|
+
import { LayoutService } from '../../services/application/app.layout.service';
|
|
4
|
+
import { LocalizePipe } from '../../pipes/localize.pipe';
|
|
5
|
+
import { DialogDataService } from '../../services/dialog-data.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TsiModalFooterComponent implements OnInit, OnDestroy {
|
|
8
|
+
private _injector;
|
|
9
|
+
private dialogDataService;
|
|
10
|
+
private _layoutService;
|
|
11
|
+
localize?: LocalizePipe | undefined;
|
|
12
|
+
cancelDisabled: boolean;
|
|
13
|
+
saveDisabled: boolean;
|
|
14
|
+
cancelLabel: string;
|
|
15
|
+
saveLabel: string;
|
|
16
|
+
isConsult: boolean;
|
|
17
|
+
isDuplicate: boolean;
|
|
18
|
+
isOnlyCreate: boolean;
|
|
19
|
+
onCancelClick: EventEmitter<void>;
|
|
20
|
+
onSaveClick: EventEmitter<void>;
|
|
21
|
+
isAr: boolean;
|
|
22
|
+
buttonType: typeof ButtonType;
|
|
23
|
+
showFiles: boolean;
|
|
24
|
+
stylePositionClass: string;
|
|
25
|
+
SaveButtonType: ButtonType;
|
|
26
|
+
private layoutDirectionSubscritpion?;
|
|
27
|
+
constructor(_injector: EnvironmentInjector, dialogDataService: DialogDataService, _layoutService: LayoutService, localize?: LocalizePipe | undefined);
|
|
28
|
+
ngOnDestroy(): void;
|
|
29
|
+
l(key: string): string;
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
isRtlModeEnabled(): void;
|
|
32
|
+
subscribeInRtlModeChange(): void;
|
|
33
|
+
onSave(): void;
|
|
34
|
+
onCancel(): void;
|
|
35
|
+
onFiles(): Promise<void>;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiModalFooterComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiModalFooterComponent, "Tsi-Modal-Footer", never, { "cancelDisabled": { "alias": "cancelDisabled"; "required": false; }; "saveDisabled": { "alias": "saveDisabled"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "saveLabel": { "alias": "saveLabel"; "required": false; }; "isConsult": { "alias": "isConsult"; "required": false; }; "isDuplicate": { "alias": "isDuplicate"; "required": false; }; "isOnlyCreate": { "alias": "isOnlyCreate"; "required": false; }; }, { "onCancelClick": "onCancelClick"; "onSaveClick": "onSaveClick"; }, never, never, false, never>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { LayoutService } from '../../services/application/app.layout.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TsiModalHeaderComponent implements OnInit, OnDestroy {
|
|
5
|
+
private _layoutService;
|
|
6
|
+
inputTitle?: string;
|
|
7
|
+
toolbarTemplateHeader?: TemplateRef<any>;
|
|
8
|
+
onCloseClick: EventEmitter<void>;
|
|
9
|
+
stylePositionClass: string;
|
|
10
|
+
private layoutDirectionSubscritpion?;
|
|
11
|
+
constructor(_layoutService: LayoutService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
isRtlModeEnabled(): void;
|
|
15
|
+
subscribeInRtlModeChange(): void;
|
|
16
|
+
hideDialog(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiModalHeaderComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiModalHeaderComponent, "Tsi-Modal-Header", never, { "inputTitle": { "alias": "inputTitle"; "required": false; }; }, { "onCloseClick": "onCloseClick"; }, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
|
+
import { NotesGroupedByUserResponse } from '../../models/Notes/Note';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TsiNotesAvertirComponent implements OnInit {
|
|
6
|
+
private ref;
|
|
7
|
+
private config;
|
|
8
|
+
groupedNotes: NotesGroupedByUserResponse[];
|
|
9
|
+
constructor(ref: DynamicDialogRef, config: DynamicDialogConfig);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiNotesAvertirComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiNotesAvertirComponent, "app-tsi-notes-avertir", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
|
+
import { Note } from '../../models/Notes/Note';
|
|
4
|
+
import { NoteService, ErrorResponseManagerService, TsiNotificationService, TsiConfirmationService, DialogDataService } from '../../services';
|
|
5
|
+
import { TsiFormComponentBaseComponent } from '../../tsi-base/components/tsi-form-base/tsi-form-base.component';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TsiNotesComponent extends TsiFormComponentBaseComponent implements OnInit {
|
|
8
|
+
_notesService: NoteService;
|
|
9
|
+
private _errorResponseManagerService;
|
|
10
|
+
ref: DynamicDialogRef;
|
|
11
|
+
config: DynamicDialogConfig;
|
|
12
|
+
private _notificationService;
|
|
13
|
+
private _confirmationService;
|
|
14
|
+
private dialogDataService;
|
|
15
|
+
note: Note;
|
|
16
|
+
constructor(_notesService: NoteService, _errorResponseManagerService: ErrorResponseManagerService, ref: DynamicDialogRef, config: DynamicDialogConfig, _notificationService: TsiNotificationService, _confirmationService: TsiConfirmationService, dialogDataService: DialogDataService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
save(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiNotesComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiNotesComponent, "app-tsi-notes", never, {}, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { GridColumn } from '../../interfaces';
|
|
2
|
+
import { NoteService } from '../../services';
|
|
3
|
+
import { TsiListBaseComponent } from '../../tsi-base/components/tsi-list-base/tsi-list-base.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TsiNotesGridComponent extends TsiListBaseComponent {
|
|
6
|
+
notesService: NoteService;
|
|
7
|
+
columns: Array<GridColumn>;
|
|
8
|
+
constructor(notesService: NoteService);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiNotesGridComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiNotesGridComponent, "app-tsi-notes-grid", never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EnvironmentInjector, OnInit } from '@angular/core';
|
|
2
|
+
import { GridColumn, IModalSize } from '../../interfaces';
|
|
3
|
+
import { DialogDataService } from '../../services/dialog-data.service';
|
|
4
|
+
import { JournalisationApplicationService } from '../../services/journalisation/journalisation-application.service';
|
|
5
|
+
import { StatusHistoryService } from '../../services/journalisation/status-history.service';
|
|
6
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
7
|
+
import { TsiModalService } from '../../services/modal/tsi-modal.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class TsiPopupTextViewerComponent implements OnInit {
|
|
10
|
+
private _tsiModalService;
|
|
11
|
+
private cdr;
|
|
12
|
+
private _injector;
|
|
13
|
+
config: DynamicDialogConfig;
|
|
14
|
+
dialogDataService: DialogDataService;
|
|
15
|
+
journalisationApplicationService: JournalisationApplicationService;
|
|
16
|
+
statusHistoryService: StatusHistoryService;
|
|
17
|
+
ref?: DynamicDialogRef<any> | undefined;
|
|
18
|
+
private _dialogRef?;
|
|
19
|
+
fileContent: string;
|
|
20
|
+
comp: any;
|
|
21
|
+
modalSize: IModalSize;
|
|
22
|
+
titleComponent: string;
|
|
23
|
+
logEventFiltredData: Array<any>;
|
|
24
|
+
statusHistoryFiltredData: Array<any>;
|
|
25
|
+
creationUser: string | undefined;
|
|
26
|
+
modifUser: string | undefined;
|
|
27
|
+
dateSaisie: string | undefined;
|
|
28
|
+
dateModif: string | undefined;
|
|
29
|
+
formatDate: string;
|
|
30
|
+
columnsLogEvent: Array<GridColumn>;
|
|
31
|
+
columnsStatuHistory: Array<GridColumn>;
|
|
32
|
+
constructor(_tsiModalService: TsiModalService, cdr: ChangeDetectorRef, _injector: EnvironmentInjector, config: DynamicDialogConfig, dialogDataService: DialogDataService, journalisationApplicationService: JournalisationApplicationService, statusHistoryService: StatusHistoryService, ref?: DynamicDialogRef<any> | undefined);
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
buttonColumnClicked(dataEvent: any): void;
|
|
35
|
+
consultRow(itemKey: any): void;
|
|
36
|
+
private openConsultModal;
|
|
37
|
+
private closeConsultModal;
|
|
38
|
+
openEntitieInformationModal(): Promise<void>;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiPopupTextViewerComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiPopupTextViewerComponent, "app-tsi-popup-text-viewer", never, {}, {}, never, never, false, never>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ProgressBarResponse } from '../../models';
|
|
3
|
+
import { ProgressBarService } from '../../services/progress-bar/progress-bar.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TsiProgressBarComponent implements OnChanges, OnDestroy {
|
|
6
|
+
private progressBarService;
|
|
7
|
+
showBar: boolean;
|
|
8
|
+
processName: string | undefined;
|
|
9
|
+
showValue: boolean;
|
|
10
|
+
color: string;
|
|
11
|
+
showCurrentStep: boolean;
|
|
12
|
+
unit: string | undefined;
|
|
13
|
+
completed: EventEmitter<number>;
|
|
14
|
+
showBarChange: EventEmitter<boolean>;
|
|
15
|
+
title?: string;
|
|
16
|
+
currentStep?: string;
|
|
17
|
+
progressLevel?: number;
|
|
18
|
+
maxLevel?: number;
|
|
19
|
+
progressPercent: number;
|
|
20
|
+
warningMessage: string | null;
|
|
21
|
+
progressBar: ProgressBarResponse;
|
|
22
|
+
private hasEmitted;
|
|
23
|
+
private isPolling;
|
|
24
|
+
private intervalPollId?;
|
|
25
|
+
private hideTimeoutId?;
|
|
26
|
+
constructor(progressBarService: ProgressBarService);
|
|
27
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
28
|
+
private loadProgress;
|
|
29
|
+
private startPolling;
|
|
30
|
+
private updateProgress;
|
|
31
|
+
hideBar(): void;
|
|
32
|
+
onProgressCompleted(): void;
|
|
33
|
+
private stopPolling;
|
|
34
|
+
private reset;
|
|
35
|
+
ngOnDestroy(): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiProgressBarComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiProgressBarComponent, "tsi-progress-bar", never, { "showBar": { "alias": "showBar"; "required": false; }; "processName": { "alias": "processName"; "required": false; }; "showValue": { "alias": "showValue"; "required": false; }; "color": { "alias": "color"; "required": false; }; "showCurrentStep": { "alias": "showCurrentStep"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; }, { "completed": "completed"; "showBarChange": "showBarChange"; }, never, never, false, never>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { TooltipPosition } from '../../enums/tooltipPosition.enum';
|
|
3
|
+
import { InputTypes, LayoutOrientation } from '../../enums';
|
|
4
|
+
import { SearchField, entityInfo, KeyValuePair } from '../../models';
|
|
5
|
+
import { EntityStatusService } from '../../services/status/entityStatus.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TsiSearchBoxComponent implements OnInit {
|
|
8
|
+
private entityStatusService;
|
|
9
|
+
private _searchFields;
|
|
10
|
+
inputTypes: typeof InputTypes;
|
|
11
|
+
fakeAlwaysFalseCondition: boolean;
|
|
12
|
+
tooltipPosition: typeof TooltipPosition;
|
|
13
|
+
keyword: string | undefined;
|
|
14
|
+
layoutOrientationRef: typeof LayoutOrientation;
|
|
15
|
+
prop: string;
|
|
16
|
+
set searchFields(value: Array<SearchField> | undefined);
|
|
17
|
+
get searchFields(): Array<SearchField> | undefined;
|
|
18
|
+
private _businessClass;
|
|
19
|
+
set businessClass(value: string | undefined);
|
|
20
|
+
get businessClass(): string | undefined;
|
|
21
|
+
isRtlMode: boolean;
|
|
22
|
+
isSearchButtonDisabled: boolean;
|
|
23
|
+
entityInfo: entityInfo | undefined;
|
|
24
|
+
searchFieldsChange: EventEmitter<Array<SearchField>>;
|
|
25
|
+
searchFieldsApplied: EventEmitter<Array<SearchField>>;
|
|
26
|
+
keywordValueChanged: EventEmitter<string | undefined>;
|
|
27
|
+
statusFilterChanged: EventEmitter<string | undefined>;
|
|
28
|
+
comboBoxLabelChanged: EventEmitter<Array<SearchField>>;
|
|
29
|
+
constructor(entityStatusService: EntityStatusService);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
onSearchFieldValueChange(searchField: SearchField): void;
|
|
32
|
+
onSearch(): void;
|
|
33
|
+
private _init;
|
|
34
|
+
getComboLabel(searchField: SearchField, label: string): void;
|
|
35
|
+
private _status;
|
|
36
|
+
get status(): string | undefined;
|
|
37
|
+
set status(value: string | undefined);
|
|
38
|
+
entityStatusList: KeyValuePair<string, string>[];
|
|
39
|
+
private getEntityStatus;
|
|
40
|
+
onStatusChange(evt: any): void;
|
|
41
|
+
handleKeyDown(event: KeyboardEvent): void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiSearchBoxComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiSearchBoxComponent, "tsi-search-box", never, { "searchFields": { "alias": "searchFields"; "required": false; }; "businessClass": { "alias": "businessClass"; "required": false; }; "isRtlMode": { "alias": "isRtlMode"; "required": false; }; "isSearchButtonDisabled": { "alias": "isSearchButtonDisabled"; "required": false; }; "entityInfo": { "alias": "entityInfo"; "required": false; }; }, { "searchFieldsChange": "searchFieldsChange"; "searchFieldsApplied": "searchFieldsApplied"; "keywordValueChanged": "keywordValueChanged"; "statusFilterChanged": "statusFilterChanged"; "comboBoxLabelChanged": "comboBoxLabelChanged"; }, never, never, false, never>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ButtonType } from '../../enums/button-type.enum';
|
|
2
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
import { TsiFormComponentBaseComponent } from '../../tsi-base/components/tsi-form-base/tsi-form-base.component';
|
|
5
|
+
import { DialogDataService } from '../../services';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TsiSendMailComponent extends TsiFormComponentBaseComponent {
|
|
8
|
+
private _dialogService;
|
|
9
|
+
ref: DynamicDialogRef;
|
|
10
|
+
config: DynamicDialogConfig;
|
|
11
|
+
toAddress: string | undefined;
|
|
12
|
+
ccAddress: string | undefined;
|
|
13
|
+
objet: string | undefined;
|
|
14
|
+
message: string | undefined;
|
|
15
|
+
buttonType: typeof ButtonType;
|
|
16
|
+
saveSubject: Subject<any>;
|
|
17
|
+
constructor(_dialogService: DialogDataService, ref: DynamicDialogRef, config: DynamicDialogConfig);
|
|
18
|
+
save(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiSendMailComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiSendMailComponent, "app-tsi-send-mail", never, {}, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiTabPanelComponent {
|
|
3
|
+
heading: string;
|
|
4
|
+
closable: boolean;
|
|
5
|
+
headerStyle: any;
|
|
6
|
+
headerStyleClass: string;
|
|
7
|
+
cache: boolean;
|
|
8
|
+
tooltip: any;
|
|
9
|
+
tooltipPosition: string | any;
|
|
10
|
+
tooltipPositionStyle: string;
|
|
11
|
+
tooltipStyleClass: string;
|
|
12
|
+
selected: boolean;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
leftIcon: string;
|
|
15
|
+
rightIcon: string;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiTabPanelComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiTabPanelComponent, "tsi-tab-panel", never, { "heading": { "alias": "heading"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "headerStyle": { "alias": "headerStyle"; "required": false; }; "headerStyleClass": { "alias": "headerStyleClass"; "required": false; }; "cache": { "alias": "cache"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltipPositionStyle": { "alias": "tooltipPositionStyle"; "required": false; }; "tooltipStyleClass": { "alias": "tooltipStyleClass"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TsiTabViewComponent implements OnInit {
|
|
4
|
+
orientation: string;
|
|
5
|
+
style: any;
|
|
6
|
+
styleClass: string;
|
|
7
|
+
controlClose: boolean;
|
|
8
|
+
scrollable: boolean;
|
|
9
|
+
activeIndex: number;
|
|
10
|
+
onChange: EventEmitter<any>;
|
|
11
|
+
onClose: EventEmitter<any>;
|
|
12
|
+
activeIndexChange: EventEmitter<number>;
|
|
13
|
+
constructor();
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiTabViewComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiTabViewComponent, "tsi-tab-view", never, { "orientation": { "alias": "orientation"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "controlClose": { "alias": "controlClose"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "activeIndex": { "alias": "activeIndex"; "required": false; }; }, { "onChange": "onChange"; "onClose": "onClose"; "activeIndexChange": "activeIndexChange"; }, never, ["*"], false, never>;
|
|
17
|
+
}
|