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
package/modules/dynamic-forms/dynamic-forms-core/models/form-array/dynamic-form-array.model.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { DynamicFormModel } from '../../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import { IDynamicFormArrayModelConfig } from '../../interfaces/models/form-array/form-array-model-config.interface';
|
|
3
|
+
import { DynamicFormControlModel } from '../form-control/dynamic-form-control.model';
|
|
4
|
+
import { DynamicFormArrayGroupModel } from './form-array-group/dynamic-form-array-group.model';
|
|
5
|
+
export declare class DynamicFormArrayModel extends DynamicFormControlModel {
|
|
6
|
+
groups: DynamicFormArrayGroupModel[];
|
|
7
|
+
initialCount: number;
|
|
8
|
+
groupFactory: () => DynamicFormModel;
|
|
9
|
+
readonly type: string;
|
|
10
|
+
constructor(config: IDynamicFormArrayModelConfig);
|
|
11
|
+
get size(): number;
|
|
12
|
+
get(index: number): DynamicFormArrayGroupModel;
|
|
13
|
+
addGroup(): DynamicFormArrayGroupModel;
|
|
14
|
+
insertGroup(index: number): DynamicFormArrayGroupModel;
|
|
15
|
+
moveGroup(index: number, step: number): void;
|
|
16
|
+
removeGroup(index: number): void;
|
|
17
|
+
clear(): void;
|
|
18
|
+
private updateGroupIndex;
|
|
19
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DynamicFormModel } from '../../../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import { DynamicFormControlModel } from '../../form-control/dynamic-form-control.model';
|
|
3
|
+
import { DynamicFormArrayModel } from '../dynamic-form-array.model';
|
|
4
|
+
export declare class DynamicFormArrayGroupModel {
|
|
5
|
+
$implicit: DynamicFormArrayGroupModel;
|
|
6
|
+
context: DynamicFormArrayModel;
|
|
7
|
+
group: DynamicFormModel;
|
|
8
|
+
index: number;
|
|
9
|
+
constructor(context: DynamicFormArrayModel, group?: DynamicFormModel, index?: number);
|
|
10
|
+
get parent(): DynamicFormArrayModel;
|
|
11
|
+
get(index: number): DynamicFormControlModel;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IDynamicCheckControlModelConfig } from '../../interfaces/models/form-check-control/check-control-model-config.interface';
|
|
2
|
+
import { FormValueControlModel } from '../form-value-control/form-value-control.model';
|
|
3
|
+
export declare abstract class DynamicButtonControlModel extends FormValueControlModel<boolean> {
|
|
4
|
+
labelPosition: string | null;
|
|
5
|
+
protected constructor(config: IDynamicCheckControlModelConfig);
|
|
6
|
+
get checked(): boolean;
|
|
7
|
+
set checked(checked: boolean);
|
|
8
|
+
toggle(): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IDynamicCheckControlModelConfig } from '../../interfaces/models/form-check-control/check-control-model-config.interface';
|
|
2
|
+
import { FormValueControlModel } from '../form-value-control/form-value-control.model';
|
|
3
|
+
export declare abstract class DynamicCheckControlModel extends FormValueControlModel<boolean> {
|
|
4
|
+
labelPosition: string | null;
|
|
5
|
+
protected constructor(config: IDynamicCheckControlModelConfig);
|
|
6
|
+
get checked(): boolean;
|
|
7
|
+
set checked(checked: boolean);
|
|
8
|
+
toggle(): void;
|
|
9
|
+
}
|
package/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AbstractControlOptions } from '@angular/forms';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import { DynamicFormGroupModel } from '../../../../../modules/dynamic-forms/dynamic-forms-core/models/form-group/dynamic-form-group.model';
|
|
4
|
+
import { IDynamicFormControlLayout, DynamicFormModel } from '../../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
5
|
+
import { IDynamicFormControlModelConfig } from '../../interfaces/models/form-control/form-control-model-config.interface';
|
|
6
|
+
import { IDynamicFormControlRelation } from '../../interfaces/models/form-control/form-control-relation.interface';
|
|
7
|
+
export declare abstract class DynamicFormControlModel {
|
|
8
|
+
hidden: boolean;
|
|
9
|
+
id: string;
|
|
10
|
+
label: string | null;
|
|
11
|
+
layout: IDynamicFormControlLayout | null;
|
|
12
|
+
name: string;
|
|
13
|
+
_disabled: boolean;
|
|
14
|
+
relations: IDynamicFormControlRelation[];
|
|
15
|
+
controlOptions: AbstractControlOptions;
|
|
16
|
+
parent?: DynamicFormGroupModel;
|
|
17
|
+
groupModel?: DynamicFormModel;
|
|
18
|
+
disabledUpdates$: Subject<boolean>;
|
|
19
|
+
detectChanges$: Subject<undefined>;
|
|
20
|
+
abstract readonly type: string;
|
|
21
|
+
protected constructor(config: IDynamicFormControlModelConfig);
|
|
22
|
+
get disabled(): boolean;
|
|
23
|
+
set disabled(value: boolean);
|
|
24
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DynamicDateControlValue, IDynamicDateControlModelConfig } from '../../interfaces/models/form-date-control/date-control-model-config.interface';
|
|
2
|
+
import { FormValueControlModel } from '../form-value-control/form-value-control.model';
|
|
3
|
+
export declare abstract class DynamicDateControlModel extends FormValueControlModel<DynamicDateControlValue> {
|
|
4
|
+
format: string | null;
|
|
5
|
+
max: DynamicDateControlValue | null;
|
|
6
|
+
min: DynamicDateControlValue | null;
|
|
7
|
+
placeholder: string | null;
|
|
8
|
+
protected constructor(config: IDynamicDateControlModelConfig);
|
|
9
|
+
}
|
package/modules/dynamic-forms/dynamic-forms-core/models/form-group/dynamic-form-group.model.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { DynamicFormModel } from '../../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import { IDynamicFormGroupModelConfig } from '../../interfaces/models/form-group/form-group-model-config.interface';
|
|
3
|
+
import { DynamicFormControlModel } from '../form-control/dynamic-form-control.model';
|
|
4
|
+
export declare class DynamicFormGroupModel extends DynamicFormControlModel {
|
|
5
|
+
group: DynamicFormModel;
|
|
6
|
+
legend: string | null;
|
|
7
|
+
readonly type: string;
|
|
8
|
+
constructor(config: IDynamicFormGroupModelConfig);
|
|
9
|
+
setLinkToChildren(): void;
|
|
10
|
+
get(index: number): DynamicFormControlModel;
|
|
11
|
+
set(index: number, controlModel: DynamicFormControlModel): void;
|
|
12
|
+
add(controlModel: DynamicFormControlModel): void;
|
|
13
|
+
insert(index: number, controlModel: DynamicFormControlModel): void;
|
|
14
|
+
move(index: number, step: number): void;
|
|
15
|
+
remove(index: number): void;
|
|
16
|
+
size(): number;
|
|
17
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { InputTypes } from '../../enums/input-types.enum';
|
|
2
|
+
import { IDynamicInputControlModelConfig } from '../../interfaces/models/form-input-control/form-input-control-config.interface';
|
|
3
|
+
import { FormValueControlModel } from '../form-value-control/form-value-control.model';
|
|
4
|
+
export declare abstract class DynamicInputControlModel<T> extends FormValueControlModel<T> {
|
|
5
|
+
autoComplete: string;
|
|
6
|
+
autoFocus: boolean;
|
|
7
|
+
maxLength: number | null;
|
|
8
|
+
minLength: number | null;
|
|
9
|
+
placeholder: string;
|
|
10
|
+
prefix: string | null;
|
|
11
|
+
readOnly: boolean;
|
|
12
|
+
spellCheck: boolean;
|
|
13
|
+
suffix: string | null;
|
|
14
|
+
inputType: InputTypes;
|
|
15
|
+
protected constructor(config: IDynamicInputControlModelConfig<T>);
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IFormNumberControlConfig } from '../../interfaces/models/form-number-control/form-number-control-config.interface';
|
|
2
|
+
import { DynamicInputControlModel } from '../form-input-control/dynamic-input-control.model';
|
|
3
|
+
export declare enum DynamicNumberControlTypes {
|
|
4
|
+
INTEGER = "integer",
|
|
5
|
+
DOUBLE = "double"
|
|
6
|
+
}
|
|
7
|
+
export declare abstract class DynamicNumberControlModel extends DynamicInputControlModel<number> {
|
|
8
|
+
min: number;
|
|
9
|
+
max: number;
|
|
10
|
+
numberType: DynamicNumberControlTypes;
|
|
11
|
+
constructor(config: IFormNumberControlConfig);
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IDynamicFormOptionConfig } from '../../interfaces/models/form-option/form-option-config.interface';
|
|
2
|
+
export declare class FormOption<T> {
|
|
3
|
+
disabled: boolean;
|
|
4
|
+
label: string | null;
|
|
5
|
+
value: T;
|
|
6
|
+
constructor(config: IDynamicFormOptionConfig<T>);
|
|
7
|
+
get text(): string;
|
|
8
|
+
set text(text: string | null);
|
|
9
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Observable, Subject } from 'rxjs';
|
|
2
|
+
import { IDynamicOptionControlModelConfig } from '../../interfaces/models/form-option-control/form-option-control-config.interface';
|
|
3
|
+
import { IDynamicFormOptionConfig } from '../../interfaces/models/form-option/form-option-config.interface';
|
|
4
|
+
import { FormOption } from '../form-option/form-option.model';
|
|
5
|
+
import { FormValueControlModel } from '../form-value-control/form-value-control.model';
|
|
6
|
+
export declare abstract class DynamicOptionControlModel<T> extends FormValueControlModel<T | T[]> {
|
|
7
|
+
options$: Observable<FormOption<T>[]>;
|
|
8
|
+
optionsLoadingError$: Subject<Error>;
|
|
9
|
+
private _options;
|
|
10
|
+
protected constructor(config: IDynamicOptionControlModelConfig<T>);
|
|
11
|
+
set options(options: any);
|
|
12
|
+
get options(): any;
|
|
13
|
+
add(optionConfig: IDynamicFormOptionConfig<T>): FormOption<T>;
|
|
14
|
+
get(index: number): FormOption<T>;
|
|
15
|
+
insert(index: number, optionConfig: IDynamicFormOptionConfig<T>): FormOption<T>;
|
|
16
|
+
remove(...indices: number[]): void;
|
|
17
|
+
abstract select(...indices: number[]): void;
|
|
18
|
+
private updateOptions$;
|
|
19
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IDynamicInputControlModelConfig } from '../../interfaces/models/form-input-control/form-input-control-config.interface';
|
|
2
|
+
import { FormValueControlModel } from '../form-value-control/form-value-control.model';
|
|
3
|
+
export declare class StaticControlModel<T> extends FormValueControlModel<T> {
|
|
4
|
+
index: number | null;
|
|
5
|
+
readonly type: string;
|
|
6
|
+
constructor(config: IDynamicInputControlModelConfig<T>);
|
|
7
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDynamicButtonModelConfig } from '../../../interfaces/models/form-ui-models/button-control-model-config.interface';
|
|
2
|
+
import { DynamicButtonControlModel } from '../../form-button-control/dynamic-button-control.model';
|
|
3
|
+
export declare class DynamicButtonModel extends DynamicButtonControlModel {
|
|
4
|
+
label: string | null;
|
|
5
|
+
icon: string | null;
|
|
6
|
+
iconUrl: string | null;
|
|
7
|
+
buttonType: string | null;
|
|
8
|
+
readonly type: string;
|
|
9
|
+
constructor(config: IDynamicButtonModelConfig);
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IDynamicCheckboxModelConfig } from '../../../interfaces/models/form-ui-models/checkbox-control-model-config.interface';
|
|
2
|
+
import { DynamicCheckControlModel } from '../../form-check-control/dynamic-check-control.model';
|
|
3
|
+
export declare class DynamicCheckboxModel extends DynamicCheckControlModel {
|
|
4
|
+
indeterminate: boolean;
|
|
5
|
+
title: string;
|
|
6
|
+
readonly type: string;
|
|
7
|
+
constructor(config: IDynamicCheckboxModelConfig);
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { InputTypes } from '../../../enums/input-types.enum';
|
|
2
|
+
import { DynamicNumberControlModel } from '../../form-number-control/dynamic-number-control.model';
|
|
3
|
+
export declare class DynamicCounterModel extends DynamicNumberControlModel {
|
|
4
|
+
index: number | null;
|
|
5
|
+
readonly type: string;
|
|
6
|
+
readonly inputType = InputTypes.DYNAMIC_FORM_CONTROL_INPUT_TYPE_NUMBER;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { DynamicDateControlValue } from '../../../interfaces/models/form-date-control/date-control-model-config.interface';
|
|
2
|
+
import { IDynamicDatePickerModelConfig } from '../../../interfaces/models/form-ui-models/datepicker-control-model-config.interface';
|
|
3
|
+
import { DynamicDateControlModel } from '../../form-date-control/dynamic-date-control.model';
|
|
4
|
+
export declare class DynamicDatePickerModel extends DynamicDateControlModel {
|
|
5
|
+
autoFocus: boolean;
|
|
6
|
+
focusedDate: DynamicDateControlValue | null;
|
|
7
|
+
inline: boolean;
|
|
8
|
+
prefix: string | null;
|
|
9
|
+
readOnly: boolean;
|
|
10
|
+
suffix: string | null;
|
|
11
|
+
toggleIcon: string | null;
|
|
12
|
+
toggleLabel: string | null;
|
|
13
|
+
readonly type: string;
|
|
14
|
+
constructor(config: IDynamicDatePickerModelConfig);
|
|
15
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { InputTypes } from '../../../enums/input-types.enum';
|
|
2
|
+
import { IDynamicInputModelConfig, UnionInputTypes, UnionMaxMinTypes } from '../../../interfaces/models/form-ui-models/input-control-model-config.interface';
|
|
3
|
+
import { DynamicInputControlModel } from '../../form-input-control/dynamic-input-control.model';
|
|
4
|
+
export declare class DynamicInputModel extends DynamicInputControlModel<UnionInputTypes> {
|
|
5
|
+
inputType: InputTypes;
|
|
6
|
+
max: UnionMaxMinTypes;
|
|
7
|
+
min: UnionMaxMinTypes;
|
|
8
|
+
readonly type: string;
|
|
9
|
+
constructor(config: IDynamicInputModelConfig);
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IDynamicRadioGroupModelConfig } from '../../../interfaces/models/form-ui-models/radio-group-model-config.interface';
|
|
2
|
+
import { DynamicOptionControlModel } from '../../form-option-control/dynamic-option-control.model';
|
|
3
|
+
export declare class DynamicRadioGroupModel<T> extends DynamicOptionControlModel<T> {
|
|
4
|
+
legend: string | null;
|
|
5
|
+
readonly type: string;
|
|
6
|
+
constructor(config: IDynamicRadioGroupModelConfig<T>);
|
|
7
|
+
select(index: number): void;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IDynamicSelectModelConfig } from '../../../interfaces/models/form-ui-models/select-control-model-config.interface';
|
|
2
|
+
import { DynamicOptionControlModel } from '../../form-option-control/dynamic-option-control.model';
|
|
3
|
+
export declare class DynamicSelectModel<T> extends DynamicOptionControlModel<T> {
|
|
4
|
+
filterable: boolean;
|
|
5
|
+
multiple: boolean;
|
|
6
|
+
placeholder: string;
|
|
7
|
+
compareWithFn: (o1: T, o2: T) => boolean;
|
|
8
|
+
readonly type: string;
|
|
9
|
+
constructor(config: IDynamicSelectModelConfig<T>);
|
|
10
|
+
select(...indices: number[]): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IDynamicSwitchModelConfig } from '../../../interfaces/models/form-ui-models/switch-control-model-config.interface';
|
|
2
|
+
import { DynamicCheckControlModel } from '../../form-check-control/dynamic-check-control.model';
|
|
3
|
+
export declare class DynamicSwitchModel extends DynamicCheckControlModel {
|
|
4
|
+
offLabel: string | null;
|
|
5
|
+
onLabel: string | null;
|
|
6
|
+
readonly type: string;
|
|
7
|
+
constructor(config: IDynamicSwitchModelConfig);
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IDynamicTextAreaModelConfig } from '../../../interfaces/models/form-ui-models/textarea-control-model-config.interface';
|
|
2
|
+
import { DynamicInputControlModel } from '../../form-input-control/dynamic-input-control.model';
|
|
3
|
+
export declare class DynamicTextAreaModel extends DynamicInputControlModel<string> {
|
|
4
|
+
cols: number;
|
|
5
|
+
rows: number;
|
|
6
|
+
wrap: string;
|
|
7
|
+
readonly type: string;
|
|
8
|
+
constructor(config: IDynamicTextAreaModelConfig);
|
|
9
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import { IDynamicFormValueControlModelConfig } from '../../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
3
|
+
import { DynamicFormControlModel } from '../form-control/dynamic-form-control.model';
|
|
4
|
+
export declare abstract class FormValueControlModel<T> extends DynamicFormControlModel {
|
|
5
|
+
additional: {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
} | null;
|
|
8
|
+
hint: string | null;
|
|
9
|
+
required: boolean;
|
|
10
|
+
tabIndex: number | null;
|
|
11
|
+
_value: T | null;
|
|
12
|
+
valueUpdates: Subject<T>;
|
|
13
|
+
protected constructor(config: IDynamicFormValueControlModelConfig<T>);
|
|
14
|
+
set value(value: T | null);
|
|
15
|
+
get value(): T | null;
|
|
16
|
+
getAdditional(key: string, defaultValue?: any | null | undefined): any;
|
|
17
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IDynamicFormLayoutConfig } from '../../interfaces/layout/form-layout-config.interface';
|
|
2
|
+
import { DynamicFormLayoutControlTypes } from './enums/FormLayoutControlTypes.enum';
|
|
3
|
+
export declare abstract class DynamicFormLayoutControlModel {
|
|
4
|
+
id: string;
|
|
5
|
+
layout: DynamicFormLayoutControlModel[];
|
|
6
|
+
customClass: string[];
|
|
7
|
+
abstract type: DynamicFormLayoutControlTypes;
|
|
8
|
+
protected constructor(config: IDynamicFormLayoutConfig);
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DynamicOptionControlModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/form-option-control/dynamic-option-control.model';
|
|
2
|
+
import { IDynamicSelectModelConfig } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/select-control-model-config.interface';
|
|
3
|
+
export declare class DynamicNgSelectModel<T> extends DynamicOptionControlModel<T> {
|
|
4
|
+
filterable: boolean;
|
|
5
|
+
multiple: boolean;
|
|
6
|
+
placeholder: string;
|
|
7
|
+
addTags: boolean;
|
|
8
|
+
compareWithFn: (o1: T, o2: T) => boolean;
|
|
9
|
+
readonly type: string;
|
|
10
|
+
constructor(config: IDynamicSelectModelConfig<T>);
|
|
11
|
+
select(...indices: number[]): void;
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { DynamicFormModel } from '../../interfaces/dynamic-form/dynamic-form-model.interface';
|
|
3
|
+
import { DynamicFormControlModel } from '../../models/form-control/dynamic-form-control.model';
|
|
4
|
+
import { DynamicFormGroupModel } from '../../models/form-group/dynamic-form-group.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FindDynamicControlModelPipe implements PipeTransform {
|
|
7
|
+
/**
|
|
8
|
+
* Takes DynamicFormModel and string path, returns founded layoutControl, matched by path
|
|
9
|
+
* @param model: Dynamic form model
|
|
10
|
+
* @param path: string, divided by dots, where every piece is an id of DynamicFormControlModel layoutControl
|
|
11
|
+
* @example path like 'group.subgroup.propName' will return layoutControl in FormGroupModel with id='group' ->
|
|
12
|
+
* FormGroupModel with id='subgroup' -> FormControlModel with id='propName'
|
|
13
|
+
* @return DynamicFormControlModel.
|
|
14
|
+
*/
|
|
15
|
+
transform(model: DynamicFormModel, path: string): DynamicFormControlModel;
|
|
16
|
+
static isFormGroupControl(control: any): control is DynamicFormGroupModel;
|
|
17
|
+
findControl(value: DynamicFormModel, path: string): DynamicFormControlModel;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FindDynamicControlModelPipe, never>;
|
|
19
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FindDynamicControlModelPipe, "findDynamicControlModel", false>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { IFormErrors } from '../../../../modules/dynamic-forms/dynamic-forms-core/constants/form-errors.constant';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GetErrorFromKeyValuePipe implements PipeTransform {
|
|
5
|
+
transform(key: string, errorMap: IFormErrors, errorData: any): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetErrorFromKeyValuePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GetErrorFromKeyValuePipe, "getErrorFromKeyValue", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Type } from '@angular/core';
|
|
2
|
+
import { DynamicFormControlComponent } from '../components/dynamic-form-control.component';
|
|
3
|
+
import { DynamicFormControlRef, DynamicFormControlMapFn } from '../interfaces/components/form-control/dynamic-form-control.interface';
|
|
4
|
+
import { DynamicFormControlModel } from '../models/form-control/dynamic-form-control.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DynamicFormComponentService {
|
|
7
|
+
private readonly dynamicFormControlMapFn;
|
|
8
|
+
private componentRefs;
|
|
9
|
+
constructor(dynamicFormControlMapFn: DynamicFormControlMapFn);
|
|
10
|
+
getFormControlRef(modelId: string, index?: number): DynamicFormControlRef | undefined;
|
|
11
|
+
getCustomComponentType(model: DynamicFormControlModel): Type<DynamicFormControlComponent> | null;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormComponentService, [{ optional: true; }]>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormComponentService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { QueryList } from '@angular/core';
|
|
2
|
+
import { DynamicFormModel } from '../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
3
|
+
import { DynamicTemplateDirective } from '../directives/dynamic-template.directive';
|
|
4
|
+
import { IDynamicFormLayout } from '../interfaces/layout/form-layout.interface';
|
|
5
|
+
import { DynamicFormLayoutControlModel } from '../models/layout/layout-control.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export type DynamicFormControlTemplates = QueryList<DynamicTemplateDirective> | DynamicTemplateDirective[] | undefined;
|
|
8
|
+
export declare class DynamicFormLayoutService {
|
|
9
|
+
getGroupLayout(id: string, layout?: IDynamicFormLayout): DynamicFormLayoutControlModel | null;
|
|
10
|
+
getById(id: string, layout: IDynamicFormLayout): DynamicFormLayoutControlModel | undefined;
|
|
11
|
+
getControlModels(formModel: DynamicFormModel, layoutId: string): DynamicFormModel;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormLayoutService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormLayoutService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AsyncValidatorFn, ValidatorFn } from '@angular/forms';
|
|
2
|
+
import { ValidatorsMap } from '../interfaces/validators/validators.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicFormValidationService {
|
|
5
|
+
private validatorFns;
|
|
6
|
+
private asyncValidatorFns;
|
|
7
|
+
private dynamicValidators;
|
|
8
|
+
constructor(validatorFns: ValidatorFn[], asyncValidatorFns: AsyncValidatorFn[], dynamicValidators: ValidatorsMap);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormValidationService, [{ optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormValidationService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { AbstractControlOptions, AbstractControl, FormArray, FormGroup, FormControl } from '@angular/forms';
|
|
2
|
+
import { DynamicFormModel, DynamicUnionFormModel } from '../interfaces/dynamic-form/dynamic-form-model.interface';
|
|
3
|
+
import { DynamicFormArrayModel } from '../models/form-array/dynamic-form-array.model';
|
|
4
|
+
import { DynamicFormControlModel } from '../models/form-control/dynamic-form-control.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DynamicFormService {
|
|
7
|
+
getTitleByFormType(formType: string): string;
|
|
8
|
+
resolveFormItem(model: DynamicFormControlModel): FormArray | FormControl | FormGroup;
|
|
9
|
+
createFormArray(formArrayModel: DynamicFormArrayModel): FormArray;
|
|
10
|
+
createFormControl(controlModel: DynamicFormControlModel): FormControl;
|
|
11
|
+
createFormGroup(formModel: DynamicFormModel, options?: AbstractControlOptions | null): FormGroup;
|
|
12
|
+
static findById(id: string, formModel: DynamicFormModel): DynamicFormControlModel | null;
|
|
13
|
+
updateControl(formGroup: FormGroup, formModel: DynamicFormModel, controlId: string, newControlModel: DynamicFormControlModel): DynamicFormModel | null;
|
|
14
|
+
updateFormGroup(formGroup: FormGroup, formModel: DynamicFormModel, targetFormModel: DynamicFormModel): void;
|
|
15
|
+
insertFormControls(formGroup: FormGroup, formModel: DynamicFormModel, idx: number, ...controls: DynamicFormModel): void;
|
|
16
|
+
removeFormControls(formGroup: FormGroup, formModel: DynamicFormModel, ...controls: DynamicFormModel): void;
|
|
17
|
+
addFormGroupControl(formGroup: FormGroup, formModel: DynamicUnionFormModel, ...models: DynamicFormModel): void;
|
|
18
|
+
moveFormGroupControl(index: number, step: number, formModel: DynamicUnionFormModel): void;
|
|
19
|
+
insertFormGroupControl(index: number, formGroup: FormGroup, formModel: DynamicUnionFormModel, ...models: DynamicFormModel): void;
|
|
20
|
+
removeFormGroupControl(index: number, formGroup: FormGroup, formModel: DynamicUnionFormModel): void;
|
|
21
|
+
addFormArrayGroup(formArray: FormArray, formArrayModel: DynamicFormArrayModel): void;
|
|
22
|
+
insertFormArrayGroup(index: number, formArray: FormArray, formArrayModel: DynamicFormArrayModel): void;
|
|
23
|
+
removeFormArrayGroup(index: number, formArray: FormArray, formArrayModel: DynamicFormArrayModel): void;
|
|
24
|
+
clearFormArray(formArray: FormArray, formArrayModel?: DynamicFormArrayModel): void;
|
|
25
|
+
static markAsTouchedAbstractControl(control: AbstractControl): void;
|
|
26
|
+
updateValidityInAbstractControl(control: AbstractControl): void;
|
|
27
|
+
static detectChangesInModel(model: DynamicFormModel): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormService, never>;
|
|
29
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormService>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./dynamic-form-UI/dynamic-form-ui.module";
|
|
4
|
+
import * as i3 from "./dynamic-forms-core/dynamic-form-core.module";
|
|
5
|
+
export declare class DynamicFormsModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormsModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicFormsModule, never, [typeof i1.CommonModule, typeof i2.DynamicFormUIModule, typeof i3.DynamicFormCoreModule], [typeof i2.DynamicFormUIModule, typeof i3.DynamicFormCoreModule]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DynamicFormsModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/cdk/scrolling";
|
|
3
|
+
export declare class MatCdkModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatCdkModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatCdkModule, never, never, [typeof i1.ScrollingModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MatCdkModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/cdk/a11y";
|
|
3
|
+
import * as i2 from "@angular/cdk/clipboard";
|
|
4
|
+
import * as i3 from "@angular/material/input";
|
|
5
|
+
import * as i4 from "@angular/cdk/stepper";
|
|
6
|
+
import * as i5 from "@angular/cdk/table";
|
|
7
|
+
import * as i6 from "@angular/cdk/tree";
|
|
8
|
+
import * as i7 from "@angular/cdk/drag-drop";
|
|
9
|
+
import * as i8 from "@angular/material/autocomplete";
|
|
10
|
+
import * as i9 from "@angular/material/badge";
|
|
11
|
+
import * as i10 from "@angular/material/bottom-sheet";
|
|
12
|
+
import * as i11 from "@angular/material/button";
|
|
13
|
+
import * as i12 from "@angular/material/button-toggle";
|
|
14
|
+
import * as i13 from "@angular/material/card";
|
|
15
|
+
import * as i14 from "@angular/material/checkbox";
|
|
16
|
+
import * as i15 from "@angular/material/chips";
|
|
17
|
+
import * as i16 from "@angular/material/stepper";
|
|
18
|
+
import * as i17 from "@angular/material/datepicker";
|
|
19
|
+
import * as i18 from "@angular/material/dialog";
|
|
20
|
+
import * as i19 from "@angular/material/divider";
|
|
21
|
+
import * as i20 from "@angular/material/expansion";
|
|
22
|
+
import * as i21 from "@angular/material/grid-list";
|
|
23
|
+
import * as i22 from "@angular/material/icon";
|
|
24
|
+
import * as i23 from "@angular/material/list";
|
|
25
|
+
import * as i24 from "@angular/material/menu";
|
|
26
|
+
import * as i25 from "@angular/material/core";
|
|
27
|
+
import * as i26 from "@angular/material/paginator";
|
|
28
|
+
import * as i27 from "@angular/material/progress-bar";
|
|
29
|
+
import * as i28 from "@angular/material/progress-spinner";
|
|
30
|
+
import * as i29 from "@angular/material/radio";
|
|
31
|
+
import * as i30 from "@angular/material/select";
|
|
32
|
+
import * as i31 from "@angular/material/sidenav";
|
|
33
|
+
import * as i32 from "@angular/material/slider";
|
|
34
|
+
import * as i33 from "@angular/material/slide-toggle";
|
|
35
|
+
import * as i34 from "@angular/material/snack-bar";
|
|
36
|
+
import * as i35 from "@angular/material/sort";
|
|
37
|
+
import * as i36 from "@angular/material/table";
|
|
38
|
+
import * as i37 from "@angular/material/tabs";
|
|
39
|
+
import * as i38 from "@angular/material/toolbar";
|
|
40
|
+
import * as i39 from "@angular/material/tooltip";
|
|
41
|
+
import * as i40 from "@angular/material/tree";
|
|
42
|
+
import * as i41 from "@angular/cdk/overlay";
|
|
43
|
+
import * as i42 from "@angular/cdk/portal";
|
|
44
|
+
import * as i43 from "@angular/cdk/scrolling";
|
|
45
|
+
import * as i44 from "@angular/material/form-field";
|
|
46
|
+
export declare class MaterialModule {
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
|
|
48
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, never, [typeof i1.A11yModule, typeof i2.ClipboardModule, typeof i3.MatInputModule, typeof i4.CdkStepperModule, typeof i5.CdkTableModule, typeof i6.CdkTreeModule, typeof i7.DragDropModule, typeof i8.MatAutocompleteModule, typeof i9.MatBadgeModule, typeof i10.MatBottomSheetModule, typeof i11.MatButtonModule, typeof i12.MatButtonToggleModule, typeof i13.MatCardModule, typeof i14.MatCheckboxModule, typeof i15.MatChipsModule, typeof i16.MatStepperModule, typeof i17.MatDatepickerModule, typeof i18.MatDialogModule, typeof i19.MatDividerModule, typeof i20.MatExpansionModule, typeof i21.MatGridListModule, typeof i22.MatIconModule, typeof i3.MatInputModule, typeof i23.MatListModule, typeof i24.MatMenuModule, typeof i25.MatNativeDateModule, typeof i26.MatPaginatorModule, typeof i27.MatProgressBarModule, typeof i28.MatProgressSpinnerModule, typeof i29.MatRadioModule, typeof i25.MatRippleModule, typeof i30.MatSelectModule, typeof i31.MatSidenavModule, typeof i32.MatSliderModule, typeof i33.MatSlideToggleModule, typeof i34.MatSnackBarModule, typeof i35.MatSortModule, typeof i36.MatTableModule, typeof i37.MatTabsModule, typeof i38.MatToolbarModule, typeof i39.MatTooltipModule, typeof i40.MatTreeModule, typeof i41.OverlayModule, typeof i42.PortalModule, typeof i43.ScrollingModule, typeof i44.MatFormFieldModule]>;
|
|
49
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
|
|
50
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ColorSchemes } from '../../../../modules/ui-kit/enums/color-schemes.enum';
|
|
4
|
+
import { IDataSourceColumnDetails, IQueryRule } from '../../../../modules/query-builder/interfaces/query-builder.interface';
|
|
5
|
+
import { ITableColumns } from 'idp-apps-shared-ui/core/interfaces/filters.api.interface';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class QueryDesignComponent implements OnInit {
|
|
8
|
+
isReadOnly: boolean;
|
|
9
|
+
isApplyNewRuleBuilderDesign: boolean;
|
|
10
|
+
isSetInitRules: boolean;
|
|
11
|
+
tableName: string;
|
|
12
|
+
schemaName: string;
|
|
13
|
+
tableColumns: ITableColumns;
|
|
14
|
+
rules: IQueryRule[];
|
|
15
|
+
isLoaderForColumns: boolean;
|
|
16
|
+
searchActionText: string;
|
|
17
|
+
isRuleSaveMode: boolean;
|
|
18
|
+
isSingleLineQuery: boolean;
|
|
19
|
+
isAddIconVisible: boolean;
|
|
20
|
+
searchHandler: (tableName: string, columnName: string, searchKeyword: string, schemaName?: string) => Observable<string[]>;
|
|
21
|
+
getTableColumnsHandler: (isSource: boolean, tableId: string) => IDataSourceColumnDetails[];
|
|
22
|
+
isSource: boolean;
|
|
23
|
+
isMultiTableSelection: boolean;
|
|
24
|
+
onRulesChanged: EventEmitter<IQueryRule[]>;
|
|
25
|
+
onSearch: EventEmitter<any>;
|
|
26
|
+
readonly COLOR_SCHEMES: typeof ColorSchemes;
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
handleRuleChange(): void;
|
|
29
|
+
handleLineRemove(index: number): void;
|
|
30
|
+
addNewRuleLine(): void;
|
|
31
|
+
searchClick(): void;
|
|
32
|
+
resetRules(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QueryDesignComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QueryDesignComponent, "app-query-design", never, { "isReadOnly": { "alias": "isReadOnly"; "required": false; }; "isApplyNewRuleBuilderDesign": { "alias": "isApplyNewRuleBuilderDesign"; "required": false; }; "isSetInitRules": { "alias": "isSetInitRules"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "schemaName": { "alias": "schemaName"; "required": false; }; "tableColumns": { "alias": "tableColumns"; "required": false; }; "rules": { "alias": "rules"; "required": false; }; "isLoaderForColumns": { "alias": "isLoaderForColumns"; "required": false; }; "searchActionText": { "alias": "searchActionText"; "required": false; }; "isRuleSaveMode": { "alias": "isRuleSaveMode"; "required": false; }; "isSingleLineQuery": { "alias": "isSingleLineQuery"; "required": false; }; "isAddIconVisible": { "alias": "isAddIconVisible"; "required": false; }; "searchHandler": { "alias": "searchHandler"; "required": false; }; "getTableColumnsHandler": { "alias": "getTableColumnsHandler"; "required": false; }; "isSource": { "alias": "isSource"; "required": false; }; "isMultiTableSelection": { "alias": "isMultiTableSelection"; "required": false; }; }, { "onRulesChanged": "onRulesChanged"; "onSearch": "onSearch"; }, never, never, false, never>;
|
|
35
|
+
}
|