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/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Renderer2, ElementRef, AfterViewInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FlipCardDirective implements AfterViewInit {
|
|
5
|
+
private renderer;
|
|
6
|
+
private el;
|
|
7
|
+
private router;
|
|
8
|
+
navigateUrl: string;
|
|
9
|
+
constructor(renderer: Renderer2, el: ElementRef, router: Router);
|
|
10
|
+
ngAfterViewInit(): void;
|
|
11
|
+
flipCard(card: any): void;
|
|
12
|
+
detailNavigationRoute(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlipCardDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FlipCardDirective, "[appFlipCard]", never, { "navigateUrl": { "alias": "navigateUrl"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
package/modules/dynamic-cards/dynamic-card/card-list-container/card-list-container.component.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ICardListConfiguration } from 'idp-apps-shared-ui/modules/dynamic-cards/interface/card-list.interface';
|
|
2
|
+
import { IBaseCardItem } from 'idp-apps-shared-ui/modules/dynamic-cards/interface/card.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CardListContainerComponent {
|
|
5
|
+
dataSource: IBaseCardItem[];
|
|
6
|
+
configuration: ICardListConfiguration;
|
|
7
|
+
searchValue: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardListContainerComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardListContainerComponent, "app-card-list-container", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "configuration": { "alias": "configuration"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DynamicCardComponent {
|
|
4
|
+
cardItem: IKeyValue;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicCardComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicCardComponent, "app-dynamic-card", never, { "cardItem": { "alias": "cardItem"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DynamicCardBackComponent {
|
|
4
|
+
cardItem: IKeyValue;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicCardBackComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicCardBackComponent, "app-dynamic-card-back", never, { "cardItem": { "alias": "cardItem"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
package/modules/dynamic-cards/dynamic-card/dynamic-card-footer/dynamic-card-footer.component.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DynamicCardFooterComponent {
|
|
4
|
+
private router;
|
|
5
|
+
routeLink: string;
|
|
6
|
+
constructor(router: Router);
|
|
7
|
+
moreRoute(event: MouseEvent): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicCardFooterComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicCardFooterComponent, "app-dynamic-card-footer", never, { "routeLink": { "alias": "routeLink"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
package/modules/dynamic-cards/dynamic-card/dynamic-card-front/dynamic-card-front.component.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DynamicCardFrontComponent {
|
|
4
|
+
cardItem: IKeyValue;
|
|
5
|
+
isFlip: boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicCardFrontComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicCardFrontComponent, "app-dynamic-card-front", never, { "cardItem": { "alias": "cardItem"; "required": false; }; "isFlip": { "alias": "isFlip"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dynamic-card/card-list-container/card-list-container.component";
|
|
3
|
+
import * as i2 from "./dynamic-card/dynamic-card/dynamic-card.component";
|
|
4
|
+
import * as i3 from "./directives/flip-card.directive";
|
|
5
|
+
import * as i4 from "./dynamic-card/dynamic-card-front/dynamic-card-front.component";
|
|
6
|
+
import * as i5 from "./dynamic-card/dynamic-card-back/dynamic-card-back.component";
|
|
7
|
+
import * as i6 from "./dynamic-card/dynamic-card-footer/dynamic-card-footer.component";
|
|
8
|
+
import * as i7 from "../../shared-pipes/pipes/search.pipe";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "@angular/router";
|
|
11
|
+
import * as i10 from "../material/material.module";
|
|
12
|
+
import * as i11 from "@angular/forms";
|
|
13
|
+
import * as i12 from "../ui-kit/ui-kit.module";
|
|
14
|
+
export declare class DynamicCardsModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicCardsModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicCardsModule, [typeof i1.CardListContainerComponent, typeof i2.DynamicCardComponent, typeof i3.FlipCardDirective, typeof i4.DynamicCardFrontComponent, typeof i5.DynamicCardBackComponent, typeof i6.DynamicCardFooterComponent, typeof i7.SearchPipe], [typeof i8.CommonModule, typeof i9.RouterModule, typeof i10.MaterialModule, typeof i11.FormsModule, typeof i12.UiKitModule], [typeof i1.CardListContainerComponent, typeof i2.DynamicCardComponent]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DynamicCardsModule>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface ICardListConfiguration {
|
|
2
|
+
isSearchAllow?: boolean;
|
|
3
|
+
searchConfiguration?: IBaseCardListSearchConfiguration;
|
|
4
|
+
}
|
|
5
|
+
export interface IBaseCardListSearchConfiguration {
|
|
6
|
+
searchBoxTitle: string;
|
|
7
|
+
searchBoxPlaceHolder: string;
|
|
8
|
+
searchableProperties?: string[];
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface IBaseCardItem {
|
|
2
|
+
label: string;
|
|
3
|
+
shortText?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
subTitle?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
detailNavigateUrl?: string;
|
|
8
|
+
moreNavigateUrl?: string;
|
|
9
|
+
imageUrl?: string;
|
|
10
|
+
icon?: string;
|
|
11
|
+
styleClasses?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DynamicFormControlComponent } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import { DynamicButtonModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/button/dynamic-button.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicFormButtonControlComponent extends DynamicFormControlComponent {
|
|
5
|
+
model: DynamicButtonModel;
|
|
6
|
+
onClick(): void;
|
|
7
|
+
getClass(): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormButtonControlComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormButtonControlComponent, "app-dynamic-form-button-control", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormButtonControlComponent>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DynamicFormControlComponent } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import { DynamicCheckboxModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicFormCheckboxControlComponent extends DynamicFormControlComponent {
|
|
5
|
+
model: DynamicCheckboxModel;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormCheckboxControlComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormCheckboxControlComponent, "app-dynamic-form-checkbox-control", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormCheckboxControlComponent>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DynamicFormControlModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DynamicFormControlLabelComponent {
|
|
4
|
+
model: DynamicFormControlModel;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormControlLabelComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormControlLabelComponent, "app-dynamic-form-control-label", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DynamicFormControlComponent, DynamicCounterModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DynamicFormCounterControlComponent extends DynamicFormControlComponent {
|
|
4
|
+
model: DynamicCounterModel;
|
|
5
|
+
get isInteger(): boolean;
|
|
6
|
+
onKeyPress(event: KeyboardEvent): void;
|
|
7
|
+
onInput(): void;
|
|
8
|
+
isGreaterThanMax(): boolean;
|
|
9
|
+
isLessThanMin(): boolean;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormCounterControlComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormCounterControlComponent, "app-dynamic-form-counter-control", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormCounterControlComponent>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules//ui-kit/interfaces/generic.interface';
|
|
2
|
+
import { DynamicFormControlComponent, DynamicDatePickerModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicFormDatepickerControlComponent extends DynamicFormControlComponent {
|
|
5
|
+
model: DynamicDatePickerModel;
|
|
6
|
+
isMatDatepickerDisabled: boolean;
|
|
7
|
+
matDatepickerFilter: (date: Date) => boolean;
|
|
8
|
+
get classMap(): IKeyValue;
|
|
9
|
+
get minDate(): Date | null;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormDatepickerControlComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormDatepickerControlComponent, "app-dynamic-form-datepicker-control", never, { "model": { "alias": "model"; "required": false; }; "isMatDatepickerDisabled": { "alias": "isMatDatepickerDisabled"; "required": false; }; "matDatepickerFilter": { "alias": "matDatepickerFilter"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormDatepickerControlComponent>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { OnInit, OnDestroy, ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormGroup, ValidationErrors, FormControl } from '@angular/forms';
|
|
3
|
+
import { MatFormFieldControl, MatFormField } from '@angular/material/form-field';
|
|
4
|
+
import { FormValueControlModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
5
|
+
import { IFormErrors } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/constants/form-errors.constant';
|
|
6
|
+
import { DynamicFormControlModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model';
|
|
7
|
+
import { DynamicOptionControlModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/form-option-control/dynamic-option-control.model';
|
|
8
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class DynamicFormFieldControlComponent implements OnInit, OnChanges, OnDestroy {
|
|
11
|
+
private controlErrors;
|
|
12
|
+
private changeDetectorRef;
|
|
13
|
+
model: FormValueControlModel<any>;
|
|
14
|
+
group: FormGroup;
|
|
15
|
+
matFormField: MatFormField;
|
|
16
|
+
formFieldControl: MatFormFieldControl<any>;
|
|
17
|
+
isErrorShowed: boolean;
|
|
18
|
+
readonly CONTROL_ERRORS: IFormErrors;
|
|
19
|
+
readonly LOADING_FAILED_MESSAGE = "Cannot load data";
|
|
20
|
+
private formFieldCssClass;
|
|
21
|
+
private clearSubs$;
|
|
22
|
+
constructor(controlErrors: IFormErrors, changeDetectorRef: ChangeDetectorRef);
|
|
23
|
+
get control(): FormControl;
|
|
24
|
+
get errors(): ValidationErrors;
|
|
25
|
+
get firstError(): IKeyValue;
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
28
|
+
setErrorValueSubscription(optionsModel: DynamicOptionControlModel<any>): void;
|
|
29
|
+
isOptionsModel(model: DynamicFormControlModel): model is DynamicOptionControlModel<any>;
|
|
30
|
+
ngOnDestroy(): void;
|
|
31
|
+
getClassByFieldType(): string;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormFieldControlComponent, [{ optional: true; }, null]>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormFieldControlComponent, "app-dynamic-form-field-control", never, { "model": { "alias": "model"; "required": false; }; "group": { "alias": "group"; "required": false; }; }, {}, ["formFieldControl"], ["*"], false, never>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
|
+
import { ErrorStateMatcher } from '@angular/material/core';
|
|
3
|
+
import { DynamicFormFieldControlComponent } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field-control.component';
|
|
4
|
+
export declare class DynamicFormFieldMatcher implements ErrorStateMatcher {
|
|
5
|
+
private formField;
|
|
6
|
+
constructor(formField: DynamicFormFieldControlComponent);
|
|
7
|
+
isErrorState(control: FormControl | null): boolean;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DynamicFormControlComponent, DynamicInputModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class DynamicFormInputControlComponent extends DynamicFormControlComponent {
|
|
4
|
+
model: DynamicInputModel;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormInputControlComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormInputControlComponent, "app-dynamic-form-input-control, [app-dynamic-form-input-control]", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormInputControlComponent>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DynamicFormControlComponent } from '@app/shared/modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { DynamicNgSelectModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/ng-select-control/dynamic-ng-select.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DynamicFormNgSelectControlComponent extends DynamicFormControlComponent {
|
|
6
|
+
model: DynamicNgSelectModel<any>;
|
|
7
|
+
get isLoading$(): Observable<boolean>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormNgSelectControlComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormNgSelectControlComponent, "app-dynamic-form-ng-select-control", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormNgSelectControlComponent>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { DynamicFormControlComponent } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import { DynamicRadioGroupModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
3
|
+
import { RadioGroupOrientation } from './enum/radio-group-orientation.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DynamicFormRadioGroupComponent extends DynamicFormControlComponent {
|
|
6
|
+
model: DynamicRadioGroupModel<string>;
|
|
7
|
+
orientation: RadioGroupOrientation;
|
|
8
|
+
get checkOrientationClass(): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormRadioGroupComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormRadioGroupComponent, "app-dynamic-form-radio-group", never, { "model": { "alias": "model"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormRadioGroupComponent>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { DynamicFormControlComponent, DynamicSelectModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicFormSelectControlComponent extends DynamicFormControlComponent {
|
|
5
|
+
model: DynamicSelectModel<any>;
|
|
6
|
+
get isLoading$(): Observable<boolean>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormSelectControlComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormSelectControlComponent, "app-dynamic-form-select-control", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormSelectControlComponent>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DynamicFormControlComponent } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import { DynamicSwitchModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/switch/dynamic-switch.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicFormSwitchControlComponent extends DynamicFormControlComponent {
|
|
5
|
+
model: DynamicSwitchModel;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormSwitchControlComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormSwitchControlComponent, "app-dynamic-form-switch-control", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormSwitchControlComponent>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DynamicFormControlComponent } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core';
|
|
2
|
+
import { DynamicTextAreaModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/textarea/dynamic-textarea.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicFormTextAreaControlComponent extends DynamicFormControlComponent {
|
|
5
|
+
model: DynamicTextAreaModel;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormTextAreaControlComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormTextAreaControlComponent, "app-dynamic-form-text-area-control, [app-dynamic-form-text-area-control]", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormTextAreaControlComponent>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { IDynamicFormControlEvent } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control-event.interface';
|
|
4
|
+
import { DynamicFormModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/interfaces/dynamic-form/dynamic-form-model.interface';
|
|
5
|
+
import { IDynamicFormLayout } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout.interface';
|
|
6
|
+
import { DynamicFormControlModel } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DynamicFormUiControlListComponent {
|
|
9
|
+
formGroup: FormGroup;
|
|
10
|
+
formModel: DynamicFormModel;
|
|
11
|
+
formLayout: IDynamicFormLayout;
|
|
12
|
+
key: string;
|
|
13
|
+
blur: EventEmitter<IDynamicFormControlEvent>;
|
|
14
|
+
change: EventEmitter<IDynamicFormControlEvent>;
|
|
15
|
+
focus: EventEmitter<IDynamicFormControlEvent>;
|
|
16
|
+
customEvent: EventEmitter<IDynamicFormControlEvent>;
|
|
17
|
+
isInline: boolean;
|
|
18
|
+
readonly DEFAULT_CLASS: string;
|
|
19
|
+
get dynamicClass(): string | null;
|
|
20
|
+
get inlineClass(): string | null;
|
|
21
|
+
get defaultClass(): string;
|
|
22
|
+
trackByFn(_index: number, model: DynamicFormControlModel): string;
|
|
23
|
+
onEvent($event: IDynamicFormControlEvent, type: string): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormUiControlListComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormUiControlListComponent, "app-dynamic-form-ui-control-list, [app-dynamic-form-ui-control-list]", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formModel": { "alias": "formModel"; "required": false; }; "formLayout": { "alias": "formLayout"; "required": false; }; "key": { "alias": "key"; "required": false; }; "blur": { "alias": "blur"; "required": false; }; "change": { "alias": "change"; "required": false; }; "focus": { "alias": "focus"; "required": false; }; "customEvent": { "alias": "customEvent"; "required": false; }; "isInline": { "alias": "isInline"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Type, ApplicationRef, ComponentFactoryResolver, ElementRef, Injector } from '@angular/core';
|
|
2
|
+
import { DynamicFormControlContainerComponent } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control-container.component';
|
|
3
|
+
import { DynamicFormControlComponent } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control.component';
|
|
4
|
+
import { DynamicFormComponentService } from 'idp-apps-shared-ui/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-component.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DynamicFormUIControlComponent extends DynamicFormControlContainerComponent {
|
|
7
|
+
private dynamicFormComponentService;
|
|
8
|
+
constructor(componentFactoryResolver: ComponentFactoryResolver, injector: Injector, applicationRef: ApplicationRef, elRef: ElementRef, dynamicFormComponentService: DynamicFormComponentService);
|
|
9
|
+
get hidden(): boolean | null;
|
|
10
|
+
get componentType(): Type<DynamicFormControlComponent> | null;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormUIControlComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormUIControlComponent, "app-dynamic-form-ui-control, [app-dynamic-form-ui-control]", never, {}, {}, never, never, false, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormUIControlComponent>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ColorSchemes } from '../../../../../ui-kit/enums/color-schemes.enum';
|
|
3
|
+
import { FormTypes } from '../../../../../ui-kit/enums/form-types.enum';
|
|
4
|
+
import { BaseFormActionTypes } from './enums/base-form-action-types';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BaseFormActionsComponent {
|
|
7
|
+
readonly BASE_ACTION_TYPES: typeof BaseFormActionTypes;
|
|
8
|
+
readonly FORM_TYPES: typeof FormTypes;
|
|
9
|
+
readonly COLOR_SCHEMES: typeof ColorSchemes;
|
|
10
|
+
isCancelRemoved: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
formType: FormTypes;
|
|
13
|
+
isSubmitDisabled: boolean;
|
|
14
|
+
actionClick: EventEmitter<BaseFormActionTypes>;
|
|
15
|
+
onActionClick(actionType: BaseFormActionTypes, event: MouseEvent): void;
|
|
16
|
+
get isReadonly(): boolean;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseFormActionsComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseFormActionsComponent, "app-base-form-actions", never, { "isCancelRemoved": { "alias": "isCancelRemoved"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "formType": { "alias": "formType"; "required": false; }; "isSubmitDisabled": { "alias": "isSubmitDisabled"; "required": false; }; }, { "actionClick": "actionClick"; }, never, never, false, never>;
|
|
19
|
+
}
|
package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/dynamic-form-ui.component.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnInit, OnDestroy, EventEmitter, QueryList, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { FormTypes } from '../../../../ui-kit/enums/form-types.enum';
|
|
4
|
+
import { DynamicFormComponent } from '../../../dynamic-forms-core';
|
|
5
|
+
import { DynamicTemplateDirective } from '../../../dynamic-forms-core/directives/dynamic-template.directive';
|
|
6
|
+
import { IBaseFormAction } from './base-form-actions/interfaces/base-form-action.interface';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DynamicFormUIComponent extends DynamicFormComponent implements OnInit, OnDestroy {
|
|
9
|
+
private cd;
|
|
10
|
+
set disabled(val: boolean);
|
|
11
|
+
constructor(cd: ChangeDetectorRef);
|
|
12
|
+
get disabled(): boolean;
|
|
13
|
+
patchValue$: Observable<any>;
|
|
14
|
+
formType: FormTypes;
|
|
15
|
+
isInline: boolean;
|
|
16
|
+
templates: QueryList<DynamicTemplateDirective>;
|
|
17
|
+
actionClick: EventEmitter<IBaseFormAction<any>>;
|
|
18
|
+
submit: EventEmitter<{}>;
|
|
19
|
+
private clearSubs$;
|
|
20
|
+
private _disabled;
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormUIComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormUIComponent, "app-dynamic-form, [app-dynamic-form]", never, { "disabled": { "alias": "disabled"; "required": false; }; "patchValue$": { "alias": "patchValue$"; "required": false; }; "formType": { "alias": "formType"; "required": false; }; "isInline": { "alias": "isInline"; "required": false; }; }, { "actionClick": "actionClick"; "submit": "submit"; }, ["templates"], ["*"], false, never>;
|
|
25
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormUIComponent>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DynamicFormArrayComponent } from '../../../dynamic-forms-core/components/dynamic-form-array.component';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicFormUIArrayComponent extends DynamicFormArrayComponent {
|
|
5
|
+
getFormGroup(index: number): FormGroup;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormUIArrayComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormUIArrayComponent, "app-dynamic-form-ui-array", never, {}, {}, never, never, false, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormUIArrayComponent>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DynamicFormControlComponent } from '../../../dynamic-forms-core';
|
|
2
|
+
import { DynamicFormGroupModel } from '../../../dynamic-forms-core/models/form-group/dynamic-form-group.model';
|
|
3
|
+
import { DynamicFormLayoutControlModel } from '../../../dynamic-forms-core/models/layout/layout-control.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DynamicFormGroupComponent extends DynamicFormControlComponent {
|
|
6
|
+
model: DynamicFormGroupModel;
|
|
7
|
+
get hidden(): boolean | null;
|
|
8
|
+
get groupLayout(): DynamicFormLayoutControlModel | null;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormGroupComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormGroupComponent, "app-dynamic-form-group", never, { "model": { "alias": "model"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { QueryList } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { DynamicTemplateDirective } from '../../../../../../modules/dynamic-forms/dynamic-forms-core/directives/dynamic-template.directive';
|
|
4
|
+
import { DynamicFormModel } from '../../../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
5
|
+
import { IDynamicFormLayout } from '../../../../../../modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout.interface';
|
|
6
|
+
import { DynamicFormLayoutControlTypes } from '../../../../dynamic-forms-core/models/layout/enums/FormLayoutControlTypes.enum';
|
|
7
|
+
import { DynamicFormLayoutControlModel } from '../../../../dynamic-forms-core/models/layout/layout-control.model';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DynamicFormLayoutItemComponent {
|
|
10
|
+
layoutControl: DynamicFormLayoutControlModel;
|
|
11
|
+
formModel: DynamicFormModel;
|
|
12
|
+
formLayoutMap: Map<string, DynamicFormModel>;
|
|
13
|
+
formGroupValue: FormGroup;
|
|
14
|
+
formLayout: IDynamicFormLayout;
|
|
15
|
+
templates: QueryList<DynamicTemplateDirective>;
|
|
16
|
+
readonly LAYOUT_CONTROL_TYPES: typeof DynamicFormLayoutControlTypes;
|
|
17
|
+
get layoutClass(): string;
|
|
18
|
+
get defaultClass(): string;
|
|
19
|
+
get customClass(): string;
|
|
20
|
+
get getClass(): string;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormLayoutItemComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormLayoutItemComponent, "app-dynamic-form-layout-item, [app-dynamic-form-layout-item]", never, { "layoutControl": { "alias": "layoutControl"; "required": false; }; "formModel": { "alias": "formModel"; "required": false; }; "formLayoutMap": { "alias": "formLayoutMap"; "required": false; }; "formGroupValue": { "alias": "formGroupValue"; "required": false; }; "formLayout": { "alias": "formLayout"; "required": false; }; "templates": { "alias": "templates"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { QueryList } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { DynamicTemplateDirective } from '../../../../../modules/dynamic-forms/dynamic-forms-core/directives/dynamic-template.directive';
|
|
4
|
+
import { DynamicFormModel } from '../../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
5
|
+
import { IDynamicFormLayout } from '../../../../../modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout.interface';
|
|
6
|
+
import { DynamicFormLayoutService } from '../../../../../modules/dynamic-forms/dynamic-forms-core';
|
|
7
|
+
import { DynamicFormService } from '../../../../../modules/dynamic-forms/dynamic-forms-core/service/dynamic-form.service';
|
|
8
|
+
import { DynamicFormLayoutComponent } from '../../../dynamic-forms-core/components/dynamic-form-layout.component';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class DynamicFormLayoutUIComponent extends DynamicFormLayoutComponent {
|
|
11
|
+
protected dynamicFormService: DynamicFormService;
|
|
12
|
+
protected dynamicFormLayoutService: DynamicFormLayoutService;
|
|
13
|
+
formModel: DynamicFormModel;
|
|
14
|
+
formLayout: IDynamicFormLayout;
|
|
15
|
+
formGroupValue: FormGroup;
|
|
16
|
+
formLayoutMap: Map<string, DynamicFormModel>;
|
|
17
|
+
templates: QueryList<DynamicTemplateDirective>;
|
|
18
|
+
constructor(dynamicFormService: DynamicFormService, dynamicFormLayoutService: DynamicFormLayoutService);
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormLayoutUIComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormLayoutUIComponent, "app-dynamic-form-layout, [app-dynamic-form-layout]", never, { "formModel": { "alias": "formModel"; "required": false; }; "formLayout": { "alias": "formLayout"; "required": false; }; "formGroupValue": { "alias": "formGroupValue"; "required": false; }; "formLayoutMap": { "alias": "formLayoutMap"; "required": false; }; "templates": { "alias": "templates"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
package/modules/dynamic-forms/dynamic-form-UI/components/errors-block/errors-block.component.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FormControl, ValidationErrors } from '@angular/forms';
|
|
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 ErrorsBlockComponent {
|
|
5
|
+
control: FormControl;
|
|
6
|
+
defaultErrors: IFormErrors;
|
|
7
|
+
get hidden(): boolean | null;
|
|
8
|
+
get errors(): ValidationErrors;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorsBlockComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorsBlockComponent, "app-errors-block", never, { "control": { "alias": "control"; "required": false; }; "defaultErrors": { "alias": "defaultErrors"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/controls/dynamic-form-input-control/dynamic-form-input-control.component";
|
|
3
|
+
import * as i2 from "./components/controls/dynamic-form-field-control/dynamic-form-field-control.component";
|
|
4
|
+
import * as i3 from "./components/controls/dynamic-form-control-label/dynamic-form-control-label.component";
|
|
5
|
+
import * as i4 from "./components/dynamic-form/dynamic-form-ui.component";
|
|
6
|
+
import * as i5 from "./components/controls/dynamic-form-select-control/dynamic-form-select-control.component";
|
|
7
|
+
import * as i6 from "./components/controls/dynamic-form-ng-select-control/dynamic-form-ng-select-control.component";
|
|
8
|
+
import * as i7 from "./components/dynamic-form-group/dynamic-form-group.component";
|
|
9
|
+
import * as i8 from "./components/controls/dynamic-form-radio-group/dynamic-form-radio-group.component";
|
|
10
|
+
import * as i9 from "./components/controls/dynamic-form-datepicker-control/dynamic-form-datepicker-control.component";
|
|
11
|
+
import * as i10 from "./components/dynamic-form/base-form-actions/base-form-actions.component";
|
|
12
|
+
import * as i11 from "./components/dynamic-form-array/dynamic-form-ui-array.component";
|
|
13
|
+
import * as i12 from "./components/controls/dynamic-form-ui-control/dynamic-form-ui-control.component";
|
|
14
|
+
import * as i13 from "./components/controls/dynamic-form-button-control/dynamic-form-button-control.component";
|
|
15
|
+
import * as i14 from "./components/controls/dynamic-form-text-area-control/dynamic-form-text-area-control.component";
|
|
16
|
+
import * as i15 from "./components/controls/dynamic-form-checkbox-control/dynamic-form-checkbox-control.component";
|
|
17
|
+
import * as i16 from "./components/dynamic-form-layout/dynamic-form-layout.component";
|
|
18
|
+
import * as i17 from "./components/dynamic-form-layout/dynamic-form-layout-item/dynamic-form-layout-item.component";
|
|
19
|
+
import * as i18 from "./components/controls/dynamic-form-ui-control/dynamic-form-ui-control-list/dynamic-form-ui-control-list.component";
|
|
20
|
+
import * as i19 from "./components/controls/dynamic-form-counter-control/dynamic-form-counter-control.component";
|
|
21
|
+
import * as i20 from "./components/controls/dynamic-form-switch-control/dynamic-form-switch-control.component";
|
|
22
|
+
import * as i21 from "./components/errors-block/errors-block.component";
|
|
23
|
+
import * as i22 from "../../../directives/remove-cancel-button.directive";
|
|
24
|
+
import * as i23 from "../../ui-kit/ui-kit.module";
|
|
25
|
+
import * as i24 from "@angular/common";
|
|
26
|
+
import * as i25 from "@angular/forms";
|
|
27
|
+
import * as i26 from "../dynamic-forms-core/dynamic-form-core.module";
|
|
28
|
+
export declare class DynamicFormUIModule {
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormUIModule, never>;
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicFormUIModule, [typeof i1.DynamicFormInputControlComponent, typeof i2.DynamicFormFieldControlComponent, typeof i3.DynamicFormControlLabelComponent, typeof i4.DynamicFormUIComponent, typeof i5.DynamicFormSelectControlComponent, typeof i6.DynamicFormNgSelectControlComponent, typeof i7.DynamicFormGroupComponent, typeof i8.DynamicFormRadioGroupComponent, typeof i9.DynamicFormDatepickerControlComponent, typeof i10.BaseFormActionsComponent, typeof i11.DynamicFormUIArrayComponent, typeof i12.DynamicFormUIControlComponent, typeof i13.DynamicFormButtonControlComponent, typeof i14.DynamicFormTextAreaControlComponent, typeof i15.DynamicFormCheckboxControlComponent, typeof i16.DynamicFormLayoutUIComponent, typeof i17.DynamicFormLayoutItemComponent, typeof i18.DynamicFormUiControlListComponent, typeof i19.DynamicFormCounterControlComponent, typeof i20.DynamicFormSwitchControlComponent, typeof i21.ErrorsBlockComponent, typeof i22.RemoveCancelButtonDirective], [typeof i23.UiKitModule, typeof i24.CommonModule, typeof i25.ReactiveFormsModule, typeof i26.DynamicFormCoreModule], [typeof i1.DynamicFormInputControlComponent, typeof i2.DynamicFormFieldControlComponent, typeof i3.DynamicFormControlLabelComponent, typeof i4.DynamicFormUIComponent, typeof i5.DynamicFormSelectControlComponent, typeof i6.DynamicFormNgSelectControlComponent, typeof i7.DynamicFormGroupComponent, typeof i8.DynamicFormRadioGroupComponent, typeof i9.DynamicFormDatepickerControlComponent, typeof i10.BaseFormActionsComponent, typeof i11.DynamicFormUIArrayComponent, typeof i12.DynamicFormUIControlComponent, typeof i13.DynamicFormButtonControlComponent, typeof i14.DynamicFormTextAreaControlComponent, typeof i15.DynamicFormCheckboxControlComponent, typeof i21.ErrorsBlockComponent]>;
|
|
31
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DynamicFormUIModule>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Provider } from '@angular/core';
|
|
2
|
+
import { DynamicFormControlModel } from '../../dynamic-forms-core/models/form-control/dynamic-form-control.model';
|
|
3
|
+
import { DynamicFormControlComponent } from '../../dynamic-forms-core/components/dynamic-form-control.component';
|
|
4
|
+
import { Type } from '@angular/core';
|
|
5
|
+
export declare function uiFormControlMapFn(model: DynamicFormControlModel): Type<DynamicFormControlComponent> | null;
|
|
6
|
+
export declare const UI_FORM_CONTROL_MAP_PROVIDER: Provider;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FormArray } from '@angular/forms';
|
|
2
|
+
import { DynamicFormArrayModel } from '../models/form-array/dynamic-form-array.model';
|
|
3
|
+
import { DynamicFormControlComponent } from './dynamic-form-control.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DynamicFormArrayComponent extends DynamicFormControlComponent {
|
|
6
|
+
model: DynamicFormArrayModel;
|
|
7
|
+
get array(): FormArray;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormArrayComponent, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicFormArrayComponent, never, never, { "model": { "alias": "model"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { IDynamicFormControlEvent } from '../interfaces/components/form-control/dynamic-form-control-event.interface';
|
|
4
|
+
import { DynamicFormModel } from '../interfaces/dynamic-form/dynamic-form-model.interface';
|
|
5
|
+
import { IDynamicFormLayout } from '../interfaces/layout/form-layout.interface';
|
|
6
|
+
import { DynamicFormControlModel } from '../models/form-control/dynamic-form-control.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DynamicFormComponent implements OnChanges {
|
|
9
|
+
protected changeDetectorRef: ChangeDetectorRef;
|
|
10
|
+
formGroupValue: FormGroup;
|
|
11
|
+
formModel: DynamicFormModel;
|
|
12
|
+
formLayout: IDynamicFormLayout;
|
|
13
|
+
formLayoutMap: Map<string, DynamicFormModel>;
|
|
14
|
+
blur: EventEmitter<IDynamicFormControlEvent>;
|
|
15
|
+
change: EventEmitter<IDynamicFormControlEvent>;
|
|
16
|
+
focus: EventEmitter<IDynamicFormControlEvent>;
|
|
17
|
+
customEvent: EventEmitter<IDynamicFormControlEvent>;
|
|
18
|
+
readonly DEFAULT_LAYOUT_KEY = "default";
|
|
19
|
+
protected constructor(changeDetectorRef: ChangeDetectorRef);
|
|
20
|
+
trackByFn(_index: number, model: DynamicFormControlModel): string;
|
|
21
|
+
onEvent($event: IDynamicFormControlEvent, type: string): void;
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
+
get defaultControls(): DynamicFormModel;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormComponent, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicFormComponent, never, never, { "formGroupValue": { "alias": "formGroupValue"; "required": false; }; "formModel": { "alias": "formModel"; "required": false; }; "formLayout": { "alias": "formLayout"; "required": false; }; }, { "blur": "blur"; "change": "change"; "focus": "focus"; "customEvent": "customEvent"; }, never, never, false, never>;
|
|
26
|
+
}
|