@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,9 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TsiRedirectionMessageComponent implements OnInit {
|
|
4
|
+
message: string;
|
|
5
|
+
constructor();
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiRedirectionMessageComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiRedirectionMessageComponent, "tsi-redirection-message", never, { "message": { "alias": "message"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
package/lib/tsi-components/message-components/tsi-success-message/tsi-success-message.component.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TsiSuccessMessageComponent implements OnInit {
|
|
5
|
+
private _modalRef;
|
|
6
|
+
private _conf;
|
|
7
|
+
message?: string;
|
|
8
|
+
constructor(_modalRef: DynamicDialogRef, _conf: DynamicDialogConfig);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
onCancel(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiSuccessMessageComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiSuccessMessageComponent, "app-tsi-success-message", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { DynamicDialogConfig } from 'primeng/dynamicdialog';
|
|
3
|
+
import { TsiListBaseComponent } from '../../tsi-base/components/tsi-list-base/tsi-list-base.component';
|
|
4
|
+
import { GridColumn } from '../../interfaces/grid/grid-configuration';
|
|
5
|
+
import { ApiExplorerService } from '../../services/application/api-explorer.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ModalComponent extends TsiListBaseComponent implements OnInit {
|
|
8
|
+
private _apiExplorerService;
|
|
9
|
+
config: DynamicDialogConfig;
|
|
10
|
+
private cdr;
|
|
11
|
+
isOpen: boolean;
|
|
12
|
+
title: string;
|
|
13
|
+
closed: EventEmitter<void>;
|
|
14
|
+
gridData: any;
|
|
15
|
+
isLoading: boolean;
|
|
16
|
+
error: string | null;
|
|
17
|
+
columns: Array<GridColumn>;
|
|
18
|
+
constructor(_apiExplorerService: ApiExplorerService, config: DynamicDialogConfig, cdr: ChangeDetectorRef);
|
|
19
|
+
ngOnChanges(): void;
|
|
20
|
+
loadData(): void;
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
close(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "app-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, { "closed": "closed"; }, never, ["*"], false, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ComponentRef, OnInit } from '@angular/core';
|
|
2
|
+
import { Subscription } from 'rxjs';
|
|
3
|
+
import { ButtonType } from '../../enums/button-type.enum';
|
|
4
|
+
import { AdComponent, DynamicComponentLoader } from '../../interfaces';
|
|
5
|
+
import { TsiBsModalService } from '../../services';
|
|
6
|
+
import { AdDirective } from '../../tsi-directives/dynamic-component-loader/ad.directive';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ModalLoaderComponent implements OnInit {
|
|
9
|
+
private _tsiBsModalService;
|
|
10
|
+
private _modalRef?;
|
|
11
|
+
message?: DynamicComponentLoader;
|
|
12
|
+
subscription?: Subscription;
|
|
13
|
+
comp: any;
|
|
14
|
+
config: any;
|
|
15
|
+
itemDialog: boolean;
|
|
16
|
+
modalSize: import("../../interfaces").IModalSize;
|
|
17
|
+
componentRef?: ComponentRef<AdComponent>;
|
|
18
|
+
constructor(_tsiBsModalService: TsiBsModalService);
|
|
19
|
+
buttonType: typeof ButtonType;
|
|
20
|
+
adHost: AdDirective;
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
loadComponent(msg: DynamicComponentLoader): void;
|
|
23
|
+
onCancel(): void;
|
|
24
|
+
onSave(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalLoaderComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalLoaderComponent, "app-modal-loader", never, {}, {}, never, never, false, never>;
|
|
27
|
+
}
|
package/lib/tsi-components/output-components/display-nested-prop/display-nested-prop.component.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DisplayNestedPropComponent implements OnInit {
|
|
5
|
+
protected httpClient: HttpClient;
|
|
6
|
+
item: any;
|
|
7
|
+
id?: string | undefined;
|
|
8
|
+
displayValue?: string | undefined;
|
|
9
|
+
sourceUrl?: string | undefined;
|
|
10
|
+
constructor(httpClient: HttpClient);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DisplayNestedPropComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DisplayNestedPropComponent, "Tsi-Display-Nested-Prop", never, { "id": { "alias": "id"; "required": false; }; "displayValue": { "alias": "displayValue"; "required": false; }; "sourceUrl": { "alias": "sourceUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiCheckboxDisplayComponent {
|
|
3
|
+
inputData?: boolean;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiCheckboxDisplayComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiCheckboxDisplayComponent, "Tsi-Checkbox-Display", never, { "inputData": { "alias": "inputData"; "required": false; }; }, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiCurrencyOtherDisplayComponent {
|
|
3
|
+
inputData?: number;
|
|
4
|
+
currency?: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiCurrencyOtherDisplayComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiCurrencyOtherDisplayComponent, "Tsi-Currency-Other-Display", never, { "inputData": { "alias": "inputData"; "required": false; }; "currency": { "alias": "currency"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { LayoutService } from '../../../services/application/app.layout.service';
|
|
3
|
+
import { LocalizePipe } from '../../../pipes/localize.pipe';
|
|
4
|
+
import { AppSettingsService } from '../../../services/settings/app-settings.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TsiCurrencySocieteDisplayComponent implements OnInit {
|
|
7
|
+
private localizationPipe;
|
|
8
|
+
private _layoutService;
|
|
9
|
+
private appSettingsService;
|
|
10
|
+
inputData?: number;
|
|
11
|
+
locale: string;
|
|
12
|
+
currency: string;
|
|
13
|
+
currencyTraductionKey: string;
|
|
14
|
+
constructor(localizationPipe: LocalizePipe, _layoutService: LayoutService, appSettingsService: AppSettingsService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
changeLocal(newLocalValue: string): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiCurrencySocieteDisplayComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiCurrencySocieteDisplayComponent, "Tsi-Currency-Societe-Display", never, { "inputData": { "alias": "inputData"; "required": false; }; }, {}, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiDateDisplayComponent {
|
|
3
|
+
inputData?: string;
|
|
4
|
+
formatDate: string;
|
|
5
|
+
_showTime: boolean | undefined;
|
|
6
|
+
get showTime(): boolean | undefined;
|
|
7
|
+
set showTime(value: boolean | undefined);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiDateDisplayComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiDateDisplayComponent, "Tsi-Date-Display", never, { "inputData": { "alias": "inputData"; "required": false; }; "showTime": { "alias": "showTime"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
package/lib/tsi-components/output-components/tsi-decimal-display/tsi-decimal-display.component.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiDecimalDisplayComponent {
|
|
3
|
+
inputData?: number;
|
|
4
|
+
formatDecimal?: string;
|
|
5
|
+
numOfDecimal?: number;
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiDecimalDisplayComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiDecimalDisplayComponent, "Tsi-Decimal-Display", never, { "inputData": { "alias": "inputData"; "required": false; }; "formatDecimal": { "alias": "formatDecimal"; "required": false; }; "numOfDecimal": { "alias": "numOfDecimal"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { DisplayTypes, GridSelectionMode } from '../../../enums';
|
|
3
|
+
import { GridColumn, ButtonClickResult } from '../../../interfaces';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TsiDisplayGridComponent {
|
|
6
|
+
fields?: string[];
|
|
7
|
+
displayTypes: typeof DisplayTypes;
|
|
8
|
+
selectedFullItems: Array<any>;
|
|
9
|
+
selectAll: any;
|
|
10
|
+
keyword: string | undefined;
|
|
11
|
+
multipleGridSelectionMode: GridSelectionMode;
|
|
12
|
+
columns: Array<GridColumn>;
|
|
13
|
+
showHeader: boolean;
|
|
14
|
+
header: string;
|
|
15
|
+
key: string;
|
|
16
|
+
gridData?: Array<any>;
|
|
17
|
+
gridSummaryData: any;
|
|
18
|
+
isTableLoading?: boolean;
|
|
19
|
+
showHaveSumary?: boolean;
|
|
20
|
+
selectKeyOnly: boolean;
|
|
21
|
+
selectionMode: GridSelectionMode | any;
|
|
22
|
+
parent: any;
|
|
23
|
+
selectedItems: Array<any>;
|
|
24
|
+
showFilters: boolean;
|
|
25
|
+
showSort: boolean;
|
|
26
|
+
paginator: boolean;
|
|
27
|
+
showSummaryFooter: boolean;
|
|
28
|
+
globalFilterFields: string[] | undefined;
|
|
29
|
+
rowClick: EventEmitter<any>;
|
|
30
|
+
rowDoubleClick: EventEmitter<any>;
|
|
31
|
+
selectedItemsChange: EventEmitter<Array<any>>;
|
|
32
|
+
buttonColumnClicked: EventEmitter<ButtonClickResult>;
|
|
33
|
+
totalCount(): number;
|
|
34
|
+
getData(): any;
|
|
35
|
+
getSummary(col: GridColumn): number;
|
|
36
|
+
onSelectedItemsChanged(): void;
|
|
37
|
+
onSelectAllChange(event: any): void;
|
|
38
|
+
buttonClicked(key: string, field: string): void;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiDisplayGridComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiDisplayGridComponent, "Tsi-Display-Grid", never, { "columns": { "alias": "columns"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "header": { "alias": "header"; "required": false; }; "key": { "alias": "key"; "required": false; }; "gridData": { "alias": "gridData"; "required": false; }; "gridSummaryData": { "alias": "gridSummaryData"; "required": false; }; "isTableLoading": { "alias": "isTableLoading"; "required": false; }; "showHaveSumary": { "alias": "showHaveSumary"; "required": false; }; "selectKeyOnly": { "alias": "selectKeyOnly"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "parent": { "alias": "parent"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "showFilters": { "alias": "showFilters"; "required": false; }; "showSort": { "alias": "showSort"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "showSummaryFooter": { "alias": "showSummaryFooter"; "required": false; }; "globalFilterFields": { "alias": "globalFilterFields"; "required": false; }; }, { "rowClick": "rowClick"; "rowDoubleClick": "rowDoubleClick"; "selectedItemsChange": "selectedItemsChange"; "buttonColumnClicked": "buttonColumnClicked"; }, never, never, false, never>;
|
|
41
|
+
}
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
import { DatePipe } from '@angular/common';
|
|
2
|
+
import { AfterViewInit, EnvironmentInjector, EventEmitter, OnInit } from '@angular/core';
|
|
3
|
+
import { FilterMatchMode, PrimeNGConfig, SortMeta, TableState } from 'primeng/api';
|
|
4
|
+
import { Table, TableHeaderCheckbox, TableLazyLoadEvent, TableSelectAllChangeEvent } from 'primeng/table';
|
|
5
|
+
import { BehaviorSubject } from 'rxjs';
|
|
6
|
+
import { entityInfo } from '../../../models/entity-info/entity-info';
|
|
7
|
+
import { DisplayTypes, FilterOperatorType, GridSelectionMode, GridSortMode, InputTypes, TooltipPosition } from '../../../enums';
|
|
8
|
+
import { IFilteredRequest, IPagedRequest, IGridConfiguration, IPage, GridColumn, ButtonClickResult, Dictionary } from '../../../interfaces';
|
|
9
|
+
import { SearchField, PresentationSetting, EventSchema } from '../../../models';
|
|
10
|
+
import { LayoutService } from '../../../services/application/app.layout.service';
|
|
11
|
+
import { LocalizePipe } from '../../../pipes/localize.pipe';
|
|
12
|
+
import { CrudBaseService } from '../../../services/base/crud-base.service';
|
|
13
|
+
import { HtmlTemplateGeneratorService } from '../../../services/generator/html-template-generator.service';
|
|
14
|
+
import { TsiNotificationService } from '../../../services/notification/tsi-notification.service';
|
|
15
|
+
import { LayoutHelperService } from '../../../services/layout/layout-helper.service';
|
|
16
|
+
import { AppSettingsService } from '../../../services/settings/app-settings.service';
|
|
17
|
+
import { ErrorResponseManagerService } from '../../../services/notification/error-response-manager.service';
|
|
18
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
19
|
+
import * as i0 from "@angular/core";
|
|
20
|
+
export declare class TsiGenericGridComponent implements OnInit, AfterViewInit {
|
|
21
|
+
private _htmlTemplateGeneratorService;
|
|
22
|
+
private datePipe;
|
|
23
|
+
private _messageService;
|
|
24
|
+
private localize;
|
|
25
|
+
private layoutHelperService;
|
|
26
|
+
private _layoutService;
|
|
27
|
+
private _primengConfig;
|
|
28
|
+
private appSettingsService;
|
|
29
|
+
private _errorResponseManagerService;
|
|
30
|
+
private _injector;
|
|
31
|
+
config?: DynamicDialogConfig<any> | undefined;
|
|
32
|
+
private _ref?;
|
|
33
|
+
cudComponent: any;
|
|
34
|
+
modalSize: any;
|
|
35
|
+
entityInfo: entityInfo | undefined;
|
|
36
|
+
filterMatchMode: typeof FilterMatchMode;
|
|
37
|
+
tooltipPosition: typeof TooltipPosition;
|
|
38
|
+
isAr: boolean;
|
|
39
|
+
eyeClicked(text: any): Promise<void>;
|
|
40
|
+
private _closeModal;
|
|
41
|
+
truncateString(value: string, limit?: number): string;
|
|
42
|
+
dt: Table | undefined;
|
|
43
|
+
tableHeaderCheckbox: TableHeaderCheckbox | undefined;
|
|
44
|
+
first: number;
|
|
45
|
+
rows: number;
|
|
46
|
+
displayTypes: typeof DisplayTypes;
|
|
47
|
+
keyword: string | undefined;
|
|
48
|
+
summaries: Dictionary<string, number>;
|
|
49
|
+
isRtlMode: boolean;
|
|
50
|
+
private _searchFields;
|
|
51
|
+
private _searchBoxFilters;
|
|
52
|
+
private _gridHeaderFilters;
|
|
53
|
+
private _sort;
|
|
54
|
+
sortMetas: SortMeta[];
|
|
55
|
+
selectedFullItems?: Array<any>;
|
|
56
|
+
selection: any;
|
|
57
|
+
multipleGridSelectionMode: GridSelectionMode;
|
|
58
|
+
private _dialogRef?;
|
|
59
|
+
latestFilters?: IFilteredRequest[];
|
|
60
|
+
formName?: string;
|
|
61
|
+
id?: string;
|
|
62
|
+
pagedRequest?: IPagedRequest;
|
|
63
|
+
configuration?: IGridConfiguration;
|
|
64
|
+
page: IPage<any>;
|
|
65
|
+
key: string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
*/
|
|
69
|
+
private _tempColumns;
|
|
70
|
+
tempSearchFields: Array<SearchField>;
|
|
71
|
+
private _columns;
|
|
72
|
+
set columns(value: Array<GridColumn> | undefined);
|
|
73
|
+
get columns(): Array<GridColumn>;
|
|
74
|
+
private _isSearchButtonDisabled;
|
|
75
|
+
set isSearchButtonDisabled(value: boolean);
|
|
76
|
+
get isSearchButtonDisabled(): boolean;
|
|
77
|
+
filteredColumns: Array<GridColumn>;
|
|
78
|
+
gridData?: Array<any>;
|
|
79
|
+
isTableLoading?: boolean;
|
|
80
|
+
parent: any;
|
|
81
|
+
showSearchBox: boolean;
|
|
82
|
+
showActionColumn: boolean;
|
|
83
|
+
showHeaderFilters: boolean;
|
|
84
|
+
showFilterButton: boolean;
|
|
85
|
+
isGridDataPagedInApi: boolean;
|
|
86
|
+
header: string;
|
|
87
|
+
ShowFilterColumns: boolean;
|
|
88
|
+
showImportExportButton: boolean;
|
|
89
|
+
crudService?: CrudBaseService<any, any, any, any>;
|
|
90
|
+
set searchFields(value: Array<SearchField> | undefined);
|
|
91
|
+
get searchFields(): Array<SearchField> | undefined;
|
|
92
|
+
sortMode: GridSortMode | any;
|
|
93
|
+
filtersHtmlTemplate?: string;
|
|
94
|
+
presentationSettings?: PresentationSetting;
|
|
95
|
+
selectKeyOnly: boolean;
|
|
96
|
+
private _selectionMode;
|
|
97
|
+
set selectionMode(value: GridSelectionMode | any);
|
|
98
|
+
get selectionMode(): GridSelectionMode | any;
|
|
99
|
+
selectedItems: Array<any>;
|
|
100
|
+
set searchOnInit(value: boolean);
|
|
101
|
+
get searchOnInit(): boolean;
|
|
102
|
+
showGlobalSearch: boolean;
|
|
103
|
+
showExportButton: boolean;
|
|
104
|
+
showSearchField: boolean;
|
|
105
|
+
protected _showCalenderView: boolean;
|
|
106
|
+
set showCalenderView(value: boolean);
|
|
107
|
+
calenderSchema: EventSchema | undefined;
|
|
108
|
+
protected _showCardView: boolean;
|
|
109
|
+
set showCardView(value: boolean);
|
|
110
|
+
protected _showKanbanView: boolean;
|
|
111
|
+
set showKanbanView(value: boolean);
|
|
112
|
+
businessClass?: string;
|
|
113
|
+
page$: BehaviorSubject<any>;
|
|
114
|
+
checkedByField: string;
|
|
115
|
+
private _selectAll;
|
|
116
|
+
set selectAll(value: boolean);
|
|
117
|
+
get selectAll(): boolean;
|
|
118
|
+
editRow: EventEmitter<string>;
|
|
119
|
+
deleteRow: EventEmitter<string>;
|
|
120
|
+
load: EventEmitter<{
|
|
121
|
+
request: IPagedRequest;
|
|
122
|
+
isForCalendar: boolean;
|
|
123
|
+
}>;
|
|
124
|
+
buttonColumnClicked: EventEmitter<ButtonClickResult>;
|
|
125
|
+
filtersHtmlTemplateChange: EventEmitter<string>;
|
|
126
|
+
selectedItemsChange: EventEmitter<Array<any>>;
|
|
127
|
+
searchFieldsValueChanged: EventEmitter<Array<SearchField>>;
|
|
128
|
+
calendarEventClick: EventEmitter<any>;
|
|
129
|
+
statusFilterChanged: EventEmitter<string | undefined>;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
*/
|
|
133
|
+
protected filterIcon: string;
|
|
134
|
+
protected filterTooltip: string;
|
|
135
|
+
protected requiredLocalizationKey: string;
|
|
136
|
+
filterModeIcon: string;
|
|
137
|
+
filterModeTooltip: string;
|
|
138
|
+
changeHeaderFiltersMode: string;
|
|
139
|
+
items?: any[];
|
|
140
|
+
_searchOnInit: boolean;
|
|
141
|
+
selectedColumns: GridColumn[];
|
|
142
|
+
importantColumns: string[];
|
|
143
|
+
isFirstLoadOfPage: boolean;
|
|
144
|
+
private titleCache;
|
|
145
|
+
constructor(_htmlTemplateGeneratorService: HtmlTemplateGeneratorService, datePipe: DatePipe, _messageService: TsiNotificationService, localize: LocalizePipe, layoutHelperService: LayoutHelperService, _layoutService: LayoutService, _primengConfig: PrimeNGConfig, appSettingsService: AppSettingsService, _errorResponseManagerService: ErrorResponseManagerService, _injector: EnvironmentInjector, config?: DynamicDialogConfig<any> | undefined, _ref?: DynamicDialogRef<any> | undefined);
|
|
146
|
+
ngAfterViewInit(): void;
|
|
147
|
+
ngOnInit(): void;
|
|
148
|
+
getState(): TableState | undefined;
|
|
149
|
+
restoreState(configuration: string): void;
|
|
150
|
+
onSelectedColumnsChange(): void;
|
|
151
|
+
sortColumns(): void;
|
|
152
|
+
getReorderedColumns(columnOrder: string[]): any[];
|
|
153
|
+
findColumnByKey(key: any): GridColumn | null;
|
|
154
|
+
resetSelectedColumns(configuration: string): void;
|
|
155
|
+
notInSpecifiedColumn(columnName: string): boolean;
|
|
156
|
+
processStickyColumns(): void;
|
|
157
|
+
getCheckboxStyle(): {
|
|
158
|
+
right: string;
|
|
159
|
+
position: string;
|
|
160
|
+
backgroundColor: string;
|
|
161
|
+
width: string;
|
|
162
|
+
"min-width": string;
|
|
163
|
+
left?: undefined;
|
|
164
|
+
} | {
|
|
165
|
+
left: string;
|
|
166
|
+
position: string;
|
|
167
|
+
backgroundColor: string;
|
|
168
|
+
width: string;
|
|
169
|
+
"min-width": string;
|
|
170
|
+
right?: undefined;
|
|
171
|
+
};
|
|
172
|
+
getTheStyle(column: GridColumn): any;
|
|
173
|
+
private isRtlModeEnabled;
|
|
174
|
+
private updatePrimeNGTableFilters;
|
|
175
|
+
private _rtlModeSubscribe;
|
|
176
|
+
searchFieldsValueChanges(searchFieldValues: Array<SearchField>): void;
|
|
177
|
+
isLastPage(): boolean;
|
|
178
|
+
isFirstPage(): boolean;
|
|
179
|
+
edit(item: any): void;
|
|
180
|
+
delete(item: any): void;
|
|
181
|
+
lazyLoad(event: TableLazyLoadEvent): void;
|
|
182
|
+
fields(): string[];
|
|
183
|
+
buttonClicked(item: any, field: string): void;
|
|
184
|
+
keywordValueChanged(keyword: string | undefined): void;
|
|
185
|
+
isAllRequiredSearchFieldsHaveValues(): boolean;
|
|
186
|
+
initSearchOnInit(): void;
|
|
187
|
+
ccomboBoxLabelChanged(event?: Array<SearchField>): void;
|
|
188
|
+
search(evt?: any): void;
|
|
189
|
+
getFirstElementIndex(): number;
|
|
190
|
+
getSummary(field: string): number | undefined;
|
|
191
|
+
onSelectedItemsChanged(): void;
|
|
192
|
+
onSelectAllChange(event: TableSelectAllChangeEvent): void;
|
|
193
|
+
onStateRestore(tableState: TableState): void;
|
|
194
|
+
onClearFilters(): void;
|
|
195
|
+
getOperatorNumber(operator: string): number;
|
|
196
|
+
inferInputType(value: any): InputTypes;
|
|
197
|
+
loadInitialState(): any;
|
|
198
|
+
private _extractFilters;
|
|
199
|
+
private _extractSortCriterias;
|
|
200
|
+
private _extractSingleSortCriteria;
|
|
201
|
+
private _extractMultipleSortCriterias;
|
|
202
|
+
private _notNullOrUndefined;
|
|
203
|
+
private _extractOnlyVisibleSearchFields;
|
|
204
|
+
private _extractSearchBoxFilters;
|
|
205
|
+
private _clonePagedRequest;
|
|
206
|
+
private _extractHaveSummaryProperties;
|
|
207
|
+
private _extractSummaries;
|
|
208
|
+
private _extractMultiSortMetaItems;
|
|
209
|
+
private _toSortMeta;
|
|
210
|
+
private _generateFiltersHtmlTemplate;
|
|
211
|
+
private _excludeUselessGridFilter;
|
|
212
|
+
private _excludeUselessFilters;
|
|
213
|
+
exportExcel(): void;
|
|
214
|
+
exportDataFromApiToExcelSheet(value: any): void;
|
|
215
|
+
saveAsExcelFile(buffer: any, fileName: string): void;
|
|
216
|
+
getFilterOperatorName(operator: FilterOperatorType): string;
|
|
217
|
+
removeNonExistingColumns(worksheetData: any[], selectedColumnsFields: string[]): any[];
|
|
218
|
+
toggleHeaderFilters(): void;
|
|
219
|
+
toggleHeaderFiltersMode(): void;
|
|
220
|
+
getHeaderClassColor(columnType: DisplayTypes): string;
|
|
221
|
+
get colorful(): boolean;
|
|
222
|
+
private initialColumnsProcess;
|
|
223
|
+
handleCalendarEventClick(item: any): void;
|
|
224
|
+
handleDateRangeChange(event: any): void;
|
|
225
|
+
callSearchHandler(event: any): void;
|
|
226
|
+
getHeaderTitles(titles: string[], item: any): string[];
|
|
227
|
+
status: string | undefined;
|
|
228
|
+
onStatusFilterChanged(evt: any): void;
|
|
229
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiGenericGridComponent, never>;
|
|
230
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiGenericGridComponent, "Tsi-Generic-Grid", never, { "cudComponent": { "alias": "cudComponent"; "required": false; }; "modalSize": { "alias": "modalSize"; "required": false; }; "entityInfo": { "alias": "entityInfo"; "required": false; }; "formName": { "alias": "formName"; "required": false; }; "id": { "alias": "id"; "required": false; }; "pagedRequest": { "alias": "pagedRequest"; "required": false; }; "configuration": { "alias": "configuration"; "required": false; }; "page": { "alias": "page"; "required": false; }; "key": { "alias": "key"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "isSearchButtonDisabled": { "alias": "isSearchButtonDisabled"; "required": false; }; "filteredColumns": { "alias": "filteredColumns"; "required": false; }; "gridData": { "alias": "gridData"; "required": false; }; "isTableLoading": { "alias": "isTableLoading"; "required": false; }; "parent": { "alias": "parent"; "required": false; }; "showSearchBox": { "alias": "showSearchBox"; "required": false; }; "showActionColumn": { "alias": "showActionColumn"; "required": false; }; "showHeaderFilters": { "alias": "showHeaderFilters"; "required": false; }; "showFilterButton": { "alias": "showFilterButton"; "required": false; }; "isGridDataPagedInApi": { "alias": "isGridDataPagedInApi"; "required": false; }; "header": { "alias": "header"; "required": false; }; "ShowFilterColumns": { "alias": "ShowFilterColumns"; "required": false; }; "showImportExportButton": { "alias": "showImportExportButton"; "required": false; }; "crudService": { "alias": "crudService"; "required": false; }; "searchFields": { "alias": "searchFields"; "required": false; }; "sortMode": { "alias": "sortMode"; "required": false; }; "filtersHtmlTemplate": { "alias": "filtersHtmlTemplate"; "required": false; }; "presentationSettings": { "alias": "presentationSettings"; "required": false; }; "selectKeyOnly": { "alias": "selectKeyOnly"; "required": false; }; "selectionMode": { "alias": "selectionMode"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "searchOnInit": { "alias": "searchOnInit"; "required": false; }; "showGlobalSearch": { "alias": "showGlobalSearch"; "required": false; }; "showExportButton": { "alias": "showExportButton"; "required": false; }; "showSearchField": { "alias": "showSearchField"; "required": false; }; "showCalenderView": { "alias": "showCalenderView"; "required": false; }; "calenderSchema": { "alias": "calenderSchema"; "required": false; }; "showCardView": { "alias": "showCardView"; "required": false; }; "showKanbanView": { "alias": "showKanbanView"; "required": false; }; "businessClass": { "alias": "businessClass"; "required": false; }; "page$": { "alias": "page$"; "required": false; }; "checkedByField": { "alias": "checkedByField"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; }, { "editRow": "editRow"; "deleteRow": "deleteRow"; "load": "load"; "buttonColumnClicked": "buttonColumnClicked"; "filtersHtmlTemplateChange": "filtersHtmlTemplateChange"; "selectedItemsChange": "selectedItemsChange"; "searchFieldsValueChanged": "searchFieldsValueChanged"; "calendarEventClick": "calendarEventClick"; "statusFilterChanged": "statusFilterChanged"; }, never, never, false, never>;
|
|
231
|
+
}
|
package/lib/tsi-components/output-components/tsi-image-display/tsi-image-display.component.d.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TsiImageDisplayComponent implements OnInit {
|
|
5
|
+
private _sanitizer;
|
|
6
|
+
src: any;
|
|
7
|
+
alt: string;
|
|
8
|
+
width: string;
|
|
9
|
+
height: string;
|
|
10
|
+
isRounded: boolean;
|
|
11
|
+
title: string;
|
|
12
|
+
private _headerTitles;
|
|
13
|
+
set headerTitles(v: string[]);
|
|
14
|
+
get headerTitles(): string[];
|
|
15
|
+
get safeSrc(): SafeUrl;
|
|
16
|
+
get cursorStyle(): string;
|
|
17
|
+
get canZoomIn(): boolean;
|
|
18
|
+
get canZoomOut(): boolean;
|
|
19
|
+
displayDialog: boolean;
|
|
20
|
+
zoomLevel: number;
|
|
21
|
+
readonly MIN_ZOOM = 1;
|
|
22
|
+
readonly MAX_ZOOM = 3;
|
|
23
|
+
readonly ZOOM_STEP = 0.5;
|
|
24
|
+
isDragging: boolean;
|
|
25
|
+
startX: number;
|
|
26
|
+
startY: number;
|
|
27
|
+
translateX: number;
|
|
28
|
+
translateY: number;
|
|
29
|
+
lastTranslateX: number;
|
|
30
|
+
lastTranslateY: number;
|
|
31
|
+
constructor(_sanitizer: DomSanitizer);
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
showImage(): void;
|
|
34
|
+
hideImage(): void;
|
|
35
|
+
onWheel(event: WheelEvent): void;
|
|
36
|
+
private zoomIn;
|
|
37
|
+
private zoomOut;
|
|
38
|
+
resetZoomAndPan(): void;
|
|
39
|
+
onMouseDown(event: MouseEvent): void;
|
|
40
|
+
onMouseMove(event: MouseEvent): void;
|
|
41
|
+
onMouseUp(): void;
|
|
42
|
+
onMouseLeave(): void;
|
|
43
|
+
get panTransform(): string;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiImageDisplayComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiImageDisplayComponent, "tsi-image-display", never, { "src": { "alias": "src"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "isRounded": { "alias": "isRounded"; "required": false; }; "headerTitles": { "alias": "headerTitles"; "required": false; }; }, {}, never, never, false, never>;
|
|
46
|
+
}
|
package/lib/tsi-components/output-components/tsi-integer-display/tsi-integer-display.component.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiIntegerDisplayComponent {
|
|
3
|
+
inputData?: number;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiIntegerDisplayComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiIntegerDisplayComponent, "Tsi-Integer-Display", never, { "inputData": { "alias": "inputData"; "required": false; }; }, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiLabelComponent {
|
|
3
|
+
labelValue: string;
|
|
4
|
+
styleClass: string;
|
|
5
|
+
infoText: string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiLabelComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiLabelComponent, "Tsi-Label", never, { "labelValue": { "alias": "labelValue"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiLabelLegendComponent {
|
|
3
|
+
labelValue: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiLabelLegendComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiLabelLegendComponent, "Tsi-Label-Legend", never, { "labelValue": { "alias": "labelValue"; "required": false; }; }, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TsiLegendComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
legendLabel: string;
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiLegendComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiLegendComponent, "Tsi-Legend", never, { "legendLabel": { "alias": "legendLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiParagraphComponent {
|
|
3
|
+
paragraphName: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiParagraphComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiParagraphComponent, "Tsi-Paragraph", never, { "paragraphName": { "alias": "paragraphName"; "required": false; }; }, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiRateDisplayComponent {
|
|
3
|
+
isFraction: boolean;
|
|
4
|
+
inputData?: number;
|
|
5
|
+
numOfDecimal?: number;
|
|
6
|
+
getToFraction(): number;
|
|
7
|
+
getFormat(): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiRateDisplayComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiRateDisplayComponent, "Tsi-Rate-Display", never, { "isFraction": { "alias": "isFraction"; "required": false; }; "inputData": { "alias": "inputData"; "required": false; }; "numOfDecimal": { "alias": "numOfDecimal"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TsiTimeDisplayComponent {
|
|
3
|
+
inputData?: string;
|
|
4
|
+
formatTime: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TsiTimeDisplayComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TsiTimeDisplayComponent, "tsi-time-display", never, { "inputData": { "alias": "inputData"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|