shared-ui-test-2 1.0.0
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/constants/breadcrumbs.const.d.ts +1 -0
- package/constants/class-name.constant.d.ts +1 -0
- package/constants/query-design-custom-class.constant.d.ts +1 -0
- package/core/auth-providers.module.d.ts +7 -0
- package/core/blank/blank.component.d.ts +5 -0
- package/core/components/horizontal-navigation/horizontal-navigation-menu-item/horizontal-navigation-menu-item.component.d.ts +9 -0
- package/core/components/horizontal-navigation/horizontal-navigation.component.d.ts +7 -0
- package/core/components/not-authorized/not-authorized.component.d.ts +6 -0
- package/core/components/sidebar/main-navigation/main-navigation.component.d.ts +28 -0
- package/core/components/sidebar/sidebar.component.d.ts +5 -0
- package/core/components/top-navigation/top-navigation.component.d.ts +6 -0
- package/core/components/user-info-menu/user-info-menu.component.d.ts +32 -0
- package/core/constants/active-statuses.d.ts +2 -0
- package/core/constants/availability.d.ts +2 -0
- package/core/constants/dashboard-portal-url.d.ts +1 -0
- package/core/constants/full-width-modal-config.d.ts +2 -0
- package/core/constants/horizontal-navigation.config.d.ts +2 -0
- package/core/constants/local-constants.d.ts +13 -0
- package/core/constants/pagination.const.d.ts +6 -0
- package/core/constants/privacy.d.ts +2 -0
- package/core/constants/request-context.d.ts +7 -0
- package/core/constants/yes-no.d.ts +2 -0
- package/core/core.module.d.ts +18 -0
- package/core/directive/authorize.directive.d.ts +14 -0
- package/core/enums/client-name.enum.d.ts +4 -0
- package/core/enums/object-properties.enum.d.ts +57 -0
- package/core/interceptors/error.interceptor.d.ts +13 -0
- package/core/interceptors/health-check-header.interceptor.d.ts +10 -0
- package/core/interfaces/business-rule.interface.d.ts +54 -0
- package/core/interfaces/filters.api.interface.d.ts +32 -0
- package/core/interfaces/horizontal-navigation.interface.d.ts +11 -0
- package/core/interfaces/navigation.interface.d.ts +5 -0
- package/core/interfaces/response-headers.interface.d.ts +5 -0
- package/core/models/auth-service-configuration.d.ts +4 -0
- package/core/models/menu-elements-dto.d.ts +21 -0
- package/core/models/refresh-tokens-response.d.ts +5 -0
- package/core/models/version-data.d.ts +3 -0
- package/core/resolvers/policy.resolver.d.ts +18 -0
- package/core/services/http.service.d.ts +75 -0
- package/core/services/loading.service.d.ts +10 -0
- package/core/services/local-storage.service.d.ts +35 -0
- package/core/services/nav-menu-data.service.d.ts +13 -0
- package/core/services/user-management.service.d.ts +39 -0
- package/core/services/user-policy.service.d.ts +15 -0
- package/core/site/services/support-util.service.d.ts +18 -0
- package/core/token/app-auth-config-injection-token.d.ts +9 -0
- package/core/token/app-env-injection.token.d.ts +8 -0
- package/core/token/policy-injection-token.d.ts +2 -0
- package/core/utils/service-url.util.d.ts +1 -0
- package/core/utils/sql-to-filter-datatype-converter.d.ts +2 -0
- package/core/utils/type-checks.utils.d.ts +10 -0
- package/core/utils/uuid-generator.utils.d.ts +1 -0
- package/directives/let.directive.d.ts +25 -0
- package/directives/remove-cancel-button.directive.d.ts +10 -0
- package/enums/access-types.enum.d.ts +5 -0
- package/enums/action-types.enum.d.ts +16 -0
- package/enums/active-status.enum.d.ts +4 -0
- package/enums/sort-direction.enum.d.ts +4 -0
- package/enums/source-types.enum.d.ts +4 -0
- package/enums/tooltips-prop.enum.d.ts +31 -0
- package/esm2022/constants/breadcrumbs.const.mjs +2 -0
- package/esm2022/constants/class-name.constant.mjs +2 -0
- package/esm2022/constants/query-design-custom-class.constant.mjs +2 -0
- package/esm2022/core/auth-providers.module.mjs +131 -0
- package/esm2022/core/blank/blank.component.mjs +12 -0
- package/esm2022/core/components/horizontal-navigation/horizontal-navigation-menu-item/horizontal-navigation-menu-item.component.mjs +29 -0
- package/esm2022/core/components/horizontal-navigation/horizontal-navigation.component.mjs +17 -0
- package/esm2022/core/components/not-authorized/not-authorized.component.mjs +17 -0
- package/esm2022/core/components/sidebar/main-navigation/main-navigation.component.mjs +88 -0
- package/esm2022/core/components/sidebar/sidebar.component.mjs +12 -0
- package/esm2022/core/components/top-navigation/top-navigation.component.mjs +15 -0
- package/esm2022/core/components/user-info-menu/user-info-menu.component.mjs +96 -0
- package/esm2022/core/constants/active-statuses.mjs +9 -0
- package/esm2022/core/constants/availability.mjs +9 -0
- package/esm2022/core/constants/dashboard-portal-url.mjs +2 -0
- package/esm2022/core/constants/full-width-modal-config.mjs +10 -0
- package/esm2022/core/constants/horizontal-navigation.config.mjs +29 -0
- package/esm2022/core/constants/local-constants.mjs +28 -0
- package/esm2022/core/constants/pagination.const.mjs +10 -0
- package/esm2022/core/constants/privacy.mjs +9 -0
- package/esm2022/core/constants/request-context.mjs +9 -0
- package/esm2022/core/constants/yes-no.mjs +5 -0
- package/esm2022/core/core.module.mjs +81 -0
- package/esm2022/core/directive/authorize.directive.mjs +37 -0
- package/esm2022/core/enums/client-name.enum.mjs +6 -0
- package/esm2022/core/enums/object-properties.enum.mjs +67 -0
- package/esm2022/core/interceptors/error.interceptor.mjs +61 -0
- package/esm2022/core/interceptors/health-check-header.interceptor.mjs +25 -0
- package/esm2022/core/interfaces/business-rule.interface.mjs +18 -0
- package/esm2022/core/interfaces/filters.api.interface.mjs +12 -0
- package/esm2022/core/interfaces/horizontal-navigation.interface.mjs +2 -0
- package/esm2022/core/interfaces/navigation.interface.mjs +2 -0
- package/esm2022/core/interfaces/response-headers.interface.mjs +2 -0
- package/esm2022/core/models/auth-service-configuration.mjs +3 -0
- package/esm2022/core/models/menu-elements-dto.mjs +2 -0
- package/esm2022/core/models/refresh-tokens-response.mjs +3 -0
- package/esm2022/core/models/version-data.mjs +2 -0
- package/esm2022/core/resolvers/policy.resolver.mjs +52 -0
- package/esm2022/core/services/http.service.mjs +111 -0
- package/esm2022/core/services/loading.service.mjs +24 -0
- package/esm2022/core/services/local-storage.service.mjs +55 -0
- package/esm2022/core/services/nav-menu-data.service.mjs +21 -0
- package/esm2022/core/services/user-management.service.mjs +97 -0
- package/esm2022/core/services/user-policy.service.mjs +31 -0
- package/esm2022/core/site/services/support-util.service.mjs +55 -0
- package/esm2022/core/token/app-auth-config-injection-token.mjs +3 -0
- package/esm2022/core/token/app-env-injection.token.mjs +3 -0
- package/esm2022/core/token/policy-injection-token.mjs +3 -0
- package/esm2022/core/utils/service-url.util.mjs +7 -0
- package/esm2022/core/utils/sql-to-filter-datatype-converter.mjs +37 -0
- package/esm2022/core/utils/type-checks.utils.mjs +34 -0
- package/esm2022/core/utils/uuid-generator.utils.mjs +8 -0
- package/esm2022/directives/let.directive.mjs +48 -0
- package/esm2022/directives/remove-cancel-button.directive.mjs +23 -0
- package/esm2022/enums/access-types.enum.mjs +7 -0
- package/esm2022/enums/action-types.enum.mjs +18 -0
- package/esm2022/enums/active-status.enum.mjs +6 -0
- package/esm2022/enums/sort-direction.enum.mjs +6 -0
- package/esm2022/enums/source-types.enum.mjs +6 -0
- package/esm2022/enums/tooltips-prop.enum.mjs +33 -0
- package/esm2022/models/auth-token.mjs +2 -0
- package/esm2022/modules/dynamic-cards/directives/flip-card.directive.mjs +44 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/card-list-container/card-list-container.component.mjs +20 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card/dynamic-card.component.mjs +19 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card-back/dynamic-card-back.component.mjs +16 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card-footer/dynamic-card-footer.component.mjs +21 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card-front/dynamic-card-front.component.mjs +18 -0
- package/esm2022/modules/dynamic-cards/dynamic-cards.module.mjs +60 -0
- package/esm2022/modules/dynamic-cards/interface/card-list.interface.mjs +2 -0
- package/esm2022/modules/dynamic-cards/interface/card.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-button-control/dynamic-form-button-control.component.mjs +27 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-checkbox-control/dynamic-form-checkbox-control.component.mjs +19 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-control-label/dynamic-form-control-label.component.mjs +14 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-counter-control/dynamic-form-counter-control.component.mjs +43 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-datepicker-control/dynamic-form-datepicker-control.component.mjs +48 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field-control.component.mjs +96 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field.matcher.mjs +9 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-input-control/dynamic-form-input-control.component.mjs +22 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ng-select-control/dynamic-form-ng-select-control.component.mjs +27 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/dynamic-form-radio-group.component.mjs +31 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/enum/radio-group-orientation.enum.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-select-control/dynamic-form-select-control.component.mjs +29 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-switch-control/dynamic-form-switch-control.component.mjs +18 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-text-area-control/dynamic-form-text-area-control.component.mjs +22 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control-list/dynamic-form-ui-control-list.component.mjs +74 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control.component.mjs +30 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/base-form-actions.component.mjs +47 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/enums/base-form-action-types.mjs +7 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/interfaces/base-form-action.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/dynamic-form-ui.component.mjs +64 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-array/dynamic-form-ui-array.component.mjs +26 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-group/dynamic-form-group.component.mjs +26 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout-item/dynamic-form-layout-item.component.mjs +65 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout.component.mjs +33 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/enums/form-field-css-class.enum.mjs +9 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/errors-block/errors-block.component.mjs +25 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/dynamic-form-ui.module.mjs +117 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/index.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/providers/ui-form-control-map.provider.mjs +47 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-array.component.mjs +16 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-component.mjs +82 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control-container.component.mjs +189 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control.component.mjs +112 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-layout.component.mjs +34 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/constants/form-errors.constant.mjs +34 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/constants/matchers/matchers.constant.mjs +27 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/constants/reg-exp-error.constant.mjs +10 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-id.directive.mjs +24 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-list.directive.mjs +26 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-template.directive.mjs +29 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/dynamic-form-core.module.mjs +49 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/autocomplete.enum.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/control-types.enum.mjs +22 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/form-control-events.enum.mjs +8 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/form-control-statuses.enum.mjs +8 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/form-hooks.enum.mjs +7 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/input-types.enum.mjs +20 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/matcher-operators.enum.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/matcher-types.enum.mjs +10 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/template-directive-alignment.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/textarea-wrap.enum.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/validation-states.enum.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/index.mjs +39 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/components/dynamic-templateable-form-control.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control-event.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/dynamic-form/dynamic-form-model.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-control-layout.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/layout-render-template.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/matchers/form-control-matcher.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-array/form-array-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-button-control/button-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-check-control/check-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-relation.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-date-control/date-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-file-control/file-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-group/form-group-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-input-control/form-input-control-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-number-control/form-number-control-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option/form-option-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option-control/form-option-control-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/button-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/checkbox-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/colorpicker-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/datepicker-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/fileupload-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/input-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/radio-group-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/rating-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/select-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/slider-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/switch-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/textarea-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/timepicker-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-value-control/form-value-control.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/validators/validators.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-array/dynamic-form-array.model.mjs +51 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-array/form-array-group/dynamic-form-array-group.model.mjs +15 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-button-control/dynamic-button-control.model.mjs +19 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-check-control/dynamic-check-control.model.mjs +19 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model.mjs +23 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-date-control/dynamic-date-control.model.mjs +11 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-file-control/dynamic-file-control.model.mjs +9 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-group/dynamic-form-group.model.mjs +37 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-input-control/dynamic-input-control.model.mjs +20 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-number-control/dynamic-number-control.model.mjs +15 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-option/form-option.model.mjs +15 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-option-control/dynamic-option-control.model.mjs +52 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-static-control/static-control.model.mjs +7 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/button/dynamic-button.model.mjs +13 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox-group.model.mjs +21 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox.model.mjs +12 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/colorpicker/dynamic-colorpicker.model.mjs +12 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/counter/dynamic-counter.model.mjs +11 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/datepicker/dynamic-datepicker.model.mjs +18 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/file-upload/dynamic-file-upload.model.mjs +17 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/input/dynamic-input.model.mjs +13 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/radio/dynamic-radio-group.model.mjs +13 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/rating/dynamic-rating.model.mjs +11 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/select/dynamic-select.model.mjs +18 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/slider/dynamic-slider.model.mjs +14 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/switch/dynamic-switch.model.mjs +11 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/textarea/dynamic-textarea.model.mjs +14 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/timepicker/dynamic-timepicker.model.mjs +12 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-value-control/form-value-control.model.mjs +25 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/col-control.model.mjs +10 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/enums/FormLayoutControlTypes.enum.mjs +7 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-control.model.mjs +8 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-group-control.mjs +9 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/row-control.model.mjs +10 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/ng-select-control/dynamic-ng-select.model.mjs +19 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.mock.mjs +20 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.pipe.mjs +38 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/pipes/get-error-from-key-value.pipe.mjs +20 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-component.service.mjs +37 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-layout.service.mjs +35 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-relation.service.mjs +22 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-validation.service.mjs +35 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form.service.mjs +239 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/static-form-service.mjs +111 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/tokens/dynamic-matchers.token.mjs +3 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/tokens/form-control-map.token.mjs +3 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/tokens/validators.token.mjs +3 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/utils/events/form-control-events.utils.mjs +5 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/utils/json/json.utils.mjs +30 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms.module.mjs +32 -0
- package/esm2022/modules/material/mat-cdk-module.mjs +17 -0
- package/esm2022/modules/material/material.module.mjs +201 -0
- package/esm2022/modules/query-builder/components/query-design/query-design.component.mjs +103 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/components/alphanumeric-control/alphanumeric-control.component.mjs +150 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/components/boolean-control/boolean-control.component.mjs +102 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/components/date-control/date-control.component.mjs +76 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/components/numeric-control/numeric-control.component.mjs +168 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/constants/operators-sets.mjs +108 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/helpers/condition-operators.mapper.mjs +8 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/helpers/control-values-mapper.mjs +78 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/rule-line.component.mjs +234 -0
- package/esm2022/modules/query-builder/directive/auto-complete-position.directive.mjs +30 -0
- package/esm2022/modules/query-builder/interfaces/query-builder.interface.mjs +39 -0
- package/esm2022/modules/query-builder/interfaces/select-custom-css-object.mjs +2 -0
- package/esm2022/modules/query-builder/query-builder.module.mjs +66 -0
- package/esm2022/modules/ui-kit/components/accordion/accordion-content/accordion-content.component.mjs +16 -0
- package/esm2022/modules/ui-kit/components/accordion/accordion-trigger.directive.mjs +30 -0
- package/esm2022/modules/ui-kit/components/accordion/accordion.directive.mjs +19 -0
- package/esm2022/modules/ui-kit/components/banner/banner.component.mjs +53 -0
- package/esm2022/modules/ui-kit/components/banner/banner.service.mjs +64 -0
- package/esm2022/modules/ui-kit/components/breadcrumbs/breadcrumbs.component.mjs +25 -0
- package/esm2022/modules/ui-kit/components/breadcrumbs/model/breadCrumbItem.mjs +2 -0
- package/esm2022/modules/ui-kit/components/breadcrumbs/service/breadcrumb.service.mjs +63 -0
- package/esm2022/modules/ui-kit/components/breadcrumbs/utils/crumb-service.enum.mjs +8 -0
- package/esm2022/modules/ui-kit/components/buttons/button-control/button-control.component.mjs +46 -0
- package/esm2022/modules/ui-kit/components/buttons/buttons-list/buttons-list.component.mjs +11 -0
- package/esm2022/modules/ui-kit/components/buttons/circle-button/circle-button.component.mjs +37 -0
- package/esm2022/modules/ui-kit/components/card-container/card-container.component.mjs +11 -0
- package/esm2022/modules/ui-kit/components/common-breadcrumbs/common-breadcrumbs.component.mjs +30 -0
- package/esm2022/modules/ui-kit/components/common-breadcrumbs/interface/breadcrumb.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/components/common-breadcrumbs/service/breadcrumb.service.mjs +65 -0
- package/esm2022/modules/ui-kit/components/data-pagination/data-pagination.component.mjs +155 -0
- package/esm2022/modules/ui-kit/components/data-table/api-classes/filter-manager.mjs +50 -0
- package/esm2022/modules/ui-kit/components/data-table/api-classes/grid-api.mjs +73 -0
- package/esm2022/modules/ui-kit/components/data-table/base-data-table-container/base-data-table-container.component.mjs +10 -0
- package/esm2022/modules/ui-kit/components/data-table/constants/change-type.enum.mjs +8 -0
- package/esm2022/modules/ui-kit/components/data-table/constants/column-id.mjs +13 -0
- package/esm2022/modules/ui-kit/components/data-table/constants/row.mjs +4 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component.mjs +93 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col/data-col.component.mjs +17 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-action-button/data-col-action-button.component.mjs +27 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-boolean/data-col-boolean.component.mjs +20 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-multivalue/data-col-multivalue.component.mjs +18 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-nested/data-col-nested.component.mjs +31 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-reference/data-col-reference.component.mjs +96 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-view/data-col-view.component.mjs +75 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-disp/data-col-disp.component.mjs +248 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/data-col-filter.component.mjs +323 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-between-value.mjs +68 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-contains-value.mjs +25 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-in-value.mjs +64 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-slider-value.mjs +42 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/filter-value-executor-provider.mjs +42 -0
- package/esm2022/modules/ui-kit/components/data-table/data-column-filter/data-column-filter.component.mjs +69 -0
- package/esm2022/modules/ui-kit/components/data-table/data-row/data-row.component.mjs +251 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table/data-table.component.mjs +1534 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-actions/data-table-actions.component.mjs +153 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-body/data-table-body.component.mjs +205 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-check-rows/data-table-check-rows.component.mjs +61 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-row-actions/const/data-table-actions.enum.mjs +8 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-row-actions/data-table-row-actions.component.mjs +120 -0
- package/esm2022/modules/ui-kit/components/data-table/enums/col-filter-types.mjs +17 -0
- package/esm2022/modules/ui-kit/components/data-table/header-row/header-row.component.mjs +14 -0
- package/esm2022/modules/ui-kit/components/data-table/interfaces/data-table-component.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/components/data-table/services/data-table-context.service.mjs +26 -0
- package/esm2022/modules/ui-kit/components/data-table-wrap/data-table-wrap.component.mjs +38 -0
- package/esm2022/modules/ui-kit/components/excel-table/excel-table.component.mjs +164 -0
- package/esm2022/modules/ui-kit/components/excel-table/interface/excel-table.interface.mjs +44 -0
- package/esm2022/modules/ui-kit/components/form/base-form-control/base-form-control.component.mjs +41 -0
- package/esm2022/modules/ui-kit/components/form/base-form-page/base-form-page.component.mjs +8 -0
- package/esm2022/modules/ui-kit/components/form/checkbox-form-control/checkbox-form-control.component.mjs +21 -0
- package/esm2022/modules/ui-kit/components/form/counter-form-control/counter-form-control.component.mjs +66 -0
- package/esm2022/modules/ui-kit/components/form/form-container/form-container.component.mjs +133 -0
- package/esm2022/modules/ui-kit/components/form/form-group-container/form-group-container.component.mjs +11 -0
- package/esm2022/modules/ui-kit/components/form/input-form-control/input-form-control.component.mjs +20 -0
- package/esm2022/modules/ui-kit/components/form/multivalue-form-control/custom-input/custom-input.component.mjs +35 -0
- package/esm2022/modules/ui-kit/components/form/multivalue-form-control/custom-input/old-new-value.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/components/form/multivalue-form-control/multivalue-form-control.component.mjs +66 -0
- package/esm2022/modules/ui-kit/components/form/radio-form-control/radio-form-control.component.mjs +19 -0
- package/esm2022/modules/ui-kit/components/form/select-form-control/select-form-control.component.mjs +78 -0
- package/esm2022/modules/ui-kit/components/form/selection-group-container/selection-group-container.component.mjs +18 -0
- package/esm2022/modules/ui-kit/components/form/textarea-form-control/textarea-form-control.component.mjs +20 -0
- package/esm2022/modules/ui-kit/components/icon/expand-collapse-icon/expand-collapse-icon.component.mjs +26 -0
- package/esm2022/modules/ui-kit/components/icon/icon/icon.component.mjs +35 -0
- package/esm2022/modules/ui-kit/components/icon/text-icon/text-icon.component.mjs +22 -0
- package/esm2022/modules/ui-kit/components/layouts/form-layout/form-layout.component.mjs +56 -0
- package/esm2022/modules/ui-kit/components/layouts/primary-layout/primary-layout.component.mjs +11 -0
- package/esm2022/modules/ui-kit/components/loader/loader.component.mjs +27 -0
- package/esm2022/modules/ui-kit/components/mat-actions-button/mat-actions-button.mjs +34 -0
- package/esm2022/modules/ui-kit/components/modals/common-confirm-modal/common-confirm-modal.component.mjs +53 -0
- package/esm2022/modules/ui-kit/components/modals/confirm-modal/confirm-modal.component.mjs +37 -0
- package/esm2022/modules/ui-kit/components/modals/delete-modal/delete-modal.component.mjs +41 -0
- package/esm2022/modules/ui-kit/components/modals/enums/confirmation-modal.enum.mjs +13 -0
- package/esm2022/modules/ui-kit/components/snackbar/snackbar.component.mjs +21 -0
- package/esm2022/modules/ui-kit/components/tabs/constants/index.mjs +2 -0
- package/esm2022/modules/ui-kit/components/tabs/interfaces/index.mjs +2 -0
- package/esm2022/modules/ui-kit/components/tabs/tab-group/tab-group.component.mjs +77 -0
- package/esm2022/modules/ui-kit/components/tabs/tab.directive.mjs +60 -0
- package/esm2022/modules/ui-kit/components/tree-view/tree-view.component.mjs +374 -0
- package/esm2022/modules/ui-kit/constants/data-table-icon-class.constant.mjs +2 -0
- package/esm2022/modules/ui-kit/constants/data-table.constants.mjs +7 -0
- package/esm2022/modules/ui-kit/constants/date-separator.constant.mjs +2 -0
- package/esm2022/modules/ui-kit/constants/snackbar.constants.mjs +4 -0
- package/esm2022/modules/ui-kit/enums/action-type.enum.mjs +14 -0
- package/esm2022/modules/ui-kit/enums/coderefs-prop.enum.mjs +26 -0
- package/esm2022/modules/ui-kit/enums/color-schemes.enum.mjs +13 -0
- package/esm2022/modules/ui-kit/enums/column-disable-mode.enum.mjs +7 -0
- package/esm2022/modules/ui-kit/enums/column-types.enum.mjs +10 -0
- package/esm2022/modules/ui-kit/enums/component-sizes.enum.mjs +6 -0
- package/esm2022/modules/ui-kit/enums/data-type.enum.mjs +13 -0
- package/esm2022/modules/ui-kit/enums/form-item-type.mjs +7 -0
- package/esm2022/modules/ui-kit/enums/form-types.enum.mjs +7 -0
- package/esm2022/modules/ui-kit/enums/form-url-params.enum.mjs +6 -0
- package/esm2022/modules/ui-kit/enums/icons.enum.mjs +24 -0
- package/esm2022/modules/ui-kit/enums/operator.enum.mjs +21 -0
- package/esm2022/modules/ui-kit/enums/position.enum.mjs +6 -0
- package/esm2022/modules/ui-kit/enums/select-option.enum.mjs +10 -0
- package/esm2022/modules/ui-kit/enums/snackbar.enum.mjs +8 -0
- package/esm2022/modules/ui-kit/enums/url-param-action.enum.mjs +6 -0
- package/esm2022/modules/ui-kit/enums/utils.enum.mjs +6 -0
- package/esm2022/modules/ui-kit/enums/viewType.enum.mjs +7 -0
- package/esm2022/modules/ui-kit/interfaces/api.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/confirm-modal-data.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/constants.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/data-table.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/form.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/generic.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/list-item.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/mat-action-buttons.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/row-selection-info.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/select.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/snackbar.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/tree-view.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/models/storage-object.model.mjs +3 -0
- package/esm2022/modules/ui-kit/pipes/column-filter.pipe.mjs +21 -0
- package/esm2022/modules/ui-kit/pipes/filter-by-prop.pipe.mjs +27 -0
- package/esm2022/modules/ui-kit/pipes/first-letter-text.pipe.mjs +17 -0
- package/esm2022/modules/ui-kit/pipes/keys.pipe.mjs +17 -0
- package/esm2022/modules/ui-kit/pipes/paginate.pipe.mjs +29 -0
- package/esm2022/modules/ui-kit/pipes/search.pipe.mjs +50 -0
- package/esm2022/modules/ui-kit/services/api/api.service.mjs +72 -0
- package/esm2022/modules/ui-kit/services/api/rest-api.service.mjs +62 -0
- package/esm2022/modules/ui-kit/services/data-table.service.mjs +202 -0
- package/esm2022/modules/ui-kit/services/form.service.mjs +91 -0
- package/esm2022/modules/ui-kit/services/formatters/date-formatter.service.mjs +48 -0
- package/esm2022/modules/ui-kit/services/mappers/form-data-table-mapper.service.mjs +19 -0
- package/esm2022/modules/ui-kit/services/select.service.mjs +19 -0
- package/esm2022/modules/ui-kit/services/snackbar.service.mjs +43 -0
- package/esm2022/modules/ui-kit/services/url.service.mjs +17 -0
- package/esm2022/modules/ui-kit/types/basic.type.mjs +2 -0
- package/esm2022/modules/ui-kit/types/function.type.mjs +2 -0
- package/esm2022/modules/ui-kit/types/select.type.mjs +2 -0
- package/esm2022/modules/ui-kit/ui-kit.module.mjs +370 -0
- package/esm2022/public-api.mjs +373 -0
- package/esm2022/resolvers/null-value.resolver.mjs +16 -0
- package/esm2022/services/api/common-crud-api.service.mjs +59 -0
- package/esm2022/services/api/filter-api.service.mjs +30 -0
- package/esm2022/services/selectable.service.mjs +23 -0
- package/esm2022/shared-pipes/pipes/search.pipe.mjs +48 -0
- package/esm2022/shared-ui-test-2.mjs +5 -0
- package/esm2022/shared.module.mjs +57 -0
- package/esm2022/validators/debounce-async.validator.mjs +12 -0
- package/fesm2022/shared-ui-test-2.mjs +12538 -0
- package/fesm2022/shared-ui-test-2.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/models/auth-token.d.ts +3 -0
- package/modules/dynamic-cards/directives/flip-card.directive.d.ts +15 -0
- package/modules/dynamic-cards/dynamic-card/card-list-container/card-list-container.component.d.ts +10 -0
- package/modules/dynamic-cards/dynamic-card/dynamic-card/dynamic-card.component.d.ts +7 -0
- package/modules/dynamic-cards/dynamic-card/dynamic-card-back/dynamic-card-back.component.d.ts +7 -0
- package/modules/dynamic-cards/dynamic-card/dynamic-card-footer/dynamic-card-footer.component.d.ts +10 -0
- package/modules/dynamic-cards/dynamic-card/dynamic-card-front/dynamic-card-front.component.d.ts +8 -0
- package/modules/dynamic-cards/dynamic-cards.module.d.ts +18 -0
- package/modules/dynamic-cards/interface/card-list.interface.d.ts +9 -0
- package/modules/dynamic-cards/interface/card.interface.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-button-control/dynamic-form-button-control.component.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-checkbox-control/dynamic-form-checkbox-control.component.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-control-label/dynamic-form-control-label.component.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-counter-control/dynamic-form-counter-control.component.d.ts +13 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-datepicker-control/dynamic-form-datepicker-control.component.d.ts +13 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field-control.component.d.ts +34 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field.matcher.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-input-control/dynamic-form-input-control.component.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ng-select-control/dynamic-form-ng-select-control.component.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/dynamic-form-radio-group.component.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/enum/radio-group-orientation.enum.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-select-control/dynamic-form-select-control.component.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-switch-control/dynamic-form-switch-control.component.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-text-area-control/dynamic-form-text-area-control.component.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control-list/dynamic-form-ui-control-list.component.d.ts +26 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control.component.d.ts +14 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/base-form-actions.component.d.ts +19 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/enums/base-form-action-types.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/interfaces/base-form-action.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/dynamic-form-ui.component.d.ts +26 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-array/dynamic-form-ui-array.component.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-group/dynamic-form-group.component.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout-item/dynamic-form-layout-item.component.d.ts +23 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout.component.d.ts +21 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/enums/form-field-css-class.enum.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/errors-block/errors-block.component.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-form-UI/dynamic-form-ui.module.d.ts +32 -0
- package/modules/dynamic-forms/dynamic-form-UI/index.d.ts +3 -0
- package/modules/dynamic-forms/dynamic-form-UI/providers/ui-form-control-map.provider.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-array.component.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-component.d.ts +26 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control-container.component.d.ts +57 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control.component.d.ts +42 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-layout.component.d.ts +28 -0
- package/modules/dynamic-forms/dynamic-forms-core/constants/form-errors.constant.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/constants/matchers/matchers.constant.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/constants/reg-exp-error.constant.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-id.directive.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-list.directive.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-template.directive.d.ts +13 -0
- package/modules/dynamic-forms/dynamic-forms-core/dynamic-form-core.module.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/autocomplete.enum.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/control-types.enum.d.ts +20 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/form-control-events.enum.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/form-control-statuses.enum.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/form-hooks.enum.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/input-types.enum.d.ts +18 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/matcher-operators.enum.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/matcher-types.enum.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/template-directive-alignment.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/textarea-wrap.enum.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/validation-states.enum.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/index.d.ts +38 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/components/dynamic-templateable-form-control.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control-event.interface.d.ts +15 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control.interface.d.ts +19 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/dynamic-form/dynamic-form-model.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-control-layout.interface.d.ts +3 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout.interface.d.ts +2 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/layout-render-template.interface.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/matchers/form-control-matcher.interface.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-array/form-array-model-config.interface.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-button-control/button-control-model-config.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-check-control/check-control-model-config.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-model-config.interface.d.ts +16 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-relation.interface.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-date-control/date-control-model-config.interface.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-file-control/file-control-model-config.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-group/form-group-model-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-input-control/form-input-control-config.interface.d.ts +14 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-number-control/form-number-control-config.interface.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option/form-option-config.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option-control/form-option-control-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/button-control-model-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/checkbox-control-model-config.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/colorpicker-control-model-config.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/datepicker-control-model-config.interface.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/fileupload-control-model-config.interface.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/input-control-model-config.interface.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/radio-group-model-config.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/rating-control-model-config.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/select-control-model-config.interface.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/slider-control-model-config.interface.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/switch-control-model-config.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/textarea-control-model-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/timepicker-control-model-config.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-value-control/form-value-control.interface.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/validators/validators.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-array/dynamic-form-array.model.d.ts +19 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-array/form-array-group/dynamic-form-array-group.model.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-button-control/dynamic-button-control.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-check-control/dynamic-check-control.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model.d.ts +24 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-date-control/dynamic-date-control.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-file-control/dynamic-file-control.model.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-group/dynamic-form-group.model.d.ts +17 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-input-control/dynamic-input-control.model.d.ts +16 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-number-control/dynamic-number-control.model.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-option/form-option.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-option-control/dynamic-option-control.model.d.ts +19 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-static-control/static-control.model.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/button/dynamic-button.model.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox-group.model.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/colorpicker/dynamic-colorpicker.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/counter/dynamic-counter.model.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/datepicker/dynamic-datepicker.model.d.ts +15 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/file-upload/dynamic-file-upload.model.d.ts +13 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/input/dynamic-input.model.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/radio/dynamic-radio-group.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/rating/dynamic-rating.model.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/select/dynamic-select.model.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/slider/dynamic-slider.model.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/switch/dynamic-switch.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/textarea/dynamic-textarea.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/timepicker/dynamic-timepicker.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-value-control/form-value-control.model.d.ts +17 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/layout/col-control.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/layout/enums/FormLayoutControlTypes.enum.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-control.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-group-control.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/layout/row-control.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/ng-select-control/dynamic-ng-select.model.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.mock.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.pipe.d.ts +20 -0
- package/modules/dynamic-forms/dynamic-forms-core/pipes/get-error-from-key-value.pipe.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-component.service.d.ts +14 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-layout.service.d.ts +14 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-relation.service.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-validation.service.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form.service.d.ts +30 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/static-form-service.d.ts +17 -0
- package/modules/dynamic-forms/dynamic-forms-core/tokens/dynamic-matchers.token.d.ts +3 -0
- package/modules/dynamic-forms/dynamic-forms-core/tokens/form-control-map.token.d.ts +3 -0
- package/modules/dynamic-forms/dynamic-forms-core/tokens/validators.token.d.ts +3 -0
- package/modules/dynamic-forms/dynamic-forms-core/utils/events/form-control-events.utils.d.ts +2 -0
- package/modules/dynamic-forms/dynamic-forms-core/utils/json/json.utils.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms.module.d.ts +9 -0
- package/modules/material/mat-cdk-module.d.ts +7 -0
- package/modules/material/material.module.d.ts +50 -0
- package/modules/query-builder/components/query-design/query-design.component.d.ts +35 -0
- package/modules/query-builder/components/query-design/rule-line/components/alphanumeric-control/alphanumeric-control.component.d.ts +46 -0
- package/modules/query-builder/components/query-design/rule-line/components/boolean-control/boolean-control.component.d.ts +29 -0
- package/modules/query-builder/components/query-design/rule-line/components/date-control/date-control.component.d.ts +21 -0
- package/modules/query-builder/components/query-design/rule-line/components/numeric-control/numeric-control.component.d.ts +46 -0
- package/modules/query-builder/components/query-design/rule-line/constants/operators-sets.d.ts +12 -0
- package/modules/query-builder/components/query-design/rule-line/helpers/condition-operators.mapper.d.ts +6 -0
- package/modules/query-builder/components/query-design/rule-line/helpers/control-values-mapper.d.ts +7 -0
- package/modules/query-builder/components/query-design/rule-line/rule-line.component.d.ts +64 -0
- package/modules/query-builder/directive/auto-complete-position.directive.d.ts +11 -0
- package/modules/query-builder/interfaces/query-builder.interface.d.ts +61 -0
- package/modules/query-builder/interfaces/select-custom-css-object.d.ts +7 -0
- package/modules/query-builder/query-builder.module.d.ts +18 -0
- package/modules/ui-kit/components/accordion/accordion-content/accordion-content.component.d.ts +8 -0
- package/modules/ui-kit/components/accordion/accordion-trigger.directive.d.ts +10 -0
- package/modules/ui-kit/components/accordion/accordion.directive.d.ts +7 -0
- package/modules/ui-kit/components/banner/banner.component.d.ts +14 -0
- package/modules/ui-kit/components/banner/banner.service.d.ts +27 -0
- package/modules/ui-kit/components/breadcrumbs/breadcrumbs.component.d.ts +15 -0
- package/modules/ui-kit/components/breadcrumbs/model/breadCrumbItem.d.ts +4 -0
- package/modules/ui-kit/components/breadcrumbs/service/breadcrumb.service.d.ts +19 -0
- package/modules/ui-kit/components/breadcrumbs/utils/crumb-service.enum.d.ts +6 -0
- package/modules/ui-kit/components/buttons/button-control/button-control.component.d.ts +16 -0
- package/modules/ui-kit/components/buttons/buttons-list/buttons-list.component.d.ts +5 -0
- package/modules/ui-kit/components/buttons/circle-button/circle-button.component.d.ts +20 -0
- package/modules/ui-kit/components/card-container/card-container.component.d.ts +5 -0
- package/modules/ui-kit/components/common-breadcrumbs/common-breadcrumbs.component.d.ts +20 -0
- package/modules/ui-kit/components/common-breadcrumbs/interface/breadcrumb.interface.d.ts +6 -0
- package/modules/ui-kit/components/common-breadcrumbs/service/breadcrumb.service.d.ts +21 -0
- package/modules/ui-kit/components/data-pagination/data-pagination.component.d.ts +54 -0
- package/modules/ui-kit/components/data-table/api-classes/filter-manager.d.ts +13 -0
- package/modules/ui-kit/components/data-table/api-classes/grid-api.d.ts +31 -0
- package/modules/ui-kit/components/data-table/base-data-table-container/base-data-table-container.component.d.ts +7 -0
- package/modules/ui-kit/components/data-table/constants/change-type.enum.d.ts +6 -0
- package/modules/ui-kit/components/data-table/constants/column-id.d.ts +2 -0
- package/modules/ui-kit/components/data-table/constants/row.d.ts +2 -0
- package/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component.d.ts +28 -0
- package/modules/ui-kit/components/data-table/data-col/data-col/data-col.component.d.ts +7 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-action-button/data-col-action-button.component.d.ts +12 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-boolean/data-col-boolean.component.d.ts +8 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-multivalue/data-col-multivalue.component.d.ts +8 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-nested/data-col-nested.component.d.ts +13 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-reference/data-col-reference.component.d.ts +29 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-view/data-col-view.component.d.ts +27 -0
- package/modules/ui-kit/components/data-table/data-col-disp/data-col-disp.component.d.ts +60 -0
- package/modules/ui-kit/components/data-table/data-col-filter/data-col-filter.component.d.ts +85 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-between-value.d.ts +12 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-contains-value.d.ts +9 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-in-value.d.ts +13 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-slider-value.d.ts +10 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/filter-value-executor-provider.d.ts +11 -0
- package/modules/ui-kit/components/data-table/data-column-filter/data-column-filter.component.d.ts +29 -0
- package/modules/ui-kit/components/data-table/data-row/data-row.component.d.ts +81 -0
- package/modules/ui-kit/components/data-table/data-table/data-table.component.d.ts +302 -0
- package/modules/ui-kit/components/data-table/data-table-actions/data-table-actions.component.d.ts +53 -0
- package/modules/ui-kit/components/data-table/data-table-body/data-table-body.component.d.ts +75 -0
- package/modules/ui-kit/components/data-table/data-table-check-rows/data-table-check-rows.component.d.ts +25 -0
- package/modules/ui-kit/components/data-table/data-table-row-actions/const/data-table-actions.enum.d.ts +6 -0
- package/modules/ui-kit/components/data-table/data-table-row-actions/data-table-row-actions.component.d.ts +42 -0
- package/modules/ui-kit/components/data-table/enums/col-filter-types.d.ts +14 -0
- package/modules/ui-kit/components/data-table/header-row/header-row.component.d.ts +7 -0
- package/modules/ui-kit/components/data-table/interfaces/data-table-component.interface.d.ts +28 -0
- package/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface.d.ts +12 -0
- package/modules/ui-kit/components/data-table/services/data-table-context.service.d.ts +12 -0
- package/modules/ui-kit/components/data-table-wrap/data-table-wrap.component.d.ts +13 -0
- package/modules/ui-kit/components/excel-table/excel-table.component.d.ts +28 -0
- package/modules/ui-kit/components/excel-table/interface/excel-table.interface.d.ts +29 -0
- package/modules/ui-kit/components/form/base-form-control/base-form-control.component.d.ts +17 -0
- package/modules/ui-kit/components/form/base-form-page/base-form-page.component.d.ts +14 -0
- package/modules/ui-kit/components/form/checkbox-form-control/checkbox-form-control.component.d.ts +8 -0
- package/modules/ui-kit/components/form/counter-form-control/counter-form-control.component.d.ts +21 -0
- package/modules/ui-kit/components/form/form-container/form-container.component.d.ts +45 -0
- package/modules/ui-kit/components/form/form-group-container/form-group-container.component.d.ts +5 -0
- package/modules/ui-kit/components/form/input-form-control/input-form-control.component.d.ts +8 -0
- package/modules/ui-kit/components/form/multivalue-form-control/custom-input/custom-input.component.d.ts +15 -0
- package/modules/ui-kit/components/form/multivalue-form-control/custom-input/old-new-value.interface.d.ts +4 -0
- package/modules/ui-kit/components/form/multivalue-form-control/multivalue-form-control.component.d.ts +26 -0
- package/modules/ui-kit/components/form/radio-form-control/radio-form-control.component.d.ts +8 -0
- package/modules/ui-kit/components/form/select-form-control/select-form-control.component.d.ts +32 -0
- package/modules/ui-kit/components/form/selection-group-container/selection-group-container.component.d.ts +7 -0
- package/modules/ui-kit/components/form/textarea-form-control/textarea-form-control.component.d.ts +8 -0
- package/modules/ui-kit/components/icon/expand-collapse-icon/expand-collapse-icon.component.d.ts +11 -0
- package/modules/ui-kit/components/icon/icon/icon.component.d.ts +14 -0
- package/modules/ui-kit/components/icon/text-icon/text-icon.component.d.ts +10 -0
- package/modules/ui-kit/components/layouts/form-layout/form-layout.component.d.ts +29 -0
- package/modules/ui-kit/components/layouts/primary-layout/primary-layout.component.d.ts +5 -0
- package/modules/ui-kit/components/loader/loader.component.d.ts +12 -0
- package/modules/ui-kit/components/mat-actions-button/mat-actions-button.d.ts +14 -0
- package/modules/ui-kit/components/modals/common-confirm-modal/common-confirm-modal.component.d.ts +17 -0
- package/modules/ui-kit/components/modals/confirm-modal/confirm-modal.component.d.ts +13 -0
- package/modules/ui-kit/components/modals/delete-modal/delete-modal.component.d.ts +17 -0
- package/modules/ui-kit/components/modals/enums/confirmation-modal.enum.d.ts +11 -0
- package/modules/ui-kit/components/snackbar/snackbar.component.d.ts +10 -0
- package/modules/ui-kit/components/tabs/constants/index.d.ts +1 -0
- package/modules/ui-kit/components/tabs/interfaces/index.d.ts +3 -0
- package/modules/ui-kit/components/tabs/tab-group/tab-group.component.d.ts +25 -0
- package/modules/ui-kit/components/tabs/tab.directive.d.ts +16 -0
- package/modules/ui-kit/components/tree-view/tree-view.component.d.ts +67 -0
- package/modules/ui-kit/constants/data-table-icon-class.constant.d.ts +1 -0
- package/modules/ui-kit/constants/data-table.constants.d.ts +6 -0
- package/modules/ui-kit/constants/date-separator.constant.d.ts +1 -0
- package/modules/ui-kit/constants/snackbar.constants.d.ts +3 -0
- package/modules/ui-kit/enums/action-type.enum.d.ts +12 -0
- package/modules/ui-kit/enums/coderefs-prop.enum.d.ts +24 -0
- package/modules/ui-kit/enums/color-schemes.enum.d.ts +11 -0
- package/modules/ui-kit/enums/column-disable-mode.enum.d.ts +5 -0
- package/modules/ui-kit/enums/column-types.enum.d.ts +8 -0
- package/modules/ui-kit/enums/component-sizes.enum.d.ts +4 -0
- package/modules/ui-kit/enums/data-type.enum.d.ts +10 -0
- package/modules/ui-kit/enums/form-item-type.d.ts +5 -0
- package/modules/ui-kit/enums/form-types.enum.d.ts +5 -0
- package/modules/ui-kit/enums/form-url-params.enum.d.ts +4 -0
- package/modules/ui-kit/enums/icons.enum.d.ts +22 -0
- package/modules/ui-kit/enums/operator.enum.d.ts +19 -0
- package/modules/ui-kit/enums/position.enum.d.ts +4 -0
- package/modules/ui-kit/enums/select-option.enum.d.ts +8 -0
- package/modules/ui-kit/enums/snackbar.enum.d.ts +6 -0
- package/modules/ui-kit/enums/url-param-action.enum.d.ts +4 -0
- package/modules/ui-kit/enums/utils.enum.d.ts +4 -0
- package/modules/ui-kit/enums/viewType.enum.d.ts +5 -0
- package/modules/ui-kit/interfaces/api.interface.d.ts +45 -0
- package/modules/ui-kit/interfaces/confirm-modal-data.interface.d.ts +7 -0
- package/modules/ui-kit/interfaces/constants.interface.d.ts +4 -0
- package/modules/ui-kit/interfaces/data-table.interface.d.ts +253 -0
- package/modules/ui-kit/interfaces/form.interface.d.ts +21 -0
- package/modules/ui-kit/interfaces/generic.interface.d.ts +7 -0
- package/modules/ui-kit/interfaces/list-item.interface.d.ts +5 -0
- package/modules/ui-kit/interfaces/mat-action-buttons.interface.d.ts +14 -0
- package/modules/ui-kit/interfaces/row-selection-info.interface.d.ts +7 -0
- package/modules/ui-kit/interfaces/select.interface.d.ts +8 -0
- package/modules/ui-kit/interfaces/snackbar.interface.d.ts +4 -0
- package/modules/ui-kit/interfaces/tree-view.interface.d.ts +49 -0
- package/modules/ui-kit/models/storage-object.model.d.ts +6 -0
- package/modules/ui-kit/pipes/column-filter.pipe.d.ts +12 -0
- package/modules/ui-kit/pipes/filter-by-prop.pipe.d.ts +9 -0
- package/modules/ui-kit/pipes/first-letter-text.pipe.d.ts +7 -0
- package/modules/ui-kit/pipes/keys.pipe.d.ts +7 -0
- package/modules/ui-kit/pipes/paginate.pipe.d.ts +12 -0
- package/modules/ui-kit/pipes/search.pipe.d.ts +16 -0
- package/modules/ui-kit/services/api/api.service.d.ts +50 -0
- package/modules/ui-kit/services/api/rest-api.service.d.ts +28 -0
- package/modules/ui-kit/services/data-table.service.d.ts +37 -0
- package/modules/ui-kit/services/form.service.d.ts +26 -0
- package/modules/ui-kit/services/formatters/date-formatter.service.d.ts +13 -0
- package/modules/ui-kit/services/mappers/form-data-table-mapper.service.d.ts +8 -0
- package/modules/ui-kit/services/select.service.d.ts +7 -0
- package/modules/ui-kit/services/snackbar.service.d.ts +15 -0
- package/modules/ui-kit/services/url.service.d.ts +7 -0
- package/modules/ui-kit/types/basic.type.d.ts +2 -0
- package/modules/ui-kit/types/function.type.d.ts +20 -0
- package/modules/ui-kit/types/select.type.d.ts +2 -0
- package/modules/ui-kit/ui-kit.module.d.ts +79 -0
- package/package.json +45 -0
- package/public-api.d.ts +367 -0
- package/resolvers/null-value.resolver.d.ts +7 -0
- package/services/api/common-crud-api.service.d.ts +28 -0
- package/services/api/filter-api.service.d.ts +19 -0
- package/services/selectable.service.d.ts +10 -0
- package/shared-pipes/pipes/search.pipe.d.ts +15 -0
- package/shared.module.d.ts +13 -0
- package/validators/debounce-async.validator.d.ts +9 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BREADCRUMB_KEY = "breadcrumb";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const CUSTOM_CONFIRMATION_MODAL_PANEL_CLASS = "custom-confirmation-modal-panel";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ngSelectRightValueClass = "right-value-select-container";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@pmi/auth";
|
|
3
|
+
export declare class AuthProvidersModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthProvidersModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AuthProvidersModule, never, [typeof i1.AuthModule], never>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AuthProvidersModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { HorizontalNavigationItem } from '../../../interfaces/horizontal-navigation.interface';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HorizontalNavigationMenuItemComponent {
|
|
4
|
+
navItemConfig: HorizontalNavigationItem;
|
|
5
|
+
get isMenu(): boolean;
|
|
6
|
+
getChevronClass(isOpen: boolean): string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HorizontalNavigationMenuItemComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HorizontalNavigationMenuItemComponent, "app-horizontal-navigation-menu-item", never, { "navItemConfig": { "alias": "navItemConfig"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { HorizontalNavigationItem } from '../../interfaces/horizontal-navigation.interface';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HorizontalNavigationComponent {
|
|
4
|
+
NAV_CONFIG: HorizontalNavigationItem[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HorizontalNavigationComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HorizontalNavigationComponent, "app-horizontal-navigation", never, {}, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class NotAuthorizedComponent {
|
|
3
|
+
readonly ERROR_DESCRIPTION: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotAuthorizedComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotAuthorizedComponent, "app-not-authorized", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { OnInit, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { NavMenuService } from '@app/shared/core/services/nav-menu-data.service';
|
|
4
|
+
import { MenuElementsDto } from '@app/shared/core/models/menu-elements-dto';
|
|
5
|
+
import { UserManagementService } from 'idp-apps-shared-ui/core/services/user-management.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class MainNavigationComponent implements OnInit {
|
|
8
|
+
navMenuService: NavMenuService;
|
|
9
|
+
userManagementService: UserManagementService;
|
|
10
|
+
private cd;
|
|
11
|
+
private router;
|
|
12
|
+
menuItems: MenuElementsDto[];
|
|
13
|
+
private selectedMenu;
|
|
14
|
+
constructor(navMenuService: NavMenuService, userManagementService: UserManagementService, cd: ChangeDetectorRef, router: Router);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
menuOnClick(menuItem: any): void;
|
|
17
|
+
menuItemOnClick(url: string, menu: any): void;
|
|
18
|
+
isActiveMenuClass(menu: any): boolean;
|
|
19
|
+
getStyle(menuSystemName: any): {
|
|
20
|
+
[key: string]: string;
|
|
21
|
+
};
|
|
22
|
+
private getMenu;
|
|
23
|
+
private setActiveMenuItem;
|
|
24
|
+
private getDynamicMenuItems;
|
|
25
|
+
private isActiveMenuClassForDynamicMenu;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MainNavigationComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainNavigationComponent, "app-main-navigation", never, {}, {}, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TopNavigationComponent {
|
|
3
|
+
readonly PORTAL_URL: string;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TopNavigationComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TopNavigationComponent, "app-top-navigation", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { onBeforeLogoutFn } from 'idp-apps-shared-ui/modules/ui-kit/types/function.type';
|
|
4
|
+
import { AuthService } from '@pmi/auth';
|
|
5
|
+
import { HttpService } from 'idp-apps-shared-ui/core/services/http.service';
|
|
6
|
+
import { VersionData } from 'idp-apps-shared-ui/core/models/version-data';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class UserInfoMenuComponent {
|
|
9
|
+
router: Router;
|
|
10
|
+
authService: AuthService;
|
|
11
|
+
private httpService;
|
|
12
|
+
private elementRef;
|
|
13
|
+
onBeforeLogoutFn: onBeforeLogoutFn;
|
|
14
|
+
userName: string;
|
|
15
|
+
opened: boolean;
|
|
16
|
+
isOpenedLanguage: boolean;
|
|
17
|
+
routePath: string;
|
|
18
|
+
readonly PORTAL_LINK: string;
|
|
19
|
+
versionData: VersionData;
|
|
20
|
+
private readonly LOCAL_VERSION;
|
|
21
|
+
private clearSubs$;
|
|
22
|
+
constructor(router: Router, authService: AuthService, httpService: HttpService, elementRef: ElementRef);
|
|
23
|
+
setUserName(): void;
|
|
24
|
+
logOut(): void;
|
|
25
|
+
toggleMenu(): void;
|
|
26
|
+
onDocumentClick(event: Event): void;
|
|
27
|
+
private closeMenu;
|
|
28
|
+
private isCurrentComponentClick;
|
|
29
|
+
private setVersion;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserInfoMenuComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserInfoMenuComponent, "app-user-info-menu", never, { "onBeforeLogoutFn": { "alias": "onBeforeLogoutFn"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DASHBOARD_PORTAL_URL: string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const GET_APP_VERSION: string;
|
|
2
|
+
export declare const LOCAL_CONSTANTS: {
|
|
3
|
+
LOCALHOST: string;
|
|
4
|
+
APP_HOST: string;
|
|
5
|
+
BUILD_NAME: string;
|
|
6
|
+
BUILD_CONSTANTS: {
|
|
7
|
+
APP_PATH: string;
|
|
8
|
+
GET_APP_VERSION: string;
|
|
9
|
+
};
|
|
10
|
+
UI_CONSTANTS: {
|
|
11
|
+
LOCAL_STORAGE_PREFIX: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/horizontal-navigation/horizontal-navigation.component";
|
|
3
|
+
import * as i2 from "./components/horizontal-navigation/horizontal-navigation-menu-item/horizontal-navigation-menu-item.component";
|
|
4
|
+
import * as i3 from "./components/not-authorized/not-authorized.component";
|
|
5
|
+
import * as i4 from "idp-apps-shared-ui/core/components/user-info-menu/user-info-menu.component";
|
|
6
|
+
import * as i5 from "idp-apps-shared-ui/core/components/top-navigation/top-navigation.component";
|
|
7
|
+
import * as i6 from "idp-apps-shared-ui/core/components/sidebar/sidebar.component";
|
|
8
|
+
import * as i7 from "idp-apps-shared-ui/core/components/sidebar/main-navigation/main-navigation.component";
|
|
9
|
+
import * as i8 from "./blank/blank.component";
|
|
10
|
+
import * as i9 from "@angular/common";
|
|
11
|
+
import * as i10 from "@angular/router";
|
|
12
|
+
import * as i11 from "idp-apps-shared-ui/core/auth-providers.module";
|
|
13
|
+
import * as i12 from "@app/shared/modules/ui-kit/ui-kit.module";
|
|
14
|
+
export declare class CoreModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CoreModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, [typeof i1.HorizontalNavigationComponent, typeof i2.HorizontalNavigationMenuItemComponent, typeof i3.NotAuthorizedComponent, typeof i4.UserInfoMenuComponent, typeof i5.TopNavigationComponent, typeof i6.SidebarComponent, typeof i7.MainNavigationComponent, typeof i8.BlankComponent], [typeof i9.CommonModule, typeof i10.RouterModule, typeof i11.AuthProvidersModule, typeof i12.UiKitModule], [typeof i1.HorizontalNavigationComponent, typeof i3.NotAuthorizedComponent, typeof i4.UserInfoMenuComponent, typeof i5.TopNavigationComponent, typeof i6.SidebarComponent, typeof i7.MainNavigationComponent, typeof i8.BlankComponent]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ElementRef, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { UserManagementService } from 'idp-apps-shared-ui/core/services/user-management.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AuthorizedDirective {
|
|
5
|
+
private element;
|
|
6
|
+
private templateRef;
|
|
7
|
+
private viewContainer;
|
|
8
|
+
private userMangementService;
|
|
9
|
+
constructor(element: ElementRef, templateRef: TemplateRef<any>, viewContainer: ViewContainerRef, userMangementService: UserManagementService);
|
|
10
|
+
set hasPermission(val: any);
|
|
11
|
+
set hasPermissionElse(val: any);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthorizedDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AuthorizedDirective, "[hasPermission]", never, { "hasPermission": { "alias": "hasPermission"; "required": false; }; "hasPermissionElse": { "alias": "hasPermissionElse"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export declare enum ObjectProperties {
|
|
2
|
+
ID = "id",
|
|
3
|
+
BUSINESS_NAME = "businessName",
|
|
4
|
+
DESCRIPTION = "description",
|
|
5
|
+
SYSTEM_NAME = "systemName",
|
|
6
|
+
OBJECT_NAME = "objectName",
|
|
7
|
+
OBJECT_TYPE = "objectTypeId",
|
|
8
|
+
DATABASE_BUSINESS_OBJECT_TYPE = "businessObjectTypeId",
|
|
9
|
+
IS_KEY_VALUE = "IsKeyValue",
|
|
10
|
+
IS_SCD_ENABLED = "IsScdEnabled",
|
|
11
|
+
IS_XREF_ENABLED = "IsXRefEnabled",
|
|
12
|
+
OBJECT_HIERARCHY_LEVEL = "ObjectHierarchyLevel",
|
|
13
|
+
SUBJECT_AREA = "subjectAreaIds",
|
|
14
|
+
SCHEMA = "schemaId",
|
|
15
|
+
ACTIVE = "isActive"
|
|
16
|
+
}
|
|
17
|
+
export declare enum ColumnProperties {
|
|
18
|
+
ID = "id",
|
|
19
|
+
NAME = "name",
|
|
20
|
+
ATTRIBUTE_NAME = "attributeName"
|
|
21
|
+
}
|
|
22
|
+
export declare enum ObjectTypeProperties {
|
|
23
|
+
ID = "id",
|
|
24
|
+
NAME = "name"
|
|
25
|
+
}
|
|
26
|
+
export declare enum SubjectAreaProperties {
|
|
27
|
+
ID = "id",
|
|
28
|
+
NAME = "name"
|
|
29
|
+
}
|
|
30
|
+
export declare enum SchemaProperties {
|
|
31
|
+
ID = "id",
|
|
32
|
+
NAME = "name"
|
|
33
|
+
}
|
|
34
|
+
export declare enum BusinessObjectTypeProperties {
|
|
35
|
+
ID = "id",
|
|
36
|
+
NAME = "name"
|
|
37
|
+
}
|
|
38
|
+
export declare enum ObjectSyncVerifyProperties {
|
|
39
|
+
SCHEMA_NAME = "schemaName",
|
|
40
|
+
SUBJECT_AREA_NAME = "subjectAreaName",
|
|
41
|
+
TABLE_NAME = "tableName",
|
|
42
|
+
COLUMN_NAME = "columnName",
|
|
43
|
+
TABLE_SYNC_STATUS = "tableSyncStatus",
|
|
44
|
+
COLUMN_SYNC_STATUS = "columnSyncStatus"
|
|
45
|
+
}
|
|
46
|
+
export declare enum ObjectSyncStatusText {
|
|
47
|
+
NEW = "New",
|
|
48
|
+
NO_CHANGE = "NoChange",
|
|
49
|
+
MODIFIED = "Modified",
|
|
50
|
+
DELETED = "Deleted"
|
|
51
|
+
}
|
|
52
|
+
export declare enum ObjectSyncStatusColor {
|
|
53
|
+
NEW = "new",
|
|
54
|
+
NO_CHANGE = "noChange",
|
|
55
|
+
MODIFIED = "modified",
|
|
56
|
+
DELETED = "deleted"
|
|
57
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
|
|
2
|
+
import { AuthService } from '@pmi/auth';
|
|
3
|
+
import { BannerService } from 'idp-apps-shared-ui/modules/ui-kit/components/banner/banner.service';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AppHttpInterceptor implements HttpInterceptor {
|
|
7
|
+
private authService;
|
|
8
|
+
private bannerService;
|
|
9
|
+
constructor(authService: AuthService, bannerService: BannerService);
|
|
10
|
+
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppHttpInterceptor, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppHttpInterceptor>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HealthCheckHeaderInterceptor implements HttpInterceptor {
|
|
5
|
+
private healthCheckHeaderName;
|
|
6
|
+
constructor(healthCheckHeaderName: string);
|
|
7
|
+
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HealthCheckHeaderInterceptor, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HealthCheckHeaderInterceptor>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { ConditionOperator } from 'idp-apps-shared-ui/modules/query-builder/interfaces/query-builder.interface';
|
|
2
|
+
import { IListResApi } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/api.interface';
|
|
3
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
4
|
+
export declare enum BusinessRuleLineType {
|
|
5
|
+
INCLUDE = "INCLUDE",
|
|
6
|
+
EXCLUDE = "EXCLUDE"
|
|
7
|
+
}
|
|
8
|
+
export declare enum ConjunctionOperator {
|
|
9
|
+
AND = "AND",
|
|
10
|
+
OR = "OR"
|
|
11
|
+
}
|
|
12
|
+
export interface IBusinessRuleLine {
|
|
13
|
+
indent: number;
|
|
14
|
+
type: BusinessRuleLineType;
|
|
15
|
+
conjunctionOperator: ConjunctionOperator | null;
|
|
16
|
+
conditionOperator: ConditionOperator | null;
|
|
17
|
+
lValue?: string;
|
|
18
|
+
rValue?: string;
|
|
19
|
+
isDefaultRule?: boolean;
|
|
20
|
+
isCascadeRule?: boolean;
|
|
21
|
+
}
|
|
22
|
+
export declare enum TableColumnTypes {
|
|
23
|
+
TEXT = "TEXT",
|
|
24
|
+
DATE = "DATE",
|
|
25
|
+
NUMBER = "NUMBER",
|
|
26
|
+
BOOL = "BOOL"
|
|
27
|
+
}
|
|
28
|
+
export interface ITableColumn {
|
|
29
|
+
name: string;
|
|
30
|
+
type: TableColumnTypes;
|
|
31
|
+
displayName: string;
|
|
32
|
+
}
|
|
33
|
+
export type ITableColumns = ITableColumn[];
|
|
34
|
+
export interface IRequestResults extends IListResApi<IKeyValue> {
|
|
35
|
+
}
|
|
36
|
+
export interface IListReqParamsPaginationApi {
|
|
37
|
+
page: number;
|
|
38
|
+
itemsOnPage: number;
|
|
39
|
+
isExportData?: boolean;
|
|
40
|
+
searchText?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface IBusinessRuleLineDto {
|
|
43
|
+
type: BusinessRuleLineType;
|
|
44
|
+
conjunctionOperator: ConjunctionOperator;
|
|
45
|
+
conditionOperator: ConditionOperator;
|
|
46
|
+
column: string;
|
|
47
|
+
value: string;
|
|
48
|
+
children?: IBusinessRuleLineDto[];
|
|
49
|
+
isDefaultRule?: boolean;
|
|
50
|
+
isCascadeRule?: boolean;
|
|
51
|
+
}
|
|
52
|
+
export interface IBusinessRuleRoot {
|
|
53
|
+
children: IBusinessRuleLineDto[];
|
|
54
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { IListResApi } from "idp-apps-shared-ui/modules/ui-kit/interfaces/api.interface";
|
|
2
|
+
import { IKeyValue } from "idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface";
|
|
3
|
+
export declare enum TableColumnTypes {
|
|
4
|
+
TEXT = "TEXT",
|
|
5
|
+
DATE = "DATE",
|
|
6
|
+
NUMBER = "NUMBER",
|
|
7
|
+
BOOLEAN = "BOOLEAN",
|
|
8
|
+
BOOL = "BOOL",
|
|
9
|
+
FIXED = "FIXED",
|
|
10
|
+
TIMESTAMP_LTZ = "TIMESTAMP_LTZ",
|
|
11
|
+
TIMESTAMP_NTZ = "TIMESTAMP_NTZ"
|
|
12
|
+
}
|
|
13
|
+
export interface ITableColumn {
|
|
14
|
+
name: string;
|
|
15
|
+
type: TableColumnTypes;
|
|
16
|
+
displayName: string;
|
|
17
|
+
}
|
|
18
|
+
export interface ITable {
|
|
19
|
+
schemaName: string;
|
|
20
|
+
tableName: string;
|
|
21
|
+
displayName?: string;
|
|
22
|
+
isPrimaryTable: boolean;
|
|
23
|
+
}
|
|
24
|
+
export type ITableColumns = ITableColumn[];
|
|
25
|
+
export type ITables = ITable[];
|
|
26
|
+
export interface IRequestResults extends IListResApi<IKeyValue> {
|
|
27
|
+
}
|
|
28
|
+
export interface IListReqParamsPaginationApi {
|
|
29
|
+
page: number;
|
|
30
|
+
itemsOnPage: number;
|
|
31
|
+
filterParams?: IKeyValue;
|
|
32
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Icons } from '@app/shared/modules/ui-kit/enums/icons.enum';
|
|
2
|
+
import { ILink } from './navigation.interface';
|
|
3
|
+
export interface IBaseHorizontalNavigationItem {
|
|
4
|
+
label: string;
|
|
5
|
+
link?: ILink;
|
|
6
|
+
nested?: IBaseHorizontalNavigationItem[];
|
|
7
|
+
}
|
|
8
|
+
export interface IHorizontalNavigationRootItem extends IBaseHorizontalNavigationItem {
|
|
9
|
+
icon?: Icons;
|
|
10
|
+
}
|
|
11
|
+
export type HorizontalNavigationItem = IHorizontalNavigationRootItem & IBaseHorizontalNavigationItem;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface MenuElementsDto {
|
|
2
|
+
systemName: string;
|
|
3
|
+
moduleSystemName: string;
|
|
4
|
+
name: string;
|
|
5
|
+
expanded: boolean;
|
|
6
|
+
isLanding: boolean;
|
|
7
|
+
children: MenuItemDto[];
|
|
8
|
+
}
|
|
9
|
+
export interface MenuItemDto {
|
|
10
|
+
systemName: string;
|
|
11
|
+
name: string;
|
|
12
|
+
targetUrl: string;
|
|
13
|
+
sortOrder: number;
|
|
14
|
+
isExportable: boolean;
|
|
15
|
+
IsActive?: boolean;
|
|
16
|
+
param?: string;
|
|
17
|
+
iconClass: string;
|
|
18
|
+
}
|
|
19
|
+
export interface MenuItem extends MenuItemDto {
|
|
20
|
+
IsActive: boolean;
|
|
21
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Resolve } from '@angular/router';
|
|
2
|
+
import { PermissionsService } from '@pmi/permissions';
|
|
3
|
+
import { LocalStorageService } from 'idp-apps-shared-ui/core/services/local-storage.service';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { LoadingService } from '../services/loading.service';
|
|
6
|
+
import { UserPolicyService } from '../services/user-policy.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class PolicyResolver implements Resolve<boolean> {
|
|
9
|
+
private permissionsService;
|
|
10
|
+
private localStorageService;
|
|
11
|
+
private loadingService;
|
|
12
|
+
private userPolicyService;
|
|
13
|
+
private policyEnabled;
|
|
14
|
+
constructor(permissionsService: PermissionsService, localStorageService: LocalStorageService, loadingService: LoadingService, userPolicyService: UserPolicyService, policyEnabled: boolean);
|
|
15
|
+
resolve(): Observable<boolean>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PolicyResolver, [null, null, null, null, { optional: true; }]>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PolicyResolver>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { IResponseHeaders } from '../interfaces/response-headers.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HttpService {
|
|
6
|
+
private http;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
/**
|
|
9
|
+
* Will make GER request, format it and return observable response with data
|
|
10
|
+
* @param url
|
|
11
|
+
* @param params
|
|
12
|
+
* @return {Observable<any>}
|
|
13
|
+
*/
|
|
14
|
+
get(url: any, params?: {}): Observable<any>;
|
|
15
|
+
/**
|
|
16
|
+
* Will make GER request, format it and return observable response with data
|
|
17
|
+
* @param url
|
|
18
|
+
* @param params
|
|
19
|
+
* @return {Observable<any>}
|
|
20
|
+
*/
|
|
21
|
+
getText(url: any, params?: {}): Observable<any>;
|
|
22
|
+
/**
|
|
23
|
+
* Will make GET request, format it and return observable response with data
|
|
24
|
+
* @param url
|
|
25
|
+
* @param params
|
|
26
|
+
* @return {Observable<any>}
|
|
27
|
+
*/
|
|
28
|
+
getWithHeaders(url: any, params?: {}): Observable<{
|
|
29
|
+
body: any;
|
|
30
|
+
headers: IResponseHeaders;
|
|
31
|
+
}>;
|
|
32
|
+
/**
|
|
33
|
+
* Will make DELETE request and return observable response with data
|
|
34
|
+
* @param url
|
|
35
|
+
* @param params
|
|
36
|
+
* @return {Observable<any>}
|
|
37
|
+
*/
|
|
38
|
+
delete(url: any, params?: {}): Observable<any>;
|
|
39
|
+
/**
|
|
40
|
+
* Will make PUT request and return observable response with data
|
|
41
|
+
* @param url
|
|
42
|
+
* @param params
|
|
43
|
+
* @return {Observable<any>}
|
|
44
|
+
*/
|
|
45
|
+
put(url: any, params: any): Observable<any>;
|
|
46
|
+
/**
|
|
47
|
+
* Will make PUT request and return observable response with data
|
|
48
|
+
* @param url
|
|
49
|
+
* @param params
|
|
50
|
+
* @return {Observable<any>}
|
|
51
|
+
*/
|
|
52
|
+
putText(url: any, params: any): Observable<any>;
|
|
53
|
+
/**
|
|
54
|
+
* Will make POST request and return observable response with data
|
|
55
|
+
* @param url
|
|
56
|
+
* @param params
|
|
57
|
+
* @param options
|
|
58
|
+
* @return {Observable<any>}
|
|
59
|
+
*/
|
|
60
|
+
post(url: any, params: any, options?: any): Observable<any>;
|
|
61
|
+
/**
|
|
62
|
+
* Will make POST request and return observable response with data
|
|
63
|
+
* @param url
|
|
64
|
+
* @param params
|
|
65
|
+
* @return {Observable<any>}
|
|
66
|
+
*/
|
|
67
|
+
postText(url: any, params: any): Observable<any>;
|
|
68
|
+
/**
|
|
69
|
+
* Will return header from response, request must have {observe: 'response} option
|
|
70
|
+
* @param response
|
|
71
|
+
*/
|
|
72
|
+
getHeadersFromResponse(response: any): IResponseHeaders;
|
|
73
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HttpService, never>;
|
|
74
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HttpService>;
|
|
75
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class LoadingService {
|
|
3
|
+
private loadingSubject;
|
|
4
|
+
loading$: import("rxjs").Observable<boolean>;
|
|
5
|
+
showLoading(): void;
|
|
6
|
+
hideLoading(): void;
|
|
7
|
+
get isLoading(): boolean;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LoadingService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { AppAuthConfig } from '../token/app-auth-config-injection-token';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LocalStorageService {
|
|
4
|
+
private appAuthConfig;
|
|
5
|
+
constructor(appAuthConfig: AppAuthConfig);
|
|
6
|
+
readonly KEYS: {
|
|
7
|
+
LANG: string;
|
|
8
|
+
USER: string;
|
|
9
|
+
USER_POLICY_DATA: string;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Method will convert any data to the JSON and store it in the localStorage
|
|
13
|
+
* @param {string} key
|
|
14
|
+
* @param data
|
|
15
|
+
* @return {void}
|
|
16
|
+
*/
|
|
17
|
+
setItem(key: string, data: any): void;
|
|
18
|
+
/**
|
|
19
|
+
* Method will return any data from localStorage by key or null
|
|
20
|
+
* @param {string} key
|
|
21
|
+
* @return {any|null} stored data
|
|
22
|
+
*/
|
|
23
|
+
getItem(key: string): any;
|
|
24
|
+
/**
|
|
25
|
+
* Will remove all data from localStorage
|
|
26
|
+
*/
|
|
27
|
+
clearAll(): void;
|
|
28
|
+
/**
|
|
29
|
+
* Will remove one field from localStorage by key
|
|
30
|
+
* @param {string} key
|
|
31
|
+
*/
|
|
32
|
+
clear(key: string): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageService, [{ optional: true; }]>;
|
|
34
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageService>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { MenuElementsDto } from '../models/menu-elements-dto';
|
|
3
|
+
import { MenuItemDto } from '../models/menu-elements-dto';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class NavMenuService {
|
|
6
|
+
menuItems: MenuElementsDto[];
|
|
7
|
+
isMenuDataFromApi$: BehaviorSubject<boolean>;
|
|
8
|
+
isDynamicMenuDataReady$: BehaviorSubject<boolean>;
|
|
9
|
+
selectedMenu: MenuItemDto;
|
|
10
|
+
getMenutimes(): MenuElementsDto[];
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavMenuService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NavMenuService>;
|
|
13
|
+
}
|