shared-ui-test-1 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/constants/breadcrumbs.const.d.ts +1 -0
- package/constants/query-design-custom-class.constant.d.ts +1 -0
- package/core/directive/authorize.directive.d.ts +14 -0
- package/core/interfaces/filters.api.interface.d.ts +32 -0
- package/core/models/menu-elements-dto.d.ts +21 -0
- package/core/services/local-storage.service.d.ts +34 -0
- package/core/services/user-management.service.d.ts +39 -0
- package/core/site/services/support-util.service.d.ts +18 -0
- package/core/token/client-injection-token.d.ts +2 -0
- package/core/utils/sql-to-filter-datatype-converter.d.ts +2 -0
- package/core/utils/type-checks.utils.d.ts +10 -0
- package/core/utils/uuid-generator.utils.d.ts +1 -0
- package/directives/let.directive.d.ts +25 -0
- package/directives/remove-cancel-button.directive.d.ts +10 -0
- package/enums/action-types.enum.d.ts +16 -0
- package/enums/sort-direction.enum.d.ts +4 -0
- package/enums/source-types.enum.d.ts +4 -0
- package/enums/tooltips-prop.enum.d.ts +31 -0
- package/esm2022/constants/breadcrumbs.const.mjs +2 -0
- package/esm2022/constants/query-design-custom-class.constant.mjs +2 -0
- package/esm2022/core/directive/authorize.directive.mjs +37 -0
- package/esm2022/core/interfaces/filters.api.interface.mjs +12 -0
- package/esm2022/core/models/menu-elements-dto.mjs +2 -0
- package/esm2022/core/services/local-storage.service.mjs +55 -0
- package/esm2022/core/services/user-management.service.mjs +97 -0
- package/esm2022/core/site/services/support-util.service.mjs +55 -0
- package/esm2022/core/token/client-injection-token.mjs +3 -0
- package/esm2022/core/utils/sql-to-filter-datatype-converter.mjs +37 -0
- package/esm2022/core/utils/type-checks.utils.mjs +34 -0
- package/esm2022/core/utils/uuid-generator.utils.mjs +8 -0
- package/esm2022/directives/let.directive.mjs +48 -0
- package/esm2022/directives/remove-cancel-button.directive.mjs +23 -0
- package/esm2022/enums/action-types.enum.mjs +18 -0
- package/esm2022/enums/sort-direction.enum.mjs +6 -0
- package/esm2022/enums/source-types.enum.mjs +6 -0
- package/esm2022/enums/tooltips-prop.enum.mjs +33 -0
- package/esm2022/modules/dynamic-cards/directives/flip-card.directive.mjs +44 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/card-list-container/card-list-container.component.mjs +20 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card/dynamic-card.component.mjs +19 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card-back/dynamic-card-back.component.mjs +16 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card-footer/dynamic-card-footer.component.mjs +21 -0
- package/esm2022/modules/dynamic-cards/dynamic-card/dynamic-card-front/dynamic-card-front.component.mjs +18 -0
- package/esm2022/modules/dynamic-cards/dynamic-cards.module.mjs +60 -0
- package/esm2022/modules/dynamic-cards/interface/card-list.interface.mjs +2 -0
- package/esm2022/modules/dynamic-cards/interface/card.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-button-control/dynamic-form-button-control.component.mjs +27 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-checkbox-control/dynamic-form-checkbox-control.component.mjs +19 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-control-label/dynamic-form-control-label.component.mjs +14 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-counter-control/dynamic-form-counter-control.component.mjs +43 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-datepicker-control/dynamic-form-datepicker-control.component.mjs +48 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field-control.component.mjs +96 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field.matcher.mjs +9 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-input-control/dynamic-form-input-control.component.mjs +22 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ng-select-control/dynamic-form-ng-select-control.component.mjs +27 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/dynamic-form-radio-group.component.mjs +31 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/enum/radio-group-orientation.enum.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-select-control/dynamic-form-select-control.component.mjs +29 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-switch-control/dynamic-form-switch-control.component.mjs +18 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-text-area-control/dynamic-form-text-area-control.component.mjs +22 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control-list/dynamic-form-ui-control-list.component.mjs +74 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control.component.mjs +30 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/base-form-actions.component.mjs +47 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/enums/base-form-action-types.mjs +7 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/interfaces/base-form-action.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/dynamic-form-ui.component.mjs +64 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-array/dynamic-form-ui-array.component.mjs +26 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-group/dynamic-form-group.component.mjs +26 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout-item/dynamic-form-layout-item.component.mjs +65 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout.component.mjs +33 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/enums/form-field-css-class.enum.mjs +9 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/components/errors-block/errors-block.component.mjs +25 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/dynamic-form-ui.module.mjs +117 -0
- package/esm2022/modules/dynamic-forms/dynamic-form-UI/providers/ui-form-control-map.provider.mjs +47 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-array.component.mjs +16 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-component.mjs +82 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control-container.component.mjs +189 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control.component.mjs +112 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-layout.component.mjs +34 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/constants/form-errors.constant.mjs +34 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/constants/matchers/matchers.constant.mjs +27 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/constants/reg-exp-error.constant.mjs +10 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-id.directive.mjs +24 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-list.directive.mjs +26 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-template.directive.mjs +29 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/dynamic-form-core.module.mjs +49 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/autocomplete.enum.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/control-types.enum.mjs +22 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/form-control-events.enum.mjs +8 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/form-hooks.enum.mjs +7 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/input-types.enum.mjs +20 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/matcher-types.enum.mjs +10 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/template-directive-alignment.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/enums/textarea-wrap.enum.mjs +6 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/index.mjs +39 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control-event.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/dynamic-form/dynamic-form-model.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-control-layout.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/matchers/form-control-matcher.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-array/form-array-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-button-control/button-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-check-control/check-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-relation.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-date-control/date-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-group/form-group-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-input-control/form-input-control-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-number-control/form-number-control-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option/form-option-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option-control/form-option-control-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/button-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/checkbox-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/datepicker-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/input-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/radio-group-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/select-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/switch-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/textarea-control-model-config.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-value-control/form-value-control.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/interfaces/validators/validators.interface.mjs +2 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-array/dynamic-form-array.model.mjs +51 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-array/form-array-group/dynamic-form-array-group.model.mjs +15 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-button-control/dynamic-button-control.model.mjs +19 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-check-control/dynamic-check-control.model.mjs +19 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model.mjs +23 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-date-control/dynamic-date-control.model.mjs +11 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-group/dynamic-form-group.model.mjs +37 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-input-control/dynamic-input-control.model.mjs +20 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-number-control/dynamic-number-control.model.mjs +15 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-option/form-option.model.mjs +15 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-option-control/dynamic-option-control.model.mjs +52 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-static-control/static-control.model.mjs +7 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/button/dynamic-button.model.mjs +13 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox.model.mjs +12 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/counter/dynamic-counter.model.mjs +11 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/datepicker/dynamic-datepicker.model.mjs +18 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/input/dynamic-input.model.mjs +13 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/radio/dynamic-radio-group.model.mjs +13 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/select/dynamic-select.model.mjs +18 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/switch/dynamic-switch.model.mjs +11 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/textarea/dynamic-textarea.model.mjs +14 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/form-value-control/form-value-control.model.mjs +25 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/enums/FormLayoutControlTypes.enum.mjs +7 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-control.model.mjs +8 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/models/ng-select-control/dynamic-ng-select.model.mjs +19 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.pipe.mjs +38 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/pipes/get-error-from-key-value.pipe.mjs +20 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-component.service.mjs +37 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-layout.service.mjs +35 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-validation.service.mjs +35 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form.service.mjs +239 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/tokens/dynamic-matchers.token.mjs +3 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/tokens/form-control-map.token.mjs +3 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms-core/tokens/validators.token.mjs +3 -0
- package/esm2022/modules/dynamic-forms/dynamic-forms.module.mjs +32 -0
- package/esm2022/modules/material/mat-cdk-module.mjs +17 -0
- package/esm2022/modules/material/material.module.mjs +201 -0
- package/esm2022/modules/query-builder/components/query-design/query-design.component.mjs +103 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/components/alphanumeric-control/alphanumeric-control.component.mjs +150 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/components/boolean-control/boolean-control.component.mjs +102 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/components/date-control/date-control.component.mjs +76 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/components/numeric-control/numeric-control.component.mjs +168 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/constants/operators-sets.mjs +108 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/helpers/condition-operators.mapper.mjs +8 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/helpers/control-values-mapper.mjs +78 -0
- package/esm2022/modules/query-builder/components/query-design/rule-line/rule-line.component.mjs +234 -0
- package/esm2022/modules/query-builder/directive/auto-complete-position.directive.mjs +30 -0
- package/esm2022/modules/query-builder/interfaces/query-builder.interface.mjs +39 -0
- package/esm2022/modules/query-builder/interfaces/select-custom-css-object.mjs +2 -0
- package/esm2022/modules/query-builder/query-builder.module.mjs +66 -0
- package/esm2022/modules/ui-kit/components/accordion/accordion-content/accordion-content.component.mjs +16 -0
- package/esm2022/modules/ui-kit/components/accordion/accordion-trigger.directive.mjs +30 -0
- package/esm2022/modules/ui-kit/components/accordion/accordion.directive.mjs +19 -0
- package/esm2022/modules/ui-kit/components/banner/banner.component.mjs +53 -0
- package/esm2022/modules/ui-kit/components/banner/banner.service.mjs +64 -0
- package/esm2022/modules/ui-kit/components/breadcrumbs/breadcrumbs.component.mjs +25 -0
- package/esm2022/modules/ui-kit/components/breadcrumbs/model/breadCrumbItem.mjs +2 -0
- package/esm2022/modules/ui-kit/components/breadcrumbs/service/breadcrumb.service.mjs +63 -0
- package/esm2022/modules/ui-kit/components/breadcrumbs/utils/crumb-service.enum.mjs +8 -0
- package/esm2022/modules/ui-kit/components/buttons/button-control/button-control.component.mjs +46 -0
- package/esm2022/modules/ui-kit/components/buttons/buttons-list/buttons-list.component.mjs +11 -0
- package/esm2022/modules/ui-kit/components/buttons/circle-button/circle-button.component.mjs +37 -0
- package/esm2022/modules/ui-kit/components/card-container/card-container.component.mjs +11 -0
- package/esm2022/modules/ui-kit/components/common-breadcrumbs/common-breadcrumbs.component.mjs +30 -0
- package/esm2022/modules/ui-kit/components/common-breadcrumbs/interface/breadcrumb.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/components/common-breadcrumbs/service/breadcrumb.service.mjs +65 -0
- package/esm2022/modules/ui-kit/components/data-pagination/data-pagination.component.mjs +155 -0
- package/esm2022/modules/ui-kit/components/data-table/api-classes/filter-manager.mjs +50 -0
- package/esm2022/modules/ui-kit/components/data-table/api-classes/grid-api.mjs +73 -0
- package/esm2022/modules/ui-kit/components/data-table/constants/change-type.enum.mjs +8 -0
- package/esm2022/modules/ui-kit/components/data-table/constants/column-id.mjs +13 -0
- package/esm2022/modules/ui-kit/components/data-table/constants/row.mjs +4 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component.mjs +93 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col/data-col.component.mjs +17 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-action-button/data-col-action-button.component.mjs +27 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-boolean/data-col-boolean.component.mjs +20 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-multivalue/data-col-multivalue.component.mjs +18 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-nested/data-col-nested.component.mjs +31 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-reference/data-col-reference.component.mjs +96 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col/data-col-view/data-col-view.component.mjs +75 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-disp/data-col-disp.component.mjs +248 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/data-col-filter.component.mjs +323 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-between-value.mjs +68 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-contains-value.mjs +25 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-in-value.mjs +64 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-slider-value.mjs +42 -0
- package/esm2022/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/filter-value-executor-provider.mjs +42 -0
- package/esm2022/modules/ui-kit/components/data-table/data-column-filter/data-column-filter.component.mjs +69 -0
- package/esm2022/modules/ui-kit/components/data-table/data-row/data-row.component.mjs +251 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table/data-table.component.mjs +1534 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-actions/data-table-actions.component.mjs +153 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-body/data-table-body.component.mjs +205 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-check-rows/data-table-check-rows.component.mjs +61 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-row-actions/const/data-table-actions.enum.mjs +8 -0
- package/esm2022/modules/ui-kit/components/data-table/data-table-row-actions/data-table-row-actions.component.mjs +120 -0
- package/esm2022/modules/ui-kit/components/data-table/enums/col-filter-types.mjs +17 -0
- package/esm2022/modules/ui-kit/components/data-table/header-row/header-row.component.mjs +14 -0
- package/esm2022/modules/ui-kit/components/data-table/interfaces/data-table-component.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/components/data-table/services/data-table-context.service.mjs +26 -0
- package/esm2022/modules/ui-kit/components/data-table-wrap/data-table-wrap.component.mjs +38 -0
- package/esm2022/modules/ui-kit/components/excel-table/excel-table.component.mjs +164 -0
- package/esm2022/modules/ui-kit/components/excel-table/interface/excel-table.interface.mjs +44 -0
- package/esm2022/modules/ui-kit/components/form/base-form-control/base-form-control.component.mjs +41 -0
- package/esm2022/modules/ui-kit/components/form/checkbox-form-control/checkbox-form-control.component.mjs +21 -0
- package/esm2022/modules/ui-kit/components/form/counter-form-control/counter-form-control.component.mjs +66 -0
- package/esm2022/modules/ui-kit/components/form/form-container/form-container.component.mjs +133 -0
- package/esm2022/modules/ui-kit/components/form/form-group-container/form-group-container.component.mjs +11 -0
- package/esm2022/modules/ui-kit/components/form/input-form-control/input-form-control.component.mjs +20 -0
- package/esm2022/modules/ui-kit/components/form/multivalue-form-control/custom-input/custom-input.component.mjs +35 -0
- package/esm2022/modules/ui-kit/components/form/multivalue-form-control/custom-input/old-new-value.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/components/form/multivalue-form-control/multivalue-form-control.component.mjs +66 -0
- package/esm2022/modules/ui-kit/components/form/radio-form-control/radio-form-control.component.mjs +19 -0
- package/esm2022/modules/ui-kit/components/form/select-form-control/select-form-control.component.mjs +78 -0
- package/esm2022/modules/ui-kit/components/form/selection-group-container/selection-group-container.component.mjs +18 -0
- package/esm2022/modules/ui-kit/components/form/textarea-form-control/textarea-form-control.component.mjs +20 -0
- package/esm2022/modules/ui-kit/components/icon/expand-collapse-icon/expand-collapse-icon.component.mjs +26 -0
- package/esm2022/modules/ui-kit/components/icon/icon/icon.component.mjs +35 -0
- package/esm2022/modules/ui-kit/components/icon/text-icon/text-icon.component.mjs +22 -0
- package/esm2022/modules/ui-kit/components/layouts/form-layout/form-layout.component.mjs +56 -0
- package/esm2022/modules/ui-kit/components/layouts/primary-layout/primary-layout.component.mjs +11 -0
- package/esm2022/modules/ui-kit/components/loader/loader.component.mjs +27 -0
- package/esm2022/modules/ui-kit/components/mat-actions-button/mat-actions-button.mjs +34 -0
- package/esm2022/modules/ui-kit/components/modals/common-confirm-modal/common-confirm-modal.component.mjs +53 -0
- package/esm2022/modules/ui-kit/components/modals/confirm-modal/confirm-modal.component.mjs +37 -0
- package/esm2022/modules/ui-kit/components/modals/delete-modal/delete-modal.component.mjs +41 -0
- package/esm2022/modules/ui-kit/components/modals/enums/confirmation-modal.enum.mjs +13 -0
- package/esm2022/modules/ui-kit/components/snackbar/snackbar.component.mjs +21 -0
- package/esm2022/modules/ui-kit/components/tabs/constants/index.mjs +2 -0
- package/esm2022/modules/ui-kit/components/tabs/interfaces/index.mjs +2 -0
- package/esm2022/modules/ui-kit/components/tabs/tab-group/tab-group.component.mjs +77 -0
- package/esm2022/modules/ui-kit/components/tabs/tab.directive.mjs +60 -0
- package/esm2022/modules/ui-kit/components/tree-view/tree-view.component.mjs +374 -0
- package/esm2022/modules/ui-kit/constants/data-table.constants.mjs +7 -0
- package/esm2022/modules/ui-kit/constants/snackbar.constants.mjs +4 -0
- package/esm2022/modules/ui-kit/enums/coderefs-prop.enum.mjs +26 -0
- package/esm2022/modules/ui-kit/enums/color-schemes.enum.mjs +13 -0
- package/esm2022/modules/ui-kit/enums/column-disable-mode.enum.mjs +7 -0
- package/esm2022/modules/ui-kit/enums/column-types.enum.mjs +10 -0
- package/esm2022/modules/ui-kit/enums/component-sizes.enum.mjs +6 -0
- package/esm2022/modules/ui-kit/enums/form-item-type.mjs +7 -0
- package/esm2022/modules/ui-kit/enums/form-types.enum.mjs +7 -0
- package/esm2022/modules/ui-kit/enums/form-url-params.enum.mjs +6 -0
- package/esm2022/modules/ui-kit/enums/icons.enum.mjs +24 -0
- package/esm2022/modules/ui-kit/enums/position.enum.mjs +6 -0
- package/esm2022/modules/ui-kit/enums/select-option.enum.mjs +10 -0
- package/esm2022/modules/ui-kit/enums/snackbar.enum.mjs +8 -0
- package/esm2022/modules/ui-kit/enums/url-param-action.enum.mjs +6 -0
- package/esm2022/modules/ui-kit/enums/viewType.enum.mjs +7 -0
- package/esm2022/modules/ui-kit/interfaces/api.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/confirm-modal-data.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/constants.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/data-table.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/form.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/generic.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/list-item.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/mat-action-buttons.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/row-selection-info.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/select.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/snackbar.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/interfaces/tree-view.interface.mjs +2 -0
- package/esm2022/modules/ui-kit/pipes/column-filter.pipe.mjs +21 -0
- package/esm2022/modules/ui-kit/pipes/filter-by-prop.pipe.mjs +27 -0
- package/esm2022/modules/ui-kit/pipes/first-letter-text.pipe.mjs +17 -0
- package/esm2022/modules/ui-kit/pipes/keys.pipe.mjs +17 -0
- package/esm2022/modules/ui-kit/pipes/paginate.pipe.mjs +29 -0
- package/esm2022/modules/ui-kit/pipes/search.pipe.mjs +50 -0
- package/esm2022/modules/ui-kit/services/data-table.service.mjs +202 -0
- package/esm2022/modules/ui-kit/services/form.service.mjs +91 -0
- package/esm2022/modules/ui-kit/services/mappers/form-data-table-mapper.service.mjs +19 -0
- package/esm2022/modules/ui-kit/services/snackbar.service.mjs +43 -0
- package/esm2022/modules/ui-kit/services/url.service.mjs +17 -0
- package/esm2022/modules/ui-kit/types/basic.type.mjs +2 -0
- package/esm2022/modules/ui-kit/types/function.type.mjs +2 -0
- package/esm2022/modules/ui-kit/types/select.type.mjs +2 -0
- package/esm2022/modules/ui-kit/ui-kit.module.mjs +370 -0
- package/esm2022/public-api.mjs +85 -0
- package/esm2022/shared-pipes/pipes/search.pipe.mjs +48 -0
- package/esm2022/shared-ui-test-1.mjs +5 -0
- package/esm2022/shared.module.mjs +57 -0
- package/fesm2022/shared-ui-test-1.mjs +10516 -0
- package/fesm2022/shared-ui-test-1.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/modules/dynamic-cards/directives/flip-card.directive.d.ts +15 -0
- package/modules/dynamic-cards/dynamic-card/card-list-container/card-list-container.component.d.ts +10 -0
- package/modules/dynamic-cards/dynamic-card/dynamic-card/dynamic-card.component.d.ts +7 -0
- package/modules/dynamic-cards/dynamic-card/dynamic-card-back/dynamic-card-back.component.d.ts +7 -0
- package/modules/dynamic-cards/dynamic-card/dynamic-card-footer/dynamic-card-footer.component.d.ts +10 -0
- package/modules/dynamic-cards/dynamic-card/dynamic-card-front/dynamic-card-front.component.d.ts +8 -0
- package/modules/dynamic-cards/dynamic-cards.module.d.ts +18 -0
- package/modules/dynamic-cards/interface/card-list.interface.d.ts +9 -0
- package/modules/dynamic-cards/interface/card.interface.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-button-control/dynamic-form-button-control.component.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-checkbox-control/dynamic-form-checkbox-control.component.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-control-label/dynamic-form-control-label.component.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-counter-control/dynamic-form-counter-control.component.d.ts +13 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-datepicker-control/dynamic-form-datepicker-control.component.d.ts +13 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field-control.component.d.ts +34 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-field-control/dynamic-form-field.matcher.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-input-control/dynamic-form-input-control.component.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ng-select-control/dynamic-form-ng-select-control.component.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/dynamic-form-radio-group.component.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-radio-group/enum/radio-group-orientation.enum.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-select-control/dynamic-form-select-control.component.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-switch-control/dynamic-form-switch-control.component.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-text-area-control/dynamic-form-text-area-control.component.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control-list/dynamic-form-ui-control-list.component.d.ts +26 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/controls/dynamic-form-ui-control/dynamic-form-ui-control.component.d.ts +14 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/base-form-actions.component.d.ts +19 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/enums/base-form-action-types.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/base-form-actions/interfaces/base-form-action.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form/dynamic-form-ui.component.d.ts +26 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-array/dynamic-form-ui-array.component.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-group/dynamic-form-group.component.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout-item/dynamic-form-layout-item.component.d.ts +23 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/dynamic-form-layout/dynamic-form-layout.component.d.ts +21 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/enums/form-field-css-class.enum.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-form-UI/components/errors-block/errors-block.component.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-form-UI/dynamic-form-ui.module.d.ts +32 -0
- package/modules/dynamic-forms/dynamic-form-UI/providers/ui-form-control-map.provider.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-array.component.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-component.d.ts +26 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control-container.component.d.ts +57 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-control.component.d.ts +42 -0
- package/modules/dynamic-forms/dynamic-forms-core/components/dynamic-form-layout.component.d.ts +28 -0
- package/modules/dynamic-forms/dynamic-forms-core/constants/form-errors.constant.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/constants/matchers/matchers.constant.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/constants/reg-exp-error.constant.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-id.directive.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-list.directive.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/directives/dynamic-template.directive.d.ts +13 -0
- package/modules/dynamic-forms/dynamic-forms-core/dynamic-form-core.module.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/autocomplete.enum.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/control-types.enum.d.ts +20 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/form-control-events.enum.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/form-hooks.enum.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/input-types.enum.d.ts +18 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/matcher-types.enum.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/template-directive-alignment.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/enums/textarea-wrap.enum.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/index.d.ts +38 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control-event.interface.d.ts +15 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/components/form-control/dynamic-form-control.interface.d.ts +19 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/dynamic-form/dynamic-form-model.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-control-layout.interface.d.ts +3 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/layout/form-layout.interface.d.ts +2 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/matchers/form-control-matcher.interface.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-array/form-array-model-config.interface.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-button-control/button-control-model-config.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-check-control/check-control-model-config.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-model-config.interface.d.ts +16 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-control/form-control-relation.interface.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-date-control/date-control-model-config.interface.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-group/form-group-model-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-input-control/form-input-control-config.interface.d.ts +14 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-number-control/form-number-control-config.interface.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option/form-option-config.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-option-control/form-option-control-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/button-control-model-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/checkbox-control-model-config.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/datepicker-control-model-config.interface.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/input-control-model-config.interface.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/radio-group-model-config.interface.d.ts +4 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/select-control-model-config.interface.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/switch-control-model-config.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-ui-models/textarea-control-model-config.interface.d.ts +6 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/models/form-value-control/form-value-control.interface.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/interfaces/validators/validators.interface.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-array/dynamic-form-array.model.d.ts +19 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-array/form-array-group/dynamic-form-array-group.model.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-button-control/dynamic-button-control.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-check-control/dynamic-check-control.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-control/dynamic-form-control.model.d.ts +24 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-date-control/dynamic-date-control.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-group/dynamic-form-group.model.d.ts +17 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-input-control/dynamic-input-control.model.d.ts +16 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-number-control/dynamic-number-control.model.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-option/form-option.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-option-control/dynamic-option-control.model.d.ts +19 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-static-control/static-control.model.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/button/dynamic-button.model.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/checkbox/dynamic-checkbox.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/counter/dynamic-counter.model.d.ts +7 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/datepicker/dynamic-datepicker.model.d.ts +15 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/input/dynamic-input.model.d.ts +10 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/radio/dynamic-radio-group.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/select/dynamic-select.model.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/switch/dynamic-switch.model.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-ui-models/textarea/dynamic-textarea.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/form-value-control/form-value-control.model.d.ts +17 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/layout/enums/FormLayoutControlTypes.enum.d.ts +5 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/layout/layout-control.model.d.ts +9 -0
- package/modules/dynamic-forms/dynamic-forms-core/models/ng-select-control/dynamic-ng-select.model.d.ts +12 -0
- package/modules/dynamic-forms/dynamic-forms-core/pipes/find-dynamic-control-model/find-dynamic-control-model.pipe.d.ts +20 -0
- package/modules/dynamic-forms/dynamic-forms-core/pipes/get-error-from-key-value.pipe.d.ts +8 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-component.service.d.ts +14 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-layout.service.d.ts +14 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form-validation.service.d.ts +11 -0
- package/modules/dynamic-forms/dynamic-forms-core/service/dynamic-form.service.d.ts +30 -0
- package/modules/dynamic-forms/dynamic-forms-core/tokens/dynamic-matchers.token.d.ts +3 -0
- package/modules/dynamic-forms/dynamic-forms-core/tokens/form-control-map.token.d.ts +3 -0
- package/modules/dynamic-forms/dynamic-forms-core/tokens/validators.token.d.ts +3 -0
- package/modules/dynamic-forms/dynamic-forms.module.d.ts +9 -0
- package/modules/material/mat-cdk-module.d.ts +7 -0
- package/modules/material/material.module.d.ts +50 -0
- package/modules/query-builder/components/query-design/query-design.component.d.ts +35 -0
- package/modules/query-builder/components/query-design/rule-line/components/alphanumeric-control/alphanumeric-control.component.d.ts +46 -0
- package/modules/query-builder/components/query-design/rule-line/components/boolean-control/boolean-control.component.d.ts +29 -0
- package/modules/query-builder/components/query-design/rule-line/components/date-control/date-control.component.d.ts +21 -0
- package/modules/query-builder/components/query-design/rule-line/components/numeric-control/numeric-control.component.d.ts +46 -0
- package/modules/query-builder/components/query-design/rule-line/constants/operators-sets.d.ts +12 -0
- package/modules/query-builder/components/query-design/rule-line/helpers/condition-operators.mapper.d.ts +6 -0
- package/modules/query-builder/components/query-design/rule-line/helpers/control-values-mapper.d.ts +7 -0
- package/modules/query-builder/components/query-design/rule-line/rule-line.component.d.ts +64 -0
- package/modules/query-builder/directive/auto-complete-position.directive.d.ts +11 -0
- package/modules/query-builder/interfaces/query-builder.interface.d.ts +61 -0
- package/modules/query-builder/interfaces/select-custom-css-object.d.ts +7 -0
- package/modules/query-builder/query-builder.module.d.ts +18 -0
- package/modules/ui-kit/components/accordion/accordion-content/accordion-content.component.d.ts +8 -0
- package/modules/ui-kit/components/accordion/accordion-trigger.directive.d.ts +10 -0
- package/modules/ui-kit/components/accordion/accordion.directive.d.ts +7 -0
- package/modules/ui-kit/components/banner/banner.component.d.ts +14 -0
- package/modules/ui-kit/components/banner/banner.service.d.ts +27 -0
- package/modules/ui-kit/components/breadcrumbs/breadcrumbs.component.d.ts +15 -0
- package/modules/ui-kit/components/breadcrumbs/model/breadCrumbItem.d.ts +4 -0
- package/modules/ui-kit/components/breadcrumbs/service/breadcrumb.service.d.ts +19 -0
- package/modules/ui-kit/components/breadcrumbs/utils/crumb-service.enum.d.ts +6 -0
- package/modules/ui-kit/components/buttons/button-control/button-control.component.d.ts +16 -0
- package/modules/ui-kit/components/buttons/buttons-list/buttons-list.component.d.ts +5 -0
- package/modules/ui-kit/components/buttons/circle-button/circle-button.component.d.ts +20 -0
- package/modules/ui-kit/components/card-container/card-container.component.d.ts +5 -0
- package/modules/ui-kit/components/common-breadcrumbs/common-breadcrumbs.component.d.ts +20 -0
- package/modules/ui-kit/components/common-breadcrumbs/interface/breadcrumb.interface.d.ts +6 -0
- package/modules/ui-kit/components/common-breadcrumbs/service/breadcrumb.service.d.ts +21 -0
- package/modules/ui-kit/components/data-pagination/data-pagination.component.d.ts +54 -0
- package/modules/ui-kit/components/data-table/api-classes/filter-manager.d.ts +13 -0
- package/modules/ui-kit/components/data-table/api-classes/grid-api.d.ts +31 -0
- package/modules/ui-kit/components/data-table/constants/change-type.enum.d.ts +6 -0
- package/modules/ui-kit/components/data-table/constants/column-id.d.ts +2 -0
- package/modules/ui-kit/components/data-table/constants/row.d.ts +2 -0
- package/modules/ui-kit/components/data-table/data-col/base-data-col/base-data-col.component.d.ts +28 -0
- package/modules/ui-kit/components/data-table/data-col/data-col/data-col.component.d.ts +7 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-action-button/data-col-action-button.component.d.ts +12 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-boolean/data-col-boolean.component.d.ts +8 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-multivalue/data-col-multivalue.component.d.ts +8 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-nested/data-col-nested.component.d.ts +13 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-reference/data-col-reference.component.d.ts +29 -0
- package/modules/ui-kit/components/data-table/data-col/data-col-view/data-col-view.component.d.ts +27 -0
- package/modules/ui-kit/components/data-table/data-col-disp/data-col-disp.component.d.ts +60 -0
- package/modules/ui-kit/components/data-table/data-col-filter/data-col-filter.component.d.ts +85 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-between-value.d.ts +12 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-contains-value.d.ts +9 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-in-value.d.ts +13 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/col-filter-slider-value.d.ts +10 -0
- package/modules/ui-kit/components/data-table/data-col-filter/filter-value-helpers/filter-value-executor-provider.d.ts +11 -0
- package/modules/ui-kit/components/data-table/data-column-filter/data-column-filter.component.d.ts +29 -0
- package/modules/ui-kit/components/data-table/data-row/data-row.component.d.ts +81 -0
- package/modules/ui-kit/components/data-table/data-table/data-table.component.d.ts +302 -0
- package/modules/ui-kit/components/data-table/data-table-actions/data-table-actions.component.d.ts +53 -0
- package/modules/ui-kit/components/data-table/data-table-body/data-table-body.component.d.ts +75 -0
- package/modules/ui-kit/components/data-table/data-table-check-rows/data-table-check-rows.component.d.ts +25 -0
- package/modules/ui-kit/components/data-table/data-table-row-actions/const/data-table-actions.enum.d.ts +6 -0
- package/modules/ui-kit/components/data-table/data-table-row-actions/data-table-row-actions.component.d.ts +42 -0
- package/modules/ui-kit/components/data-table/enums/col-filter-types.d.ts +14 -0
- package/modules/ui-kit/components/data-table/header-row/header-row.component.d.ts +7 -0
- package/modules/ui-kit/components/data-table/interfaces/data-table-component.interface.d.ts +28 -0
- package/modules/ui-kit/components/data-table/interfaces/filter-value-executor.interface.d.ts +12 -0
- package/modules/ui-kit/components/data-table/services/data-table-context.service.d.ts +12 -0
- package/modules/ui-kit/components/data-table-wrap/data-table-wrap.component.d.ts +13 -0
- package/modules/ui-kit/components/excel-table/excel-table.component.d.ts +28 -0
- package/modules/ui-kit/components/excel-table/interface/excel-table.interface.d.ts +29 -0
- package/modules/ui-kit/components/form/base-form-control/base-form-control.component.d.ts +17 -0
- package/modules/ui-kit/components/form/checkbox-form-control/checkbox-form-control.component.d.ts +8 -0
- package/modules/ui-kit/components/form/counter-form-control/counter-form-control.component.d.ts +21 -0
- package/modules/ui-kit/components/form/form-container/form-container.component.d.ts +45 -0
- package/modules/ui-kit/components/form/form-group-container/form-group-container.component.d.ts +5 -0
- package/modules/ui-kit/components/form/input-form-control/input-form-control.component.d.ts +8 -0
- package/modules/ui-kit/components/form/multivalue-form-control/custom-input/custom-input.component.d.ts +15 -0
- package/modules/ui-kit/components/form/multivalue-form-control/custom-input/old-new-value.interface.d.ts +4 -0
- package/modules/ui-kit/components/form/multivalue-form-control/multivalue-form-control.component.d.ts +26 -0
- package/modules/ui-kit/components/form/radio-form-control/radio-form-control.component.d.ts +8 -0
- package/modules/ui-kit/components/form/select-form-control/select-form-control.component.d.ts +32 -0
- package/modules/ui-kit/components/form/selection-group-container/selection-group-container.component.d.ts +7 -0
- package/modules/ui-kit/components/form/textarea-form-control/textarea-form-control.component.d.ts +8 -0
- package/modules/ui-kit/components/icon/expand-collapse-icon/expand-collapse-icon.component.d.ts +11 -0
- package/modules/ui-kit/components/icon/icon/icon.component.d.ts +14 -0
- package/modules/ui-kit/components/icon/text-icon/text-icon.component.d.ts +10 -0
- package/modules/ui-kit/components/layouts/form-layout/form-layout.component.d.ts +29 -0
- package/modules/ui-kit/components/layouts/primary-layout/primary-layout.component.d.ts +5 -0
- package/modules/ui-kit/components/loader/loader.component.d.ts +12 -0
- package/modules/ui-kit/components/mat-actions-button/mat-actions-button.d.ts +14 -0
- package/modules/ui-kit/components/modals/common-confirm-modal/common-confirm-modal.component.d.ts +17 -0
- package/modules/ui-kit/components/modals/confirm-modal/confirm-modal.component.d.ts +13 -0
- package/modules/ui-kit/components/modals/delete-modal/delete-modal.component.d.ts +17 -0
- package/modules/ui-kit/components/modals/enums/confirmation-modal.enum.d.ts +11 -0
- package/modules/ui-kit/components/snackbar/snackbar.component.d.ts +10 -0
- package/modules/ui-kit/components/tabs/constants/index.d.ts +1 -0
- package/modules/ui-kit/components/tabs/interfaces/index.d.ts +3 -0
- package/modules/ui-kit/components/tabs/tab-group/tab-group.component.d.ts +25 -0
- package/modules/ui-kit/components/tabs/tab.directive.d.ts +16 -0
- package/modules/ui-kit/components/tree-view/tree-view.component.d.ts +67 -0
- package/modules/ui-kit/constants/data-table.constants.d.ts +6 -0
- package/modules/ui-kit/constants/snackbar.constants.d.ts +3 -0
- package/modules/ui-kit/enums/coderefs-prop.enum.d.ts +24 -0
- package/modules/ui-kit/enums/color-schemes.enum.d.ts +11 -0
- package/modules/ui-kit/enums/column-disable-mode.enum.d.ts +5 -0
- package/modules/ui-kit/enums/column-types.enum.d.ts +8 -0
- package/modules/ui-kit/enums/component-sizes.enum.d.ts +4 -0
- package/modules/ui-kit/enums/form-item-type.d.ts +5 -0
- package/modules/ui-kit/enums/form-types.enum.d.ts +5 -0
- package/modules/ui-kit/enums/form-url-params.enum.d.ts +4 -0
- package/modules/ui-kit/enums/icons.enum.d.ts +22 -0
- package/modules/ui-kit/enums/position.enum.d.ts +4 -0
- package/modules/ui-kit/enums/select-option.enum.d.ts +8 -0
- package/modules/ui-kit/enums/snackbar.enum.d.ts +6 -0
- package/modules/ui-kit/enums/url-param-action.enum.d.ts +4 -0
- package/modules/ui-kit/enums/viewType.enum.d.ts +5 -0
- package/modules/ui-kit/interfaces/api.interface.d.ts +45 -0
- package/modules/ui-kit/interfaces/confirm-modal-data.interface.d.ts +7 -0
- package/modules/ui-kit/interfaces/constants.interface.d.ts +4 -0
- package/modules/ui-kit/interfaces/data-table.interface.d.ts +253 -0
- package/modules/ui-kit/interfaces/form.interface.d.ts +21 -0
- package/modules/ui-kit/interfaces/generic.interface.d.ts +7 -0
- package/modules/ui-kit/interfaces/list-item.interface.d.ts +5 -0
- package/modules/ui-kit/interfaces/mat-action-buttons.interface.d.ts +14 -0
- package/modules/ui-kit/interfaces/row-selection-info.interface.d.ts +7 -0
- package/modules/ui-kit/interfaces/select.interface.d.ts +8 -0
- package/modules/ui-kit/interfaces/snackbar.interface.d.ts +4 -0
- package/modules/ui-kit/interfaces/tree-view.interface.d.ts +49 -0
- package/modules/ui-kit/pipes/column-filter.pipe.d.ts +12 -0
- package/modules/ui-kit/pipes/filter-by-prop.pipe.d.ts +9 -0
- package/modules/ui-kit/pipes/first-letter-text.pipe.d.ts +7 -0
- package/modules/ui-kit/pipes/keys.pipe.d.ts +7 -0
- package/modules/ui-kit/pipes/paginate.pipe.d.ts +12 -0
- package/modules/ui-kit/pipes/search.pipe.d.ts +16 -0
- package/modules/ui-kit/services/data-table.service.d.ts +37 -0
- package/modules/ui-kit/services/form.service.d.ts +26 -0
- package/modules/ui-kit/services/mappers/form-data-table-mapper.service.d.ts +8 -0
- package/modules/ui-kit/services/snackbar.service.d.ts +15 -0
- package/modules/ui-kit/services/url.service.d.ts +7 -0
- package/modules/ui-kit/types/basic.type.d.ts +2 -0
- package/modules/ui-kit/types/function.type.d.ts +20 -0
- package/modules/ui-kit/types/select.type.d.ts +2 -0
- package/modules/ui-kit/ui-kit.module.d.ts +79 -0
- package/package.json +45 -0
- package/public-api.d.ts +84 -0
- package/shared-pipes/pipes/search.pipe.d.ts +15 -0
- package/shared.module.d.ts +13 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
2
|
+
import * as jsps from 'jspreadsheet-ce';
|
|
3
|
+
export interface IExcelColumn {
|
|
4
|
+
type: string;
|
|
5
|
+
width: string | number;
|
|
6
|
+
name: string;
|
|
7
|
+
title: string;
|
|
8
|
+
validateFn?: Function;
|
|
9
|
+
isUniqueValue?: boolean;
|
|
10
|
+
isValueRequired?: boolean;
|
|
11
|
+
isCaseInSensitive?: boolean;
|
|
12
|
+
validateOtherColumnsOnUpdate?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export declare class ExcelColumn {
|
|
15
|
+
static mapFrom<TColumn extends jsps.BaseColumn>(column: TColumn): IExcelColumn;
|
|
16
|
+
static mapFromJson(jsonValue: Record<string, jsps.CellValue>): IExcelColumn;
|
|
17
|
+
static mapTo<TColumn extends jsps.BaseColumn>(column: IExcelColumn): TColumn;
|
|
18
|
+
}
|
|
19
|
+
export interface IExcelCellChangeEvent {
|
|
20
|
+
cellValue: string;
|
|
21
|
+
rowData: IExcelData;
|
|
22
|
+
dataSets: IExcelData[];
|
|
23
|
+
column: IExcelColumn;
|
|
24
|
+
}
|
|
25
|
+
export interface IExcelData extends IKeyValue {
|
|
26
|
+
}
|
|
27
|
+
export declare class ExcelData {
|
|
28
|
+
static mapTo(excelData: IExcelData[]): jsps.CellValue[][];
|
|
29
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { IDataTableColumn } from '../../../interfaces/data-table.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BaseFormControlComponent implements OnChanges {
|
|
6
|
+
control: FormControl;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
label: string;
|
|
9
|
+
id: string;
|
|
10
|
+
name: string;
|
|
11
|
+
col: IDataTableColumn;
|
|
12
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
13
|
+
private isControlValueNotDefined;
|
|
14
|
+
private setEmptyControl;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseFormControlComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseFormControlComponent, "app-base-form-control", never, { "control": { "alias": "control"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "col": { "alias": "col"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
package/modules/ui-kit/components/form/checkbox-form-control/checkbox-form-control.component.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseFormControlComponent } from '../base-form-control/base-form-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CheckboxFormControlComponent extends BaseFormControlComponent {
|
|
4
|
+
isDisabled: boolean;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxFormControlComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxFormControlComponent, "app-checkbox-form-control", never, { "isDisabled": { "alias": "isDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
package/modules/ui-kit/components/form/counter-form-control/counter-form-control.component.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CounterFormControlComponent implements ControlValueAccessor, OnInit {
|
|
5
|
+
max?: number;
|
|
6
|
+
min?: number;
|
|
7
|
+
startValue: number;
|
|
8
|
+
onChangeFn: (val: number) => void;
|
|
9
|
+
onTouchFn: () => void;
|
|
10
|
+
isDisabled: boolean;
|
|
11
|
+
get value(): number;
|
|
12
|
+
set value(val: number);
|
|
13
|
+
private _value;
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
registerOnChange(onChangeFn: (val: number) => void): void;
|
|
16
|
+
registerOnTouched(onTouchFn: any): void;
|
|
17
|
+
writeValue(val: number): void;
|
|
18
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CounterFormControlComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CounterFormControlComponent, "app-counter-form-control", never, { "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "startValue": { "alias": "startValue"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ColorSchemes } from '../../../enums/color-schemes.enum';
|
|
3
|
+
import { FormTypes } from '../../../enums/form-types.enum';
|
|
4
|
+
import { IInitFormEvent, UnionFormItem } from '../../../interfaces/form.interface';
|
|
5
|
+
import { IKeyValue } from '../../../interfaces/generic.interface';
|
|
6
|
+
import { FormService } from '../../../services/form.service';
|
|
7
|
+
import { GetItemFn, PostItemFn, PutItemFn } from '../../../types/function.type';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class FormContainerComponent implements OnInit {
|
|
10
|
+
private changeDetectorRef;
|
|
11
|
+
private formService;
|
|
12
|
+
formFields: UnionFormItem[];
|
|
13
|
+
getItemFn: GetItemFn;
|
|
14
|
+
postItemFn: PostItemFn;
|
|
15
|
+
putItemFn: PutItemFn;
|
|
16
|
+
id: string;
|
|
17
|
+
formType: FormTypes;
|
|
18
|
+
initForm: EventEmitter<IInitFormEvent>;
|
|
19
|
+
submitData: EventEmitter<IKeyValue>;
|
|
20
|
+
clickCancel: EventEmitter<undefined>;
|
|
21
|
+
readonly COLOR_SCHEMES: typeof ColorSchemes;
|
|
22
|
+
isLoading: boolean;
|
|
23
|
+
isSubmitting: boolean;
|
|
24
|
+
private formGroup;
|
|
25
|
+
private formInitData;
|
|
26
|
+
constructor(changeDetectorRef: ChangeDetectorRef, formService: FormService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
init(): void;
|
|
29
|
+
onClickCancel(): void;
|
|
30
|
+
setFormData(): void;
|
|
31
|
+
onClickSubmit(): void;
|
|
32
|
+
private submitForm;
|
|
33
|
+
private handleError;
|
|
34
|
+
private get formValue();
|
|
35
|
+
get isView(): boolean;
|
|
36
|
+
private get isEdit();
|
|
37
|
+
private get isItemExisted();
|
|
38
|
+
private get submitFn();
|
|
39
|
+
private emitInitForm;
|
|
40
|
+
private disableForm;
|
|
41
|
+
private enableForm;
|
|
42
|
+
private createForm;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormContainerComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormContainerComponent, "app-form-container", never, { "formFields": { "alias": "formFields"; "required": false; }; "getItemFn": { "alias": "getItemFn"; "required": false; }; "postItemFn": { "alias": "postItemFn"; "required": false; }; "putItemFn": { "alias": "putItemFn"; "required": false; }; "id": { "alias": "id"; "required": false; }; "formType": { "alias": "formType"; "required": false; }; }, { "initForm": "initForm"; "submitData": "submitData"; "clickCancel": "clickCancel"; }, never, ["*"], false, never>;
|
|
45
|
+
}
|
package/modules/ui-kit/components/form/form-group-container/form-group-container.component.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FormGroupContainerComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupContainerComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormGroupContainerComponent, "app-form-group-container", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseFormControlComponent } from '../base-form-control/base-form-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class InputFormControlComponent extends BaseFormControlComponent {
|
|
4
|
+
constructor();
|
|
5
|
+
disableInput(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputFormControlComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputFormControlComponent, "app-input-form-control", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CustomInputComponent implements OnInit {
|
|
5
|
+
private fb;
|
|
6
|
+
randomInput: any;
|
|
7
|
+
form: FormGroup;
|
|
8
|
+
readonly controlName = "ctl";
|
|
9
|
+
private valueChangeEvent;
|
|
10
|
+
constructor(fb: FormBuilder);
|
|
11
|
+
updateInput(value: any): void;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomInputComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomInputComponent, "app-custom-input", never, { "randomInput": { "alias": "randomInput"; "required": false; }; }, { "valueChangeEvent": "valueChangeEvent"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
3
|
+
import { BaseFormControlComponent } from 'idp-apps-shared-ui/modules/ui-kit/components/form/base-form-control/base-form-control.component';
|
|
4
|
+
import { IDataTableRow, IDataTableColumn } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/data-table.interface';
|
|
5
|
+
import { SelectOptionEnum } from '../../../enums/select-option.enum';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class MultivalueFormControlComponent extends BaseFormControlComponent implements OnInit {
|
|
8
|
+
private formBuilder;
|
|
9
|
+
viewOnly: boolean;
|
|
10
|
+
row: IDataTableRow;
|
|
11
|
+
viewColumn: IDataTableColumn;
|
|
12
|
+
SELECT_OPTIONS_ENUM: typeof SelectOptionEnum;
|
|
13
|
+
values: any[];
|
|
14
|
+
contentEditable: any;
|
|
15
|
+
content: any;
|
|
16
|
+
addFormGroup: FormGroup;
|
|
17
|
+
constructor(formBuilder: FormBuilder);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
clearValue(value: any): void;
|
|
20
|
+
editValue(value: any): void;
|
|
21
|
+
addInput(): void;
|
|
22
|
+
addToValueArray(value: any): void;
|
|
23
|
+
changedValue(value: any): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultivalueFormControlComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultivalueFormControlComponent, "app-multivalue-form-control", never, { "viewOnly": { "alias": "viewOnly"; "required": false; }; "row": { "alias": "row"; "required": false; }; "viewColumn": { "alias": "viewColumn"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseFormControlComponent } from '../base-form-control/base-form-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RadioFormControlComponent extends BaseFormControlComponent {
|
|
4
|
+
value: string;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioFormControlComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioFormControlComponent, "app-radio-form-control", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges, AfterViewInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { NgSelectComponent } from '@ng-select/ng-select';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { IKeyValue } from '../../../interfaces/generic.interface';
|
|
5
|
+
import { ISelectOption } from '../../../interfaces/select.interface';
|
|
6
|
+
import { BaseFormControlComponent } from '../base-form-control/base-form-control.component';
|
|
7
|
+
import { INgSelectCustomCssObject } from 'idp-apps-shared-ui/modules/query-builder/interfaces/select-custom-css-object';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class SelectFormControlComponent extends BaseFormControlComponent implements OnChanges, AfterViewInit {
|
|
10
|
+
ngSelect: NgSelectComponent;
|
|
11
|
+
ngSelectCustomCssObject: INgSelectCustomCssObject;
|
|
12
|
+
isMultiple: boolean;
|
|
13
|
+
isDisabled: boolean;
|
|
14
|
+
isAddEnabled: boolean;
|
|
15
|
+
searchable: boolean;
|
|
16
|
+
optionTemplate: TemplateRef<any>;
|
|
17
|
+
getOptionsFn: Observable<ISelectOption[]>;
|
|
18
|
+
shouldCloseOnSelect: boolean;
|
|
19
|
+
valueChanged: EventEmitter<IKeyValue>;
|
|
20
|
+
onFirstValueSet: EventEmitter<IKeyValue>;
|
|
21
|
+
readonly BIND_LABEL: string;
|
|
22
|
+
readonly BIND_VALUE: string;
|
|
23
|
+
viewOptions: ISelectOption[];
|
|
24
|
+
constructor();
|
|
25
|
+
set options(value: ISelectOption[]);
|
|
26
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
27
|
+
ngAfterViewInit(): void;
|
|
28
|
+
onValueChanged(value: IKeyValue): void;
|
|
29
|
+
protected fireFirstValueSet(value: IKeyValue): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectFormControlComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectFormControlComponent, "app-select-form-control", never, { "ngSelectCustomCssObject": { "alias": "ngSelectCustomCssObject"; "required": false; }; "isMultiple": { "alias": "isMultiple"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isAddEnabled": { "alias": "isAddEnabled"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "optionTemplate": { "alias": "optionTemplate"; "required": false; }; "getOptionsFn": { "alias": "getOptionsFn"; "required": false; }; "shouldCloseOnSelect": { "alias": "shouldCloseOnSelect"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "valueChanged": "valueChanged"; "onFirstValueSet": "onFirstValueSet"; }, never, never, false, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class SelectionGroupContainerComponent {
|
|
3
|
+
title: string;
|
|
4
|
+
isVertical: boolean;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectionGroupContainerComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectionGroupContainerComponent, "app-selection-group-container", never, { "title": { "alias": "title"; "required": false; }; "isVertical": { "alias": "isVertical"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
7
|
+
}
|
package/modules/ui-kit/components/form/textarea-form-control/textarea-form-control.component.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseFormControlComponent } from '../base-form-control/base-form-control.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TextareaFormControlComponent extends BaseFormControlComponent {
|
|
4
|
+
rows: number;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaFormControlComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaFormControlComponent, "app-textarea-form-control", never, { "rows": { "alias": "rows"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
package/modules/ui-kit/components/icon/expand-collapse-icon/expand-collapse-icon.component.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Icons } from '../../../enums/icons.enum';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ExpandCollapseIconComponent {
|
|
5
|
+
isExpanded: boolean;
|
|
6
|
+
clickIcon: EventEmitter<boolean>;
|
|
7
|
+
readonly ICONS: typeof Icons;
|
|
8
|
+
onClickIcon(shouldExpand: any): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandCollapseIconComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandCollapseIconComponent, "app-expand-collapse-icon", never, { "isExpanded": { "alias": "isExpanded"; "required": false; }; }, { "clickIcon": "clickIcon"; }, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Icons } from '../../../enums/icons.enum';
|
|
2
|
+
import { ColorSchemes } from '../../../enums/color-schemes.enum';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class IconComponent {
|
|
5
|
+
name: Icons;
|
|
6
|
+
title: string;
|
|
7
|
+
colorScheme: ColorSchemes;
|
|
8
|
+
hasStyleOnHover: boolean;
|
|
9
|
+
isDisabled: boolean;
|
|
10
|
+
get iconClass(): string;
|
|
11
|
+
private get disabledClassName();
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "app-icon", never, { "name": { "alias": "name"; "required": false; }; "title": { "alias": "title"; "required": false; }; "colorScheme": { "alias": "colorScheme"; "required": false; }; "hasStyleOnHover": { "alias": "hasStyleOnHover"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Icons } from '../../../enums/icons.enum';
|
|
2
|
+
import { ColorSchemes } from '../../../enums/color-schemes.enum';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TextIconComponent {
|
|
5
|
+
iconName: Icons;
|
|
6
|
+
colorScheme: ColorSchemes;
|
|
7
|
+
text: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextIconComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextIconComponent, "app-text-icon", never, { "iconName": { "alias": "iconName"; "required": false; }; "colorScheme": { "alias": "colorScheme"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { FormService } from '../../../services/form.service';
|
|
4
|
+
import { IBaseFormItem, IInitFormEvent } from '../../../interfaces/form.interface';
|
|
5
|
+
import { GetItemFn, PostItemFn, PutItemFn } from '../../../types/function.type';
|
|
6
|
+
import { FormTypes } from 'idp-apps-shared-ui/modules/ui-kit/enums/form-types.enum';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class FormLayoutComponent {
|
|
9
|
+
private activatedRoute;
|
|
10
|
+
private formService;
|
|
11
|
+
private router;
|
|
12
|
+
entityName: string;
|
|
13
|
+
formFields: IBaseFormItem[];
|
|
14
|
+
getItemFn: GetItemFn;
|
|
15
|
+
postItemFn: PostItemFn;
|
|
16
|
+
putItemFn: PutItemFn;
|
|
17
|
+
initForm: EventEmitter<IInitFormEvent>;
|
|
18
|
+
id: string;
|
|
19
|
+
formType: FormTypes;
|
|
20
|
+
constructor(activatedRoute: ActivatedRoute, formService: FormService, router: Router);
|
|
21
|
+
get formHeader(): string;
|
|
22
|
+
onInitForm(eventData: IInitFormEvent): void;
|
|
23
|
+
onClickCancel(): void;
|
|
24
|
+
onSubmitData(): void;
|
|
25
|
+
private navigateBack;
|
|
26
|
+
private setDataFromRoute;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormLayoutComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormLayoutComponent, "app-form-layout", never, { "entityName": { "alias": "entityName"; "required": false; }; "formFields": { "alias": "formFields"; "required": false; }; "getItemFn": { "alias": "getItemFn"; "required": false; }; "postItemFn": { "alias": "postItemFn"; "required": false; }; "putItemFn": { "alias": "putItemFn"; "required": false; }; }, { "initForm": "initForm"; }, never, ["form-layout-controls", "form-layout-footer"], false, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PrimaryLayoutComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrimaryLayoutComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PrimaryLayoutComponent, "app-primary-layout", never, {}, {}, never, ["primary-layout-header", "primary-layout-body"], false, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IKeyValue } from '../../interfaces/generic.interface';
|
|
2
|
+
import { ColorSchemes } from '../../enums/color-schemes.enum';
|
|
3
|
+
import { ComponentSizes } from '../../enums/component-sizes.enum';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LoaderComponent {
|
|
6
|
+
colorScheme: ColorSchemes;
|
|
7
|
+
componentSize: ComponentSizes;
|
|
8
|
+
get colorSchemeClass(): string;
|
|
9
|
+
get componentSizeNgClass(): IKeyValue;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "app-loader", never, { "colorScheme": { "alias": "colorScheme"; "required": false; }; "componentSize": { "alias": "componentSize"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
3
|
+
import { IActionsButton } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/mat-action-buttons.interface';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MatActionsButtonComponent {
|
|
6
|
+
actionButtons: IActionsButton[];
|
|
7
|
+
matMenuOpend: EventEmitter<IKeyValue>;
|
|
8
|
+
private clearSubs$;
|
|
9
|
+
constructor();
|
|
10
|
+
onMatMenuOpend(): void;
|
|
11
|
+
ActionClickHandler(action: IActionsButton): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatActionsButtonComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatActionsButtonComponent, "app-mat-actions-button", never, { "actionButtons": { "alias": "actionButtons"; "required": false; }; }, { "matMenuOpend": "matMenuOpend"; }, never, never, false, never>;
|
|
14
|
+
}
|
package/modules/ui-kit/components/modals/common-confirm-modal/common-confirm-modal.component.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CommonConfirmModalComponent {
|
|
4
|
+
private matDialogRef;
|
|
5
|
+
header: string;
|
|
6
|
+
body: string;
|
|
7
|
+
yesButtonText: string;
|
|
8
|
+
noButtonText: string;
|
|
9
|
+
constructor(matDialogRef: MatDialogRef<CommonConfirmModalComponent>, data: any);
|
|
10
|
+
onClickConfirm(): void;
|
|
11
|
+
closeDialog(): void;
|
|
12
|
+
private setDefaultPannelClass;
|
|
13
|
+
private setDefaultPosition;
|
|
14
|
+
private setDefaultData;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommonConfirmModalComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommonConfirmModalComponent, "app-add-business-rules-confirm-modal", never, {}, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ConfirmModalComponent {
|
|
4
|
+
private matDialogRef;
|
|
5
|
+
header: string;
|
|
6
|
+
body: string;
|
|
7
|
+
action: string;
|
|
8
|
+
constructor(matDialogRef: MatDialogRef<ConfirmModalComponent>, data: any);
|
|
9
|
+
onClickConfirm(): void;
|
|
10
|
+
closeDialog(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmModalComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmModalComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
+
import { IConfirmModalInterface } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/confirm-modal-data.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DeleteModalComponent {
|
|
5
|
+
private matDialogRef;
|
|
6
|
+
private data;
|
|
7
|
+
message: string[];
|
|
8
|
+
closeButtonText: string;
|
|
9
|
+
hideCloseButton: boolean;
|
|
10
|
+
okButtonText: string;
|
|
11
|
+
title: string;
|
|
12
|
+
constructor(matDialogRef: MatDialogRef<DeleteModalComponent>, data: IConfirmModalInterface);
|
|
13
|
+
onClickDelete(): void;
|
|
14
|
+
closeDialog(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DeleteModalComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DeleteModalComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare enum ConfirmationModalProps {
|
|
2
|
+
DEFAULT_HEADER = "Confirmation Required!",
|
|
3
|
+
DEFAULT_BODY = "Do you want to proceed this action?",
|
|
4
|
+
DEFAULT_YES_BTN_TEXT = "Yes",
|
|
5
|
+
DEFAULT_NO_BTN_TEXT = "No",
|
|
6
|
+
DEFAULT_OK_BTN_TEXT = "OK",
|
|
7
|
+
DEFAULT_CANCEL_BTN_TEXT = "Cancel",
|
|
8
|
+
DEFAULT_DELETE_BTN_TEXT = "Delete",
|
|
9
|
+
DEFAULT_POSITION_TOP = "7%",
|
|
10
|
+
DEFAULT_PANNEL_CLASS = "columnshowhide-panel"
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { MatSnackBarRef } from '@angular/material/snack-bar';
|
|
2
|
+
import { DataSnackbar } from '../../../../modules/ui-kit/interfaces/snackbar.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SnackbarComponent {
|
|
5
|
+
snackBarRef: MatSnackBarRef<SnackbarComponent>;
|
|
6
|
+
data: DataSnackbar;
|
|
7
|
+
constructor(snackBarRef: MatSnackBarRef<SnackbarComponent>, data: DataSnackbar);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SnackbarComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SnackbarComponent, "app-snackbar", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const VERTICAL_ORIENTATION_TABLIST_CLASSES: string;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { QueryList, ChangeDetectorRef, AfterContentInit } from '@angular/core';
|
|
2
|
+
import { IClassMap } from '../interfaces';
|
|
3
|
+
import { TabDirective } from '../tab.directive';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TabGroupComponent implements AfterContentInit {
|
|
6
|
+
private changeDetectorRef;
|
|
7
|
+
defaultTab: TabDirective;
|
|
8
|
+
tabs?: QueryList<TabDirective>;
|
|
9
|
+
set customListClasses(map: IClassMap);
|
|
10
|
+
set activeTab(tab: TabDirective);
|
|
11
|
+
get activeTab(): TabDirective;
|
|
12
|
+
get vertical(): boolean;
|
|
13
|
+
set vertical(value: boolean);
|
|
14
|
+
get classMap(): IClassMap;
|
|
15
|
+
set classMap(map: IClassMap);
|
|
16
|
+
get tabsHaveItem(): boolean;
|
|
17
|
+
private _classMap;
|
|
18
|
+
private _activeTab;
|
|
19
|
+
private _vertical;
|
|
20
|
+
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
21
|
+
ngAfterContentInit(): void;
|
|
22
|
+
onTabClick(activeTab: TabDirective): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabGroupComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent, "app-tab-group", never, { "defaultTab": { "alias": "defaultTab"; "required": false; }; "customListClasses": { "alias": "customListClasses"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, ["tabs"], ["*"], false, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TabDirective {
|
|
4
|
+
id: string;
|
|
5
|
+
get hidden(): boolean | null;
|
|
6
|
+
get active(): boolean;
|
|
7
|
+
set active(active: boolean);
|
|
8
|
+
heading: string;
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
selectTab: EventEmitter<TabDirective>;
|
|
11
|
+
deselect: EventEmitter<TabDirective>;
|
|
12
|
+
private _active;
|
|
13
|
+
canChange(active: boolean): boolean;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabDirective, "[appTab]", ["tabDirective"], { "id": { "alias": "id"; "required": false; }; "active": { "alias": "active"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "selectTab": "selectTab"; "deselect": "deselect"; }, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { OnInit, ElementRef, EventEmitter, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { IDataTreeViewSchema, IDataTreeViewTable, ItreeConfig } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/tree-view.interface';
|
|
3
|
+
import { IKeyValue } from 'idp-apps-shared-ui/modules/ui-kit/interfaces/generic.interface';
|
|
4
|
+
import { SnackbarService } from 'idp-apps-shared-ui/modules/ui-kit/services/snackbar.service';
|
|
5
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TreeViewComponent implements OnInit {
|
|
8
|
+
private cd;
|
|
9
|
+
private snacbarService;
|
|
10
|
+
private matDialog;
|
|
11
|
+
menuList: IDataTreeViewSchema[];
|
|
12
|
+
isSearchEnable: boolean;
|
|
13
|
+
isServerSideSearch: boolean;
|
|
14
|
+
isHeaderSelectionEnable: boolean;
|
|
15
|
+
config: ItreeConfig;
|
|
16
|
+
isExpandCollapse: boolean;
|
|
17
|
+
width: string;
|
|
18
|
+
isOnlyViewPermission: boolean;
|
|
19
|
+
isSource: boolean;
|
|
20
|
+
isPKTableRequired: boolean;
|
|
21
|
+
isAllowedMultipleTable: boolean;
|
|
22
|
+
isAllowedMultiplePKColumn: boolean;
|
|
23
|
+
schemaClick: EventEmitter<IKeyValue>;
|
|
24
|
+
objectClick: EventEmitter<IKeyValue>;
|
|
25
|
+
serverSideSearchKeyUp: EventEmitter<IKeyValue>;
|
|
26
|
+
selectedTable: IDataTreeViewSchema[];
|
|
27
|
+
parsedData: IDataTreeViewSchema[];
|
|
28
|
+
searchInput: ElementRef;
|
|
29
|
+
childFlag: boolean;
|
|
30
|
+
isLoading: boolean;
|
|
31
|
+
treeViewConfig: ItreeConfig;
|
|
32
|
+
private keyupSubscription;
|
|
33
|
+
constructor(cd: ChangeDetectorRef, snacbarService: SnackbarService, matDialog: MatDialog);
|
|
34
|
+
ngOnInit(): void;
|
|
35
|
+
detectChanges(): void;
|
|
36
|
+
selectSchema(schemaObj: any): void;
|
|
37
|
+
selectObject(schemaName: any, tableObj: IDataTreeViewTable, selectChildrenOnSuccess?: any, $event?: any): void;
|
|
38
|
+
setupSearch(): void;
|
|
39
|
+
getSelectedItems(): any[];
|
|
40
|
+
getSelectedTables(tables: any[]): any[];
|
|
41
|
+
getSelected(items: any[]): any[];
|
|
42
|
+
searchTable(items: any[], term: string): any[];
|
|
43
|
+
search(items: any[], term: string): any[];
|
|
44
|
+
serverSideSearch(term: string): void;
|
|
45
|
+
contains(text: string, term: string): boolean;
|
|
46
|
+
expandAll(): void;
|
|
47
|
+
someChecked(node: any): boolean;
|
|
48
|
+
allChecked(node: any): boolean;
|
|
49
|
+
makeMePK(column: any, childNode: any): void;
|
|
50
|
+
makeMePKTable(table: any): void;
|
|
51
|
+
makeMeUK(column: any, childNode: any): void;
|
|
52
|
+
makeHeader(column: any, childNode: any): void;
|
|
53
|
+
makeSubHeader(column: any, childNode: any): void;
|
|
54
|
+
checkAttribute($event: any, node: any, parent: any, isPrimaryFunc?: boolean): void;
|
|
55
|
+
collapseAll(): void;
|
|
56
|
+
private isHeaderAlreadyExists;
|
|
57
|
+
private isSubHeaderAlreadyExists;
|
|
58
|
+
private expand;
|
|
59
|
+
private collapse;
|
|
60
|
+
checkEvent($event: any, node: any): void;
|
|
61
|
+
private unselectNodeAndChildren;
|
|
62
|
+
private warnTableSelected;
|
|
63
|
+
private isAnotherTableSelected;
|
|
64
|
+
private checkNodePK;
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewComponent, never>;
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewComponent, "app-tree-view", never, { "menuList": { "alias": "menuList"; "required": false; }; "isSearchEnable": { "alias": "isSearchEnable"; "required": false; }; "isServerSideSearch": { "alias": "isServerSideSearch"; "required": false; }; "isHeaderSelectionEnable": { "alias": "isHeaderSelectionEnable"; "required": false; }; "config": { "alias": "config"; "required": false; }; "isExpandCollapse": { "alias": "isExpandCollapse"; "required": false; }; "width": { "alias": "width"; "required": false; }; "isOnlyViewPermission": { "alias": "isOnlyViewPermission"; "required": false; }; "isSource": { "alias": "isSource"; "required": false; }; "isPKTableRequired": { "alias": "isPKTableRequired"; "required": false; }; "isAllowedMultipleTable": { "alias": "isAllowedMultipleTable"; "required": false; }; "isAllowedMultiplePKColumn": { "alias": "isAllowedMultiplePKColumn"; "required": false; }; }, { "schemaClick": "schemaClick"; "objectClick": "objectClick"; "serverSideSearchKeyUp": "serverSideSearchKeyUp"; }, never, never, false, never>;
|
|
67
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare enum CodeRefsProp {
|
|
2
|
+
ID = "sysKey",
|
|
3
|
+
BUSINESSKEY = "businessKey",
|
|
4
|
+
LOOKUPTYPESYSKEY = "lookupTypeSysKey",
|
|
5
|
+
LOOKUPTYPEBUSINESSKEY = "lookupTypeBusinessKey",
|
|
6
|
+
SOURCESYSCODE = "sourceSysCode",
|
|
7
|
+
COUNTRYCODE = "countryCode",
|
|
8
|
+
CODE = "code",
|
|
9
|
+
VALUE = "value",
|
|
10
|
+
ALTCODE = "altCode",
|
|
11
|
+
ALTVALUE = "altValue",
|
|
12
|
+
LEVELNUMBER = "levelNumber",
|
|
13
|
+
LEVELNAME = "levelName",
|
|
14
|
+
CREATEDBY = "createdBy",
|
|
15
|
+
UPDATEDBY = "updatedBy",
|
|
16
|
+
CREATEDON = "createdOn",
|
|
17
|
+
UPDATEDON = "updatedOn",
|
|
18
|
+
CANONICALSYSKEY = "canonicalSysKey",
|
|
19
|
+
CANONICALBUSINESSKEY = "canonicalBusinessKey",
|
|
20
|
+
PARENTTYPESYSKEY = "parentTypeSysKey",
|
|
21
|
+
PARENTTYPEBUSINESSKEY = "parentTypeBusinessKey",
|
|
22
|
+
PARENTSYSKEY = "parentSysKey",
|
|
23
|
+
NUMBEROFVALUES = "numberOfValues"
|
|
24
|
+
}
|