shared-ui-test-1 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants/breadcrumbs.const.d.ts +1 -0
- package/constants/query-design-custom-class.constant.d.ts +1 -0
- package/core/directive/authorize.directive.d.ts +14 -0
- package/core/interfaces/filters.api.interface.d.ts +32 -0
- package/core/models/menu-elements-dto.d.ts +21 -0
- package/core/services/local-storage.service.d.ts +34 -0
- package/core/services/user-management.service.d.ts +39 -0
- package/core/site/services/support-util.service.d.ts +18 -0
- package/core/token/client-injection-token.d.ts +2 -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/action-types.enum.d.ts +16 -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/query-design-custom-class.constant.mjs +2 -0
- package/esm2022/core/directive/authorize.directive.mjs +37 -0
- package/esm2022/core/interfaces/filters.api.interface.mjs +12 -0
- package/esm2022/core/models/menu-elements-dto.mjs +2 -0
- package/esm2022/core/services/local-storage.service.mjs +55 -0
- package/esm2022/core/services/user-management.service.mjs +97 -0
- package/esm2022/core/site/services/support-util.service.mjs +55 -0
- package/esm2022/core/token/client-injection-token.mjs +3 -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/action-types.enum.mjs +18 -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/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/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-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-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/index.mjs +39 -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/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-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/datepicker-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/select-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-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-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.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/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/select/dynamic-select.model.mjs +18 -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-value-control/form-value-control.model.mjs +25 -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/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.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-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/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.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/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/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.constants.mjs +7 -0
- package/esm2022/modules/ui-kit/constants/snackbar.constants.mjs +4 -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/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/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/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/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/data-table.service.mjs +202 -0
- package/esm2022/modules/ui-kit/services/form.service.mjs +91 -0
- package/esm2022/modules/ui-kit/services/mappers/form-data-table-mapper.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 +85 -0
- package/esm2022/shared-pipes/pipes/search.pipe.mjs +48 -0
- package/esm2022/shared-ui-test-1.mjs +5 -0
- package/esm2022/shared.module.mjs +57 -0
- package/fesm2022/shared-ui-test-1.mjs +10516 -0
- package/fesm2022/shared-ui-test-1.mjs.map +1 -0
- package/index.d.ts +5 -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/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-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-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/index.d.ts +38 -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/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-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/datepicker-control-model-config.interface.d.ts +11 -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/select-control-model-config.interface.d.ts +8 -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-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-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.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/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/select/dynamic-select.model.d.ts +11 -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-value-control/form-value-control.model.d.ts +17 -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/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.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-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/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.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/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/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.constants.d.ts +6 -0
- package/modules/ui-kit/constants/snackbar.constants.d.ts +3 -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/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/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/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/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/data-table.service.d.ts +37 -0
- package/modules/ui-kit/services/form.service.d.ts +26 -0
- package/modules/ui-kit/services/mappers/form-data-table-mapper.service.d.ts +8 -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 +84 -0
- package/shared-pipes/pipes/search.pipe.d.ts +15 -0
- package/shared.module.d.ts +13 -0
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface IBannerConfig {
|
|
4
|
+
afterCloseFunc?: (banner: IBanner) => void;
|
|
5
|
+
closeAfterInMs?: number;
|
|
6
|
+
returnBanner?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export interface IBanner {
|
|
9
|
+
id: number;
|
|
10
|
+
message: string;
|
|
11
|
+
type: string;
|
|
12
|
+
bgColor: string;
|
|
13
|
+
icon: string;
|
|
14
|
+
config?: IBannerConfig;
|
|
15
|
+
}
|
|
16
|
+
export declare class BannerService {
|
|
17
|
+
latestBannerStack$: Subject<IBanner[]>;
|
|
18
|
+
bannerStack: IBanner[];
|
|
19
|
+
info(message: string, config?: IBannerConfig): IBanner[];
|
|
20
|
+
success(message: string, config?: IBannerConfig): void | IBanner[];
|
|
21
|
+
warning(message: string, config?: IBannerConfig): void | IBanner[];
|
|
22
|
+
error(message: string, config?: IBannerConfig): void | IBanner[];
|
|
23
|
+
closeById(id: number): void;
|
|
24
|
+
private addOnBannerStack;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BannerService, never>;
|
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BannerService>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { BreadCrumbService } from './service/breadcrumb.service';
|
|
4
|
+
import { BreadCrumbItem } from './model/breadCrumbItem';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BreadcrumbsComponent implements OnInit {
|
|
7
|
+
private router;
|
|
8
|
+
private breadCrumbService;
|
|
9
|
+
breadCrumbItems: Array<BreadCrumbItem>;
|
|
10
|
+
constructor(router: Router, breadCrumbService: BreadCrumbService);
|
|
11
|
+
crumbLinkClicked(index: number): void;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbsComponent, "app-breadcrumbs", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { StorageService } from 'ngx-webstorage-service';
|
|
2
|
+
import { BreadCrumbItem } from '../model/breadCrumbItem';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BreadCrumbService {
|
|
5
|
+
private storage;
|
|
6
|
+
private breadCrumbItems;
|
|
7
|
+
constructor(storage: StorageService);
|
|
8
|
+
getBreadCrumbItems(): Array<BreadCrumbItem>;
|
|
9
|
+
initializeBreadCrumb(): void;
|
|
10
|
+
clearBreadCrumb(): void;
|
|
11
|
+
triggerOnPageRefresh(object: BreadCrumbItem): void;
|
|
12
|
+
getRedirectionUrl(index: number): string;
|
|
13
|
+
removeBreadCrumbItems(index: number): void;
|
|
14
|
+
addItemToBreadCrumb(object: BreadCrumbItem): void;
|
|
15
|
+
private findItem;
|
|
16
|
+
private setMapToStorage;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadCrumbService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BreadCrumbService>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ComponentSizes } from '../../../enums/component-sizes.enum';
|
|
2
|
+
import { ColorSchemes } from '../../../enums/color-schemes.enum';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ButtonControlComponent {
|
|
5
|
+
title: string;
|
|
6
|
+
colorScheme: ColorSchemes;
|
|
7
|
+
isLoading: boolean;
|
|
8
|
+
isLink: boolean;
|
|
9
|
+
isDisabled: boolean;
|
|
10
|
+
get isDisableAttr(): boolean | null;
|
|
11
|
+
readonly COMPONENT_SIZES: typeof ComponentSizes;
|
|
12
|
+
get colorSchemeClass(): string;
|
|
13
|
+
get loaderColorScheme(): ColorSchemes;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonControlComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonControlComponent, "app-button-control", never, { "title": { "alias": "title"; "required": false; }; "colorScheme": { "alias": "colorScheme"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isLink": { "alias": "isLink"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ButtonsListComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonsListComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonsListComponent, "app-buttons-list", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CircleButtonComponent {
|
|
5
|
+
name: string;
|
|
6
|
+
tooltip: string;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
customStyle: IKeyValue;
|
|
9
|
+
customClass: string;
|
|
10
|
+
onClick: EventEmitter<any>;
|
|
11
|
+
onButtonClick(): void;
|
|
12
|
+
get getCassClass(): string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CircleButtonComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CircleButtonComponent, "app-circle-button", never, { "name": { "alias": "name"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "customStyle": { "alias": "customStyle"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, { "onClick": "onClick"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
16
|
+
export interface IIconProp {
|
|
17
|
+
name?: string;
|
|
18
|
+
iconClass?: string;
|
|
19
|
+
tooltip?: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardContainerComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardContainerComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardContainerComponent, "app-card-container", never, {}, {}, never, ["card-container-title", "card-container-subtitle", "card-container-body"], false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { IBreadcrumbItem } from './interface/breadcrumb.interface';
|
|
4
|
+
import { BreadcrumbService } from './service/breadcrumb.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CommonBreadcrumbsComponent implements OnInit {
|
|
7
|
+
private breadcrumbService;
|
|
8
|
+
breadcrumbs$: Observable<IBreadcrumbItem[]>;
|
|
9
|
+
HomeHref: string;
|
|
10
|
+
/**
|
|
11
|
+
* separator between breadcrumbs
|
|
12
|
+
* defaults to '/'. Other options could be '.' or '-' or '>' etc.
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
separator: string;
|
|
16
|
+
constructor(breadcrumbService: BreadcrumbService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommonBreadcrumbsComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommonBreadcrumbsComponent, "app-common-breadcrumbs", never, { "separator": { "alias": "separator"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { IBreadcrumbItem } from '../interface/breadcrumb.interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BreadcrumbService implements OnDestroy {
|
|
7
|
+
private router;
|
|
8
|
+
private _breadcrumbs;
|
|
9
|
+
get breadcrumbs$(): Observable<IBreadcrumbItem[]>;
|
|
10
|
+
set breadcrumbs(value: IBreadcrumbItem[]);
|
|
11
|
+
get breadcrumbs(): IBreadcrumbItem[];
|
|
12
|
+
private readonly baseHref;
|
|
13
|
+
private clearSubs$;
|
|
14
|
+
constructor(router: Router);
|
|
15
|
+
routeChangeHandler(): void;
|
|
16
|
+
makeBreadcrumbs(activatedRoute: ActivatedRoute, parentRoute?: string): IBreadcrumbItem[];
|
|
17
|
+
makeSingleCrumb(activatedRoute: ActivatedRoute, parent: string): IBreadcrumbItem | undefined;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { ISelectOption } from '../../interfaces/select.interface';
|
|
5
|
+
import { IPaginationParams } from '../../interfaces/generic.interface';
|
|
6
|
+
import { INgSelectCustomCssObject } from 'idp-apps-shared-ui/modules/query-builder/interfaces/select-custom-css-object';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DataPaginationComponent implements OnInit, OnDestroy {
|
|
9
|
+
private changeDetector;
|
|
10
|
+
totalRowCount$: Observable<number>;
|
|
11
|
+
count: number;
|
|
12
|
+
page: number;
|
|
13
|
+
pageSizeOptions: number[];
|
|
14
|
+
size: number;
|
|
15
|
+
selectionCount: number;
|
|
16
|
+
numberOfLinks: number;
|
|
17
|
+
hasDropdownStylePageSize: boolean;
|
|
18
|
+
paginationEndReached: boolean;
|
|
19
|
+
control: FormControl;
|
|
20
|
+
options: ISelectOption[];
|
|
21
|
+
renderedPages: number[];
|
|
22
|
+
changePage: EventEmitter<IPaginationParams>;
|
|
23
|
+
changePageSize: EventEmitter<IPaginationParams>;
|
|
24
|
+
ngSelectCustomCss: INgSelectCustomCssObject;
|
|
25
|
+
private readonly FIRST_PAGE;
|
|
26
|
+
private minPage;
|
|
27
|
+
private maxPage;
|
|
28
|
+
private clearSubs$;
|
|
29
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
ngOnDestroy(): void;
|
|
32
|
+
getVisibleItemsIndex(): string;
|
|
33
|
+
get isLeftDotsVisible(): boolean;
|
|
34
|
+
get isRightDotsVisible(): boolean;
|
|
35
|
+
get maxMinDifference(): number;
|
|
36
|
+
get isLastPage(): boolean;
|
|
37
|
+
get isFirstPage(): boolean;
|
|
38
|
+
setPages(): void;
|
|
39
|
+
onClickPrev(): void;
|
|
40
|
+
onClickNext(): void;
|
|
41
|
+
pageLinkClicked(page: number): void;
|
|
42
|
+
pageSizeChanged(): void;
|
|
43
|
+
onPageSizeClicked(selectedPageSize: number): void;
|
|
44
|
+
getFirstItemIndex(): number;
|
|
45
|
+
private getFirstIndex;
|
|
46
|
+
private getLastIndex;
|
|
47
|
+
private subscribeRowCountChange;
|
|
48
|
+
private setPaginationDataOnValueChange;
|
|
49
|
+
private emitEvent;
|
|
50
|
+
private get pagesCount();
|
|
51
|
+
private convertToOptions;
|
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataPaginationComponent, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataPaginationComponent, "app-data-pagination", never, { "totalRowCount$": { "alias": "totalRowCount$"; "required": false; }; "count": { "alias": "count"; "required": false; }; "page": { "alias": "page"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "size": { "alias": "size"; "required": false; }; "selectionCount": { "alias": "selectionCount"; "required": false; }; "numberOfLinks": { "alias": "numberOfLinks"; "required": false; }; "hasDropdownStylePageSize": { "alias": "hasDropdownStylePageSize"; "required": false; }; }, { "changePage": "changePage"; "changePageSize": "changePageSize"; }, never, never, false, never>;
|
|
54
|
+
}
|