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,27 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface IBannerConfig {
|
|
4
|
+
afterCloseFunc?: (banner: IBanner) => void;
|
|
5
|
+
closeAfterInMs?: number;
|
|
6
|
+
returnBanner?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export interface IBanner {
|
|
9
|
+
id: number;
|
|
10
|
+
message: string;
|
|
11
|
+
type: string;
|
|
12
|
+
bgColor: string;
|
|
13
|
+
icon: string;
|
|
14
|
+
config?: IBannerConfig;
|
|
15
|
+
}
|
|
16
|
+
export declare class BannerService {
|
|
17
|
+
latestBannerStack$: Subject<IBanner[]>;
|
|
18
|
+
bannerStack: IBanner[];
|
|
19
|
+
info(message: string, config?: IBannerConfig): IBanner[];
|
|
20
|
+
success(message: string, config?: IBannerConfig): void | IBanner[];
|
|
21
|
+
warning(message: string, config?: IBannerConfig): void | IBanner[];
|
|
22
|
+
error(message: string, config?: IBannerConfig): void | IBanner[];
|
|
23
|
+
closeById(id: number): void;
|
|
24
|
+
private addOnBannerStack;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BannerService, never>;
|
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BannerService>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { BreadCrumbService } from './service/breadcrumb.service';
|
|
4
|
+
import { BreadCrumbItem } from './model/breadCrumbItem';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BreadcrumbsComponent implements OnInit {
|
|
7
|
+
private router;
|
|
8
|
+
private breadCrumbService;
|
|
9
|
+
breadCrumbItems: Array<BreadCrumbItem>;
|
|
10
|
+
constructor(router: Router, breadCrumbService: BreadCrumbService);
|
|
11
|
+
crumbLinkClicked(index: number): void;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbsComponent, "app-breadcrumbs", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { StorageService } from 'ngx-webstorage-service';
|
|
2
|
+
import { BreadCrumbItem } from '../model/breadCrumbItem';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BreadCrumbService {
|
|
5
|
+
private storage;
|
|
6
|
+
private breadCrumbItems;
|
|
7
|
+
constructor(storage: StorageService);
|
|
8
|
+
getBreadCrumbItems(): Array<BreadCrumbItem>;
|
|
9
|
+
initializeBreadCrumb(): void;
|
|
10
|
+
clearBreadCrumb(): void;
|
|
11
|
+
triggerOnPageRefresh(object: BreadCrumbItem): void;
|
|
12
|
+
getRedirectionUrl(index: number): string;
|
|
13
|
+
removeBreadCrumbItems(index: number): void;
|
|
14
|
+
addItemToBreadCrumb(object: BreadCrumbItem): void;
|
|
15
|
+
private findItem;
|
|
16
|
+
private setMapToStorage;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadCrumbService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BreadCrumbService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ComponentSizes } from '../../../enums/component-sizes.enum';
|
|
2
|
+
import { ColorSchemes } from '../../../enums/color-schemes.enum';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ButtonControlComponent {
|
|
5
|
+
title: string;
|
|
6
|
+
colorScheme: ColorSchemes;
|
|
7
|
+
isLoading: boolean;
|
|
8
|
+
isLink: boolean;
|
|
9
|
+
isDisabled: boolean;
|
|
10
|
+
get isDisableAttr(): boolean | null;
|
|
11
|
+
readonly COMPONENT_SIZES: typeof ComponentSizes;
|
|
12
|
+
get colorSchemeClass(): string;
|
|
13
|
+
get loaderColorScheme(): ColorSchemes;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonControlComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonControlComponent, "app-button-control", never, { "title": { "alias": "title"; "required": false; }; "colorScheme": { "alias": "colorScheme"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isLink": { "alias": "isLink"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ButtonsListComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonsListComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonsListComponent, "app-buttons-list", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CircleButtonComponent {
|
|
5
|
+
name: string;
|
|
6
|
+
tooltip: string;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
customStyle: IKeyValue;
|
|
9
|
+
customClass: string;
|
|
10
|
+
onClick: EventEmitter<any>;
|
|
11
|
+
onButtonClick(): void;
|
|
12
|
+
get getCassClass(): string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircleButtonComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CircleButtonComponent, "app-circle-button", never, { "name": { "alias": "name"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customStyle": { "alias": "customStyle"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, { "onClick": "onClick"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
16
|
+
export interface IIconProp {
|
|
17
|
+
name?: string;
|
|
18
|
+
iconClass?: string;
|
|
19
|
+
tooltip?: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardContainerComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardContainerComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardContainerComponent, "app-card-container", never, {}, {}, never, ["card-container-title", "card-container-subtitle", "card-container-body"], false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { IBreadcrumbItem } from './interface/breadcrumb.interface';
|
|
4
|
+
import { BreadcrumbService } from './service/breadcrumb.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CommonBreadcrumbsComponent implements OnInit {
|
|
7
|
+
private breadcrumbService;
|
|
8
|
+
breadcrumbs$: Observable<IBreadcrumbItem[]>;
|
|
9
|
+
HomeHref: string;
|
|
10
|
+
/**
|
|
11
|
+
* separator between breadcrumbs
|
|
12
|
+
* defaults to '/'. Other options could be '.' or '-' or '>' etc.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
separator: string;
|
|
16
|
+
constructor(breadcrumbService: BreadcrumbService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommonBreadcrumbsComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommonBreadcrumbsComponent, "app-common-breadcrumbs", never, { "separator": { "alias": "separator"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { IBreadcrumbItem } from '../interface/breadcrumb.interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BreadcrumbService implements OnDestroy {
|
|
7
|
+
private router;
|
|
8
|
+
private _breadcrumbs;
|
|
9
|
+
get breadcrumbs$(): Observable<IBreadcrumbItem[]>;
|
|
10
|
+
set breadcrumbs(value: IBreadcrumbItem[]);
|
|
11
|
+
get breadcrumbs(): IBreadcrumbItem[];
|
|
12
|
+
private readonly baseHref;
|
|
13
|
+
private clearSubs$;
|
|
14
|
+
constructor(router: Router);
|
|
15
|
+
routeChangeHandler(): void;
|
|
16
|
+
makeBreadcrumbs(activatedRoute: ActivatedRoute, parentRoute?: string): IBreadcrumbItem[];
|
|
17
|
+
makeSingleCrumb(activatedRoute: ActivatedRoute, parent: string): IBreadcrumbItem | undefined;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { ISelectOption } from '../../interfaces/select.interface';
|
|
5
|
+
import { IPaginationParams } from '../../interfaces/generic.interface';
|
|
6
|
+
import { INgSelectCustomCssObject } from 'idp-apps-shared-ui/modules/query-builder/interfaces/select-custom-css-object';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DataPaginationComponent implements OnInit, OnDestroy {
|
|
9
|
+
private changeDetector;
|
|
10
|
+
totalRowCount$: Observable<number>;
|
|
11
|
+
count: number;
|
|
12
|
+
page: number;
|
|
13
|
+
pageSizeOptions: number[];
|
|
14
|
+
size: number;
|
|
15
|
+
selectionCount: number;
|
|
16
|
+
numberOfLinks: number;
|
|
17
|
+
hasDropdownStylePageSize: boolean;
|
|
18
|
+
paginationEndReached: boolean;
|
|
19
|
+
control: FormControl;
|
|
20
|
+
options: ISelectOption[];
|
|
21
|
+
renderedPages: number[];
|
|
22
|
+
changePage: EventEmitter<IPaginationParams>;
|
|
23
|
+
changePageSize: EventEmitter<IPaginationParams>;
|
|
24
|
+
ngSelectCustomCss: INgSelectCustomCssObject;
|
|
25
|
+
private readonly FIRST_PAGE;
|
|
26
|
+
private minPage;
|
|
27
|
+
private maxPage;
|
|
28
|
+
private clearSubs$;
|
|
29
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
ngOnDestroy(): void;
|
|
32
|
+
getVisibleItemsIndex(): string;
|
|
33
|
+
get isLeftDotsVisible(): boolean;
|
|
34
|
+
get isRightDotsVisible(): boolean;
|
|
35
|
+
get maxMinDifference(): number;
|
|
36
|
+
get isLastPage(): boolean;
|
|
37
|
+
get isFirstPage(): boolean;
|
|
38
|
+
setPages(): void;
|
|
39
|
+
onClickPrev(): void;
|
|
40
|
+
onClickNext(): void;
|
|
41
|
+
pageLinkClicked(page: number): void;
|
|
42
|
+
pageSizeChanged(): void;
|
|
43
|
+
onPageSizeClicked(selectedPageSize: number): void;
|
|
44
|
+
getFirstItemIndex(): number;
|
|
45
|
+
private getFirstIndex;
|
|
46
|
+
private getLastIndex;
|
|
47
|
+
private subscribeRowCountChange;
|
|
48
|
+
private setPaginationDataOnValueChange;
|
|
49
|
+
private emitEvent;
|
|
50
|
+
private get pagesCount();
|
|
51
|
+
private convertToOptions;
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataPaginationComponent, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataPaginationComponent, "app-data-pagination", never, { "totalRowCount$": { "alias": "totalRowCount$"; "required": false; }; "count": { "alias": "count"; "required": false; }; "page": { "alias": "page"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "size": { "alias": "size"; "required": false; }; "selectionCount": { "alias": "selectionCount"; "required": false; }; "numberOfLinks": { "alias": "numberOfLinks"; "required": false; }; "hasDropdownStylePageSize": { "alias": "hasDropdownStylePageSize"; "required": false; }; }, { "changePage": "changePage"; "changePageSize": "changePageSize"; }, never, never, false, never>;
|
|
54
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IFilterParam } from '../../../interfaces/api.interface';
|
|
2
|
+
import { IDataTableColumn } from '../../../interfaces/data-table.interface';
|
|
3
|
+
export declare class FilterManager {
|
|
4
|
+
private filterParams;
|
|
5
|
+
getFilterParams(): IFilterParam[];
|
|
6
|
+
getFilterParam(column: IDataTableColumn): IFilterParam;
|
|
7
|
+
setFilterParams(filterParam: IFilterParam): void;
|
|
8
|
+
setInitFilterParams(columns: IDataTableColumn[]): void;
|
|
9
|
+
clearFilterParams(): void;
|
|
10
|
+
private isFilterColumnExists;
|
|
11
|
+
private addFilterParams;
|
|
12
|
+
private updateFilterParams;
|
|
13
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { BaseDataColComponent } from '../data-col/base-data-col/base-data-col.component';
|
|
2
|
+
import { IDataTableRow, IDataTableRowEvent } from '../../../interfaces/data-table.interface';
|
|
3
|
+
import { IKeyValue } from '../../../interfaces/generic.interface';
|
|
4
|
+
import { FormService } from '../../../services/form.service';
|
|
5
|
+
import { IDataTableComponent } from '../interfaces/data-table-component.interface';
|
|
6
|
+
export declare class GridApi {
|
|
7
|
+
dataTable: IDataTableComponent;
|
|
8
|
+
formService: FormService;
|
|
9
|
+
constructor(dataTable: IDataTableComponent, formService: FormService);
|
|
10
|
+
getColumnComponent(rowIndex: number, propertyKey: string): BaseDataColComponent;
|
|
11
|
+
detectRowChanges(): void;
|
|
12
|
+
getAllRowsData(): IKeyValue;
|
|
13
|
+
getSelectedRowsData(): IKeyValue;
|
|
14
|
+
getSelectedRows(): IDataTableRow[];
|
|
15
|
+
getAllCheckedRows(): IDataTableRow[];
|
|
16
|
+
getAllExcludedRows(): IDataTableRow[];
|
|
17
|
+
getRows(): IDataTableRow[];
|
|
18
|
+
getDisplayedRows(): IDataTableRow[];
|
|
19
|
+
triggerRowClone(rowEvent: IDataTableRowEvent): void;
|
|
20
|
+
triggerRowDelete(rowEvent: IDataTableRowEvent): void;
|
|
21
|
+
triggerRowEditSave(rowEvent: IDataTableRowEvent): void;
|
|
22
|
+
triggerRowSaveCancel(rowEvent: IDataTableRowEvent): void;
|
|
23
|
+
triggerRowEdit(rowEvent: IDataTableRowEvent): void;
|
|
24
|
+
getAllTableRows(): number;
|
|
25
|
+
clearCheckBoxSelectionData(): void;
|
|
26
|
+
hasMasterSelectChecked(): boolean;
|
|
27
|
+
private getRowComponentFromRow;
|
|
28
|
+
private getRowComponents;
|
|
29
|
+
private getColumnComponents;
|
|
30
|
+
private rowValue;
|
|
31
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IDataTableColumn } from '../../../interfaces/data-table.interface';
|
|
2
|
+
import { DeleteItemFn, GetListFn } from '../../../types/function.type';
|
|
3
|
+
export declare abstract class BaseDataTableContainerComponent {
|
|
4
|
+
get getListFn(): GetListFn;
|
|
5
|
+
get deleteItemFn(): DeleteItemFn;
|
|
6
|
+
abstract get columns(): IDataTableColumn[];
|
|
7
|
+
}
|
package/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { GridOptions, IDataTableColumn, IDataTableRow, ITableCell } from '../../../../interfaces/data-table.interface';
|
|
4
|
+
import { SelectOptionValue } from '../../../../types/select.type';
|
|
5
|
+
import { IViewConstants } from '../../../../interfaces/constants.interface';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class BaseDataColComponent {
|
|
8
|
+
get controlId(): string;
|
|
9
|
+
get controlValue(): string;
|
|
10
|
+
row: IDataTableRow;
|
|
11
|
+
rowIndex: number;
|
|
12
|
+
columnIndex: number;
|
|
13
|
+
col: IDataTableColumn;
|
|
14
|
+
control: FormControl;
|
|
15
|
+
gridOptions: GridOptions;
|
|
16
|
+
onValueChanged: EventEmitter<any>;
|
|
17
|
+
changeExpandCollapse: EventEmitter<boolean>;
|
|
18
|
+
ValueChanged(): void;
|
|
19
|
+
firstValueSet(): void;
|
|
20
|
+
disableControl(disable: boolean): void;
|
|
21
|
+
setData(newData: any): void;
|
|
22
|
+
formatValue(colValue: SelectOptionValue): string;
|
|
23
|
+
findCellDisplayValue(displayValues: IViewConstants, value: SelectOptionValue): string;
|
|
24
|
+
getColumnItem(): ITableCell;
|
|
25
|
+
private static readonly getColStringVal;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseDataColComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseDataColComponent, "app-base-data-col", never, { "row": { "alias": "row"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "columnIndex": { "alias": "columnIndex"; "required": false; }; "col": { "alias": "col"; "required": false; }; "control": { "alias": "control"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; }, { "onValueChanged": "onValueChanged"; "changeExpandCollapse": "changeExpandCollapse"; }, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DataColComponent extends BaseDataColComponent {
|
|
4
|
+
constructor();
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColComponent, "[app-data-col]", never, {}, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { IDataTableAction } from '../../../../interfaces/data-table.interface';
|
|
3
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
4
|
+
import { SelectOptionValue } from 'idp-apps-shared-ui/modules/ui-kit/types/select.type';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DataColActionButtonComponent extends BaseDataColComponent {
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
actionClick: EventEmitter<IDataTableAction<any>>;
|
|
9
|
+
onActionClick(type: SelectOptionValue): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColActionButtonComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColActionButtonComponent, "[app-data-col-action-button]", never, { "disabled": { "alias": "disabled"; "required": false; }; }, { "actionClick": "actionClick"; }, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DataColBooleanComponent extends BaseDataColComponent {
|
|
4
|
+
editDisabled: boolean;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColBooleanComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColBooleanComponent, "[app-data-col-boolean]", never, { "editDisabled": { "alias": "editDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseDataColComponent } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DataColMultivalueComponent extends BaseDataColComponent {
|
|
4
|
+
viewOnly: boolean;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColMultivalueComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColMultivalueComponent, "[app-data-col-multivalue]", never, { "viewOnly": { "alias": "viewOnly"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
package/modules/ui-kit/components/data-table/data-col/data-col-nested/data-col-nested.component.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { BaseDataColComponent } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component';
|
|
3
|
+
import { ISelectOption } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/select.interface';
|
|
4
|
+
import { IClickedEventData } from '../../../../interfaces/data-table.interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DataColNestedComponent extends BaseDataColComponent {
|
|
7
|
+
options: ISelectOption[];
|
|
8
|
+
complexDetailClicked: EventEmitter<IClickedEventData>;
|
|
9
|
+
constructor();
|
|
10
|
+
nestedDetailsButtonClicked(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColNestedComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColNestedComponent, "[app-data-col-nested]", never, { "options": { "alias": "options"; "required": false; }; }, { "complexDetailClicked": "complexDetailClicked"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { IClickedEventData } from '../../../../../../modules/ui-kit/interfaces/data-table.interface';
|
|
4
|
+
import { ISelectOption } from '../../../../interfaces/select.interface';
|
|
5
|
+
import { SelectFormControlComponent } from '../../../form/select-form-control/select-form-control.component';
|
|
6
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DataColReferenceComponent extends BaseDataColComponent implements OnInit, OnDestroy {
|
|
9
|
+
private changeDetector;
|
|
10
|
+
isEditing: boolean;
|
|
11
|
+
optionTemplate: TemplateRef<any>;
|
|
12
|
+
options: ISelectOption[];
|
|
13
|
+
editDisabled: boolean;
|
|
14
|
+
complexDetailClicked: EventEmitter<IClickedEventData>;
|
|
15
|
+
selectControl: SelectFormControlComponent;
|
|
16
|
+
viewType: any;
|
|
17
|
+
isDisplayOptionsAvailable: boolean;
|
|
18
|
+
private clearSubs$;
|
|
19
|
+
set setSelectControl(control: SelectFormControlComponent);
|
|
20
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
21
|
+
get getOptionsFn(): Observable<ISelectOption[]>;
|
|
22
|
+
setData(newData: any): void;
|
|
23
|
+
referenceDetailsButtonClicked(): void;
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
private setOptionsData;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColReferenceComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColReferenceComponent, "[app-data-col-reference]", never, { "isEditing": { "alias": "isEditing"; "required": false; }; "optionTemplate": { "alias": "optionTemplate"; "required": false; }; "options": { "alias": "options"; "required": false; }; "editDisabled": { "alias": "editDisabled"; "required": false; }; }, { "complexDetailClicked": "complexDetailClicked"; }, never, never, false, never>;
|
|
29
|
+
}
|
package/modules/ui-kit/components/data-table/data-col/data-col-view/data-col-view.component.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { GridOptions, IDataTableColumn, IDataTableRow } from '../../../../interfaces/data-table.interface';
|
|
3
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
4
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DataColViewComponent extends BaseDataColComponent {
|
|
7
|
+
row: IDataTableRow;
|
|
8
|
+
rowIndex: number;
|
|
9
|
+
columnIndex: number;
|
|
10
|
+
col: IDataTableColumn;
|
|
11
|
+
gridOptions: GridOptions;
|
|
12
|
+
isFirstVisibleCol: boolean;
|
|
13
|
+
isTreeGrid: boolean;
|
|
14
|
+
rowDepth: number;
|
|
15
|
+
hasExpandCollapse: boolean;
|
|
16
|
+
isRowExpanded: boolean;
|
|
17
|
+
changeExpandCollapse: EventEmitter<boolean>;
|
|
18
|
+
private readonly TREE_SHIFT_STEP;
|
|
19
|
+
private readonly NO_TREE_SHIFT_STEP;
|
|
20
|
+
get cellDisplayValue(): string;
|
|
21
|
+
onClickExpandCollapse(shouldExpand: boolean): void;
|
|
22
|
+
get treeShift(): number;
|
|
23
|
+
get getWrapperStyle(): IKeyValue;
|
|
24
|
+
private isEmptyObject;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColViewComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColViewComponent, "app-data-col-view,[app-data-col-view]", never, { "row": { "alias": "row"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "columnIndex": { "alias": "columnIndex"; "required": false; }; "col": { "alias": "col"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; "isFirstVisibleCol": { "alias": "isFirstVisibleCol"; "required": false; }; "isTreeGrid": { "alias": "isTreeGrid"; "required": false; }; "rowDepth": { "alias": "rowDepth"; "required": false; }; "hasExpandCollapse": { "alias": "hasExpandCollapse"; "required": false; }; "isRowExpanded": { "alias": "isRowExpanded"; "required": false; }; }, { "changeExpandCollapse": "changeExpandCollapse"; }, never, never, false, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { IDataTableColumn } from '../../../interfaces/data-table.interface';
|
|
4
|
+
import { ListItem } from '../../../interfaces/list-item.interface';
|
|
5
|
+
import { BannerService } from '../../../../../modules/ui-kit/components/banner/banner.service';
|
|
6
|
+
import { LocalStorageService } from 'idp-apps-shared-ui/core/services/local-storage.service';
|
|
7
|
+
import { SourceTypesEnum } from 'idp-apps-shared-ui/enums/source-types.enum';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DataColDispComponent implements OnInit {
|
|
10
|
+
private localStorageService;
|
|
11
|
+
private banner;
|
|
12
|
+
dialogRef: MatDialogRef<DataColDispComponent>;
|
|
13
|
+
data: DialogData;
|
|
14
|
+
selectedInLeftPanel: IDataTableColumn[];
|
|
15
|
+
selectedInRightPanel: ListItem[];
|
|
16
|
+
onVisibleColumnListChange: EventEmitter<any>;
|
|
17
|
+
columnNames: ListItem[];
|
|
18
|
+
columnsAvailable: IDataTableColumn[];
|
|
19
|
+
backupPreviouslyColumnVisibleList: IDataTableColumn[];
|
|
20
|
+
readonly sourceTypes: typeof SourceTypesEnum;
|
|
21
|
+
availableColumnsSortingActionStatus: boolean;
|
|
22
|
+
displayColumnsSortingActionStatus: boolean;
|
|
23
|
+
constructor(localStorageService: LocalStorageService, banner: BannerService, dialogRef: MatDialogRef<DataColDispComponent>, data: DialogData);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
leftItemClicked(column: IDataTableColumn): void;
|
|
26
|
+
leftSelected(column: IDataTableColumn): boolean;
|
|
27
|
+
rightItemClicked(column: ListItem): void;
|
|
28
|
+
private sortSelectedPanel;
|
|
29
|
+
rightSelected(column: IDataTableColumn): boolean;
|
|
30
|
+
singleRightClicked(): void;
|
|
31
|
+
private setColumnNamesFromStorage;
|
|
32
|
+
doubleRightClicked(): void;
|
|
33
|
+
singleLeftClicked(): void;
|
|
34
|
+
doubleLeftClicked(): void;
|
|
35
|
+
okClicked(): void;
|
|
36
|
+
cancelClicked(): void;
|
|
37
|
+
backupPreviouslyVisibleColumn(status: string): void;
|
|
38
|
+
private emptySaveWarning;
|
|
39
|
+
sortupClicked(): void;
|
|
40
|
+
sortdownClicked(): void;
|
|
41
|
+
private closeDialog;
|
|
42
|
+
private makeVisible;
|
|
43
|
+
private completeSet;
|
|
44
|
+
private swapElements;
|
|
45
|
+
hasMetadataSeparation(columns: IDataTableColumn[]): boolean;
|
|
46
|
+
sortingAvailbleColumns(): void;
|
|
47
|
+
sortingDisplayColumns(): void;
|
|
48
|
+
sortupDoubleClicked(): void;
|
|
49
|
+
sortdownDoubleClicked(): void;
|
|
50
|
+
private resortingSelectedRightColumnList;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColDispComponent, never>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColDispComponent, "app-data-col-disp", never, {}, { "onVisibleColumnListChange": "onVisibleColumnListChange"; }, never, never, false, never>;
|
|
53
|
+
}
|
|
54
|
+
export interface DialogData {
|
|
55
|
+
status: string;
|
|
56
|
+
columns: IDataTableColumn[];
|
|
57
|
+
defaultSortedColumns: IDataTableColumn[];
|
|
58
|
+
storageKey?: string;
|
|
59
|
+
metaDataColumns?: string[];
|
|
60
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { Options } from '@angular-slider/ngx-slider';
|
|
2
|
+
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
3
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { IKeyValue } from '../../../../../modules/ui-kit/interfaces/generic.interface';
|
|
6
|
+
import { IFilterOption, IFilterParam } from '../../../interfaces/api.interface';
|
|
7
|
+
import { IDataTableColumn } from '../../../interfaces/data-table.interface';
|
|
8
|
+
import { FilterValueExecutorProvider } from '../../data-table/data-col-filter/filter-value-helpers/filter-value-executor-provider';
|
|
9
|
+
import { DataTableColumnFilterInputTypes, DataTableColumnFilterTypes } from '../../data-table/enums/col-filter-types';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class DataColFilterComponent implements OnInit, OnChanges, OnDestroy {
|
|
12
|
+
private filterValueExecutorProvider;
|
|
13
|
+
private cd;
|
|
14
|
+
isClearFilter$: BehaviorSubject<boolean>;
|
|
15
|
+
isUpdatedFilterDesign: boolean;
|
|
16
|
+
columnName: IDataTableColumn;
|
|
17
|
+
filterParam: IFilterParam;
|
|
18
|
+
numberOfTableRefresh: number;
|
|
19
|
+
filterOption: IFilterOption;
|
|
20
|
+
selectableItems$: BehaviorSubject<IKeyValue[]>;
|
|
21
|
+
searchText: FormControl;
|
|
22
|
+
selectAllCtrl: FormControl;
|
|
23
|
+
onFilterClicked: EventEmitter<IFilterParam>;
|
|
24
|
+
dateRangeFormGroup: FormGroup<{
|
|
25
|
+
startDate: FormControl<string>;
|
|
26
|
+
endDate: FormControl<string>;
|
|
27
|
+
}>;
|
|
28
|
+
dateRangeValue: string;
|
|
29
|
+
sliderValueOpt: {
|
|
30
|
+
maxScore: number;
|
|
31
|
+
minScore: number;
|
|
32
|
+
};
|
|
33
|
+
filterValue: FormControl;
|
|
34
|
+
searchCtrl: FormControl;
|
|
35
|
+
FILTER_TYPES: typeof DataTableColumnFilterTypes;
|
|
36
|
+
FILTER_INPUT_TYPES: typeof DataTableColumnFilterInputTypes;
|
|
37
|
+
sliderDefaultOptions: Options;
|
|
38
|
+
isLoading$: BehaviorSubject<boolean>;
|
|
39
|
+
private ngbPopover;
|
|
40
|
+
private filterValueMaker;
|
|
41
|
+
private filterWorkingValue;
|
|
42
|
+
private selectableItems;
|
|
43
|
+
private previousSelectableItems;
|
|
44
|
+
private clearSubs$;
|
|
45
|
+
private searchObject$;
|
|
46
|
+
constructor(filterValueExecutorProvider: FilterValueExecutorProvider, cd: ChangeDetectorRef);
|
|
47
|
+
get getCheckBoxsValue(): string;
|
|
48
|
+
get isIndeterminate(): boolean;
|
|
49
|
+
get isAllSelected(): boolean;
|
|
50
|
+
get isClearEnabled(): boolean;
|
|
51
|
+
get isSearchBoxHide(): boolean;
|
|
52
|
+
ngOnDestroy(): void;
|
|
53
|
+
ngOnInit(): void;
|
|
54
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
55
|
+
selectAllCheckbox(): void;
|
|
56
|
+
columnFilterClicked(): void;
|
|
57
|
+
columnFilterResetClicked(): void;
|
|
58
|
+
matMenuOpend(): void;
|
|
59
|
+
dateRangeClick(ev: any): void;
|
|
60
|
+
clearSelection(): void;
|
|
61
|
+
clearDateFilter(): void;
|
|
62
|
+
closePopup(): void;
|
|
63
|
+
clearSearch(): void;
|
|
64
|
+
changeContainsValue(): void;
|
|
65
|
+
searchValueChanged(): void;
|
|
66
|
+
setCheckedValuesToFilter(item: IKeyValue): void;
|
|
67
|
+
referenceValueChanged(): void;
|
|
68
|
+
sliderValueChanged(): void;
|
|
69
|
+
setDateValue(formName: string): void;
|
|
70
|
+
isItemChecked(item: IKeyValue): boolean;
|
|
71
|
+
isFormInvalid(): boolean;
|
|
72
|
+
private getFilterValue;
|
|
73
|
+
private emitFilterParam;
|
|
74
|
+
private getSelectableItems;
|
|
75
|
+
private clearFilter;
|
|
76
|
+
private getCurrentSelectedItems;
|
|
77
|
+
private removePreviousSelectedItems;
|
|
78
|
+
private populateDateRnage;
|
|
79
|
+
private formatDate;
|
|
80
|
+
private loadReferenceData;
|
|
81
|
+
private setSearchWatcher$;
|
|
82
|
+
private loadDefaultReferenceItems;
|
|
83
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColFilterComponent, never>;
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColFilterComponent, "app-data-col-filter", never, { "isClearFilter$": { "alias": "isClearFilter$"; "required": false; }; "isUpdatedFilterDesign": { "alias": "isUpdatedFilterDesign"; "required": false; }; "columnName": { "alias": "columnName"; "required": false; }; "filterParam": { "alias": "filterParam"; "required": false; }; "numberOfTableRefresh": { "alias": "numberOfTableRefresh"; "required": false; }; "filterOption": { "alias": "filterOption"; "required": false; }; }, { "onFilterClicked": "onFilterClicked"; }, never, never, false, never>;
|
|
85
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IDataTableColumnFilterValue } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface';
|
|
2
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
3
|
+
export declare class DataTableColumnFilterBetweenValue implements IDataTableColumnFilterValue {
|
|
4
|
+
getFilterValue(filterValue: IKeyValue): string;
|
|
5
|
+
matchWithFilterValue(rowValue: IKeyValue, filterValue: IKeyValue): boolean;
|
|
6
|
+
setInitValues(context: any): void;
|
|
7
|
+
isFormInvalid(context: any): boolean;
|
|
8
|
+
resetValue(context: any): void;
|
|
9
|
+
private adjustOneDay;
|
|
10
|
+
private removeSingleQuotesFromValue;
|
|
11
|
+
private isSameOrBetween;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IDataTableColumnFilterValue } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface';
|
|
2
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
3
|
+
export declare class DataTableColumnFilterContainsValue implements IDataTableColumnFilterValue {
|
|
4
|
+
getFilterValue(filterValue: IKeyValue): string;
|
|
5
|
+
matchWithFilterValue(rowValue: IKeyValue, filterValue: IKeyValue): boolean;
|
|
6
|
+
setInitValues(context: any): void;
|
|
7
|
+
isFormInvalid(context: any): boolean;
|
|
8
|
+
resetValue(context: any): void;
|
|
9
|
+
}
|