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,13 @@
|
|
|
1
|
+
import { IFilterParam } from '../../../interfaces/api.interface';
|
|
2
|
+
import { IDataTableColumn } from '../../../interfaces/data-table.interface';
|
|
3
|
+
export declare class FilterManager {
|
|
4
|
+
private filterParams;
|
|
5
|
+
getFilterParams(): IFilterParam[];
|
|
6
|
+
getFilterParam(column: IDataTableColumn): IFilterParam;
|
|
7
|
+
setFilterParams(filterParam: IFilterParam): void;
|
|
8
|
+
setInitFilterParams(columns: IDataTableColumn[]): void;
|
|
9
|
+
clearFilterParams(): void;
|
|
10
|
+
private isFilterColumnExists;
|
|
11
|
+
private addFilterParams;
|
|
12
|
+
private updateFilterParams;
|
|
13
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { BaseDataColComponent } from '../data-col/base-data-col/base-data-col.component';
|
|
2
|
+
import { IDataTableRow, IDataTableRowEvent } from '../../../interfaces/data-table.interface';
|
|
3
|
+
import { IKeyValue } from '../../../interfaces/generic.interface';
|
|
4
|
+
import { FormService } from '../../../services/form.service';
|
|
5
|
+
import { IDataTableComponent } from '../interfaces/data-table-component.interface';
|
|
6
|
+
export declare class GridApi {
|
|
7
|
+
dataTable: IDataTableComponent;
|
|
8
|
+
formService: FormService;
|
|
9
|
+
constructor(dataTable: IDataTableComponent, formService: FormService);
|
|
10
|
+
getColumnComponent(rowIndex: number, propertyKey: string): BaseDataColComponent;
|
|
11
|
+
detectRowChanges(): void;
|
|
12
|
+
getAllRowsData(): IKeyValue;
|
|
13
|
+
getSelectedRowsData(): IKeyValue;
|
|
14
|
+
getSelectedRows(): IDataTableRow[];
|
|
15
|
+
getAllCheckedRows(): IDataTableRow[];
|
|
16
|
+
getAllExcludedRows(): IDataTableRow[];
|
|
17
|
+
getRows(): IDataTableRow[];
|
|
18
|
+
getDisplayedRows(): IDataTableRow[];
|
|
19
|
+
triggerRowClone(rowEvent: IDataTableRowEvent): void;
|
|
20
|
+
triggerRowDelete(rowEvent: IDataTableRowEvent): void;
|
|
21
|
+
triggerRowEditSave(rowEvent: IDataTableRowEvent): void;
|
|
22
|
+
triggerRowSaveCancel(rowEvent: IDataTableRowEvent): void;
|
|
23
|
+
triggerRowEdit(rowEvent: IDataTableRowEvent): void;
|
|
24
|
+
getAllTableRows(): number;
|
|
25
|
+
clearCheckBoxSelectionData(): void;
|
|
26
|
+
hasMasterSelectChecked(): boolean;
|
|
27
|
+
private getRowComponentFromRow;
|
|
28
|
+
private getRowComponents;
|
|
29
|
+
private getColumnComponents;
|
|
30
|
+
private rowValue;
|
|
31
|
+
}
|
package/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { GridOptions, IDataTableColumn, IDataTableRow, ITableCell } from '../../../../interfaces/data-table.interface';
|
|
4
|
+
import { SelectOptionValue } from '../../../../types/select.type';
|
|
5
|
+
import { IViewConstants } from '../../../../interfaces/constants.interface';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class BaseDataColComponent {
|
|
8
|
+
get controlId(): string;
|
|
9
|
+
get controlValue(): string;
|
|
10
|
+
row: IDataTableRow;
|
|
11
|
+
rowIndex: number;
|
|
12
|
+
columnIndex: number;
|
|
13
|
+
col: IDataTableColumn;
|
|
14
|
+
control: FormControl;
|
|
15
|
+
gridOptions: GridOptions;
|
|
16
|
+
onValueChanged: EventEmitter<any>;
|
|
17
|
+
changeExpandCollapse: EventEmitter<boolean>;
|
|
18
|
+
ValueChanged(): void;
|
|
19
|
+
firstValueSet(): void;
|
|
20
|
+
disableControl(disable: boolean): void;
|
|
21
|
+
setData(newData: any): void;
|
|
22
|
+
formatValue(colValue: SelectOptionValue): string;
|
|
23
|
+
findCellDisplayValue(displayValues: IViewConstants, value: SelectOptionValue): string;
|
|
24
|
+
getColumnItem(): ITableCell;
|
|
25
|
+
private static readonly getColStringVal;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseDataColComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseDataColComponent, "app-base-data-col", never, { "row": { "alias": "row"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "columnIndex": { "alias": "columnIndex"; "required": false; }; "col": { "alias": "col"; "required": false; }; "control": { "alias": "control"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; }, { "onValueChanged": "onValueChanged"; "changeExpandCollapse": "changeExpandCollapse"; }, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DataColComponent extends BaseDataColComponent {
|
|
4
|
+
constructor();
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColComponent, "[app-data-col]", never, {}, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { IDataTableAction } from '../../../../interfaces/data-table.interface';
|
|
3
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
4
|
+
import { SelectOptionValue } from 'idp-apps-shared-ui/modules/ui-kit/types/select.type';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DataColActionButtonComponent extends BaseDataColComponent {
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
actionClick: EventEmitter<IDataTableAction<any>>;
|
|
9
|
+
onActionClick(type: SelectOptionValue): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColActionButtonComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColActionButtonComponent, "[app-data-col-action-button]", never, { "disabled": { "alias": "disabled"; "required": false; }; }, { "actionClick": "actionClick"; }, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DataColBooleanComponent extends BaseDataColComponent {
|
|
4
|
+
editDisabled: boolean;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColBooleanComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColBooleanComponent, "[app-data-col-boolean]", never, { "editDisabled": { "alias": "editDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseDataColComponent } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DataColMultivalueComponent extends BaseDataColComponent {
|
|
4
|
+
viewOnly: boolean;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColMultivalueComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColMultivalueComponent, "[app-data-col-multivalue]", never, { "viewOnly": { "alias": "viewOnly"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
package/modules/ui-kit/components/data-table/data-col/data-col-nested/data-col-nested.component.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { BaseDataColComponent } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component';
|
|
3
|
+
import { ISelectOption } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/select.interface';
|
|
4
|
+
import { IClickedEventData } from '../../../../interfaces/data-table.interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DataColNestedComponent extends BaseDataColComponent {
|
|
7
|
+
options: ISelectOption[];
|
|
8
|
+
complexDetailClicked: EventEmitter<IClickedEventData>;
|
|
9
|
+
constructor();
|
|
10
|
+
nestedDetailsButtonClicked(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColNestedComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColNestedComponent, "[app-data-col-nested]", never, { "options": { "alias": "options"; "required": false; }; }, { "complexDetailClicked": "complexDetailClicked"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { IClickedEventData } from '../../../../../../modules/ui-kit/interfaces/data-table.interface';
|
|
4
|
+
import { ISelectOption } from '../../../../interfaces/select.interface';
|
|
5
|
+
import { SelectFormControlComponent } from '../../../form/select-form-control/select-form-control.component';
|
|
6
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DataColReferenceComponent extends BaseDataColComponent implements OnInit, OnDestroy {
|
|
9
|
+
private changeDetector;
|
|
10
|
+
isEditing: boolean;
|
|
11
|
+
optionTemplate: TemplateRef<any>;
|
|
12
|
+
options: ISelectOption[];
|
|
13
|
+
editDisabled: boolean;
|
|
14
|
+
complexDetailClicked: EventEmitter<IClickedEventData>;
|
|
15
|
+
selectControl: SelectFormControlComponent;
|
|
16
|
+
viewType: any;
|
|
17
|
+
isDisplayOptionsAvailable: boolean;
|
|
18
|
+
private clearSubs$;
|
|
19
|
+
set setSelectControl(control: SelectFormControlComponent);
|
|
20
|
+
constructor(changeDetector: ChangeDetectorRef);
|
|
21
|
+
get getOptionsFn(): Observable<ISelectOption[]>;
|
|
22
|
+
setData(newData: any): void;
|
|
23
|
+
referenceDetailsButtonClicked(): void;
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
private setOptionsData;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColReferenceComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColReferenceComponent, "[app-data-col-reference]", never, { "isEditing": { "alias": "isEditing"; "required": false; }; "optionTemplate": { "alias": "optionTemplate"; "required": false; }; "options": { "alias": "options"; "required": false; }; "editDisabled": { "alias": "editDisabled"; "required": false; }; }, { "complexDetailClicked": "complexDetailClicked"; }, never, never, false, never>;
|
|
29
|
+
}
|
package/modules/ui-kit/components/data-table/data-col/data-col-view/data-col-view.component.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { GridOptions, IDataTableColumn, IDataTableRow } from '../../../../interfaces/data-table.interface';
|
|
3
|
+
import { BaseDataColComponent } from '../base-data-col/base-data-col.component';
|
|
4
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DataColViewComponent extends BaseDataColComponent {
|
|
7
|
+
row: IDataTableRow;
|
|
8
|
+
rowIndex: number;
|
|
9
|
+
columnIndex: number;
|
|
10
|
+
col: IDataTableColumn;
|
|
11
|
+
gridOptions: GridOptions;
|
|
12
|
+
isFirstVisibleCol: boolean;
|
|
13
|
+
isTreeGrid: boolean;
|
|
14
|
+
rowDepth: number;
|
|
15
|
+
hasExpandCollapse: boolean;
|
|
16
|
+
isRowExpanded: boolean;
|
|
17
|
+
changeExpandCollapse: EventEmitter<boolean>;
|
|
18
|
+
private readonly TREE_SHIFT_STEP;
|
|
19
|
+
private readonly NO_TREE_SHIFT_STEP;
|
|
20
|
+
get cellDisplayValue(): string;
|
|
21
|
+
onClickExpandCollapse(shouldExpand: boolean): void;
|
|
22
|
+
get treeShift(): number;
|
|
23
|
+
get getWrapperStyle(): IKeyValue;
|
|
24
|
+
private isEmptyObject;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColViewComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColViewComponent, "app-data-col-view,[app-data-col-view]", never, { "row": { "alias": "row"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "columnIndex": { "alias": "columnIndex"; "required": false; }; "col": { "alias": "col"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; "isFirstVisibleCol": { "alias": "isFirstVisibleCol"; "required": false; }; "isTreeGrid": { "alias": "isTreeGrid"; "required": false; }; "rowDepth": { "alias": "rowDepth"; "required": false; }; "hasExpandCollapse": { "alias": "hasExpandCollapse"; "required": false; }; "isRowExpanded": { "alias": "isRowExpanded"; "required": false; }; }, { "changeExpandCollapse": "changeExpandCollapse"; }, never, never, false, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { IDataTableColumn } from '../../../interfaces/data-table.interface';
|
|
4
|
+
import { ListItem } from '../../../interfaces/list-item.interface';
|
|
5
|
+
import { BannerService } from '../../../../../modules/ui-kit/components/banner/banner.service';
|
|
6
|
+
import { LocalStorageService } from 'idp-apps-shared-ui/core/services/local-storage.service';
|
|
7
|
+
import { SourceTypesEnum } from 'idp-apps-shared-ui/enums/source-types.enum';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DataColDispComponent implements OnInit {
|
|
10
|
+
private localStorageService;
|
|
11
|
+
private banner;
|
|
12
|
+
dialogRef: MatDialogRef<DataColDispComponent>;
|
|
13
|
+
data: DialogData;
|
|
14
|
+
selectedInLeftPanel: IDataTableColumn[];
|
|
15
|
+
selectedInRightPanel: ListItem[];
|
|
16
|
+
onVisibleColumnListChange: EventEmitter<any>;
|
|
17
|
+
columnNames: ListItem[];
|
|
18
|
+
columnsAvailable: IDataTableColumn[];
|
|
19
|
+
backupPreviouslyColumnVisibleList: IDataTableColumn[];
|
|
20
|
+
readonly sourceTypes: typeof SourceTypesEnum;
|
|
21
|
+
availableColumnsSortingActionStatus: boolean;
|
|
22
|
+
displayColumnsSortingActionStatus: boolean;
|
|
23
|
+
constructor(localStorageService: LocalStorageService, banner: BannerService, dialogRef: MatDialogRef<DataColDispComponent>, data: DialogData);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
leftItemClicked(column: IDataTableColumn): void;
|
|
26
|
+
leftSelected(column: IDataTableColumn): boolean;
|
|
27
|
+
rightItemClicked(column: ListItem): void;
|
|
28
|
+
private sortSelectedPanel;
|
|
29
|
+
rightSelected(column: IDataTableColumn): boolean;
|
|
30
|
+
singleRightClicked(): void;
|
|
31
|
+
private setColumnNamesFromStorage;
|
|
32
|
+
doubleRightClicked(): void;
|
|
33
|
+
singleLeftClicked(): void;
|
|
34
|
+
doubleLeftClicked(): void;
|
|
35
|
+
okClicked(): void;
|
|
36
|
+
cancelClicked(): void;
|
|
37
|
+
backupPreviouslyVisibleColumn(status: string): void;
|
|
38
|
+
private emptySaveWarning;
|
|
39
|
+
sortupClicked(): void;
|
|
40
|
+
sortdownClicked(): void;
|
|
41
|
+
private closeDialog;
|
|
42
|
+
private makeVisible;
|
|
43
|
+
private completeSet;
|
|
44
|
+
private swapElements;
|
|
45
|
+
hasMetadataSeparation(columns: IDataTableColumn[]): boolean;
|
|
46
|
+
sortingAvailbleColumns(): void;
|
|
47
|
+
sortingDisplayColumns(): void;
|
|
48
|
+
sortupDoubleClicked(): void;
|
|
49
|
+
sortdownDoubleClicked(): void;
|
|
50
|
+
private resortingSelectedRightColumnList;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColDispComponent, never>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColDispComponent, "app-data-col-disp", never, {}, { "onVisibleColumnListChange": "onVisibleColumnListChange"; }, never, never, false, never>;
|
|
53
|
+
}
|
|
54
|
+
export interface DialogData {
|
|
55
|
+
status: string;
|
|
56
|
+
columns: IDataTableColumn[];
|
|
57
|
+
defaultSortedColumns: IDataTableColumn[];
|
|
58
|
+
storageKey?: string;
|
|
59
|
+
metaDataColumns?: string[];
|
|
60
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { Options } from '@angular-slider/ngx-slider';
|
|
2
|
+
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
3
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { IKeyValue } from '../../../../../modules/ui-kit/interfaces/generic.interface';
|
|
6
|
+
import { IFilterOption, IFilterParam } from '../../../interfaces/api.interface';
|
|
7
|
+
import { IDataTableColumn } from '../../../interfaces/data-table.interface';
|
|
8
|
+
import { FilterValueExecutorProvider } from '../../data-table/data-col-filter/filter-value-helpers/filter-value-executor-provider';
|
|
9
|
+
import { DataTableColumnFilterInputTypes, DataTableColumnFilterTypes } from '../../data-table/enums/col-filter-types';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class DataColFilterComponent implements OnInit, OnChanges, OnDestroy {
|
|
12
|
+
private filterValueExecutorProvider;
|
|
13
|
+
private cd;
|
|
14
|
+
isClearFilter$: BehaviorSubject<boolean>;
|
|
15
|
+
isUpdatedFilterDesign: boolean;
|
|
16
|
+
columnName: IDataTableColumn;
|
|
17
|
+
filterParam: IFilterParam;
|
|
18
|
+
numberOfTableRefresh: number;
|
|
19
|
+
filterOption: IFilterOption;
|
|
20
|
+
selectableItems$: BehaviorSubject<IKeyValue[]>;
|
|
21
|
+
searchText: FormControl;
|
|
22
|
+
selectAllCtrl: FormControl;
|
|
23
|
+
onFilterClicked: EventEmitter<IFilterParam>;
|
|
24
|
+
dateRangeFormGroup: FormGroup<{
|
|
25
|
+
startDate: FormControl<string>;
|
|
26
|
+
endDate: FormControl<string>;
|
|
27
|
+
}>;
|
|
28
|
+
dateRangeValue: string;
|
|
29
|
+
sliderValueOpt: {
|
|
30
|
+
maxScore: number;
|
|
31
|
+
minScore: number;
|
|
32
|
+
};
|
|
33
|
+
filterValue: FormControl;
|
|
34
|
+
searchCtrl: FormControl;
|
|
35
|
+
FILTER_TYPES: typeof DataTableColumnFilterTypes;
|
|
36
|
+
FILTER_INPUT_TYPES: typeof DataTableColumnFilterInputTypes;
|
|
37
|
+
sliderDefaultOptions: Options;
|
|
38
|
+
isLoading$: BehaviorSubject<boolean>;
|
|
39
|
+
private ngbPopover;
|
|
40
|
+
private filterValueMaker;
|
|
41
|
+
private filterWorkingValue;
|
|
42
|
+
private selectableItems;
|
|
43
|
+
private previousSelectableItems;
|
|
44
|
+
private clearSubs$;
|
|
45
|
+
private searchObject$;
|
|
46
|
+
constructor(filterValueExecutorProvider: FilterValueExecutorProvider, cd: ChangeDetectorRef);
|
|
47
|
+
get getCheckBoxsValue(): string;
|
|
48
|
+
get isIndeterminate(): boolean;
|
|
49
|
+
get isAllSelected(): boolean;
|
|
50
|
+
get isClearEnabled(): boolean;
|
|
51
|
+
get isSearchBoxHide(): boolean;
|
|
52
|
+
ngOnDestroy(): void;
|
|
53
|
+
ngOnInit(): void;
|
|
54
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
55
|
+
selectAllCheckbox(): void;
|
|
56
|
+
columnFilterClicked(): void;
|
|
57
|
+
columnFilterResetClicked(): void;
|
|
58
|
+
matMenuOpend(): void;
|
|
59
|
+
dateRangeClick(ev: any): void;
|
|
60
|
+
clearSelection(): void;
|
|
61
|
+
clearDateFilter(): void;
|
|
62
|
+
closePopup(): void;
|
|
63
|
+
clearSearch(): void;
|
|
64
|
+
changeContainsValue(): void;
|
|
65
|
+
searchValueChanged(): void;
|
|
66
|
+
setCheckedValuesToFilter(item: IKeyValue): void;
|
|
67
|
+
referenceValueChanged(): void;
|
|
68
|
+
sliderValueChanged(): void;
|
|
69
|
+
setDateValue(formName: string): void;
|
|
70
|
+
isItemChecked(item: IKeyValue): boolean;
|
|
71
|
+
isFormInvalid(): boolean;
|
|
72
|
+
private getFilterValue;
|
|
73
|
+
private emitFilterParam;
|
|
74
|
+
private getSelectableItems;
|
|
75
|
+
private clearFilter;
|
|
76
|
+
private getCurrentSelectedItems;
|
|
77
|
+
private removePreviousSelectedItems;
|
|
78
|
+
private populateDateRnage;
|
|
79
|
+
private formatDate;
|
|
80
|
+
private loadReferenceData;
|
|
81
|
+
private setSearchWatcher$;
|
|
82
|
+
private loadDefaultReferenceItems;
|
|
83
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColFilterComponent, never>;
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColFilterComponent, "app-data-col-filter", never, { "isClearFilter$": { "alias": "isClearFilter$"; "required": false; }; "isUpdatedFilterDesign": { "alias": "isUpdatedFilterDesign"; "required": false; }; "columnName": { "alias": "columnName"; "required": false; }; "filterParam": { "alias": "filterParam"; "required": false; }; "numberOfTableRefresh": { "alias": "numberOfTableRefresh"; "required": false; }; "filterOption": { "alias": "filterOption"; "required": false; }; }, { "onFilterClicked": "onFilterClicked"; }, never, never, false, never>;
|
|
85
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IDataTableColumnFilterValue } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface';
|
|
2
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
3
|
+
export declare class DataTableColumnFilterBetweenValue implements IDataTableColumnFilterValue {
|
|
4
|
+
getFilterValue(filterValue: IKeyValue): string;
|
|
5
|
+
matchWithFilterValue(rowValue: IKeyValue, filterValue: IKeyValue): boolean;
|
|
6
|
+
setInitValues(context: any): void;
|
|
7
|
+
isFormInvalid(context: any): boolean;
|
|
8
|
+
resetValue(context: any): void;
|
|
9
|
+
private adjustOneDay;
|
|
10
|
+
private removeSingleQuotesFromValue;
|
|
11
|
+
private isSameOrBetween;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IDataTableColumnFilterValue } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface';
|
|
2
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
3
|
+
export declare class DataTableColumnFilterContainsValue implements IDataTableColumnFilterValue {
|
|
4
|
+
getFilterValue(filterValue: IKeyValue): string;
|
|
5
|
+
matchWithFilterValue(rowValue: IKeyValue, filterValue: IKeyValue): boolean;
|
|
6
|
+
setInitValues(context: any): void;
|
|
7
|
+
isFormInvalid(context: any): boolean;
|
|
8
|
+
resetValue(context: any): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IFilterOption } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/api.interface';
|
|
2
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
3
|
+
import { IDataTableColumnFilterValue } from '../../../data-table/interfaces/filter-value-executor.interface';
|
|
4
|
+
export declare class DataTableColumnFilterInValue implements IDataTableColumnFilterValue {
|
|
5
|
+
setFilterValue(filterOption: IFilterOption, filterValue: IKeyValue, data: IKeyValue): IKeyValue;
|
|
6
|
+
isCheckedFilterValue(filterOption: IFilterOption, filterValue: IKeyValue, data: IKeyValue): boolean;
|
|
7
|
+
getFilterValue(filterValue: string[], isUpdatedTableDesign?: boolean): string;
|
|
8
|
+
matchWithFilterValue(rowValue: IKeyValue, filterValue: IKeyValue): boolean;
|
|
9
|
+
setInitValues(context: any): void;
|
|
10
|
+
isFormInvalid(context: any): boolean;
|
|
11
|
+
resetValue(context: any): void;
|
|
12
|
+
private removeSingleQuotesFromValue;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDataTableColumnFilterValue } from 'idp-apps-shared-ui/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface';
|
|
2
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
3
|
+
export declare class DataTableColumnFilterSliderValue implements IDataTableColumnFilterValue {
|
|
4
|
+
getFilterValue(filterValue: IKeyValue, isUpdatedFilterDesign?: boolean): string;
|
|
5
|
+
matchWithFilterValue(rowValue: IKeyValue, filterValue: IKeyValue): boolean;
|
|
6
|
+
setInitValues(context: any): void;
|
|
7
|
+
isFormInvalid(context: any): boolean;
|
|
8
|
+
resetValue(context: any): void;
|
|
9
|
+
private removeSingleQuotesFromValue;
|
|
10
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IDataTableColumnFilterValue } from '../../../../../../modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FilterValueExecutorProvider {
|
|
4
|
+
private inValue;
|
|
5
|
+
private betweenValue;
|
|
6
|
+
private containsValue;
|
|
7
|
+
private sliderBetweenValue;
|
|
8
|
+
getFilterValueExecutorProvider(type: string): IDataTableColumnFilterValue;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterValueExecutorProvider, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FilterValueExecutorProvider>;
|
|
11
|
+
}
|
package/modules/ui-kit/components/data-table/data-column-filter/data-column-filter.component.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit, EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup, AbstractControl } from '@angular/forms';
|
|
3
|
+
import { IDataTableColumn, IDataTableRow } from '../../../interfaces/data-table.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DataColumnFilterComponent implements OnInit {
|
|
6
|
+
private formBuilder;
|
|
7
|
+
private chagedetector;
|
|
8
|
+
column: IDataTableColumn;
|
|
9
|
+
filterFired: EventEmitter<IFilterParameters>;
|
|
10
|
+
uniqueValueSet: Set<string>;
|
|
11
|
+
valueForm: FormGroup;
|
|
12
|
+
isLoading: false;
|
|
13
|
+
private rows;
|
|
14
|
+
private uniqueData;
|
|
15
|
+
constructor(formBuilder: FormBuilder, chagedetector: ChangeDetectorRef);
|
|
16
|
+
set tableRows(values: IDataTableRow[]);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
getControl(value: string): AbstractControl | null;
|
|
19
|
+
isValidValue(value: any): boolean;
|
|
20
|
+
applyFilter(): void;
|
|
21
|
+
private createForm;
|
|
22
|
+
private calculateUniqueValues;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataColumnFilterComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataColumnFilterComponent, "app-data-column-filter", never, { "column": { "alias": "column"; "required": false; }; "tableRows": { "alias": "tableRows"; "required": false; }; }, { "filterFired": "filterFired"; }, never, never, false, never>;
|
|
25
|
+
}
|
|
26
|
+
export interface IFilterParameters {
|
|
27
|
+
values: Array<string>;
|
|
28
|
+
property: string;
|
|
29
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { EventEmitter, QueryList, OnChanges, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { SelectionModel } from '@angular/cdk/collections';
|
|
4
|
+
import { IDataTableColumn, IDataTableRow, IDataTableRowEvent, GridOptions, IDataTableAction, IClickedEventData, IGridMatMenuItem } from '../../../interfaces/data-table.interface';
|
|
5
|
+
import { ColumnTypes } from '../../../enums/column-types.enum';
|
|
6
|
+
import { FormService } from '../../../services/form.service';
|
|
7
|
+
import { IKeyValue } from '../../../interfaces/generic.interface';
|
|
8
|
+
import { BaseDataColComponent } from '../data-col/base-data-col/base-data-col.component';
|
|
9
|
+
import { ColumnDisableModes } from '../../../enums/column-disable-mode.enum';
|
|
10
|
+
import { IDataRowComponent } from '../interfaces/data-table-component.interface';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class DataRowComponent implements IDataRowComponent, OnChanges {
|
|
13
|
+
private formService;
|
|
14
|
+
changeDetectorRef: ChangeDetectorRef;
|
|
15
|
+
set setColumnComponents(columns: QueryList<BaseDataColComponent>);
|
|
16
|
+
get rowValue(): IKeyValue;
|
|
17
|
+
private get firstVisibleCol();
|
|
18
|
+
row: IDataTableRow;
|
|
19
|
+
rowIndex: number;
|
|
20
|
+
viewColumns: IDataTableColumn[];
|
|
21
|
+
canInlineEdit: boolean;
|
|
22
|
+
isTreeGrid: boolean;
|
|
23
|
+
hasRowChildren: boolean;
|
|
24
|
+
isOnlyView: boolean;
|
|
25
|
+
isEditable: boolean;
|
|
26
|
+
selection: SelectionModel<IDataTableRow>;
|
|
27
|
+
isDeleteDisabled: boolean;
|
|
28
|
+
isRowUnchecked?: (row: IDataTableRow) => boolean;
|
|
29
|
+
clickAction: EventEmitter<IDataTableAction>;
|
|
30
|
+
gridOptions: GridOptions;
|
|
31
|
+
hasEmptyRow: boolean;
|
|
32
|
+
isEditing: boolean;
|
|
33
|
+
isSaving: boolean;
|
|
34
|
+
isRowSelectionEnable: boolean;
|
|
35
|
+
isCloneVisible: boolean;
|
|
36
|
+
clickAdd: EventEmitter<undefined>;
|
|
37
|
+
clickEdit: EventEmitter<undefined>;
|
|
38
|
+
clickEditCancel: EventEmitter<undefined>;
|
|
39
|
+
clickEditSave: EventEmitter<IKeyValue>;
|
|
40
|
+
clickView: EventEmitter<IDataTableRowEvent>;
|
|
41
|
+
clickDelete: EventEmitter<undefined>;
|
|
42
|
+
changeExpandCollapse: EventEmitter<boolean>;
|
|
43
|
+
columnTypes: typeof ColumnTypes;
|
|
44
|
+
readonly columnDisableModes: typeof ColumnDisableModes;
|
|
45
|
+
clickClone: EventEmitter<undefined>;
|
|
46
|
+
complexDetailClicked: EventEmitter<IClickedEventData>;
|
|
47
|
+
CheckboxSelect: EventEmitter<IDataTableRow>;
|
|
48
|
+
private columnComponents;
|
|
49
|
+
private formGroup;
|
|
50
|
+
constructor(formService: FormService, changeDetectorRef: ChangeDetectorRef);
|
|
51
|
+
getColumnComponents(): BaseDataColComponent[];
|
|
52
|
+
ngOnChanges(): void;
|
|
53
|
+
isDataColView(viewColumn: IDataTableColumn): boolean;
|
|
54
|
+
isAnyFormControlVisibleSet(): boolean;
|
|
55
|
+
onClickAction(action: IDataTableAction): void;
|
|
56
|
+
onClickEdit(): void;
|
|
57
|
+
onClickClone(): void;
|
|
58
|
+
onClickEditCancel(): void;
|
|
59
|
+
onClickEditSave(): void;
|
|
60
|
+
onClickView(): void;
|
|
61
|
+
onClickDelete(): void;
|
|
62
|
+
onClickAdd(): void;
|
|
63
|
+
onChangeExpandCollapse(shouldExpand: boolean): void;
|
|
64
|
+
getColControl(viewColumn: IDataTableColumn, row?: any): FormControl | null;
|
|
65
|
+
hasColExpandCollapse(viewColumn: IDataTableColumn): boolean;
|
|
66
|
+
isFirstVisibleCol(viewColumn: IDataTableColumn): boolean;
|
|
67
|
+
getIsFormControlColVisible(viewColumn: IDataTableColumn): boolean;
|
|
68
|
+
isColumnInEditMode(viewColumn: IDataTableColumn): boolean;
|
|
69
|
+
getAccordionClasss(): string;
|
|
70
|
+
isColumnEditMode(viewColumn: IDataTableColumn): boolean;
|
|
71
|
+
isAddRow(): boolean;
|
|
72
|
+
get isViewActionVisible(): boolean;
|
|
73
|
+
get isRowDisabled(): boolean;
|
|
74
|
+
ComplexDetailClicked(eventData: IClickedEventData): void;
|
|
75
|
+
ActionClickHandler(menu: IGridMatMenuItem): void;
|
|
76
|
+
isCheckboxSelect(row: IDataTableRow): void;
|
|
77
|
+
private initRowForm;
|
|
78
|
+
private updateFormState;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataRowComponent, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataRowComponent, "[app-data-row]", never, { "row": { "alias": "row"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "viewColumns": { "alias": "viewColumns"; "required": false; }; "canInlineEdit": { "alias": "canInlineEdit"; "required": false; }; "isTreeGrid": { "alias": "isTreeGrid"; "required": false; }; "hasRowChildren": { "alias": "hasRowChildren"; "required": false; }; "isOnlyView": { "alias": "isOnlyView"; "required": false; }; "isEditable": { "alias": "isEditable"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "isDeleteDisabled": { "alias": "isDeleteDisabled"; "required": false; }; "isRowUnchecked": { "alias": "isRowUnchecked"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; "hasEmptyRow": { "alias": "hasEmptyRow"; "required": false; }; "isEditing": { "alias": "isEditing"; "required": false; }; "isSaving": { "alias": "isSaving"; "required": false; }; "isRowSelectionEnable": { "alias": "isRowSelectionEnable"; "required": false; }; "isCloneVisible": { "alias": "isCloneVisible"; "required": false; }; }, { "clickAction": "clickAction"; "clickAdd": "clickAdd"; "clickEdit": "clickEdit"; "clickEditCancel": "clickEditCancel"; "clickEditSave": "clickEditSave"; "clickView": "clickView"; "clickDelete": "clickDelete"; "changeExpandCollapse": "changeExpandCollapse"; "clickClone": "clickClone"; "complexDetailClicked": "complexDetailClicked"; "CheckboxSelect": "CheckboxSelect"; }, never, never, false, never>;
|
|
81
|
+
}
|