@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,39 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { AuthorizationService, IdentityPlatformAuthenticationService, IdentityManagerService, TsiNotificationService, TranslationService, AppSettingsService } from '../../services';
|
|
4
|
+
import { LayoutService } from '../../services/application/app.layout.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TsiTenantsComponent implements OnInit {
|
|
7
|
+
private _auth;
|
|
8
|
+
private _identityAuthorisationService;
|
|
9
|
+
_identityManager: IdentityManagerService;
|
|
10
|
+
private notifService;
|
|
11
|
+
private _router;
|
|
12
|
+
private translationService;
|
|
13
|
+
private _appSettingsService;
|
|
14
|
+
private _layoutService;
|
|
15
|
+
showTenants: boolean;
|
|
16
|
+
isLoading: boolean;
|
|
17
|
+
isLoginPage: boolean;
|
|
18
|
+
userToken?: string;
|
|
19
|
+
showAvancedButtons: boolean;
|
|
20
|
+
cancelEvent: EventEmitter<void>;
|
|
21
|
+
private _loginModel;
|
|
22
|
+
set loginModel(value: any);
|
|
23
|
+
get loginModel(): any;
|
|
24
|
+
tenants: {
|
|
25
|
+
key: string;
|
|
26
|
+
value: string;
|
|
27
|
+
}[];
|
|
28
|
+
applicationUid?: string;
|
|
29
|
+
selectedTenantUid: string | undefined;
|
|
30
|
+
languagesInformations: any[];
|
|
31
|
+
constructor(_auth: AuthorizationService, _identityAuthorisationService: IdentityPlatformAuthenticationService, _identityManager: IdentityManagerService, notifService: TsiNotificationService, _router: Router, translationService: TranslationService, _appSettingsService: AppSettingsService, _layoutService: LayoutService);
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
onTenantChange(tenantUid: any): Promise<void>;
|
|
34
|
+
cancel(): void;
|
|
35
|
+
proceedLoginAsync(): Promise<void>;
|
|
36
|
+
logout(): Promise<void>;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiTenantsComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiTenantsComponent, "Tsi-tenants", never, { "showTenants": { "alias": "showTenants"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isLoginPage": { "alias": "isLoginPage"; "required": false; }; "userToken": { "alias": "userToken"; "required": false; }; "showAvancedButtons": { "alias": "showAvancedButtons"; "required": false; }; "loginModel": { "alias": "loginModel"; "required": false; }; "tenants": { "alias": "tenants"; "required": false; }; "applicationUid": { "alias": "applicationUid"; "required": false; }; }, { "cancelEvent": "cancelEvent"; }, never, never, false, never>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TooltipPosition } from '../../enums/tooltipPosition.enum';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TsiTooltipComponent {
|
|
4
|
+
tooltipText: string;
|
|
5
|
+
tooltipPosition: TooltipPosition;
|
|
6
|
+
constructor();
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiTooltipComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiTooltipComponent, "Tsi-Tooltip", never, { "tooltipText": { "alias": "tooltipText"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
|
+
import { Fichier } from '../../models';
|
|
4
|
+
import { ErrorResponseManagerService, TsiNotificationService, TsiConfirmationService, DialogDataService } from '../../services';
|
|
5
|
+
import { TsiFormComponentBaseComponent } from '../../tsi-base/components/tsi-form-base/tsi-form-base.component';
|
|
6
|
+
import { FichierService } from '../../services/fichier/fichier.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class TsiUploadFicheComponent extends TsiFormComponentBaseComponent implements OnInit {
|
|
9
|
+
_fichierService: FichierService;
|
|
10
|
+
private _errorResponseManagerService;
|
|
11
|
+
ref: DynamicDialogRef;
|
|
12
|
+
config: DynamicDialogConfig;
|
|
13
|
+
private _notificationService;
|
|
14
|
+
private _confirmationService;
|
|
15
|
+
private dialogDataService;
|
|
16
|
+
fichier: Fichier;
|
|
17
|
+
saving: boolean;
|
|
18
|
+
allDataLoaded: boolean;
|
|
19
|
+
toUploadFileData: any;
|
|
20
|
+
base64String: string | ArrayBuffer | null;
|
|
21
|
+
isDisable: boolean;
|
|
22
|
+
onSave: EventEmitter<any>;
|
|
23
|
+
constructor(_fichierService: FichierService, _errorResponseManagerService: ErrorResponseManagerService, ref: DynamicDialogRef, config: DynamicDialogConfig, _notificationService: TsiNotificationService, _confirmationService: TsiConfirmationService, dialogDataService: DialogDataService);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
save(): void;
|
|
26
|
+
onFileSelected(event: any): void;
|
|
27
|
+
onImportFile(event: any): void;
|
|
28
|
+
onClear(event: any): void;
|
|
29
|
+
onRemove(event: any): void;
|
|
30
|
+
readFile(file: File): void;
|
|
31
|
+
readFileAsByteArray(file: File): void;
|
|
32
|
+
onDataLoaded(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiUploadFicheComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiUploadFicheComponent, "app-tsi-upload-fiche", never, {}, { "onSave": "onSave"; }, never, never, false, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TsiListBaseComponent } from '../../tsi-base/components/tsi-list-base/tsi-list-base.component';
|
|
2
|
+
import { GridColumn } from '../../interfaces/grid/grid-configuration';
|
|
3
|
+
import { FichierUploadService } from '../../services/fichier/fichier-upload.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TsiUploadGridComponent extends TsiListBaseComponent {
|
|
6
|
+
_fichierService: FichierUploadService;
|
|
7
|
+
table: string | undefined;
|
|
8
|
+
columns: Array<GridColumn>;
|
|
9
|
+
constructor(_fichierService: FichierUploadService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiUploadGridComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiUploadGridComponent, "app-tsi-upload-grid", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AutoSelectDirective {
|
|
4
|
+
private el;
|
|
5
|
+
constructor(el: ElementRef);
|
|
6
|
+
onFocus(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutoSelectDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AutoSelectDirective, "[autoSelect]", never, {}, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ComponentFactoryResolver, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BusyDirective {
|
|
4
|
+
private view;
|
|
5
|
+
private componentFactoryResolver;
|
|
6
|
+
private template;
|
|
7
|
+
set busy(isLoading: boolean);
|
|
8
|
+
constructor(view: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, template: TemplateRef<AnimationPlayState>);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BusyDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BusyDirective, "[busy]", never, { "busy": { "alias": "busy"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AdDirective {
|
|
4
|
+
viewContainerRef: ViewContainerRef;
|
|
5
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdDirective, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AdDirective, "[adHost]", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './auto-select.directive';
|
|
2
|
+
export * from './busy.directive';
|
|
3
|
+
export * from './module-main-parameter.directive';
|
|
4
|
+
export * from './presentation-designer-base.directive';
|
|
5
|
+
export * from './presentation-designer.directive';
|
|
6
|
+
export * from './validation.directive';
|
|
7
|
+
export * from './dynamic-component-loader/ad.directive';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ModuleMainParameterDirective {
|
|
4
|
+
viewContainerRef: ViewContainerRef;
|
|
5
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModuleMainParameterDirective, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ModuleMainParameterDirective, "[appModuleMainParameter]", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnDestroy, OnInit, Renderer2, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { PresentationSetting } from '../models';
|
|
3
|
+
import { LayoutHelperService } from '../services/layout/layout-helper.service';
|
|
4
|
+
import { WorkflowConfigurationService } from '../services/workflow/workflow-configuration.service';
|
|
5
|
+
import { PresentationDesignerBaseService } from '../services/presentation-setting/presentation-designer-base.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class PresentationDesignerDirectiveBase implements OnInit, AfterViewInit, OnDestroy {
|
|
8
|
+
protected el: ElementRef;
|
|
9
|
+
protected renderer: Renderer2;
|
|
10
|
+
protected viewContainerRef: ViewContainerRef;
|
|
11
|
+
protected _layoutHelperService: LayoutHelperService;
|
|
12
|
+
protected _workflowConfigurationService: WorkflowConfigurationService;
|
|
13
|
+
protected _presentationDesignerBaseService: PresentationDesignerBaseService;
|
|
14
|
+
private _presentationDesigner;
|
|
15
|
+
set presentationDesigner(value: string | undefined);
|
|
16
|
+
set presentationDesignerBase(value: string | undefined);
|
|
17
|
+
get presentationDesigner(): string | undefined;
|
|
18
|
+
showHideCheckboxComponentRef: any;
|
|
19
|
+
disabledCheckboxComponentRef: any;
|
|
20
|
+
tempTemplateRef: any;
|
|
21
|
+
tempTemplateParentNode: any;
|
|
22
|
+
nexSiblingOfElement: any;
|
|
23
|
+
treated: boolean;
|
|
24
|
+
constructor(el: ElementRef, renderer: Renderer2, viewContainerRef: ViewContainerRef, _layoutHelperService: LayoutHelperService, _workflowConfigurationService: WorkflowConfigurationService, _presentationDesignerBaseService: PresentationDesignerBaseService);
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
removeEmptyAncestors(node: HTMLElement | null): void;
|
|
27
|
+
ngAfterViewInit(): void;
|
|
28
|
+
ngOnDestroy(): void;
|
|
29
|
+
disableInputs(): void;
|
|
30
|
+
private getComponentInstance;
|
|
31
|
+
insertElement(): void;
|
|
32
|
+
removeShowHideCheckbox(): void;
|
|
33
|
+
removeElement(): void;
|
|
34
|
+
execute(condition: boolean, configuration?: string): void;
|
|
35
|
+
getComponentSelector(): string;
|
|
36
|
+
private getComponentType;
|
|
37
|
+
private createCheckboxGroupWithLabels;
|
|
38
|
+
addCheckboxesToInputs(presentationSetting?: PresentationSetting): void;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PresentationDesignerDirectiveBase, never>;
|
|
40
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PresentationDesignerDirectiveBase, "[presentationDesignerBase]", never, { "presentationDesigner": { "alias": "presentationDesigner"; "required": false; }; "presentationDesignerBase": { "alias": "presentationDesignerBase"; "required": false; }; }, {}, never, never, false, never>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ElementRef, Renderer2, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import { PresentationSetting } from "../models";
|
|
3
|
+
import { PresentationDesignerDirectiveBase } from "./presentation-designer-base.directive";
|
|
4
|
+
import { EditableGridComponent } from "../tsi-components/input-components/editable-grid/editable-grid.component";
|
|
5
|
+
import { TsiViewGridComponent } from "../tsi-components/output-components/tsi-view-grid/tsi-view-grid.component";
|
|
6
|
+
import { TsiGenericGridComponent } from "../tsi-components/output-components/tsi-generic-grid/tsi-generic-grid.component";
|
|
7
|
+
import { TsiGenericCrudComponent } from "../tsi-components/tsi-generic-crud/tsi-generic-crud.component";
|
|
8
|
+
import { LayoutHelperService } from "../services/layout/layout-helper.service";
|
|
9
|
+
import { WorkflowConfigurationService } from "../services/workflow/workflow-configuration.service";
|
|
10
|
+
import { PresentationDesignerService } from "../services/presentation-setting/presentation-designer.service";
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class PresentationDesignerDirective extends PresentationDesignerDirectiveBase {
|
|
13
|
+
protected el: ElementRef;
|
|
14
|
+
protected renderer: Renderer2;
|
|
15
|
+
protected viewContainerRef: ViewContainerRef;
|
|
16
|
+
protected _layoutHelperService: LayoutHelperService;
|
|
17
|
+
protected _workflowConfigurationService: WorkflowConfigurationService;
|
|
18
|
+
protected _presentationDesignerService: PresentationDesignerService;
|
|
19
|
+
genericCrud: TsiGenericCrudComponent;
|
|
20
|
+
viewGrid: TsiViewGridComponent;
|
|
21
|
+
genericGrid: TsiGenericGridComponent;
|
|
22
|
+
editableGrid: EditableGridComponent;
|
|
23
|
+
editableGridChild: EditableGridComponent;
|
|
24
|
+
viewGridChild: TsiViewGridComponent;
|
|
25
|
+
genericGridChild: TsiGenericGridComponent;
|
|
26
|
+
genericCrudChild: TsiGenericCrudComponent;
|
|
27
|
+
constructor(el: ElementRef, renderer: Renderer2, viewContainerRef: ViewContainerRef, _layoutHelperService: LayoutHelperService, _workflowConfigurationService: WorkflowConfigurationService, _presentationDesignerService: PresentationDesignerService, genericCrud: TsiGenericCrudComponent, viewGrid: TsiViewGridComponent, genericGrid: TsiGenericGridComponent, editableGrid: EditableGridComponent);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
ngAfterViewInit(): void;
|
|
30
|
+
ngOnDestroy(): void;
|
|
31
|
+
disableInputs(): void;
|
|
32
|
+
updateGridConfiguration(configuration?: string): void;
|
|
33
|
+
execute(condition: boolean, configuration?: string): void;
|
|
34
|
+
selectApproriateColumns(presentationSetting: PresentationSetting): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PresentationDesignerDirective, [null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PresentationDesignerDirective, "[presentationDesigner]", never, {}, {}, ["editableGridChild", "viewGridChild", "genericGridChild", "genericCrudChild"], never, false, never>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AfterContentInit, ElementRef, QueryList, Renderer2 } from '@angular/core';
|
|
2
|
+
import { AbstractControl, ValidationErrors, ValidatorFn } from '@angular/forms';
|
|
3
|
+
import { TsiTextBoxComponent } from '../tsi-components/input-components/tsi-text-box/tsi-text-box.component';
|
|
4
|
+
import { TsiIntegerComponent } from '../tsi-components/input-components/tsi-integer/tsi-integer.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ValidationDirective implements AfterContentInit {
|
|
7
|
+
private elementRef;
|
|
8
|
+
private renderer;
|
|
9
|
+
textboxes: QueryList<TsiTextBoxComponent>;
|
|
10
|
+
intboxes: QueryList<TsiIntegerComponent>;
|
|
11
|
+
isFormValid: boolean;
|
|
12
|
+
constructor(elementRef: ElementRef, renderer: Renderer2);
|
|
13
|
+
ngAfterContentInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValidationDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ValidationDirective, "[validation]", ["validation"], {}, {}, ["textboxes", "intboxes"], never, false, never>;
|
|
16
|
+
}
|
|
17
|
+
export declare function rangeValidator(min: number, max: number): (control: AbstractControl) => ValidationErrors | null;
|
|
18
|
+
export declare function lengthValidator(minValue: number): ValidatorFn;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IAppSettings } from "../interfaces";
|
|
2
|
+
import { SearchField } from "../models";
|
|
3
|
+
export declare class FilterHelper {
|
|
4
|
+
static appSettings: IAppSettings;
|
|
5
|
+
static ToOperatorType(value?: string): number;
|
|
6
|
+
static initSearchFields(searchFields?: SearchField[]): SearchField[];
|
|
7
|
+
private static _initSearchFieldDefaultsIfNullOrUndefined;
|
|
8
|
+
private static _initMinMaxSearchField;
|
|
9
|
+
private static _cloneSearchField;
|
|
10
|
+
static ToDisplayType(value?: string): string;
|
|
11
|
+
static ToInputType(value?: string): string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from './compoent-reference.helper';
|
|
2
|
+
export * from './date-helper';
|
|
3
|
+
export * from './export-excel.helper';
|
|
4
|
+
export * from './filter-helper';
|
|
5
|
+
export * from './grid-col-style.helper';
|
|
6
|
+
export * from './guid.helper';
|
|
7
|
+
export * from './helpers';
|
|
8
|
+
export * from './mapping-helper';
|
|
9
|
+
export * from './object.helper';
|
|
10
|
+
export * from './primeng-translate-config';
|
|
11
|
+
export * from './storage-manager';
|
|
12
|
+
export * from './type-registry.helper';
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export declare const primengLocaleAr: {
|
|
2
|
+
startsWith: string;
|
|
3
|
+
contains: string;
|
|
4
|
+
notContains: string;
|
|
5
|
+
endsWith: string;
|
|
6
|
+
equals: string;
|
|
7
|
+
notEquals: string;
|
|
8
|
+
noFilter: string;
|
|
9
|
+
lt: string;
|
|
10
|
+
lte: string;
|
|
11
|
+
gt: string;
|
|
12
|
+
gte: string;
|
|
13
|
+
is: string;
|
|
14
|
+
isNot: string;
|
|
15
|
+
before: string;
|
|
16
|
+
after: string;
|
|
17
|
+
dateIs: string;
|
|
18
|
+
dateIsNot: string;
|
|
19
|
+
dateBefore: string;
|
|
20
|
+
dateAfter: string;
|
|
21
|
+
clear: string;
|
|
22
|
+
apply: string;
|
|
23
|
+
matchAll: string;
|
|
24
|
+
matchAny: string;
|
|
25
|
+
addRule: string;
|
|
26
|
+
removeRule: string;
|
|
27
|
+
accept: string;
|
|
28
|
+
reject: string;
|
|
29
|
+
choose: string;
|
|
30
|
+
upload: string;
|
|
31
|
+
cancel: string;
|
|
32
|
+
today: string;
|
|
33
|
+
weekHeader: string;
|
|
34
|
+
firstDayOfWeek: number;
|
|
35
|
+
dateFormat: string;
|
|
36
|
+
weak: string;
|
|
37
|
+
medium: string;
|
|
38
|
+
strong: string;
|
|
39
|
+
passwordPrompt: string;
|
|
40
|
+
emptyMessage: string;
|
|
41
|
+
emptyFilterMessage: string;
|
|
42
|
+
};
|
|
43
|
+
export declare const primengDateLocalAr: {
|
|
44
|
+
firstDayOfWeek: number;
|
|
45
|
+
dayNames: string[];
|
|
46
|
+
dayNamesShort: string[];
|
|
47
|
+
dayNamesMin: string[];
|
|
48
|
+
monthNames: string[];
|
|
49
|
+
monthNamesShort: string[];
|
|
50
|
+
today: string;
|
|
51
|
+
clear: string;
|
|
52
|
+
dateFormat: string;
|
|
53
|
+
weekHeader: string;
|
|
54
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare class StorageManager {
|
|
2
|
+
static setItemAs<T>(key: string, object: T): void;
|
|
3
|
+
static getItemAs<T>(key: string): T | null;
|
|
4
|
+
static setItem(key: string, item: string): void;
|
|
5
|
+
static getItem(key: string): string | null;
|
|
6
|
+
static removeItem(key: string): void;
|
|
7
|
+
static clear(): void;
|
|
8
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { KeyValue } from "@angular/common";
|
|
2
|
+
/**
|
|
3
|
+
* Helper class for managing and resolving types in a global registry.
|
|
4
|
+
*
|
|
5
|
+
* This class provides methods to register and retrieve types (e.g., Angular components)
|
|
6
|
+
* by their names. It ensures that types can be dynamically resolved at runtime.
|
|
7
|
+
*/
|
|
8
|
+
export declare class TypeRegistryHelper {
|
|
9
|
+
/**
|
|
10
|
+
* A map that stores registered types, where the key is the type name
|
|
11
|
+
* and the value is the type itself.
|
|
12
|
+
*
|
|
13
|
+
* @private
|
|
14
|
+
*/
|
|
15
|
+
private static typeMap;
|
|
16
|
+
/**
|
|
17
|
+
* Registers a type in the registry with the given name.
|
|
18
|
+
*
|
|
19
|
+
* @param name The name of the type to register.
|
|
20
|
+
* @param type The type (e.g., class or component) to register.
|
|
21
|
+
*/
|
|
22
|
+
static registerType(name: string, type: any): void;
|
|
23
|
+
/**
|
|
24
|
+
* Retrieves a type from the registry by its name.
|
|
25
|
+
*
|
|
26
|
+
* @param name The name of the type to retrieve.
|
|
27
|
+
* @returns The registered type.
|
|
28
|
+
* @throws An error if the type is not found in the registry.
|
|
29
|
+
*/
|
|
30
|
+
static getType(name: string): any;
|
|
31
|
+
private static _businessComponentList;
|
|
32
|
+
static initializeBusinessComponentList(): void;
|
|
33
|
+
static getBusinessComponentList(): KeyValue<string, string>[];
|
|
34
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare class TimeOnly {
|
|
2
|
+
private hour;
|
|
3
|
+
private minute;
|
|
4
|
+
private second;
|
|
5
|
+
private millisecond;
|
|
6
|
+
constructor(hour: number, minute: number, second: number, millisecond?: number);
|
|
7
|
+
getHours(): number;
|
|
8
|
+
setHours(value: number): void;
|
|
9
|
+
getMinutes(): number;
|
|
10
|
+
setMinutes(value: number): void;
|
|
11
|
+
getSeconds(): number;
|
|
12
|
+
setSeconds(value: number): void;
|
|
13
|
+
getMilliseconds(): number;
|
|
14
|
+
setMilliseconds(value: number): void;
|
|
15
|
+
toString(): string;
|
|
16
|
+
toJSON(): string;
|
|
17
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tsi-developpement/tsi-shared-ui",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"author": "TSI",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"peerDependencies": {},
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"tslib": "^2.3.0"
|
|
9
|
+
},
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"module": "fesm2022/tsi-developpement-tsi-shared-ui.mjs",
|
|
12
|
+
"typings": "index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
"./package.json": {
|
|
15
|
+
"default": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./index.d.ts",
|
|
19
|
+
"esm2022": "./esm2022/tsi-developpement-tsi-shared-ui.mjs",
|
|
20
|
+
"esm": "./esm2022/tsi-developpement-tsi-shared-ui.mjs",
|
|
21
|
+
"default": "./fesm2022/tsi-developpement-tsi-shared-ui.mjs"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export * from './lib/pipes';
|
|
2
|
+
export * from './lib/tsi-directives';
|
|
3
|
+
export * from './lib/models';
|
|
4
|
+
export * from './lib/tsi-components';
|
|
5
|
+
export * from './lib/tsi-base';
|
|
6
|
+
export * from './lib/services';
|
|
7
|
+
export * from './lib/guards';
|
|
8
|
+
export * from './lib/enums';
|
|
9
|
+
export * from './lib/types';
|
|
10
|
+
export * from './lib/interfaces';
|
|
11
|
+
export * from './lib/tsi-helpers';
|
|
12
|
+
export * from './lib/end-points';
|
|
13
|
+
export * from './lib/consts';
|
|
14
|
+
export * from './lib/routes';
|
|
15
|
+
export * from './lib/providers';
|
|
16
|
+
export * from './lib/package-initializer';
|
|
17
|
+
export * from './lib/shared.module';
|