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,14 @@
|
|
|
1
|
+
import { QueryList } from '@angular/core';
|
|
2
|
+
import { DynamicFormModel } from '../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
3
|
+
import { DynamicTemplateDirective } from '../directives/dynamic-template.directive';
|
|
4
|
+
import { IDynamicFormLayout } from '../interfaces/layout/form-layout.interface';
|
|
5
|
+
import { DynamicFormLayoutControlModel } from '../models/layout/layout-control.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export type DynamicFormControlTemplates = QueryList<DynamicTemplateDirective> | DynamicTemplateDirective[] | undefined;
|
|
8
|
+
export declare class DynamicFormLayoutService {
|
|
9
|
+
getGroupLayout(id: string, layout?: IDynamicFormLayout): DynamicFormLayoutControlModel | null;
|
|
10
|
+
getById(id: string, layout: IDynamicFormLayout): DynamicFormLayoutControlModel | undefined;
|
|
11
|
+
getControlModels(formModel: DynamicFormModel, layoutId: string): DynamicFormModel;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormLayoutService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormLayoutService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DynamicFormControlMatcher } from '../interfaces/matchers/form-control-matcher.interface';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DynamicFormRelationService {
|
|
4
|
+
private dynamicFormControlMatchers;
|
|
5
|
+
constructor(dynamicFormControlMatchers: DynamicFormControlMatcher[]);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormRelationService, [{ optional: true; }]>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormRelationService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AsyncValidatorFn, ValidatorFn } from '@angular/forms';
|
|
2
|
+
import { ValidatorsMap } from '../interfaces/validators/validators.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicFormValidationService {
|
|
5
|
+
private validatorFns;
|
|
6
|
+
private asyncValidatorFns;
|
|
7
|
+
private dynamicValidators;
|
|
8
|
+
constructor(validatorFns: ValidatorFn[], asyncValidatorFns: AsyncValidatorFn[], dynamicValidators: ValidatorsMap);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormValidationService, [{ optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormValidationService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AbstractControlOptions, AbstractControl, FormArray, FormGroup, FormControl } from '@angular/forms';
|
|
2
|
+
import { DynamicFormModel, DynamicUnionFormModel } from '../interfaces/dynamic-form/dynamic-form-model.interface';
|
|
3
|
+
import { DynamicFormArrayModel } from '../models/form-array/dynamic-form-array.model';
|
|
4
|
+
import { DynamicFormControlModel } from '../models/form-control/dynamic-form-control.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DynamicFormService {
|
|
7
|
+
getTitleByFormType(formType: string): string;
|
|
8
|
+
resolveFormItem(model: DynamicFormControlModel): FormArray | FormControl | FormGroup;
|
|
9
|
+
createFormArray(formArrayModel: DynamicFormArrayModel): FormArray;
|
|
10
|
+
createFormControl(controlModel: DynamicFormControlModel): FormControl;
|
|
11
|
+
createFormGroup(formModel: DynamicFormModel, options?: AbstractControlOptions | null): FormGroup;
|
|
12
|
+
static findById(id: string, formModel: DynamicFormModel): DynamicFormControlModel | null;
|
|
13
|
+
updateControl(formGroup: FormGroup, formModel: DynamicFormModel, controlId: string, newControlModel: DynamicFormControlModel): DynamicFormModel | null;
|
|
14
|
+
updateFormGroup(formGroup: FormGroup, formModel: DynamicFormModel, targetFormModel: DynamicFormModel): void;
|
|
15
|
+
insertFormControls(formGroup: FormGroup, formModel: DynamicFormModel, idx: number, ...controls: DynamicFormModel): void;
|
|
16
|
+
removeFormControls(formGroup: FormGroup, formModel: DynamicFormModel, ...controls: DynamicFormModel): void;
|
|
17
|
+
addFormGroupControl(formGroup: FormGroup, formModel: DynamicUnionFormModel, ...models: DynamicFormModel): void;
|
|
18
|
+
moveFormGroupControl(index: number, step: number, formModel: DynamicUnionFormModel): void;
|
|
19
|
+
insertFormGroupControl(index: number, formGroup: FormGroup, formModel: DynamicUnionFormModel, ...models: DynamicFormModel): void;
|
|
20
|
+
removeFormGroupControl(index: number, formGroup: FormGroup, formModel: DynamicUnionFormModel): void;
|
|
21
|
+
addFormArrayGroup(formArray: FormArray, formArrayModel: DynamicFormArrayModel): void;
|
|
22
|
+
insertFormArrayGroup(index: number, formArray: FormArray, formArrayModel: DynamicFormArrayModel): void;
|
|
23
|
+
removeFormArrayGroup(index: number, formArray: FormArray, formArrayModel: DynamicFormArrayModel): void;
|
|
24
|
+
clearFormArray(formArray: FormArray, formArrayModel?: DynamicFormArrayModel): void;
|
|
25
|
+
static markAsTouchedAbstractControl(control: AbstractControl): void;
|
|
26
|
+
updateValidityInAbstractControl(control: AbstractControl): void;
|
|
27
|
+
static detectChangesInModel(model: DynamicFormModel): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormService, never>;
|
|
29
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormService>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { FormArray, FormControl, FormGroup, AbstractControlOptions, AbstractControl } from '@angular/forms';
|
|
2
|
+
import { DynamicFormArrayModel, DynamicFormModel } from '../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
3
|
+
import { DynamicFormControlModel } from '../../../../modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class StaticFormService {
|
|
6
|
+
static createFormGroup(formModel: DynamicFormModel | null, options?: AbstractControlOptions | null): FormGroup;
|
|
7
|
+
static resolveFormItem(model: DynamicFormControlModel): FormArray | FormControl | FormGroup;
|
|
8
|
+
static createFormArray(formArrayModel: DynamicFormArrayModel): FormArray;
|
|
9
|
+
static createFormControl(controlModel: DynamicFormControlModel): FormControl;
|
|
10
|
+
static clearFormArray(formArray: FormArray, formArrayModel?: DynamicFormArrayModel): void;
|
|
11
|
+
static markAsTouchedAbstractControl(control: AbstractControl): void;
|
|
12
|
+
static markAsDirtyAbstractControl(control: AbstractControl): void;
|
|
13
|
+
static updateValidityInAbstractControl(control: AbstractControl): void;
|
|
14
|
+
static detectChangesInModel(model: DynamicFormModel): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StaticFormService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StaticFormService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
type MaskFromString = string | RegExp | (string | RegExp)[];
|
|
2
|
+
export declare function maskToString(mask: string | RegExp | (string | RegExp)[]): string | string[] | null;
|
|
3
|
+
export declare function maskFromString(mask: string | string[]): MaskFromString | null;
|
|
4
|
+
export declare function parseReviver(_key: string, value: any): any;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./dynamic-form-UI/dynamic-form-ui.module";
|
|
4
|
+
import * as i3 from "./dynamic-forms-core/dynamic-form-core.module";
|
|
5
|
+
export declare class DynamicFormsModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormsModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicFormsModule, never, [typeof i1.CommonModule, typeof i2.DynamicFormUIModule, typeof i3.DynamicFormCoreModule], [typeof i2.DynamicFormUIModule, typeof i3.DynamicFormCoreModule]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DynamicFormsModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/cdk/scrolling";
|
|
3
|
+
export declare class MatCdkModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatCdkModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatCdkModule, never, never, [typeof i1.ScrollingModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MatCdkModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/cdk/a11y";
|
|
3
|
+
import * as i2 from "@angular/cdk/clipboard";
|
|
4
|
+
import * as i3 from "@angular/material/input";
|
|
5
|
+
import * as i4 from "@angular/cdk/stepper";
|
|
6
|
+
import * as i5 from "@angular/cdk/table";
|
|
7
|
+
import * as i6 from "@angular/cdk/tree";
|
|
8
|
+
import * as i7 from "@angular/cdk/drag-drop";
|
|
9
|
+
import * as i8 from "@angular/material/autocomplete";
|
|
10
|
+
import * as i9 from "@angular/material/badge";
|
|
11
|
+
import * as i10 from "@angular/material/bottom-sheet";
|
|
12
|
+
import * as i11 from "@angular/material/button";
|
|
13
|
+
import * as i12 from "@angular/material/button-toggle";
|
|
14
|
+
import * as i13 from "@angular/material/card";
|
|
15
|
+
import * as i14 from "@angular/material/checkbox";
|
|
16
|
+
import * as i15 from "@angular/material/chips";
|
|
17
|
+
import * as i16 from "@angular/material/stepper";
|
|
18
|
+
import * as i17 from "@angular/material/datepicker";
|
|
19
|
+
import * as i18 from "@angular/material/dialog";
|
|
20
|
+
import * as i19 from "@angular/material/divider";
|
|
21
|
+
import * as i20 from "@angular/material/expansion";
|
|
22
|
+
import * as i21 from "@angular/material/grid-list";
|
|
23
|
+
import * as i22 from "@angular/material/icon";
|
|
24
|
+
import * as i23 from "@angular/material/list";
|
|
25
|
+
import * as i24 from "@angular/material/menu";
|
|
26
|
+
import * as i25 from "@angular/material/core";
|
|
27
|
+
import * as i26 from "@angular/material/paginator";
|
|
28
|
+
import * as i27 from "@angular/material/progress-bar";
|
|
29
|
+
import * as i28 from "@angular/material/progress-spinner";
|
|
30
|
+
import * as i29 from "@angular/material/radio";
|
|
31
|
+
import * as i30 from "@angular/material/select";
|
|
32
|
+
import * as i31 from "@angular/material/sidenav";
|
|
33
|
+
import * as i32 from "@angular/material/slider";
|
|
34
|
+
import * as i33 from "@angular/material/slide-toggle";
|
|
35
|
+
import * as i34 from "@angular/material/snack-bar";
|
|
36
|
+
import * as i35 from "@angular/material/sort";
|
|
37
|
+
import * as i36 from "@angular/material/table";
|
|
38
|
+
import * as i37 from "@angular/material/tabs";
|
|
39
|
+
import * as i38 from "@angular/material/toolbar";
|
|
40
|
+
import * as i39 from "@angular/material/tooltip";
|
|
41
|
+
import * as i40 from "@angular/material/tree";
|
|
42
|
+
import * as i41 from "@angular/cdk/overlay";
|
|
43
|
+
import * as i42 from "@angular/cdk/portal";
|
|
44
|
+
import * as i43 from "@angular/cdk/scrolling";
|
|
45
|
+
import * as i44 from "@angular/material/form-field";
|
|
46
|
+
export declare class MaterialModule {
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
|
|
48
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, never, [typeof i1.A11yModule, typeof i2.ClipboardModule, typeof i3.MatInputModule, typeof i4.CdkStepperModule, typeof i5.CdkTableModule, typeof i6.CdkTreeModule, typeof i7.DragDropModule, typeof i8.MatAutocompleteModule, typeof i9.MatBadgeModule, typeof i10.MatBottomSheetModule, typeof i11.MatButtonModule, typeof i12.MatButtonToggleModule, typeof i13.MatCardModule, typeof i14.MatCheckboxModule, typeof i15.MatChipsModule, typeof i16.MatStepperModule, typeof i17.MatDatepickerModule, typeof i18.MatDialogModule, typeof i19.MatDividerModule, typeof i20.MatExpansionModule, typeof i21.MatGridListModule, typeof i22.MatIconModule, typeof i3.MatInputModule, typeof i23.MatListModule, typeof i24.MatMenuModule, typeof i25.MatNativeDateModule, typeof i26.MatPaginatorModule, typeof i27.MatProgressBarModule, typeof i28.MatProgressSpinnerModule, typeof i29.MatRadioModule, typeof i25.MatRippleModule, typeof i30.MatSelectModule, typeof i31.MatSidenavModule, typeof i32.MatSliderModule, typeof i33.MatSlideToggleModule, typeof i34.MatSnackBarModule, typeof i35.MatSortModule, typeof i36.MatTableModule, typeof i37.MatTabsModule, typeof i38.MatToolbarModule, typeof i39.MatTooltipModule, typeof i40.MatTreeModule, typeof i41.OverlayModule, typeof i42.PortalModule, typeof i43.ScrollingModule, typeof i44.MatFormFieldModule]>;
|
|
49
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
|
|
50
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ColorSchemes } from '../../../../modules/ui-kit/enums/color-schemes.enum';
|
|
4
|
+
import { IDataSourceColumnDetails, IQueryRule } from '../../../../modules/query-builder/interfaces/query-builder.interface';
|
|
5
|
+
import { ITableColumns } from 'idp-apps-shared-ui/core/interfaces/filters.api.interface';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class QueryDesignComponent implements OnInit {
|
|
8
|
+
isReadOnly: boolean;
|
|
9
|
+
isApplyNewRuleBuilderDesign: boolean;
|
|
10
|
+
isSetInitRules: boolean;
|
|
11
|
+
tableName: string;
|
|
12
|
+
schemaName: string;
|
|
13
|
+
tableColumns: ITableColumns;
|
|
14
|
+
rules: IQueryRule[];
|
|
15
|
+
isLoaderForColumns: boolean;
|
|
16
|
+
searchActionText: string;
|
|
17
|
+
isRuleSaveMode: boolean;
|
|
18
|
+
isSingleLineQuery: boolean;
|
|
19
|
+
isAddIconVisible: boolean;
|
|
20
|
+
searchHandler: (tableName: string, columnName: string, searchKeyword: string, schemaName?: string) => Observable<string[]>;
|
|
21
|
+
getTableColumnsHandler: (isSource: boolean, tableId: string) => IDataSourceColumnDetails[];
|
|
22
|
+
isSource: boolean;
|
|
23
|
+
isMultiTableSelection: boolean;
|
|
24
|
+
onRulesChanged: EventEmitter<IQueryRule[]>;
|
|
25
|
+
onSearch: EventEmitter<any>;
|
|
26
|
+
readonly COLOR_SCHEMES: typeof ColorSchemes;
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
handleRuleChange(): void;
|
|
29
|
+
handleLineRemove(index: number): void;
|
|
30
|
+
addNewRuleLine(): void;
|
|
31
|
+
searchClick(): void;
|
|
32
|
+
resetRules(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueryDesignComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueryDesignComponent, "app-query-design", never, { "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "isApplyNewRuleBuilderDesign": { "alias": "isApplyNewRuleBuilderDesign"; "required": false; }; "isSetInitRules": { "alias": "isSetInitRules"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "schemaName": { "alias": "schemaName"; "required": false; }; "tableColumns": { "alias": "tableColumns"; "required": false; }; "rules": { "alias": "rules"; "required": false; }; "isLoaderForColumns": { "alias": "isLoaderForColumns"; "required": false; }; "searchActionText": { "alias": "searchActionText"; "required": false; }; "isRuleSaveMode": { "alias": "isRuleSaveMode"; "required": false; }; "isSingleLineQuery": { "alias": "isSingleLineQuery"; "required": false; }; "isAddIconVisible": { "alias": "isAddIconVisible"; "required": false; }; "searchHandler": { "alias": "searchHandler"; "required": false; }; "getTableColumnsHandler": { "alias": "getTableColumnsHandler"; "required": false; }; "isSource": { "alias": "isSource"; "required": false; }; "isMultiTableSelection": { "alias": "isMultiTableSelection"; "required": false; }; }, { "onRulesChanged": "onRulesChanged"; "onSearch": "onSearch"; }, never, never, false, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { NgSelectComponent } from '@ng-select/ng-select';
|
|
4
|
+
import { ConditionOperator } from 'idp-apps-shared-ui/modules/query-builder/interfaces/query-builder.interface';
|
|
5
|
+
import { INgSelectCustomCssObject } from 'idp-apps-shared-ui/modules/query-builder/interfaces/select-custom-css-object';
|
|
6
|
+
import { Observable, Subject } from 'rxjs';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class AlphanumericControlComponent implements OnInit, ControlValueAccessor, OnChanges {
|
|
9
|
+
private changeDetectorRef;
|
|
10
|
+
body: any;
|
|
11
|
+
isRvalueText: boolean;
|
|
12
|
+
ngSelectCustomCss: INgSelectCustomCssObject;
|
|
13
|
+
tableName: string;
|
|
14
|
+
columnName: string;
|
|
15
|
+
condition: ConditionOperator;
|
|
16
|
+
schemaName: string;
|
|
17
|
+
searchHandler: (tableName: string, columnName: string, searchKeyword: string, schemaName?: string) => Observable<string[]>;
|
|
18
|
+
ngSelect: NgSelectComponent;
|
|
19
|
+
ruleValueOptions$: Observable<string[]>;
|
|
20
|
+
rValueInput$: Subject<string>;
|
|
21
|
+
rValueOptionsLoading: boolean;
|
|
22
|
+
isDisabled: boolean;
|
|
23
|
+
changeFn: any;
|
|
24
|
+
touchFn: any;
|
|
25
|
+
readonly ONE_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
26
|
+
readonly TWO_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
27
|
+
readonly MULTI_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
28
|
+
set value(val: string[]);
|
|
29
|
+
get value(): string[];
|
|
30
|
+
get isOneValueOperator(): boolean;
|
|
31
|
+
get isTwoValueCondition(): boolean;
|
|
32
|
+
get isMultiValueCondition(): boolean;
|
|
33
|
+
private _value;
|
|
34
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
inputModelChange(value?: string): void;
|
|
37
|
+
triggerControlValueChange(): void;
|
|
38
|
+
setRValueAutoComplete(): void;
|
|
39
|
+
registerOnChange(fn: any): void;
|
|
40
|
+
registerOnTouched(fn: any): void;
|
|
41
|
+
setDisabledState(isDisabled: boolean): void;
|
|
42
|
+
writeValue(val: string | null | string[]): void;
|
|
43
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlphanumericControlComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlphanumericControlComponent, "query-alphanumeric-control", never, { "isRvalueText": { "alias": "isRvalueText"; "required": false; }; "ngSelectCustomCss": { "alias": "ngSelectCustomCss"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "columnName": { "alias": "columnName"; "required": false; }; "condition": { "alias": "condition"; "required": false; }; "schemaName": { "alias": "schemaName"; "required": false; }; "searchHandler": { "alias": "searchHandler"; "required": false; }; }, {}, never, never, false, never>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { ConditionOperator } from 'idp-apps-shared-ui/modules/query-builder/interfaces/query-builder.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BooleanControlComponent implements ControlValueAccessor, OnChanges {
|
|
6
|
+
private changeDetectorRef;
|
|
7
|
+
body: any;
|
|
8
|
+
isRvalueText: boolean;
|
|
9
|
+
condition: ConditionOperator;
|
|
10
|
+
isDisabled: boolean;
|
|
11
|
+
changeFn: any;
|
|
12
|
+
touchFn: any;
|
|
13
|
+
readonly ONE_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
14
|
+
readonly options: string[];
|
|
15
|
+
set value(val: string[]);
|
|
16
|
+
get value(): string[];
|
|
17
|
+
get isOneValueOperator(): boolean;
|
|
18
|
+
private _value;
|
|
19
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
20
|
+
inputModelChange(value: string): void;
|
|
21
|
+
triggerControlValueChange(): void;
|
|
22
|
+
registerOnChange(fn: any): void;
|
|
23
|
+
registerOnTouched(fn: any): void;
|
|
24
|
+
setDisabledState(isDisabled: boolean): void;
|
|
25
|
+
writeValue(val: string | null | string[]): void;
|
|
26
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanControlComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BooleanControlComponent, "query-boolean-control", never, { "isRvalueText": { "alias": "isRvalueText"; "required": false; }; "condition": { "alias": "condition"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { ConditionOperator } from 'idp-apps-shared-ui/modules/query-builder/interfaces/query-builder.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DateControlComponent implements ControlValueAccessor, OnChanges {
|
|
6
|
+
condition: ConditionOperator;
|
|
7
|
+
readonly TWO_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
8
|
+
private onChangeFn;
|
|
9
|
+
private onTouchFn;
|
|
10
|
+
private _value;
|
|
11
|
+
get value(): Date[];
|
|
12
|
+
set value(val: Date[]);
|
|
13
|
+
get isTwoValueCondition(): boolean;
|
|
14
|
+
registerOnChange(fn: any): void;
|
|
15
|
+
writeValue(val: string): void;
|
|
16
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
17
|
+
triggerControlValueChange(): void;
|
|
18
|
+
registerOnTouched(fn: any): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateControlComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateControlComponent, "query-date-control", never, { "condition": { "alias": "condition"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnChanges, OnDestroy, SimpleChanges, OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { NgSelectComponent } from '@ng-select/ng-select';
|
|
4
|
+
import { Subject, Observable } from 'rxjs';
|
|
5
|
+
import { ConditionOperator } from 'idp-apps-shared-ui/modules/query-builder/interfaces/query-builder.interface';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class NumericControlComponent implements OnInit, ControlValueAccessor, OnChanges, OnDestroy {
|
|
8
|
+
private changeDetectorRef;
|
|
9
|
+
isRvalueText: boolean;
|
|
10
|
+
tableName: string;
|
|
11
|
+
columnName: string;
|
|
12
|
+
condition: ConditionOperator;
|
|
13
|
+
schemaName: string;
|
|
14
|
+
searchHandler: (tableName: string, columnName: string, searchKeyword: string, schemaName?: string) => Observable<string[]>;
|
|
15
|
+
ngSelect: NgSelectComponent;
|
|
16
|
+
onChangeFn: any;
|
|
17
|
+
onTouchedFn: any;
|
|
18
|
+
readonly TWO_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
19
|
+
readonly MULTI_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
20
|
+
readonly ALLOWED_KEYCODES: Set<string>;
|
|
21
|
+
ruleValueOptions$: Observable<string[]>;
|
|
22
|
+
rValueInput$: Subject<string>;
|
|
23
|
+
rValueOptionsLoading: boolean;
|
|
24
|
+
private _value;
|
|
25
|
+
private clearSubs$;
|
|
26
|
+
private ngSelectSubscription?;
|
|
27
|
+
get isTwoValueCondition(): boolean;
|
|
28
|
+
get isMultiValueCondition(): boolean;
|
|
29
|
+
get value(): number[];
|
|
30
|
+
set value(val: number[]);
|
|
31
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
32
|
+
ngOnInit(): void;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
+
ngOnDestroy(): void;
|
|
35
|
+
setNumericInputFilter(): void;
|
|
36
|
+
isKeyCodeAllowed(keyCode: any): boolean;
|
|
37
|
+
pasteIsAllowed(keyCode: any): boolean;
|
|
38
|
+
inputModelChange(value: string): void;
|
|
39
|
+
triggerControlValueChange(): void;
|
|
40
|
+
registerOnChange(fn: any): void;
|
|
41
|
+
registerOnTouched(fn: any): void;
|
|
42
|
+
writeValue(val?: string | null): void;
|
|
43
|
+
setRValueAutoComplete(): void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumericControlComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericControlComponent, "query-numeric-control", never, { "isRvalueText": { "alias": "isRvalueText"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "columnName": { "alias": "columnName"; "required": false; }; "condition": { "alias": "condition"; "required": false; }; "schemaName": { "alias": "schemaName"; "required": false; }; "searchHandler": { "alias": "searchHandler"; "required": false; }; }, {}, never, never, false, never>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { TableColumnTypes } from 'idp-apps-shared-ui/core/interfaces/filters.api.interface';
|
|
2
|
+
import { ConditionOperator } from 'idp-apps-shared-ui/modules/query-builder/interfaces/query-builder.interface';
|
|
3
|
+
export declare const alphanumericTypeOperators: ConditionOperator[];
|
|
4
|
+
export declare const numericTypeOperators: ConditionOperator[];
|
|
5
|
+
export declare const dateTypeOperators: ConditionOperator[];
|
|
6
|
+
export declare const boolTypeOperators: ConditionOperator[];
|
|
7
|
+
export declare const tableColToOperatorsMap: Map<TableColumnTypes, ConditionOperator[]>;
|
|
8
|
+
export declare const ONE_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
9
|
+
export declare const NO_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
10
|
+
export declare const TWO_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
11
|
+
export declare const MULTI_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
12
|
+
export declare const OPERATORS_VALUE_LABEL_MAP: Map<ConditionOperator, string>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ConditionOperator } from 'idp-apps-shared-ui/modules/query-builder/interfaces/query-builder.interface';
|
|
2
|
+
export interface IConditionOption {
|
|
3
|
+
label: string;
|
|
4
|
+
value: ConditionOperator;
|
|
5
|
+
}
|
|
6
|
+
export declare function mapConditionOperator(operator: ConditionOperator): IConditionOption;
|
package/modules/query-builder/components/query-design/rule-line/helpers/control-values-mapper.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare function mapMultiValueToDTO(val: (number | string)[]): string | null;
|
|
2
|
+
export declare function parseValueToStringArray(value: string): string[];
|
|
3
|
+
export declare function parseMultiValueNumberArray(value: string): number[];
|
|
4
|
+
export declare function parseTwoValueNumber(value: any): number[];
|
|
5
|
+
export declare function parseTwoValueDate(value: string): Date[];
|
|
6
|
+
export declare function mapTwoValueNumbersToDTO(val: number[] | string[]): string | null;
|
|
7
|
+
export declare function mapTwoValueDatesToDTO(val: Date[]): string | null;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ISelectOption } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/select.interface';
|
|
3
|
+
import { INgSelectCustomCssObject } from 'idp-apps-shared-ui/modules/query-builder/interfaces/select-custom-css-object';
|
|
4
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
5
|
+
import { IConditionOption } from './helpers/condition-operators.mapper';
|
|
6
|
+
import { ITableColumn, ITableColumns, TableColumnTypes } from 'idp-apps-shared-ui/core/interfaces/filters.api.interface';
|
|
7
|
+
import { ConditionOperator, IDataSourceColumnDetails, IQueryRule } from 'idp-apps-shared-ui/modules/query-builder/interfaces/query-builder.interface';
|
|
8
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class RuleLineComponent implements OnChanges, OnDestroy, OnInit {
|
|
11
|
+
isReadOnly: boolean;
|
|
12
|
+
isNewRuleDesign: boolean;
|
|
13
|
+
isRootRule: boolean;
|
|
14
|
+
ngSelectCustomCss: INgSelectCustomCssObject;
|
|
15
|
+
tableColumns: ITableColumns;
|
|
16
|
+
lineNumber: number;
|
|
17
|
+
rule: IQueryRule;
|
|
18
|
+
rules: IQueryRule[];
|
|
19
|
+
tableName: string;
|
|
20
|
+
schemaName: string;
|
|
21
|
+
isLoaderForColumns: boolean;
|
|
22
|
+
searchHandler: (tableName: string, columnName: string, searchKeyword: string, schemaName?: string) => Observable<string[]>;
|
|
23
|
+
getTableColumnsHandler: (isSource: boolean, tableId?: string) => IDataSourceColumnDetails[];
|
|
24
|
+
isSource: boolean;
|
|
25
|
+
isMultiTableSelection: boolean;
|
|
26
|
+
body: any;
|
|
27
|
+
readonly conjunctionOperatorItems: ISelectOption[];
|
|
28
|
+
onRuleChange: EventEmitter<IQueryRule>;
|
|
29
|
+
onValueChange: EventEmitter<IQueryRule>;
|
|
30
|
+
onRuleRemove: EventEmitter<any>;
|
|
31
|
+
rulesChange: EventEmitter<IQueryRule[]>;
|
|
32
|
+
readonly MULTI_VALUE_OPERATORS: Set<ConditionOperator>;
|
|
33
|
+
defaultColumn: ITableColumn;
|
|
34
|
+
activeTableColumn$: BehaviorSubject<ITableColumn>;
|
|
35
|
+
tables: IKeyValue[];
|
|
36
|
+
readonly conditionOperatorItems$: Observable<IConditionOption[]>;
|
|
37
|
+
readonly COLUMN_TYPES: typeof TableColumnTypes;
|
|
38
|
+
private alphanumericComponent;
|
|
39
|
+
private numericComponent;
|
|
40
|
+
private dateControlComponent;
|
|
41
|
+
private _clearSubs$;
|
|
42
|
+
get isValidRightValue(): boolean;
|
|
43
|
+
get isMultiValueCondition(): boolean;
|
|
44
|
+
isFirstChild(): boolean;
|
|
45
|
+
ngOnInit(): void;
|
|
46
|
+
addNewRuleLine(): void;
|
|
47
|
+
removeLine(): void;
|
|
48
|
+
handleRuleChange(): void;
|
|
49
|
+
handleLineRemove(index: number): void;
|
|
50
|
+
getTables(): void;
|
|
51
|
+
lValueChanged(value: string): void;
|
|
52
|
+
tableValueChanged(): void;
|
|
53
|
+
private setTableAndColumns;
|
|
54
|
+
modelChanged(): void;
|
|
55
|
+
operatorValueChanged(): void;
|
|
56
|
+
rValueChanged(): void;
|
|
57
|
+
ngOnDestroy(): void;
|
|
58
|
+
getTableColumnByName(name: string): ITableColumn | null;
|
|
59
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
60
|
+
getTableName(tableId: string): string;
|
|
61
|
+
private unsetPrevLastChange;
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RuleLineComponent, never>;
|
|
63
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RuleLineComponent, "query-rule-line", never, { "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "isNewRuleDesign": { "alias": "isNewRuleDesign"; "required": false; }; "isRootRule": { "alias": "isRootRule"; "required": false; }; "ngSelectCustomCss": { "alias": "ngSelectCustomCss"; "required": false; }; "tableColumns": { "alias": "tableColumns"; "required": false; }; "lineNumber": { "alias": "lineNumber"; "required": false; }; "rule": { "alias": "rule"; "required": false; }; "rules": { "alias": "rules"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "schemaName": { "alias": "schemaName"; "required": false; }; "isLoaderForColumns": { "alias": "isLoaderForColumns"; "required": false; }; "searchHandler": { "alias": "searchHandler"; "required": false; }; "getTableColumnsHandler": { "alias": "getTableColumnsHandler"; "required": false; }; "isSource": { "alias": "isSource"; "required": false; }; "isMultiTableSelection": { "alias": "isMultiTableSelection"; "required": false; }; }, { "onRuleChange": "onRuleChange"; "onValueChange": "onValueChange"; "onRuleRemove": "onRuleRemove"; "rulesChange": "rulesChange"; }, never, never, false, never>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AutocompletePositionDirective implements OnDestroy {
|
|
5
|
+
private readonly matAutocompleteTrigger;
|
|
6
|
+
constructor(matAutocompleteTrigger: MatAutocompleteTrigger);
|
|
7
|
+
ngOnDestroy(): void;
|
|
8
|
+
private scrollEvent;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompletePositionDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AutocompletePositionDirective, "[appAutocompletePosition]", ["appAutocompletePosition"], {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export declare enum ConjunctionOperator {
|
|
2
|
+
AND = "AND",
|
|
3
|
+
OR = "OR"
|
|
4
|
+
}
|
|
5
|
+
export declare enum ConditionOperator {
|
|
6
|
+
BETWEEN = "BETWEEN",
|
|
7
|
+
NOT_BETWEEN = "NOT_BETWEEN",
|
|
8
|
+
EQUAL = "EQUAL",
|
|
9
|
+
NOT_EQUAL = "NOT_EQUAL",
|
|
10
|
+
IN = "IN",
|
|
11
|
+
NOT_IN = "NOT_IN",
|
|
12
|
+
CONTAINS = "CONTAINS",
|
|
13
|
+
DOES_NOT_CONTAIN = "DOES_NOT_CONTAIN",
|
|
14
|
+
GREATER_THAN = "GREATER_THAN",
|
|
15
|
+
LESS_THAN = "LESS_THAN",
|
|
16
|
+
GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
|
|
17
|
+
LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL",
|
|
18
|
+
STARTS_WITH = "STARTS_WITH",
|
|
19
|
+
DOES_NOT_START_WITH = "DOES_NOT_START_WITH",
|
|
20
|
+
ENDS_WITH = "ENDS_WITH",
|
|
21
|
+
DOES_NOT_END_WITH = "DOES_NOT_END_WITH",
|
|
22
|
+
LIKE = "LIKE",
|
|
23
|
+
NOT_LIKE = "NOT_LIKE",
|
|
24
|
+
NEW_EQUAL = "NEW_IN",
|
|
25
|
+
NEW_NOT_EQUAL = "NEW_NOT_IN",
|
|
26
|
+
IS_NULL = "IS_NULL",
|
|
27
|
+
IS_NOT_NULL = "IS_NOT_NULL"
|
|
28
|
+
}
|
|
29
|
+
export interface IQueryRule {
|
|
30
|
+
conjunctionOperator?: ConjunctionOperator;
|
|
31
|
+
conditionOperator?: ConditionOperator;
|
|
32
|
+
lValue?: string;
|
|
33
|
+
rValue?: string[];
|
|
34
|
+
childRules: IQueryRule[] | null;
|
|
35
|
+
isLastChange?: boolean;
|
|
36
|
+
id?: string;
|
|
37
|
+
parentId?: string;
|
|
38
|
+
value?: string;
|
|
39
|
+
dataType?: string;
|
|
40
|
+
tableId?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface IDataSourceColumnDetails {
|
|
43
|
+
column_Name: string;
|
|
44
|
+
dataTypeName: string;
|
|
45
|
+
database_Name: string;
|
|
46
|
+
isPkColumn: boolean;
|
|
47
|
+
isPkTable: boolean;
|
|
48
|
+
tableId: string;
|
|
49
|
+
primaryKeySequence: number;
|
|
50
|
+
schema_Name: string;
|
|
51
|
+
table_Name: string;
|
|
52
|
+
}
|
|
53
|
+
export interface IColumnDetails {
|
|
54
|
+
name: string;
|
|
55
|
+
dataType: string;
|
|
56
|
+
}
|
|
57
|
+
export interface ITableDropdown {
|
|
58
|
+
name: string;
|
|
59
|
+
id: string;
|
|
60
|
+
}
|
|
61
|
+
export declare function getInitialIQueryRules(): IQueryRule[];
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/query-design/query-design.component";
|
|
3
|
+
import * as i2 from "./components/query-design/rule-line/rule-line.component";
|
|
4
|
+
import * as i3 from "./components/query-design/rule-line/components/alphanumeric-control/alphanumeric-control.component";
|
|
5
|
+
import * as i4 from "./components/query-design/rule-line/components/date-control/date-control.component";
|
|
6
|
+
import * as i5 from "./components/query-design/rule-line/components/numeric-control/numeric-control.component";
|
|
7
|
+
import * as i6 from "idp-apps-shared-ui/modules/query-builder/components/query-design/rule-line/components/boolean-control/boolean-control.component";
|
|
8
|
+
import * as i7 from "idp-apps-shared-ui/modules/query-builder/directive/auto-complete-position.directive";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "@angular/forms";
|
|
11
|
+
import * as i10 from "@ng-select/ng-select";
|
|
12
|
+
import * as i11 from "../material/material.module";
|
|
13
|
+
import * as i12 from "idp-apps-shared-ui/modules/ui-kit/ui-kit.module";
|
|
14
|
+
export declare class QueryBuilderModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueryBuilderModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<QueryBuilderModule, [typeof i1.QueryDesignComponent, typeof i2.RuleLineComponent, typeof i3.AlphanumericControlComponent, typeof i4.DateControlComponent, typeof i5.NumericControlComponent, typeof i6.BooleanControlComponent, typeof i7.AutocompletePositionDirective], [typeof i8.CommonModule, typeof i9.FormsModule, typeof i10.NgSelectModule, typeof i11.MaterialModule, typeof i12.UiKitModule], [typeof i1.QueryDesignComponent, typeof i3.AlphanumericControlComponent, typeof i4.DateControlComponent, typeof i5.NumericControlComponent, typeof i7.AutocompletePositionDirective]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<QueryBuilderModule>;
|
|
18
|
+
}
|
package/modules/ui-kit/components/accordion/accordion-content/accordion-content.component.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AccordionDirective } from '../accordion.directive';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AccordionContentComponent {
|
|
4
|
+
accordion: AccordionDirective;
|
|
5
|
+
constructor(accordion: AccordionDirective);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionContentComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionContentComponent, "app-accordion-content", never, {}, {}, never, ["*"], false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AccordionDirective } from './accordion.directive';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AccordionTriggerDirective {
|
|
4
|
+
private accordion;
|
|
5
|
+
readonly cursor = "pointer";
|
|
6
|
+
constructor(accordion: AccordionDirective);
|
|
7
|
+
onClick(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionTriggerDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AccordionTriggerDirective, "[appAccordionTrigger]", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AccordionDirective {
|
|
3
|
+
isOpen: boolean;
|
|
4
|
+
toggleOpen(): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionDirective, never>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AccordionDirective, "[appAccordion]", never, {}, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { BannerService, IBanner } from 'idp-apps-shared-ui/modules/ui-kit/components/banner/banner.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BannerComponent implements OnInit {
|
|
6
|
+
private bannerService;
|
|
7
|
+
private router;
|
|
8
|
+
bannerStack: IBanner[];
|
|
9
|
+
constructor(bannerService: BannerService, router: Router);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
close(banner: IBanner): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BannerComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BannerComponent, "app-banner", never, {}, {}, never, never, false, never>;
|
|
14
|
+
}
|