nuxeo-development-framework 5.2.3 → 5.2.4-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/bundles/nuxeo-development-framework.umd.js +7109 -711
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +48 -34
- package/esm2015/lib/components/dynamic-search/dynamic-search.module.js +5 -5
- package/esm2015/lib/components/ndf-datepicker/adapters/hijri-adapter.js +203 -0
- package/esm2015/lib/components/ndf-datepicker/adapters/index.js +3 -0
- package/esm2015/lib/components/ndf-datepicker/adapters/moment-adapter.js +186 -0
- package/esm2015/lib/components/ndf-datepicker/base/base-value-accessor.js +92 -0
- package/esm2015/lib/components/ndf-datepicker/base/index.js +2 -0
- package/esm2015/lib/components/ndf-datepicker/components/base-datepicker.js +37 -0
- package/esm2015/lib/components/ndf-datepicker/components/index.js +4 -0
- package/esm2015/lib/components/ndf-datepicker/components/input-date.component.js +110 -0
- package/esm2015/lib/components/ndf-datepicker/components/input-range-date.component.js +124 -0
- package/esm2015/lib/components/ndf-datepicker/constants/date-locale-keys.js +7 -0
- package/esm2015/lib/components/ndf-datepicker/constants/date-picker.js +2 -0
- package/esm2015/lib/components/ndf-datepicker/constants/date-type.js +5 -0
- package/esm2015/lib/components/ndf-datepicker/constants/formats.js +24 -0
- package/esm2015/lib/components/ndf-datepicker/constants/hijri-dates-names.js +117 -0
- package/esm2015/lib/components/ndf-datepicker/constants/index.js +6 -0
- package/esm2015/lib/components/ndf-datepicker/containers/datepicker-container.js +37 -0
- package/esm2015/lib/components/ndf-datepicker/containers/index.js +3 -0
- package/esm2015/lib/components/ndf-datepicker/containers/ndf-gregorian-datepicker.component.js +105 -0
- package/esm2015/lib/components/ndf-datepicker/containers/ndf-hijri-datepicker.component.js +112 -0
- package/esm2015/lib/components/ndf-datepicker/index.js +10 -0
- package/esm2015/lib/components/ndf-datepicker/models/data-types.js +2 -0
- package/esm2015/lib/components/ndf-datepicker/models/index.js +3 -0
- package/esm2015/lib/components/ndf-datepicker/models/value-object.js +2 -0
- package/esm2015/lib/components/ndf-datepicker/ndf-datepicker.component.js +198 -0
- package/esm2015/lib/components/ndf-datepicker/ndf-datepicker.module.js +66 -0
- package/esm2015/lib/components/ndf-datepicker/services/calendar.service.js +130 -0
- package/esm2015/lib/components/ndf-datepicker/services/index.js +3 -0
- package/esm2015/lib/components/ndf-datepicker/services/localize-state.service.js +41 -0
- package/esm2015/lib/components/no-data-found/index.js +3 -0
- package/esm2015/lib/components/no-data-found/no-data-found.component.js +33 -0
- package/esm2015/lib/components/no-data-found/no-data.module.js +19 -0
- package/esm2015/lib/components/notifications/models/common.js +1 -1
- package/esm2015/lib/components/{dynamic-table → tables/dynamic-table}/directives/empty-state.directive.js +1 -1
- package/esm2015/lib/components/tables/dynamic-table/dynamic-table/dynamic-table.component.js +353 -0
- package/esm2015/lib/components/tables/dynamic-table/dynamic-table.module.js +51 -0
- package/esm2015/lib/components/tables/dynamic-table/index.js +2 -0
- package/esm2015/lib/components/tables/dynamic-table/public-api.js +5 -0
- package/esm2015/lib/components/tables/dynamic-table/services/dynamic-table.service.js +16 -0
- package/esm2015/lib/components/{dynamic-table → tables}/index.js +1 -1
- package/esm2015/lib/components/tables/ndf-table/components/index.js +6 -0
- package/esm2015/lib/components/tables/ndf-table/components/mode-toggler/mode-toggler.component.js +45 -0
- package/esm2015/lib/components/tables/ndf-table/components/sorting-list/sorting-list.component.js +42 -0
- package/esm2015/lib/components/tables/ndf-table/components/table-columns-toggler/table-columns-toggler.component.js +123 -0
- package/esm2015/lib/components/tables/ndf-table/components/table-export/table-export.component.js +41 -0
- package/esm2015/lib/components/tables/ndf-table/components/text-search/text-search.component.js +74 -0
- package/esm2015/lib/components/tables/ndf-table/constants/index.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/constants/sizes.js +19 -0
- package/esm2015/lib/components/tables/ndf-table/containers/index.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.js +404 -0
- package/esm2015/lib/components/tables/ndf-table/directives/actions.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/directives/filter-custom.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/directives/fluid-height.directive.js +112 -0
- package/esm2015/lib/components/tables/ndf-table/directives/index.js +5 -0
- package/esm2015/lib/components/tables/ndf-table/directives/search.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-aggregation-field.component.js +91 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-checkbox-radio.component.js +66 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-custom-field.component.js +46 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-predicate-field.component.js +43 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/base-value-accessor.component.js +34 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/base/index.js +6 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/field-header.component.js +36 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.js +97 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete.service.js +43 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-collapse-control/filter-collapse-control.component.js +44 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-date-range/filter-date-range.component.js +89 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-empty-message.component.js +30 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-option-text/filter-option-text.component.js +33 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-options-sort/filter-options-sort.component.js +34 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-search-input/filter-search-input.component.js +36 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/html-dialog/html-dialog.component.js +34 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/__parts/index.js +10 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-autocomplete/aggregation-autocomplete.component.js +109 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-checkbox/aggregation-checkbox.component.js +65 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-custom/aggregation-custom.component.js +66 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-date-list/aggregation-date-list.component.js +219 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-radio/aggregation-radio.component.js +68 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-select/aggregation-select.component.js +83 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/aggregation-switch/aggregation-switch.component.js +71 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/index.js +11 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/predicate-date-input/predicate-date-input.component.js +146 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/components/predicate-text-input/predicate-text-input.component.js +144 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/common.js +4 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/field.js +6 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/index.js +5 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/operators.js +18 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/sort.js +23 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/constants/type.js +26 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/aggregation-field/aggregation-field.component.js +78 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/base-field.js +62 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/custom-field/custom-field.component.js +73 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/base-filters-panel.js +55 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/filters-panel.component.js +122 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/index.js +5 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/containers/predicate-field/predicate-field.component.js +71 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user-switch.component.js +55 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user.service.js +17 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/user-types.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/custom-components/index.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/autocomplete-template.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/checkbox-template.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/custom-template.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/date-template.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/dropdown-label-template.directive.js +53 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/dropdown-template.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/index.js +9 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/radio-template.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/directives/switch-template.directive.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/filters-panel.module.js +205 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/index.js +12 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/aggregation-field-config.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/aggregation-response.model.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/base-field-config.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/common.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/custom-field-config.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-config.model.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/autocomplete-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/checkbox-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/common-utils.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-fields-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/date-list-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/date-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/dropdown-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/index.js +12 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/input-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/radio-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/field-options/switch-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/filter-option.model.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/form-query-request.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/index.js +13 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/predicate-field-config.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/types-helper.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/models/value-object.model.js +12 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/autocomplete-filter.pipe.js +27 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/filter.pipe.js +27 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/hash-translate.pipe.js +52 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/index.js +9 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/localized-label.pipe.js +28 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/roles-filters.pipe.js +31 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/sanitizer.pipe.js +34 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/sort.pipe.js +40 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/pipes/tooltip.pipe.js +69 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/services/aggregation-field.service.js +105 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/services/dynamic-component-loader.service.js +59 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/services/filters-query.service.js +117 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/services/index.js +5 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/services/ndf-transform.service.js +80 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/index.js +3 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/nxql.js +47 -0
- package/esm2015/lib/components/tables/ndf-table/filters-panel/utility/object.js +42 -0
- package/esm2015/lib/components/tables/ndf-table/index.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/models/index.js +8 -0
- package/esm2015/lib/components/tables/ndf-table/models/payload-types.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/models/search.config.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/models/table-column.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/models/table-config.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/models/table-mode.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/models/table-options.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/models/types.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/ndf-table.module.js +104 -0
- package/esm2015/lib/components/tables/ndf-table/public-api.js +8 -0
- package/esm2015/lib/components/tables/ndf-table/services/filters-mapper.service.js +60 -0
- package/esm2015/lib/components/tables/ndf-table/services/index.js +3 -0
- package/esm2015/lib/components/tables/ndf-table/services/ndf-table.service.js +27 -0
- package/esm2015/lib/components/tables/ndf-table/utils/index.js +2 -0
- package/esm2015/lib/components/tables/ndf-table/utils/nxql-query.js +52 -0
- package/esm2015/lib/components/tables/public-api.js +4 -0
- package/esm2015/lib/components/tables/table/dynamic-column/dynamic-column.component.js +68 -0
- package/esm2015/lib/components/tables/table/dynamic-component.js +59 -0
- package/esm2015/lib/components/tables/table/index.js +2 -0
- package/esm2015/lib/components/{table → tables/table}/page-sizes-list/page-sizes-list.component.js +1 -1
- package/esm2015/lib/components/tables/table/public-api.js +6 -0
- package/esm2015/lib/components/{table → tables/table}/table/table.component.js +10 -10
- package/esm2015/lib/components/tables/table/table.module.js +69 -0
- package/esm2015/lib/core/services/index.js +3 -0
- package/esm2015/lib/shared/models/index.js +2 -1
- package/esm2015/lib/shared/models/types-helper.js +2 -0
- package/esm2015/public-api.js +4 -7
- package/fesm2015/nuxeo-development-framework.js +6330 -551
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-search/dynamic-search/dynamic-search.component.d.ts +1 -1
- package/lib/components/dynamic-search/dynamic-search.module.d.ts +1 -1
- package/lib/components/ndf-datepicker/adapters/hijri-adapter.d.ts +35 -0
- package/lib/components/ndf-datepicker/adapters/index.d.ts +2 -0
- package/lib/components/ndf-datepicker/adapters/moment-adapter.d.ts +50 -0
- package/lib/components/ndf-datepicker/base/base-value-accessor.d.ts +38 -0
- package/lib/components/ndf-datepicker/base/index.d.ts +1 -0
- package/lib/components/ndf-datepicker/components/base-datepicker.d.ts +13 -0
- package/lib/components/ndf-datepicker/components/index.d.ts +3 -0
- package/lib/components/ndf-datepicker/components/input-date.component.d.ts +19 -0
- package/lib/components/ndf-datepicker/components/input-range-date.component.d.ts +19 -0
- package/lib/components/ndf-datepicker/constants/date-locale-keys.d.ts +6 -0
- package/lib/components/ndf-datepicker/constants/date-picker.d.ts +1 -0
- package/lib/components/ndf-datepicker/constants/date-type.d.ts +4 -0
- package/lib/components/ndf-datepicker/constants/formats.d.ts +5 -0
- package/lib/components/ndf-datepicker/constants/hijri-dates-names.d.ts +12 -0
- package/lib/components/ndf-datepicker/constants/index.d.ts +5 -0
- package/lib/components/ndf-datepicker/containers/datepicker-container.d.ts +15 -0
- package/lib/components/ndf-datepicker/containers/index.d.ts +2 -0
- package/lib/components/ndf-datepicker/containers/ndf-gregorian-datepicker.component.d.ts +10 -0
- package/lib/components/ndf-datepicker/containers/ndf-hijri-datepicker.component.d.ts +10 -0
- package/lib/components/ndf-datepicker/index.d.ts +9 -0
- package/lib/components/ndf-datepicker/models/data-types.d.ts +11 -0
- package/lib/components/ndf-datepicker/models/index.d.ts +2 -0
- package/lib/components/ndf-datepicker/models/value-object.d.ts +8 -0
- package/lib/components/ndf-datepicker/ndf-datepicker.component.d.ts +42 -0
- package/lib/components/ndf-datepicker/ndf-datepicker.module.d.ts +20 -0
- package/lib/components/ndf-datepicker/services/calendar.service.d.ts +33 -0
- package/lib/components/ndf-datepicker/services/index.d.ts +2 -0
- package/lib/components/ndf-datepicker/services/localize-state.service.d.ts +34 -0
- package/lib/components/no-data-found/index.d.ts +2 -0
- package/lib/components/no-data-found/no-data-found.component.d.ts +8 -0
- package/lib/components/no-data-found/no-data.module.d.ts +9 -0
- package/lib/components/notifications/models/common.d.ts +0 -1
- package/lib/components/{dynamic-table → tables/dynamic-table}/dynamic-table/dynamic-table.component.d.ts +7 -3
- package/lib/components/{dynamic-table → tables/dynamic-table}/dynamic-table.module.d.ts +3 -3
- package/lib/components/tables/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/components/index.d.ts +5 -0
- package/lib/components/tables/ndf-table/components/mode-toggler/mode-toggler.component.d.ts +13 -0
- package/lib/components/tables/ndf-table/components/sorting-list/sorting-list.component.d.ts +12 -0
- package/lib/components/tables/ndf-table/components/table-columns-toggler/table-columns-toggler.component.d.ts +35 -0
- package/lib/components/tables/ndf-table/components/table-export/table-export.component.d.ts +13 -0
- package/lib/components/tables/ndf-table/components/text-search/text-search.component.d.ts +21 -0
- package/lib/components/tables/ndf-table/constants/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/constants/sizes.d.ts +4 -0
- package/lib/components/tables/ndf-table/containers/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/containers/ndf-table/ndf-table.component.d.ts +119 -0
- package/lib/components/tables/ndf-table/directives/actions.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/directives/filter-custom.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/directives/fluid-height.directive.d.ts +36 -0
- package/lib/components/tables/ndf-table/directives/index.d.ts +4 -0
- package/lib/components/tables/ndf-table/directives/search.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/base/base-aggregation-field.component.d.ts +35 -0
- package/lib/components/tables/ndf-table/filters-panel/base/base-checkbox-radio.component.d.ts +22 -0
- package/lib/components/tables/ndf-table/filters-panel/base/base-custom-field.component.d.ts +19 -0
- package/lib/components/tables/ndf-table/filters-panel/base/base-predicate-field.component.d.ts +15 -0
- package/lib/components/tables/ndf-table/filters-panel/base/base-value-accessor.component.d.ts +20 -0
- package/lib/components/tables/ndf-table/filters-panel/base/index.d.ts +5 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/field-header.component.d.ts +5 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete-input.component.d.ts +35 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-autocomplete-input/filter-autocomplete.service.d.ts +13 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-collapse-control/filter-collapse-control.component.d.ts +12 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-date-range/filter-date-range.component.d.ts +16 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-empty-message.component.d.ts +6 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-option-text/filter-option-text.component.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-options-sort/filter-options-sort.component.d.ts +11 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/filter-search-input/filter-search-input.component.d.ts +10 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/html-dialog/html-dialog.component.d.ts +10 -0
- package/lib/components/tables/ndf-table/filters-panel/components/__parts/index.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/components/aggregation-autocomplete/aggregation-autocomplete.component.d.ts +20 -0
- package/lib/components/tables/ndf-table/filters-panel/components/aggregation-checkbox/aggregation-checkbox.component.d.ts +10 -0
- package/lib/components/tables/ndf-table/filters-panel/components/aggregation-custom/aggregation-custom.component.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/components/aggregation-date-list/aggregation-date-list.component.d.ts +41 -0
- package/lib/components/tables/ndf-table/filters-panel/components/aggregation-radio/aggregation-radio.component.d.ts +11 -0
- package/lib/components/tables/ndf-table/filters-panel/components/aggregation-select/aggregation-select.component.d.ts +14 -0
- package/lib/components/tables/ndf-table/filters-panel/components/aggregation-switch/aggregation-switch.component.d.ts +11 -0
- package/lib/components/tables/ndf-table/filters-panel/components/index.d.ts +10 -0
- package/lib/components/tables/ndf-table/filters-panel/components/predicate-date-input/predicate-date-input.component.d.ts +25 -0
- package/lib/components/tables/ndf-table/filters-panel/components/predicate-text-input/predicate-text-input.component.d.ts +40 -0
- package/lib/components/tables/ndf-table/filters-panel/constants/common.d.ts +3 -0
- package/lib/components/tables/ndf-table/filters-panel/constants/field.d.ts +5 -0
- package/lib/components/tables/ndf-table/filters-panel/constants/index.d.ts +4 -0
- package/lib/components/tables/ndf-table/filters-panel/constants/operators.d.ts +17 -0
- package/lib/components/tables/ndf-table/filters-panel/constants/sort.d.ts +2 -0
- package/lib/components/tables/ndf-table/filters-panel/constants/type.d.ts +25 -0
- package/lib/components/tables/ndf-table/filters-panel/containers/aggregation-field/aggregation-field.component.d.ts +13 -0
- package/lib/components/tables/ndf-table/filters-panel/containers/base-field.d.ts +21 -0
- package/lib/components/tables/ndf-table/filters-panel/containers/custom-field/custom-field.component.d.ts +13 -0
- package/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/base-filters-panel.d.ts +19 -0
- package/lib/components/tables/ndf-table/filters-panel/containers/filters-panel/filters-panel.component.d.ts +48 -0
- package/lib/components/tables/ndf-table/filters-panel/containers/index.d.ts +4 -0
- package/lib/components/tables/ndf-table/filters-panel/containers/predicate-field/predicate-field.component.d.ts +12 -0
- package/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user-switch.component.d.ts +14 -0
- package/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/active-user.service.d.ts +8 -0
- package/lib/components/tables/ndf-table/filters-panel/custom-components/active-user-switch/user-types.d.ts +29 -0
- package/lib/components/tables/ndf-table/filters-panel/custom-components/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/filters-panel/directives/autocomplete-template.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/directives/checkbox-template.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/directives/custom-template.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/directives/date-template.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/directives/dropdown-label-template.directive.d.ts +16 -0
- package/lib/components/tables/ndf-table/filters-panel/directives/dropdown-template.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/directives/index.d.ts +8 -0
- package/lib/components/tables/ndf-table/filters-panel/directives/radio-template.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/directives/switch-template.directive.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/filters-panel.module.d.ts +65 -0
- package/lib/components/tables/ndf-table/filters-panel/index.d.ts +11 -0
- package/lib/components/tables/ndf-table/filters-panel/models/aggregation-field-config.d.ts +42 -0
- package/lib/components/tables/ndf-table/filters-panel/models/aggregation-response.model.d.ts +20 -0
- package/lib/components/tables/ndf-table/filters-panel/models/base-field-config.d.ts +13 -0
- package/lib/components/tables/ndf-table/filters-panel/models/common.d.ts +5 -0
- package/lib/components/tables/ndf-table/filters-panel/models/custom-field-config.d.ts +7 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-config.model.d.ts +14 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/autocomplete-options.d.ts +6 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/checkbox-options.d.ts +6 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/common-utils.d.ts +35 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-fields-options.d.ts +9 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/custom-options.d.ts +5 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/date-list-options.d.ts +10 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/date-options.d.ts +22 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/dropdown-options.d.ts +6 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/index.d.ts +11 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/input-options.d.ts +40 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/radio-options.d.ts +6 -0
- package/lib/components/tables/ndf-table/filters-panel/models/field-options/switch-options.d.ts +6 -0
- package/lib/components/tables/ndf-table/filters-panel/models/filter-option.model.d.ts +13 -0
- package/lib/components/tables/ndf-table/filters-panel/models/form-query-request.d.ts +5 -0
- package/lib/components/tables/ndf-table/filters-panel/models/index.d.ts +12 -0
- package/lib/components/tables/ndf-table/filters-panel/models/predicate-field-config.d.ts +7 -0
- package/lib/components/tables/ndf-table/filters-panel/models/types-helper.d.ts +47 -0
- package/lib/components/tables/ndf-table/filters-panel/models/value-object.model.d.ts +18 -0
- package/lib/components/tables/ndf-table/filters-panel/pipes/autocomplete-filter.pipe.d.ts +11 -0
- package/lib/components/tables/ndf-table/filters-panel/pipes/filter.pipe.d.ts +11 -0
- package/lib/components/tables/ndf-table/filters-panel/pipes/hash-translate.pipe.d.ts +18 -0
- package/lib/components/tables/ndf-table/filters-panel/pipes/index.d.ts +8 -0
- package/lib/components/tables/ndf-table/filters-panel/pipes/localized-label.pipe.d.ts +14 -0
- package/lib/components/tables/ndf-table/filters-panel/pipes/roles-filters.pipe.d.ts +12 -0
- package/lib/components/tables/ndf-table/filters-panel/pipes/sanitizer.pipe.d.ts +10 -0
- package/lib/components/tables/ndf-table/filters-panel/pipes/sort.pipe.d.ts +11 -0
- package/lib/components/tables/ndf-table/filters-panel/pipes/tooltip.pipe.d.ts +21 -0
- package/lib/components/tables/ndf-table/filters-panel/services/aggregation-field.service.d.ts +16 -0
- package/lib/components/tables/ndf-table/filters-panel/services/dynamic-component-loader.service.d.ts +18 -0
- package/lib/components/tables/ndf-table/filters-panel/services/filters-query.service.d.ts +58 -0
- package/lib/components/tables/ndf-table/filters-panel/services/index.d.ts +4 -0
- package/lib/components/tables/ndf-table/filters-panel/services/ndf-transform.service.d.ts +55 -0
- package/lib/components/tables/ndf-table/filters-panel/utility/index.d.ts +2 -0
- package/lib/components/tables/ndf-table/filters-panel/utility/nxql.d.ts +19 -0
- package/lib/components/tables/ndf-table/filters-panel/utility/object.d.ts +7 -0
- package/lib/components/tables/ndf-table/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/models/index.d.ts +7 -0
- package/lib/components/tables/ndf-table/models/payload-types.d.ts +28 -0
- package/lib/components/tables/ndf-table/models/search.config.d.ts +13 -0
- package/lib/components/tables/ndf-table/models/table-column.d.ts +34 -0
- package/lib/components/tables/ndf-table/models/table-config.d.ts +45 -0
- package/lib/components/tables/ndf-table/models/table-mode.d.ts +25 -0
- package/lib/components/tables/ndf-table/models/table-options.d.ts +54 -0
- package/lib/components/tables/ndf-table/models/types.d.ts +38 -0
- package/lib/components/tables/ndf-table/ndf-table.module.d.ts +32 -0
- package/lib/components/tables/ndf-table/public-api.d.ts +7 -0
- package/lib/components/tables/ndf-table/services/filters-mapper.service.d.ts +17 -0
- package/lib/components/tables/ndf-table/services/index.d.ts +2 -0
- package/lib/components/tables/ndf-table/services/ndf-table.service.d.ts +10 -0
- package/lib/components/tables/ndf-table/utils/index.d.ts +1 -0
- package/lib/components/tables/ndf-table/utils/nxql-query.d.ts +10 -0
- package/lib/components/tables/public-api.d.ts +3 -0
- package/lib/components/{table → tables/table}/dynamic-column/dynamic-column.component.d.ts +1 -1
- package/lib/components/{table → tables/table}/dynamic-component.d.ts +1 -1
- package/lib/components/tables/table/index.d.ts +1 -0
- package/lib/components/tables/table/public-api.d.ts +5 -0
- package/lib/components/{table → tables/table}/table/table.component.d.ts +3 -3
- package/lib/components/{table → tables/table}/table.module.d.ts +3 -3
- package/lib/core/services/index.d.ts +2 -0
- package/lib/shared/models/index.d.ts +1 -0
- package/lib/shared/models/types-helper.d.ts +1 -0
- package/package.json +3 -2
- package/public-api.d.ts +3 -6
- package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +0 -349
- package/esm2015/lib/components/dynamic-table/dynamic-table.module.js +0 -51
- package/esm2015/lib/components/dynamic-table/public-api.js +0 -5
- package/esm2015/lib/components/dynamic-table/services/dynamic-table.service.js +0 -16
- package/esm2015/lib/components/table/dynamic-column/dynamic-column.component.js +0 -68
- package/esm2015/lib/components/table/dynamic-component.js +0 -59
- package/esm2015/lib/components/table/table.module.js +0 -69
- /package/lib/components/{dynamic-table → tables/dynamic-table}/directives/empty-state.directive.d.ts +0 -0
- /package/lib/components/{dynamic-table → tables/dynamic-table}/index.d.ts +0 -0
- /package/lib/components/{dynamic-table → tables/dynamic-table}/public-api.d.ts +0 -0
- /package/lib/components/{dynamic-table → tables/dynamic-table}/services/dynamic-table.service.d.ts +0 -0
- /package/lib/components/{table → tables/table}/page-sizes-list/page-sizes-list.component.d.ts +0 -0
package/esm2015/lib/components/tables/ndf-table/components/sorting-list/sorting-list.component.js
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import { BaseComponent } from '../../../../../shared/components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/material/button";
|
|
5
|
+
import * as i2 from "@angular/material/icon";
|
|
6
|
+
import * as i3 from "@angular/material/menu";
|
|
7
|
+
import * as i4 from "@angular/cdk/bidi";
|
|
8
|
+
import * as i5 from "@angular/common";
|
|
9
|
+
import * as i6 from "@ngx-translate/core";
|
|
10
|
+
export class SortingListComponent extends BaseComponent {
|
|
11
|
+
constructor() {
|
|
12
|
+
super(...arguments);
|
|
13
|
+
this.sortChanged = new EventEmitter();
|
|
14
|
+
}
|
|
15
|
+
ngOnInit() { }
|
|
16
|
+
changeSort(item) {
|
|
17
|
+
this.sortList.forEach((itm) => {
|
|
18
|
+
itm.selected = item.key === itm.value;
|
|
19
|
+
});
|
|
20
|
+
this.sortChanged.emit(item);
|
|
21
|
+
this.cdr.detectChanges();
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
SortingListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SortingListComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
25
|
+
SortingListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: SortingListComponent, selector: "table-sorting-list", inputs: { sortList: "sortList" }, outputs: { sortChanged: "sortChanged" }, host: { classAttribute: "sort-list" }, usesInheritance: true, ngImport: i0, template: "<button mat-stroked-button [matMenuTriggerFor]=\"menu\" class=\"sort-list__button\">\r\n\t<mat-icon inline> sort </mat-icon>\r\n\t{{ 'TABLE.sortBy' | translate }}\r\n</button>\r\n<mat-menu #menu=\"matMenu\" class=\"p-0\" xPosition=\"before\">\r\n\t<span [dir]=\"direction\" class=\"sort-list__menu\">\r\n\t\t<button mat-menu-item *ngFor=\"let item of sortList\" (click)=\"changeSort(item)\" [class.selected]=\"item.selected\">\r\n\t\t\t{{ item.key | translate }}\r\n\t\t</button>\r\n\t</span>\r\n</mat-menu>\r\n", styles: [".sort-list__menu{max-height:var(--sort-max-height, 250px);overflow-y:auto}.sort-list__menu .mat-menu-item{line-height:var(--sort-item-height, 36px);height:var(--sort-item-height, 36px)}\n"], components: [{ type: i1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i3.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { type: i3.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }], directives: [{ type: i3.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["matMenuTriggerRestoreFocus", "mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { type: i4.Dir, selector: "[dir]", inputs: ["dir"], outputs: ["dirChange"], exportAs: ["dir"] }, { type: i5.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "translate": i6.TranslatePipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: SortingListComponent, decorators: [{
|
|
27
|
+
type: Component,
|
|
28
|
+
args: [{
|
|
29
|
+
selector: 'table-sorting-list',
|
|
30
|
+
templateUrl: './sorting-list.component.html',
|
|
31
|
+
styleUrls: ['./sorting-list.component.scss'],
|
|
32
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
33
|
+
host: {
|
|
34
|
+
class: 'sort-list'
|
|
35
|
+
}
|
|
36
|
+
}]
|
|
37
|
+
}], propDecorators: { sortList: [{
|
|
38
|
+
type: Input
|
|
39
|
+
}], sortChanged: [{
|
|
40
|
+
type: Output
|
|
41
|
+
}] } });
|
|
42
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic29ydGluZy1saXN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL251eGVvLWRldmVsb3BtZW50LWZyYW1ld29yay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGVzL25kZi10YWJsZS9jb21wb25lbnRzL3NvcnRpbmctbGlzdC9zb3J0aW5nLWxpc3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZXMvbmRmLXRhYmxlL2NvbXBvbmVudHMvc29ydGluZy1saXN0L3NvcnRpbmctbGlzdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3hHLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQzs7Ozs7Ozs7QUFZakUsTUFBTSxPQUFPLG9CQUFxQixTQUFRLGFBQWE7SUFUdkQ7O1FBV1csZ0JBQVcsR0FBRyxJQUFJLFlBQVksRUFBaUIsQ0FBQztLQVcxRDtJQVRBLFFBQVEsS0FBVSxDQUFDO0lBRW5CLFVBQVUsQ0FBQyxJQUFtQjtRQUM3QixJQUFJLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFO1lBQzdCLEdBQUcsQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLEdBQUcsS0FBSyxHQUFHLENBQUMsS0FBSyxDQUFDO1FBQ3ZDLENBQUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDNUIsSUFBSSxDQUFDLEdBQUcsQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUMxQixDQUFDOztrSEFaVyxvQkFBb0I7c0dBQXBCLG9CQUFvQixtTUNiakMsaWdCQVdBOzRGREVhLG9CQUFvQjtrQkFUaEMsU0FBUzttQkFBQztvQkFDVixRQUFRLEVBQUUsb0JBQW9CO29CQUM5QixXQUFXLEVBQUUsK0JBQStCO29CQUM1QyxTQUFTLEVBQUUsQ0FBQywrQkFBK0IsQ0FBQztvQkFDNUMsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLElBQUksRUFBRTt3QkFDTCxLQUFLLEVBQUUsV0FBVztxQkFDbEI7aUJBQ0Q7OEJBRVMsUUFBUTtzQkFBaEIsS0FBSztnQkFDSSxXQUFXO3NCQUFwQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQmFzZUNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uLy4uLy4uL3NoYXJlZC9jb21wb25lbnRzJztcclxuaW1wb3J0IHsgU29ydFRhYmxlSXRlbSB9IGZyb20gJy4uLy4uL21vZGVscyc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuXHRzZWxlY3RvcjogJ3RhYmxlLXNvcnRpbmctbGlzdCcsXHJcblx0dGVtcGxhdGVVcmw6ICcuL3NvcnRpbmctbGlzdC5jb21wb25lbnQuaHRtbCcsXHJcblx0c3R5bGVVcmxzOiBbJy4vc29ydGluZy1saXN0LmNvbXBvbmVudC5zY3NzJ10sXHJcblx0Y2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXHJcblx0aG9zdDoge1xyXG5cdFx0Y2xhc3M6ICdzb3J0LWxpc3QnXHJcblx0fVxyXG59KVxyXG5leHBvcnQgY2xhc3MgU29ydGluZ0xpc3RDb21wb25lbnQgZXh0ZW5kcyBCYXNlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuXHRASW5wdXQoKSBzb3J0TGlzdDogU29ydFRhYmxlSXRlbVtdO1xyXG5cdEBPdXRwdXQoKSBzb3J0Q2hhbmdlZCA9IG5ldyBFdmVudEVtaXR0ZXI8U29ydFRhYmxlSXRlbT4oKTtcclxuXHJcblx0bmdPbkluaXQoKTogdm9pZCB7fVxyXG5cclxuXHRjaGFuZ2VTb3J0KGl0ZW06IFNvcnRUYWJsZUl0ZW0pIHtcclxuXHRcdHRoaXMuc29ydExpc3QuZm9yRWFjaCgoaXRtKSA9PiB7XHJcblx0XHRcdGl0bS5zZWxlY3RlZCA9IGl0ZW0ua2V5ID09PSBpdG0udmFsdWU7XHJcblx0XHR9KTtcclxuXHRcdHRoaXMuc29ydENoYW5nZWQuZW1pdChpdGVtKTtcclxuXHRcdHRoaXMuY2RyLmRldGVjdENoYW5nZXMoKTtcclxuXHR9XHJcbn1cclxuIiwiPGJ1dHRvbiBtYXQtc3Ryb2tlZC1idXR0b24gW21hdE1lbnVUcmlnZ2VyRm9yXT1cIm1lbnVcIiBjbGFzcz1cInNvcnQtbGlzdF9fYnV0dG9uXCI+XHJcblx0PG1hdC1pY29uIGlubGluZT4gc29ydCA8L21hdC1pY29uPlxyXG5cdHt7ICdUQUJMRS5zb3J0QnknIHwgdHJhbnNsYXRlIH19XHJcbjwvYnV0dG9uPlxyXG48bWF0LW1lbnUgI21lbnU9XCJtYXRNZW51XCIgY2xhc3M9XCJwLTBcIiB4UG9zaXRpb249XCJiZWZvcmVcIj5cclxuXHQ8c3BhbiBbZGlyXT1cImRpcmVjdGlvblwiIGNsYXNzPVwic29ydC1saXN0X19tZW51XCI+XHJcblx0XHQ8YnV0dG9uIG1hdC1tZW51LWl0ZW0gKm5nRm9yPVwibGV0IGl0ZW0gb2Ygc29ydExpc3RcIiAoY2xpY2spPVwiY2hhbmdlU29ydChpdGVtKVwiIFtjbGFzcy5zZWxlY3RlZF09XCJpdGVtLnNlbGVjdGVkXCI+XHJcblx0XHRcdHt7IGl0ZW0ua2V5IHwgdHJhbnNsYXRlIH19XHJcblx0XHQ8L2J1dHRvbj5cclxuXHQ8L3NwYW4+XHJcbjwvbWF0LW1lbnU+XHJcbiJdfQ==
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { SelectionModel } from '@angular/cdk/collections';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
3
|
+
import { BaseComponent } from '../../../../../shared/components';
|
|
4
|
+
import { map, takeUntil, switchMap } from 'rxjs/operators';
|
|
5
|
+
import { ReplaySubject } from 'rxjs';
|
|
6
|
+
import { moveItemInArray } from '@angular/cdk/drag-drop';
|
|
7
|
+
import _ from 'lodash';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "@angular/material/button";
|
|
10
|
+
import * as i2 from "@angular/material/icon";
|
|
11
|
+
import * as i3 from "@angular/material/menu";
|
|
12
|
+
import * as i4 from "@angular/material/checkbox";
|
|
13
|
+
import * as i5 from "@angular/common";
|
|
14
|
+
import * as i6 from "@angular/material/tooltip";
|
|
15
|
+
import * as i7 from "@angular/cdk/drag-drop";
|
|
16
|
+
import * as i8 from "@angular/cdk/bidi";
|
|
17
|
+
import * as i9 from "@ngx-translate/core";
|
|
18
|
+
export class TableColumnsTogglerComponent extends BaseComponent {
|
|
19
|
+
constructor() {
|
|
20
|
+
super(...arguments);
|
|
21
|
+
this.sortEnabled = false;
|
|
22
|
+
this.frozenColumnsNames = [];
|
|
23
|
+
this.enableSorting = false;
|
|
24
|
+
this.frozenColumns = [];
|
|
25
|
+
this.defaultColumns = [];
|
|
26
|
+
this.columnsChange$ = new ReplaySubject(1);
|
|
27
|
+
this.columnsChanged = new EventEmitter();
|
|
28
|
+
}
|
|
29
|
+
set sortable(value) {
|
|
30
|
+
var _a;
|
|
31
|
+
this.sortEnabled = value === null || value === void 0 ? void 0 : value.enabled;
|
|
32
|
+
this.frozenColumnsNames = (_a = value === null || value === void 0 ? void 0 : value.frozenColumns) !== null && _a !== void 0 ? _a : [];
|
|
33
|
+
}
|
|
34
|
+
set columns(cols) {
|
|
35
|
+
this._cols = cols
|
|
36
|
+
.map((item, index) => {
|
|
37
|
+
var _a;
|
|
38
|
+
item.order = (_a = item === null || item === void 0 ? void 0 : item.order) !== null && _a !== void 0 ? _a : index;
|
|
39
|
+
return item;
|
|
40
|
+
})
|
|
41
|
+
.filter((col) => col.display && col.type != 'actions');
|
|
42
|
+
this.defaultColumns = _.cloneDeep(this._cols);
|
|
43
|
+
this.columnsSelection = new SelectionModel(true, this._filterByVisibility(this._cols));
|
|
44
|
+
this.columnsChange$.next();
|
|
45
|
+
}
|
|
46
|
+
get columns() {
|
|
47
|
+
return this._cols;
|
|
48
|
+
}
|
|
49
|
+
ngOnChanges(changes) {
|
|
50
|
+
this._updateColumns(changes);
|
|
51
|
+
}
|
|
52
|
+
ngOnInit() {
|
|
53
|
+
this.columnsChange$
|
|
54
|
+
.pipe(switchMap(() => this.columnsSelection.changed.pipe(map((data) => data.source.selected))), takeUntil(this.destroy$))
|
|
55
|
+
.subscribe((res) => {
|
|
56
|
+
const _data = res.sort((itemA, itemB) => itemA.order - itemB.order);
|
|
57
|
+
this.columnsChanged.emit(_data);
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
ngOnDestroy() {
|
|
61
|
+
this.columnsChange$.complete();
|
|
62
|
+
}
|
|
63
|
+
onCheckAllChange({ checked }) {
|
|
64
|
+
return checked ? this._selectAll() : this._deselectAll();
|
|
65
|
+
}
|
|
66
|
+
toggleSorting() {
|
|
67
|
+
this.enableSorting = !this.enableSorting;
|
|
68
|
+
}
|
|
69
|
+
drop(event) {
|
|
70
|
+
if (this.enableSorting) {
|
|
71
|
+
moveItemInArray(this.columns, event.previousIndex, event.currentIndex);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
applySort() {
|
|
75
|
+
const columns = [...this.columns, ...this.frozenColumns];
|
|
76
|
+
columns.forEach((col, index) => {
|
|
77
|
+
col.order = index;
|
|
78
|
+
});
|
|
79
|
+
const data = columns.filter((col) => this.columnsSelection.isSelected(col));
|
|
80
|
+
this.columnsChanged.emit(_.cloneDeep(data));
|
|
81
|
+
this.enableSorting = false;
|
|
82
|
+
}
|
|
83
|
+
_selectAll() {
|
|
84
|
+
this.columnsSelection.select(...this.columns, ...this.frozenColumns);
|
|
85
|
+
}
|
|
86
|
+
_deselectAll() {
|
|
87
|
+
this.columnsSelection.clear();
|
|
88
|
+
}
|
|
89
|
+
_filterByVisibility(columns) {
|
|
90
|
+
return columns === null || columns === void 0 ? void 0 : columns.filter((col) => col.defaultVisible).sort((colA, colB) => colA.order - colB.order);
|
|
91
|
+
}
|
|
92
|
+
_updateColumns(changes) {
|
|
93
|
+
var _a;
|
|
94
|
+
const sortable = (_a = changes.sortable) === null || _a === void 0 ? void 0 : _a.currentValue;
|
|
95
|
+
if ((sortable === null || sortable === void 0 ? void 0 : sortable.enabled) && Array.isArray(sortable === null || sortable === void 0 ? void 0 : sortable.frozenColumns) && this.columns) {
|
|
96
|
+
this._cols = this.columns.filter((col) => !this.frozenColumnsNames.includes(col.name));
|
|
97
|
+
this.frozenColumns = this.defaultColumns.filter((col) => this.frozenColumnsNames.includes(col.name));
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
TableColumnsTogglerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TableColumnsTogglerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
102
|
+
TableColumnsTogglerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TableColumnsTogglerComponent, selector: "table-columns-toggler", inputs: { prefix: "prefix", sortable: "sortable", columns: "columns" }, outputs: { columnsChanged: "columnsChanged" }, host: { classAttribute: "columns-toggler" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<button mat-stroked-button [matMenuTriggerFor]=\"menu\" class=\"columns-toggler__button\">\r\n\t<mat-icon inline> tune </mat-icon>\r\n\t{{ 'TABLE.toggleColumns' | translate }}\r\n</button>\r\n<mat-menu #menu=\"matMenu\" class=\"p-0\" xPosition=\"before\">\r\n\t<div\r\n\t\tclass=\"flex justify-between mb-2 border-bottom border-primary-100 top-0 pb-2 px-3\"\r\n\t\t(click)=\"$event.stopPropagation()\"\r\n\t>\r\n\t\t<mat-checkbox\r\n\t\t\t*ngIf=\"!!columns?.length && !enableSorting\"\r\n\t\t\t(change)=\"onCheckAllChange($event)\"\r\n\t\t\t[checked]=\"columnsSelection.selected.length > 0 && columnsSelection.selected.length === columns?.length\"\r\n\t\t\t[indeterminate]=\"columnsSelection.selected.length > 0 && columnsSelection.selected.length < columns?.length\"\r\n\t\t>\r\n\t\t\t{{ 'FILTERS.all' | translate }}\r\n\t\t</mat-checkbox>\r\n\r\n\t\t<button class=\"action-btn apply-sorting-btn\" *ngIf=\"enableSorting\" (click)=\"applySort()\">\r\n\t\t\t{{ 'TABLE.applySorting' | translate }}\r\n\t\t</button>\r\n\r\n\t\t<mat-icon\r\n\t\t\trole=\"button\"\r\n\t\t\t(click)=\"toggleSorting()\"\r\n\t\t\t*ngIf=\"sortEnabled\"\r\n\t\t\t[title]=\"(enableSorting ? 'TABLE.disableSorting' : 'TABLE.enableSorting') | translate\"\r\n\t\t\t[matTooltip]=\"(enableSorting ? 'TABLE.disableSorting' : 'TABLE.enableSorting') | translate\"\r\n\t\t\tclass=\"columns-toggler__sort-icon\"\r\n\t\t>\r\n\t\t\t{{ enableSorting ? 'playlist_remove' : 'format_line_spacing' }}\r\n\t\t</mat-icon>\r\n\t</div>\r\n\r\n\t<ul\r\n\t\tclass=\"columns-toggler__columns py-2 px-3\"\r\n\t\t(click)=\"$event.stopPropagation()\"\r\n\t\t[dir]=\"direction\"\r\n\t\tcdkDropList\r\n\t\t[cdkDropListDisabled]=\"!enableSorting && !sortEnabled\"\r\n\t\t(cdkDropListDropped)=\"drop($event)\"\r\n\t>\r\n\t\t<li\r\n\t\t\t*ngFor=\"let col of columns\"\r\n\t\t\tclass=\"mb-2 column-control\"\r\n\t\t\tcdkDrag\r\n\t\t\t[cdkDragDisabled]=\"!enableSorting\"\r\n\t\t\t[class.sorting-enabled]=\"enableSorting\"\r\n\t\t\t[class.column-control__hidden]=\"!columnsSelection.isSelected(col)\"\r\n\t\t>\r\n\t\t\t<mat-checkbox [checked]=\"columnsSelection.isSelected(col)\" (change)=\"columnsSelection.toggle(col)\">\r\n\t\t\t\t{{ prefix + col.name | translate }}\r\n\t\t\t</mat-checkbox>\r\n\t\t</li>\r\n\t</ul>\r\n\t<ul\r\n\t\tclass=\"columns-toggler__frozen-columns py-2 px-3\"\r\n\t\t(click)=\"$event.stopPropagation()\"\r\n\t\t*ngIf=\"sortEnabled && frozenColumns?.length\"\r\n\t>\r\n\t\t<li *ngFor=\"let col of frozenColumns\" class=\"column-control\">\r\n\t\t\t<mat-checkbox [checked]=\"columnsSelection.isSelected(col)\" (change)=\"columnsSelection.toggle(col)\">\r\n\t\t\t\t{{ prefix + col.name | translate }}\r\n\t\t\t</mat-checkbox>\r\n\t\t</li>\r\n\t</ul>\r\n</mat-menu>\r\n", styles: [".columns-toggler__sort-icon{color:var(--sort-icon-color, #000)}.columns-toggler__columns{max-height:var(--cols-max-height, 275px);overflow-y:auto}.columns-toggler__columns .check-all-box{background:var(--check-background-color, #fff)}.columns-toggler__columns .column-control.sorting-enabled ::ng-deep,.columns-toggler__columns .column-control.sorting-enabled ::ng-deep .mat-checkbox-label{cursor:move}.columns-toggler__columns .column-control.sorting-enabled.cdk-drag-disabled{cursor:not-allowed;background:var(--drag-disabled-background, transparent);box-shadow:0 0 0 3px var(--drag-disabled-background, transparent)}.columns-toggler__columns .column-control__hidden{opacity:.7}.columns-toggler__columns .column-control.cdk-drag-preview{box-sizing:border-box;list-style:none;background:var(--secondary-color);box-shadow:var(--drag-preview-shadow, 0 0 0 3px var(--secondary-color), 0 1px 12px -4px #b8b8b8)}.columns-toggler__columns .cdk-drag-placeholder{opacity:0}.columns-toggler__frozen-columns{border-top:var(--frozen-cols-border-top, 2px solid #ccc);max-height:var(--frozen-cols--max-height, 150px);overflow-y:auto}::ng-deep .column-control.cdk-drag-preview{box-sizing:border-box;list-style:none;background:var(--secondary-color);box-shadow:var(--drag-preview-shadow, 0 0 0 3px var(--secondary-color), 0 1px 12px -4px #b8b8b8)}::ng-deep .cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.columns-toggler__sort-icon{color:var(--icon-color)!important}.apply-sorting-btn{background-color:var(--logo-button-bg);color:var(--main-text)}\n"], components: [{ type: i1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i3.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { type: i4.MatCheckbox, selector: "mat-checkbox", inputs: ["disableRipple", "color", "tabIndex", "aria-label", "aria-labelledby", "id", "labelPosition", "name", "required", "checked", "disabled", "indeterminate", "aria-describedby", "value"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }], directives: [{ type: i3.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["matMenuTriggerRestoreFocus", "mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltipPosition", "matTooltipDisabled", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { type: i7.CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "id", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListAutoScrollDisabled", "cdkDropListOrientation", "cdkDropListLockAxis", "cdkDropListData", "cdkDropListAutoScrollStep"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { type: i8.Dir, selector: "[dir]", inputs: ["dir"], outputs: ["dirChange"], exportAs: ["dir"] }, { type: i5.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i7.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragDisabled", "cdkDragStartDelay", "cdkDragLockAxis", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragBoundary", "cdkDragRootElement", "cdkDragPreviewContainer", "cdkDragData", "cdkDragFreeDragPosition"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }], pipes: { "translate": i9.TranslatePipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TableColumnsTogglerComponent, decorators: [{
|
|
104
|
+
type: Component,
|
|
105
|
+
args: [{
|
|
106
|
+
selector: 'table-columns-toggler',
|
|
107
|
+
templateUrl: './table-columns-toggler.component.html',
|
|
108
|
+
styleUrls: ['./table-columns-toggler.component.scss'],
|
|
109
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
110
|
+
host: {
|
|
111
|
+
class: 'columns-toggler'
|
|
112
|
+
}
|
|
113
|
+
}]
|
|
114
|
+
}], propDecorators: { prefix: [{
|
|
115
|
+
type: Input
|
|
116
|
+
}], sortable: [{
|
|
117
|
+
type: Input
|
|
118
|
+
}], columns: [{
|
|
119
|
+
type: Input
|
|
120
|
+
}], columnsChanged: [{
|
|
121
|
+
type: Output
|
|
122
|
+
}] } });
|
|
123
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY29sdW1ucy10b2dnbGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL251eGVvLWRldmVsb3BtZW50LWZyYW1ld29yay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGVzL25kZi10YWJsZS9jb21wb25lbnRzL3RhYmxlLWNvbHVtbnMtdG9nZ2xlci90YWJsZS1jb2x1bW5zLXRvZ2dsZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZXMvbmRmLXRhYmxlL2NvbXBvbmVudHMvdGFibGUtY29sdW1ucy10b2dnbGVyL3RhYmxlLWNvbHVtbnMtdG9nZ2xlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDMUQsT0FBTyxFQUNOLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFJTCxNQUFNLEVBRU4sTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBQ2pFLE9BQU8sRUFBRSxHQUFHLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRTNELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFFckMsT0FBTyxFQUFlLGVBQWUsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3RFLE9BQU8sQ0FBQyxNQUFNLFFBQVEsQ0FBQzs7Ozs7Ozs7Ozs7QUFXdkIsTUFBTSxPQUFPLDRCQUE2QixTQUFRLGFBQWE7SUFUL0Q7O1FBWUMsZ0JBQVcsR0FBRyxLQUFLLENBQUM7UUFDcEIsdUJBQWtCLEdBQWEsRUFBRSxDQUFD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QkFBbkIsS0FBSztnQkFnQkksY0FBYztzQkFBdkIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNlbGVjdGlvbk1vZGVsIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2NvbGxlY3Rpb25zJztcclxuaW1wb3J0IHtcclxuXHRDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcclxuXHRDb21wb25lbnQsXHJcblx0RXZlbnRFbWl0dGVyLFxyXG5cdElucHV0LFxyXG5cdE9uQ2hhbmdlcyxcclxuXHRPbkRlc3Ryb3ksXHJcblx0T25Jbml0LFxyXG5cdE91dHB1dCxcclxuXHRTaW1wbGVDaGFuZ2VzXHJcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEJhc2VDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9zaGFyZWQvY29tcG9uZW50cyc7XHJcbmltcG9ydCB7IG1hcCwgdGFrZVVudGlsLCBzd2l0Y2hNYXAgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XHJcbmltcG9ydCB7IFRhYmxlQ29sdW1uQ29uZmlnLCBUYWJsZVNvcnRDb25maWcgfSBmcm9tICcuLi8uLi9tb2RlbHMnO1xyXG5pbXBvcnQgeyBSZXBsYXlTdWJqZWN0IH0gZnJvbSAncnhqcyc7XHJcbmltcG9ydCB7IE1hdENoZWNrYm94Q2hhbmdlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY2hlY2tib3gnO1xyXG5pbXBvcnQgeyBDZGtEcmFnRHJvcCwgbW92ZUl0ZW1JbkFycmF5IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2RyYWctZHJvcCc7XHJcbmltcG9ydCBfIGZyb20gJ2xvZGFzaCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuXHRzZWxlY3RvcjogJ3RhYmxlLWNvbHVtbnMtdG9nZ2xlcicsXHJcblx0dGVtcGxhdGVVcmw6ICcuL3RhYmxlLWNvbHVtbnMtdG9nZ2xlci5jb21wb25lbnQuaHRtbCcsXHJcblx0c3R5bGVVcmxzOiBbJy4vdGFibGUtY29sdW1ucy10b2dnbGVyLmNvbXBvbmVudC5zY3NzJ10sXHJcblx0Y2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXHJcblx0aG9zdDoge1xyXG5cdFx0Y2xhc3M6ICdjb2x1bW5zLXRvZ2dsZXInXHJcblx0fVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVGFibGVDb2x1bW5zVG9nZ2xlckNvbXBvbmVudCBleHRlbmRzIEJhc2VDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uQ2hhbmdlcywgT25EZXN0cm95IHtcclxuXHRASW5wdXQoKSBwcmVmaXg6IHN0cmluZztcclxuXHJcblx0c29ydEVuYWJsZWQgPSBmYWxzZTtcclxuXHRmcm96ZW5Db2x1bW5zTmFtZXM6IHN0cmluZ1tdID0gW107XHJcblx0QElucHV0KCkgc2V0IHNvcnRhYmxlKHZhbHVlOiBUYWJsZVNvcnRDb25maWcpIHtcclxuXHRcdHRoaXMuc29ydEVuYWJsZWQgPSB2YWx1ZT8uZW5hYmxlZDtcclxuXHRcdHRoaXMuZnJvemVuQ29sdW1uc05hbWVzID0gdmFsdWU/LmZyb3plbkNvbHVtbnMgPz8gW107XHJcblx0fVxyXG5cclxuXHRlbmFibGVTb3J0aW5nID0gZmFsc2U7XHJcblx0ZnJvemVuQ29sdW1uczogVGFibGVDb2x1bW5Db25maWdbXSA9IFtdO1xyXG5cdGRlZmF1bHRDb2x1bW5zOiBUYWJsZUNvbHVtbkNvbmZpZ1tdID0gW107XHJcblx0Y29sdW1uc1NlbGVjdGlvbjogU2VsZWN0aW9uTW9kZWw8VGFibGVDb2x1bW5Db25maWc+O1xyXG5cclxuXHRwcml2YXRlIF9jb2xzOiBUYWJsZUNvbHVtbkNvbmZpZ1tdO1xyXG5cdHByaXZhdGUgY29sdW1uc0NoYW5nZSQgPSBuZXcgUmVwbGF5U3ViamVjdDx2b2lkPigxKTtcclxuXHJcblx0QElucHV0KCkgc2V0IGNvbHVtbnMoY29sczogVGFibGVDb2x1bW5Db25maWdbXSkge1xyXG5cdFx0dGhpcy5fY29scyA9IGNvbHNcclxuXHRcdFx0Lm1hcCgoaXRlbSwgaW5kZXgpID0+IHtcclxuXHRcdFx0XHRpdGVtLm9yZGVyID0gaXRlbT8ub3JkZXIgPz8gaW5kZXg7XHJcblx0XHRcdFx0cmV0dXJuIGl0ZW07XHJcblx0XHRcdH0pXHJcblx0XHRcdC5maWx0ZXIoKGNvbCkgPT4gY29sLmRpc3BsYXkgJiYgY29sLnR5cGUgIT0gJ2FjdGlvbnMnKTtcclxuXHRcdHRoaXMuZGVmYXVsdENvbHVtbnMgPSBfLmNsb25lRGVlcCh0aGlzLl9jb2xzKTtcclxuXHRcdHRoaXMuY29sdW1uc1NlbGVjdGlvbiA9IG5ldyBTZWxlY3Rpb25Nb2RlbCh0cnVlLCB0aGlzLl9maWx0ZXJCeVZpc2liaWxpdHkodGhpcy5fY29scykpO1xyXG5cdFx0dGhpcy5jb2x1bW5zQ2hhbmdlJC5uZXh0KCk7XHJcblx0fVxyXG5cclxuXHRnZXQgY29sdW1ucygpIHtcclxuXHRcdHJldHVybiB0aGlzLl9jb2xzO1xyXG5cdH1cclxuXHJcblx0QE91dHB1dCgpIGNvbHVtbnNDaGFuZ2VkID0gbmV3IEV2ZW50RW1pdHRlcjxUYWJsZUNvbHVtbkNvbmZpZ1tdPigpO1xyXG5cclxuXHRuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XHJcblx0XHR0aGlzLl91cGRhdGVDb2x1bW5zKGNoYW5nZXMpO1xyXG5cdH1cclxuXHJcblx0bmdPbkluaXQoKTogdm9pZCB7XHJcblx0XHR0aGlzLmNvbHVtbnNDaGFuZ2UkXHJcblx0XHRcdC5waXBlKFxyXG5cdFx0XHRcdHN3aXRjaE1hcCgoKSA9PiB0aGlzLmNvbHVtbnNTZWxlY3Rpb24uY2hhbmdlZC5waXBlKG1hcCgoZGF0YSkgPT4gZGF0YS5zb3VyY2Uuc2VsZWN0ZWQpKSksXHJcblx0XHRcdFx0dGFrZVVudGlsKHRoaXMuZGVzdHJveSQpXHJcblx0XHRcdClcclxuXHRcdFx0LnN1YnNjcmliZSgocmVzKSA9PiB7XHJcblx0XHRcdFx0Y29uc3QgX2RhdGEgPSByZXMuc29ydCgoaXRlbUEsIGl0ZW1CKSA9PiBpdGVtQS5vcmRlciAtIGl0ZW1CLm9yZGVyKTtcclxuXHRcdFx0XHR0aGlzLmNvbHVtbnNDaGFuZ2VkLmVtaXQoX2RhdGEpO1xyXG5cdFx0XHR9KTtcclxuXHR9XHJcblxyXG5cdG5nT25EZXN0cm95KCk6IHZvaWQge1xyXG5cdFx0dGhpcy5jb2x1bW5zQ2hhbmdlJC5jb21wbGV0ZSgpO1xyXG5cdH1cclxuXHJcblx0b25DaGVja0FsbENoYW5nZSh7IGNoZWNrZWQgfTogTWF0Q2hlY2tib3hDaGFuZ2UpIHtcclxuXHRcdHJldHVybiBjaGVja2VkID8gdGhpcy5fc2VsZWN0QWxsKCkgOiB0aGlzLl9kZXNlbGVjdEFsbCgpO1xyXG5cdH1cclxuXHJcblx0dG9nZ2xlU29ydGluZygpIHtcclxuXHRcdHRoaXMuZW5hYmxlU29ydGluZyA9ICF0aGlzLmVuYWJsZVNvcnRpbmc7XHJcblx0fVxyXG5cclxuXHRkcm9wKGV2ZW50OiBDZGtEcmFnRHJvcDxhbnlbXT4pIHtcclxuXHRcdGlmICh0aGlzLmVuYWJsZVNvcnRpbmcpIHtcclxuXHRcdFx0bW92ZUl0ZW1JbkFycmF5KHRoaXMuY29sdW1ucywgZXZlbnQucHJldmlvdXNJbmRleCwgZXZlbnQuY3VycmVudEluZGV4KTtcclxuXHRcdH1cclxuXHR9XHJcblxyXG5cdGFwcGx5U29ydCgpIHtcclxuXHRcdGNvbnN0IGNvbHVtbnMgPSBbLi4udGhpcy5jb2x1bW5zLCAuLi50aGlzLmZyb3plbkNvbHVtbnNdO1xyXG5cdFx0Y29sdW1ucy5mb3JFYWNoKChjb2wsIGluZGV4KSA9PiB7XHJcblx0XHRcdGNvbC5vcmRlciA9IGluZGV4O1xyXG5cdFx0fSk7XHJcblxyXG5cdFx0Y29uc3QgZGF0YSA9IGNvbHVtbnMuZmlsdGVyKChjb2wpID0+IHRoaXMuY29sdW1uc1NlbGVjdGlvbi5pc1NlbGVjdGVkKGNvbCkpO1xyXG5cdFx0dGhpcy5jb2x1bW5zQ2hhbmdlZC5lbWl0KF8uY2xvbmVEZWVwKGRhdGEpKTtcclxuXHRcdHRoaXMuZW5hYmxlU29ydGluZyA9IGZhbHNlO1xyXG5cdH1cclxuXHJcblx0cHJpdmF0ZSBfc2VsZWN0QWxsKCkge1xyXG5cdFx0dGhpcy5jb2x1bW5zU2VsZWN0aW9uLnNlbGVjdCguLi50aGlzLmNvbHVtbnMsIC4uLnRoaXMuZnJvemVuQ29sdW1ucyk7XHJcblx0fVxyXG5cclxuXHRwcml2YXRlIF9kZXNlbGVjdEFsbCgpOiB2b2lkIHtcclxuXHRcdHRoaXMuY29sdW1uc1NlbGVjdGlvbi5jbGVhcigpO1xyXG5cdH1cclxuXHJcblx0cHJpdmF0ZSBfZmlsdGVyQnlWaXNpYmlsaXR5KGNvbHVtbnM6IFRhYmxlQ29sdW1uQ29uZmlnW10pOiBUYWJsZUNvbHVtbkNvbmZpZ1tdIHtcclxuXHRcdHJldHVybiBjb2x1bW5zPy5maWx0ZXIoKGNvbCkgPT4gY29sLmRlZmF1bHRWaXNpYmxlKS5zb3J0KChjb2xBLCBjb2xCKSA9PiBjb2xBLm9yZGVyIC0gY29sQi5vcmRlcik7XHJcblx0fVxyXG5cclxuXHRwcml2YXRlIF91cGRhdGVDb2x1bW5zKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpIHtcclxuXHRcdGNvbnN0IHNvcnRhYmxlOiBUYWJsZVNvcnRDb25maWcgPSBjaGFuZ2VzLnNvcnRhYmxlPy5jdXJyZW50VmFsdWU7XHJcblx0XHRpZiAoc29ydGFibGU/LmVuYWJsZWQgJiYgQXJyYXkuaXNBcnJheShzb3J0YWJsZT8uZnJvemVuQ29sdW1ucykgJiYgdGhpcy5jb2x1bW5zKSB7XHJcblx0XHRcdHRoaXMuX2NvbHMgPSB0aGlzLmNvbHVtbnMuZmlsdGVyKChjb2wpID0+ICF0aGlzLmZyb3plbkNvbHVtbnNOYW1lcy5pbmNsdWRlcyhjb2wubmFtZSkpO1xyXG5cdFx0XHR0aGlzLmZyb3plbkNvbHVtbnMgPSB0aGlzLmRlZmF1bHRDb2x1bW5zLmZpbHRlcigoY29sKSA9PiB0aGlzLmZyb3plbkNvbHVtbnNOYW1lcy5pbmNsdWRlcyhjb2wubmFtZSkpO1xyXG5cdFx0fVxyXG5cdH1cclxufVxyXG4iLCI8YnV0dG9uIG1hdC1zdHJva2VkLWJ1dHRvbiBbbWF0TWVudVRyaWdnZXJGb3JdPVwibWVudVwiIGNsYXNzPVwiY29sdW1ucy10b2dnbGVyX19idXR0b25cIj5cclxuXHQ8bWF0LWljb24gaW5saW5lPiB0dW5lIDwvbWF0LWljb24+XHJcblx0e3sgJ1RBQkxFLnRvZ2dsZUNvbHVtbnMnIHwgdHJhbnNsYXRlIH19XHJcbjwvYnV0dG9uPlxyXG48bWF0LW1lbnUgI21lbnU9XCJtYXRNZW51XCIgY2xhc3M9XCJwLTBcIiB4UG9zaXRpb249XCJiZWZvcmVcIj5cclxuXHQ8ZGl2XHJcblx0XHRjbGFzcz1cImZsZXgganVzdGlmeS1iZXR3ZWVuIG1iLTIgYm9yZGVyLWJvdHRvbSBib3JkZXItcHJpbWFyeS0xMDAgdG9wLTAgcGItMiBweC0zXCJcclxuXHRcdChjbGljayk9XCIkZXZlbnQuc3RvcFByb3BhZ2F0aW9uKClcIlxyXG5cdD5cclxuXHRcdDxtYXQtY2hlY2tib3hcclxuXHRcdFx0Km5nSWY9XCIhIWNvbHVtbnM/Lmxlbmd0aCAmJiAhZW5hYmxlU29ydGluZ1wiXHJcblx0XHRcdChjaGFuZ2UpPVwib25DaGVja0FsbENoYW5nZSgkZXZlbnQpXCJcclxuXHRcdFx0W2NoZWNrZWRdPVwiY29sdW1uc1NlbGVjdGlvbi5zZWxlY3RlZC5sZW5ndGggPiAwICYmIGNvbHVtbnNTZWxlY3Rpb24uc2VsZWN0ZWQubGVuZ3RoID09PSBjb2x1bW5zPy5sZW5ndGhcIlxyXG5cdFx0XHRbaW5kZXRlcm1pbmF0ZV09XCJjb2x1bW5zU2VsZWN0aW9uLnNlbGVjdGVkLmxlbmd0aCA+IDAgJiYgY29sdW1uc1NlbGVjdGlvbi5zZWxlY3RlZC5sZW5ndGggPCBjb2x1bW5zPy5sZW5ndGhcIlxyXG5cdFx0PlxyXG5cdFx0XHR7eyAnRklMVEVSUy5hbGwnIHwgdHJhbnNsYXRlIH19XHJcblx0XHQ8L21hdC1jaGVja2JveD5cclxuXHJcblx0XHQ8YnV0dG9uIGNsYXNzPVwiYWN0aW9uLWJ0biBhcHBseS1zb3J0aW5nLWJ0blwiICpuZ0lmPVwiZW5hYmxlU29ydGluZ1wiIChjbGljayk9XCJhcHBseVNvcnQoKVwiPlxyXG5cdFx0XHR7eyAnVEFCTEUuYXBwbHlTb3J0aW5nJyB8IHRyYW5zbGF0ZSB9fVxyXG5cdFx0PC9idXR0b24+XHJcblxyXG5cdFx0PG1hdC1pY29uXHJcblx0XHRcdHJvbGU9XCJidXR0b25cIlxyXG5cdFx0XHQoY2xpY2spPVwidG9nZ2xlU29ydGluZygpXCJcclxuXHRcdFx0Km5nSWY9XCJzb3J0RW5hYmxlZFwiXHJcblx0XHRcdFt0aXRsZV09XCIoZW5hYmxlU29ydGluZyA/ICdUQUJMRS5kaXNhYmxlU29ydGluZycgOiAnVEFCTEUuZW5hYmxlU29ydGluZycpIHwgdHJhbnNsYXRlXCJcclxuXHRcdFx0W21hdFRvb2x0aXBdPVwiKGVuYWJsZVNvcnRpbmcgPyAnVEFCTEUuZGlzYWJsZVNvcnRpbmcnIDogJ1RBQkxFLmVuYWJsZVNvcnRpbmcnKSB8IHRyYW5zbGF0ZVwiXHJcblx0XHRcdGNsYXNzPVwiY29sdW1ucy10b2dnbGVyX19zb3J0LWljb25cIlxyXG5cdFx0PlxyXG5cdFx0XHR7eyBlbmFibGVTb3J0aW5nID8gJ3BsYXlsaXN0X3JlbW92ZScgOiAnZm9ybWF0X2xpbmVfc3BhY2luZycgfX1cclxuXHRcdDwvbWF0LWljb24+XHJcblx0PC9kaXY+XHJcblxyXG5cdDx1bFxyXG5cdFx0Y2xhc3M9XCJjb2x1bW5zLXRvZ2dsZXJfX2NvbHVtbnMgcHktMiBweC0zXCJcclxuXHRcdChjbGljayk9XCIkZXZlbnQuc3RvcFByb3BhZ2F0aW9uKClcIlxyXG5cdFx0W2Rpcl09XCJkaXJlY3Rpb25cIlxyXG5cdFx0Y2RrRHJvcExpc3RcclxuXHRcdFtjZGtEcm9wTGlzdERpc2FibGVkXT1cIiFlbmFibGVTb3J0aW5nICYmICFzb3J0RW5hYmxlZFwiXHJcblx0XHQoY2RrRHJvcExpc3REcm9wcGVkKT1cImRyb3AoJGV2ZW50KVwiXHJcblx0PlxyXG5cdFx0PGxpXHJcblx0XHRcdCpuZ0Zvcj1cImxldCBjb2wgb2YgY29sdW1uc1wiXHJcblx0XHRcdGNsYXNzPVwibWItMiBjb2x1bW4tY29udHJvbFwiXHJcblx0XHRcdGNka0RyYWdcclxuXHRcdFx0W2Nka0RyYWdEaXNhYmxlZF09XCIhZW5hYmxlU29ydGluZ1wiXHJcblx0XHRcdFtjbGFzcy5zb3J0aW5nLWVuYWJsZWRdPVwiZW5hYmxlU29ydGluZ1wiXHJcblx0XHRcdFtjbGFzcy5jb2x1bW4tY29udHJvbF9faGlkZGVuXT1cIiFjb2x1bW5zU2VsZWN0aW9uLmlzU2VsZWN0ZWQoY29sKVwiXHJcblx0XHQ+XHJcblx0XHRcdDxtYXQtY2hlY2tib3ggW2NoZWNrZWRdPVwiY29sdW1uc1NlbGVjdGlvbi5pc1NlbGVjdGVkKGNvbClcIiAoY2hhbmdlKT1cImNvbHVtbnNTZWxlY3Rpb24udG9nZ2xlKGNvbClcIj5cclxuXHRcdFx0XHR7eyBwcmVmaXggKyBjb2wubmFtZSB8IHRyYW5zbGF0ZSB9fVxyXG5cdFx0XHQ8L21hdC1jaGVja2JveD5cclxuXHRcdDwvbGk+XHJcblx0PC91bD5cclxuXHQ8dWxcclxuXHRcdGNsYXNzPVwiY29sdW1ucy10b2dnbGVyX19mcm96ZW4tY29sdW1ucyBweS0yIHB4LTNcIlxyXG5cdFx0KGNsaWNrKT1cIiRldmVudC5zdG9wUHJvcGFnYXRpb24oKVwiXHJcblx0XHQqbmdJZj1cInNvcnRFbmFibGVkICYmIGZyb3plbkNvbHVtbnM/Lmxlbmd0aFwiXHJcblx0PlxyXG5cdFx0PGxpICpuZ0Zvcj1cImxldCBjb2wgb2YgZnJvemVuQ29sdW1uc1wiIGNsYXNzPVwiY29sdW1uLWNvbnRyb2xcIj5cclxuXHRcdFx0PG1hdC1jaGVja2JveCBbY2hlY2tlZF09XCJjb2x1bW5zU2VsZWN0aW9uLmlzU2VsZWN0ZWQoY29sKVwiIChjaGFuZ2UpPVwiY29sdW1uc1NlbGVjdGlvbi50b2dnbGUoY29sKVwiPlxyXG5cdFx0XHRcdHt7IHByZWZpeCArIGNvbC5uYW1lIHwgdHJhbnNsYXRlIH19XHJcblx0XHRcdDwvbWF0LWNoZWNrYm94PlxyXG5cdFx0PC9saT5cclxuXHQ8L3VsPlxyXG48L21hdC1tZW51PlxyXG4iXX0=
|
package/esm2015/lib/components/tables/ndf-table/components/table-export/table-export.component.js
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/material/button";
|
|
4
|
+
import * as i2 from "@angular/material/icon";
|
|
5
|
+
import * as i3 from "@angular/material/menu";
|
|
6
|
+
import * as i4 from "@angular/common";
|
|
7
|
+
import * as i5 from "@angular/material/tooltip";
|
|
8
|
+
import * as i6 from "@ngx-translate/core";
|
|
9
|
+
export class TableExportComponent {
|
|
10
|
+
constructor() {
|
|
11
|
+
this._exportType = 'pdf';
|
|
12
|
+
this.onExport = new EventEmitter();
|
|
13
|
+
}
|
|
14
|
+
set config(config) {
|
|
15
|
+
this._config = config;
|
|
16
|
+
if (config && config.defaultType) {
|
|
17
|
+
this._exportType = config.defaultType;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
get config() {
|
|
21
|
+
return this._config;
|
|
22
|
+
}
|
|
23
|
+
export(type) {
|
|
24
|
+
this.onExport.emit(type || this._exportType);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
TableExportComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TableExportComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
28
|
+
TableExportComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TableExportComponent, selector: "ndf-table-export", inputs: { config: "config" }, outputs: { onExport: "onExport" }, ngImport: i0, template: "<button\r\n\tmat-stroked-button\r\n\t[matTooltip]=\"'TABLE.EXPORT.export' | translate\"\r\n\t(click)=\"export()\"\r\n\t*ngIf=\"!config?.allowedTypes\"\r\n>\r\n\t<mat-icon>file_download</mat-icon>\r\n</button>\r\n\r\n<button\r\n\tmat-stroked-button\r\n\t*ngIf=\"config?.allowedTypes\"\r\n\t[matTooltip]=\"'TABLE.EXPORT.export' | translate\"\r\n\t[matMenuTriggerFor]=\"menu\"\r\n\t[attr.aria-label]=\"'TABLE.EXPORT.export' | translate\"\r\n>\r\n\t<mat-icon>file_download</mat-icon>\r\n</button>\r\n<mat-menu #menu=\"matMenu\">\r\n\t<button mat-menu-item *ngFor=\"let type of config?.allowedTypes\" (click)=\"export(type.value)\">\r\n\t\t<span>{{ type.label | translate }}</span>\r\n\t</button>\r\n</mat-menu>\r\n", styles: [""], components: [{ type: i1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i3.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { type: i3.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i5.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltipPosition", "matTooltipDisabled", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { type: i3.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["matMenuTriggerRestoreFocus", "mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "translate": i6.TranslatePipe } });
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TableExportComponent, decorators: [{
|
|
30
|
+
type: Component,
|
|
31
|
+
args: [{
|
|
32
|
+
selector: 'ndf-table-export',
|
|
33
|
+
templateUrl: './table-export.component.html',
|
|
34
|
+
styleUrls: ['./table-export.component.scss']
|
|
35
|
+
}]
|
|
36
|
+
}], propDecorators: { config: [{
|
|
37
|
+
type: Input
|
|
38
|
+
}], onExport: [{
|
|
39
|
+
type: Output
|
|
40
|
+
}] } });
|
|
41
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtZXhwb3J0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL251eGVvLWRldmVsb3BtZW50LWZyYW1ld29yay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGVzL25kZi10YWJsZS9jb21wb25lbnRzL3RhYmxlLWV4cG9ydC90YWJsZS1leHBvcnQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZXMvbmRmLXRhYmxlL2NvbXBvbmVudHMvdGFibGUtZXhwb3J0L3RhYmxlLWV4cG9ydC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7OztBQVEvRSxNQUFNLE9BQU8sb0JBQW9CO0lBTGpDO1FBTVMsZ0JBQVcsR0FBZSxLQUFLLENBQUM7UUFjOUIsYUFBUSxHQUFHLElBQUksWUFBWSxFQUFjLENBQUM7S0FLcEQ7SUFoQkEsSUFBYSxNQUFNLENBQUMsTUFBeUI7UUFDNUMsSUFBSSxDQUFDLE9BQU8sR0FBRyxNQUFNLENBQUM7UUFDdEIsSUFBSSxNQUFNLElBQUksTUFBTSxDQUFDLFdBQVcsRUFBRTtZQUNqQyxJQUFJLENBQUMsV0FBVyxHQUFHLE1BQU0sQ0FBQyxXQUFXLENBQUM7U0FDdEM7SUFDRixDQUFDO0lBRUQsSUFBSSxNQUFNO1FBQ1QsT0FBTyxJQUFJLENBQUMsT0FBTyxDQUFDO0lBQ3JCLENBQUM7SUFJRCxNQUFNLENBQUMsSUFBZ0I7UUFDdEIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztJQUM5QyxDQUFDOztrSEFuQlcsb0JBQW9CO3NHQUFwQixvQkFBb0IseUhDUmpDLHdzQkF1QkE7NEZEZmEsb0JBQW9CO2tCQUxoQyxTQUFTO21CQUFDO29CQUNWLFFBQVEsRUFBRSxrQkFBa0I7b0JBQzVCLFdBQVcsRUFBRSwrQkFBK0I7b0JBQzVDLFNBQVMsRUFBRSxDQUFDLCtCQUErQixDQUFDO2lCQUM1Qzs4QkFLYSxNQUFNO3NCQUFsQixLQUFLO2dCQVdJLFFBQVE7c0JBQWpCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFRhYmxlRXhwb3J0Q29uZmlnLCBFeHBvcnRUeXBlIH0gZnJvbSAnLi4vLi4vbW9kZWxzJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG5cdHNlbGVjdG9yOiAnbmRmLXRhYmxlLWV4cG9ydCcsXHJcblx0dGVtcGxhdGVVcmw6ICcuL3RhYmxlLWV4cG9ydC5jb21wb25lbnQuaHRtbCcsXHJcblx0c3R5bGVVcmxzOiBbJy4vdGFibGUtZXhwb3J0LmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIFRhYmxlRXhwb3J0Q29tcG9uZW50IHtcclxuXHRwcml2YXRlIF9leHBvcnRUeXBlOiBFeHBvcnRUeXBlID0gJ3BkZic7XHJcblxyXG5cdHByaXZhdGUgX2NvbmZpZzogVGFibGVFeHBvcnRDb25maWc7XHJcblx0QElucHV0KCkgc2V0IGNvbmZpZyhjb25maWc6IFRhYmxlRXhwb3J0Q29uZmlnKSB7XHJcblx0XHR0aGlzLl9jb25maWcgPSBjb25maWc7XHJcblx0XHRpZiAoY29uZmlnICYmIGNvbmZpZy5kZWZhdWx0VHlwZSkge1xyXG5cdFx0XHR0aGlzLl9leHBvcnRUeXBlID0gY29uZmlnLmRlZmF1bHRUeXBlO1xyXG5cdFx0fVxyXG5cdH1cclxuXHJcblx0Z2V0IGNvbmZpZygpOiBUYWJsZUV4cG9ydENvbmZpZyB7XHJcblx0XHRyZXR1cm4gdGhpcy5fY29uZmlnO1xyXG5cdH1cclxuXHJcblx0QE91dHB1dCgpIG9uRXhwb3J0ID0gbmV3IEV2ZW50RW1pdHRlcjxFeHBvcnRUeXBlPigpO1xyXG5cclxuXHRleHBvcnQodHlwZTogRXhwb3J0VHlwZSk6IHZvaWQge1xyXG5cdFx0dGhpcy5vbkV4cG9ydC5lbWl0KHR5cGUgfHwgdGhpcy5fZXhwb3J0VHlwZSk7XHJcblx0fVxyXG59XHJcbiIsIjxidXR0b25cclxuXHRtYXQtc3Ryb2tlZC1idXR0b25cclxuXHRbbWF0VG9vbHRpcF09XCInVEFCTEUuRVhQT1JULmV4cG9ydCcgfCB0cmFuc2xhdGVcIlxyXG5cdChjbGljayk9XCJleHBvcnQoKVwiXHJcblx0Km5nSWY9XCIhY29uZmlnPy5hbGxvd2VkVHlwZXNcIlxyXG4+XHJcblx0PG1hdC1pY29uPmZpbGVfZG93bmxvYWQ8L21hdC1pY29uPlxyXG48L2J1dHRvbj5cclxuXHJcbjxidXR0b25cclxuXHRtYXQtc3Ryb2tlZC1idXR0b25cclxuXHQqbmdJZj1cImNvbmZpZz8uYWxsb3dlZFR5cGVzXCJcclxuXHRbbWF0VG9vbHRpcF09XCInVEFCTEUuRVhQT1JULmV4cG9ydCcgfCB0cmFuc2xhdGVcIlxyXG5cdFttYXRNZW51VHJpZ2dlckZvcl09XCJtZW51XCJcclxuXHRbYXR0ci5hcmlhLWxhYmVsXT1cIidUQUJMRS5FWFBPUlQuZXhwb3J0JyB8IHRyYW5zbGF0ZVwiXHJcbj5cclxuXHQ8bWF0LWljb24+ZmlsZV9kb3dubG9hZDwvbWF0LWljb24+XHJcbjwvYnV0dG9uPlxyXG48bWF0LW1lbnUgI21lbnU9XCJtYXRNZW51XCI+XHJcblx0PGJ1dHRvbiBtYXQtbWVudS1pdGVtICpuZ0Zvcj1cImxldCB0eXBlIG9mIGNvbmZpZz8uYWxsb3dlZFR5cGVzXCIgKGNsaWNrKT1cImV4cG9ydCh0eXBlLnZhbHVlKVwiPlxyXG5cdFx0PHNwYW4+e3sgdHlwZS5sYWJlbCB8IHRyYW5zbGF0ZSB9fTwvc3Bhbj5cclxuXHQ8L2J1dHRvbj5cclxuPC9tYXQtbWVudT5cclxuIl19
|
package/esm2015/lib/components/tables/ndf-table/components/text-search/text-search.component.js
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { DestroySubject } from '../../../../../shared/components';
|
|
4
|
+
import { debounceTime, distinctUntilChanged, takeUntil } from 'rxjs/operators';
|
|
5
|
+
import { DEFAULT_DEBOUNCE_TIME } from '../../filters-panel';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@angular/material/icon";
|
|
8
|
+
import * as i2 from "@angular/common";
|
|
9
|
+
import * as i3 from "@angular/forms";
|
|
10
|
+
import * as i4 from "@ngx-translate/core";
|
|
11
|
+
export class TextSearchComponent extends DestroySubject {
|
|
12
|
+
constructor() {
|
|
13
|
+
super(...arguments);
|
|
14
|
+
this.internalValue = new FormControl('');
|
|
15
|
+
this.searchChange = new EventEmitter();
|
|
16
|
+
this.openModal = new EventEmitter();
|
|
17
|
+
this.clear = new EventEmitter();
|
|
18
|
+
}
|
|
19
|
+
set search(val) {
|
|
20
|
+
if (val) {
|
|
21
|
+
this.internalValue.setValue(val);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
get dialogConfig() {
|
|
25
|
+
var _a, _b;
|
|
26
|
+
return (_b = (_a = this.searchConfig) === null || _a === void 0 ? void 0 : _a.suffix) === null || _b === void 0 ? void 0 : _b.dialog;
|
|
27
|
+
}
|
|
28
|
+
get sendMode() {
|
|
29
|
+
var _a;
|
|
30
|
+
return (_a = this.searchConfig) === null || _a === void 0 ? void 0 : _a.searchMode;
|
|
31
|
+
}
|
|
32
|
+
get showSendButton() {
|
|
33
|
+
return !this.sendMode || this.sendMode == 'triggered';
|
|
34
|
+
}
|
|
35
|
+
ngOnInit() {
|
|
36
|
+
var _a;
|
|
37
|
+
if (this.searchConfig.searchMode === 'realTime') {
|
|
38
|
+
this.internalValue.valueChanges
|
|
39
|
+
.pipe(distinctUntilChanged(), debounceTime(((_a = this.searchConfig) === null || _a === void 0 ? void 0 : _a.debounceTime) || DEFAULT_DEBOUNCE_TIME), takeUntil(this.destroy$))
|
|
40
|
+
.subscribe((res) => {
|
|
41
|
+
this.onSearch(res);
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
onSearch(value = this.internalValue.value) {
|
|
46
|
+
this.searchChange.emit(value);
|
|
47
|
+
}
|
|
48
|
+
onReset() {
|
|
49
|
+
this.internalValue.reset('');
|
|
50
|
+
this.clear.emit();
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
TextSearchComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TextSearchComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
54
|
+
TextSearchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: TextSearchComponent, selector: "app-text-search", inputs: { searchConfig: "searchConfig", search: "search" }, outputs: { searchChange: "searchChange", openModal: "openModal", clear: "clear" }, usesInheritance: true, ngImport: i0, template: "<div class=\"global-search input-wrapper\">\r\n\t<label *ngIf=\"searchConfig?.label\">{{ searchConfig.label | translate }}</label>\r\n\r\n\t<div class=\"position-relative\">\r\n\t\t<input\r\n\t\t\ttype=\"text\"\r\n\t\t\tclass=\"global-search__input\"\r\n\t\t\t(keyup.enter)=\"onSearch()\"\r\n\t\t\t[formControl]=\"internalValue\"\r\n\t\t\t[placeholder]=\"searchConfig?.placeholder ?? 'FILTERS.enterText' | translate\"\r\n\t\t/>\r\n\r\n\t\t<button\r\n\t\t\t*ngIf=\"!!internalValue.value\"\r\n\t\t\tclass=\"global-search__suffix__item global-search__clear-button\"\r\n\t\t\t(click)=\"onReset()\"\r\n\t\t>\r\n\t\t\t<i class=\"bi icon-size-5 text-auroMetalSaurus bi-x-lg cursor-pointer\"></i>\r\n\t\t</button>\r\n\t</div>\r\n\r\n\t<div *ngIf=\"searchConfig?.suffix\" class=\"global-search__suffix\">\r\n\t\t<button *ngIf=\"dialogConfig\" class=\"global-search__suffix__item suffix-button\" (click)=\"openModal.emit()\">\r\n\t\t\t<mat-icon>help_outline</mat-icon>\r\n\t\t</button>\r\n\r\n\t\t<button\r\n\t\t\t*ngIf=\"showSendButton\"\r\n\t\t\tclass=\"global-search__suffix__item search-button\"\r\n\t\t\t(click)=\"onSearch()\"\r\n\t\t\t[disabled]=\"!internalValue.value\"\r\n\t\t>\r\n\t\t\t{{ searchConfig?.searchButtonLabel || 'FILTERS.search' | translate }}\r\n\t\t</button>\r\n\t</div>\r\n</div>\r\n", styles: [".global-search{--text-border-color: var(--gs-border-color, var(--border-color));display:var(--gs-display, inline-grid);grid-template-columns:var(--gs-columns, 1fr auto);align-items:var(--gs-align-items, center);border:var(--gs-border, 1px solid);border-color:var(--text-border-color);border-radius:var(--gs-radius, 4px);color:var(--gs-background, var(--main-text));background-color:var(--gs-background, transparent);height:var(--gs-height, calc(1.5em + .75rem + 2px));width:var(--gs-width, 100%)}.global-search:focus-within{--text-border-color: var(--gs-focus-border-color, var(--main-color))}.global-search__input{display:block;padding:var(--gs-input-padding, .375rem .75rem);font-size:1rem;font-weight:400;line-height:1.5;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;border-start-start-radius:var(--gs-radius, 4px);border-end-start-radius:var(--gs-radius, 4px);min-width:0}.global-search__clear-button{position:absolute;inset-inline-end:5px;inset-block-start:0;background-color:var(--gs-background, transparent)}.global-search__suffix{display:inline-flex;align-items:center;grid-gap:var(--gs-suffix-gap, 0 .2rem);gap:var(--gs-suffix-gap, 0 .2rem);border-inline-start:var(--gs-suffix-start-border, 1px solid var(--text-border-color))}.global-search__suffix__item{padding:var(--gs-item-padding, 0 .1rem);width:auto;height:100%;display:grid;place-items:center}.global-search__suffix .search-button{color:var(--gs-search-color, currentColor);background:var(--gs-search-background, transparent);padding:var(--gs-search-padding, 0 .5rem);border-inline-start:var(--gs-suffix-start-border, 1px solid var(--text-border-color));border-radius:var(--gs-search-radius, 3px)}.global-search__suffix .search-button:hover{--mi-search-color: var(--main-color)}\n"], components: [{ type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3.FormControlDirective, selector: "[formControl]", inputs: ["disabled", "formControl", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], pipes: { "translate": i4.TranslatePipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
55
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: TextSearchComponent, decorators: [{
|
|
56
|
+
type: Component,
|
|
57
|
+
args: [{
|
|
58
|
+
selector: 'app-text-search',
|
|
59
|
+
templateUrl: './text-search.component.html',
|
|
60
|
+
styleUrls: ['./text-search.component.scss'],
|
|
61
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
62
|
+
}]
|
|
63
|
+
}], propDecorators: { searchConfig: [{
|
|
64
|
+
type: Input
|
|
65
|
+
}], search: [{
|
|
66
|
+
type: Input
|
|
67
|
+
}], searchChange: [{
|
|
68
|
+
type: Output
|
|
69
|
+
}], openModal: [{
|
|
70
|
+
type: Output
|
|
71
|
+
}], clear: [{
|
|
72
|
+
type: Output
|
|
73
|
+
}] } });
|
|
74
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1zZWFyY2guY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZXMvbmRmLXRhYmxlL2NvbXBvbmVudHMvdGV4dC1zZWFyY2gvdGV4dC1zZWFyY2guY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZXMvbmRmLXRhYmxlL2NvbXBvbmVudHMvdGV4dC1zZWFyY2gvdGV4dC1zZWFyY2guY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4RyxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDN0MsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBQ2xFLE9BQU8sRUFBRSxZQUFZLEVBQUUsb0JBQW9CLEVBQUUsU0FBUyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDL0UsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7OztBQVM1RCxNQUFNLE9BQU8sbUJBQW9CLFNBQVEsY0FBYztJQU52RDs7UUFPQyxrQkFBYSxHQUFHLElBQUksV0FBVyxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBVTFCLGlCQUFZLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztRQUMxQyxjQUFTLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUNyQyxVQUFLLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQztLQW9DM0M7SUE1Q0EsSUFBYSxNQUFNLENBQUMsR0FBVztRQUM5QixJQUFJLEdBQUcsRUFBRTtZQUNSLElBQUksQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxDQUFDO1NBQ2pDO0lBQ0YsQ0FBQztJQU1ELElBQUksWUFBWTs7UUFDZixPQUFPLE1BQUEsTUFBQSxJQUFJLENBQUMsWUFBWSwwQ0FBRSxNQUFNLDBDQUFFLE1BQU0sQ0FBQztJQUMxQyxDQUFDO0lBRUQsSUFBSSxRQUFROztRQUNYLE9BQU8sTUFBQSxJQUFJLENBQUMsWUFBWSwwQ0FBRSxVQUFVLENBQUM7SUFDdEMsQ0FBQztJQUVELElBQUksY0FBYztRQUNqQixPQUFPLENBQUMsSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsUUFBUSxJQUFJLFdBQVcsQ0FBQztJQUN2RCxDQUFDO0lBRUQsUUFBUTs7UUFDUCxJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsVUFBVSxLQUFLLFVBQVUsRUFBRTtZQUNoRCxJQUFJLENBQUMsYUFBYSxDQUFDLFlBQVk7aUJBQzdCLElBQUksQ0FDSixvQkFBb0IsRUFBRSxFQUN0QixZQUFZLENBQUMsQ0FBQSxNQUFBLElBQUksQ0FBQyxZQUFZLDBDQUFFLFlBQVksS0FBSSxxQkFBcUIsQ0FBQyxFQUN0RSxTQUFTLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUN4QjtpQkFDQSxTQUFTLENBQUMsQ0FBQyxHQUFHLEVBQUUsRUFBRTtnQkFDbEIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsQ0FBQztZQUNwQixDQUFDLENBQUMsQ0FBQztTQUNKO0lBQ0YsQ0FBQztJQUVELFFBQVEsQ0FBQyxRQUFnQixJQUFJLENBQUMsYUFBYSxDQUFDLEtBQUs7UUFDaEQsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDL0IsQ0FBQztJQUVELE9BQU87UUFDTixJQUFJLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUM3QixJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ25CLENBQUM7O2lIQWhEVyxtQkFBbUI7cUdBQW5CLG1CQUFtQiw2TkNiaEMsbXhDQW9DQTs0RkR2QmEsbUJBQW1CO2tCQU4vQixTQUFTO21CQUFDO29CQUNWLFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFdBQVcsRUFBRSw4QkFBOEI7b0JBQzNDLFNBQVMsRUFBRSxDQUFDLDhCQUE4QixDQUFDO29CQUMzQyxlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtpQkFDL0M7OEJBSVMsWUFBWTtzQkFBcEIsS0FBSztnQkFFTyxNQUFNO3NCQUFsQixLQUFLO2dCQU1JLFlBQVk7c0JBQXJCLE1BQU07Z0JBQ0csU0FBUztzQkFBbEIsTUFBTTtnQkFDRyxLQUFLO3NCQUFkLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgRGVzdHJveVN1YmplY3QgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9zaGFyZWQvY29tcG9uZW50cyc7XHJcbmltcG9ydCB7IGRlYm91bmNlVGltZSwgZGlzdGluY3RVbnRpbENoYW5nZWQsIHRha2VVbnRpbCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcclxuaW1wb3J0IHsgREVGQVVMVF9ERUJPVU5DRV9USU1FIH0gZnJvbSAnLi4vLi4vZmlsdGVycy1wYW5lbCc7XHJcbmltcG9ydCB7IEdsb2JhbFNlYXJjaENvbmZpZyB9IGZyb20gJy4uLy4uL21vZGVscyc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuXHRzZWxlY3RvcjogJ2FwcC10ZXh0LXNlYXJjaCcsXHJcblx0dGVtcGxhdGVVcmw6ICcuL3RleHQtc2VhcmNoLmNvbXBvbmVudC5odG1sJyxcclxuXHRzdHlsZVVybHM6IFsnLi90ZXh0LXNlYXJjaC5jb21wb25lbnQuc2NzcyddLFxyXG5cdGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUZXh0U2VhcmNoQ29tcG9uZW50IGV4dGVuZHMgRGVzdHJveVN1YmplY3QgaW1wbGVtZW50cyBPbkluaXQge1xyXG5cdGludGVybmFsVmFsdWUgPSBuZXcgRm9ybUNvbnRyb2woJycpO1xyXG5cclxuXHRASW5wdXQoKSBzZWFyY2hDb25maWc6IEdsb2JhbFNlYXJjaENvbmZpZztcclxuXHJcblx0QElucHV0KCkgc2V0IHNlYXJjaCh2YWw6IHN0cmluZykge1xyXG5cdFx0aWYgKHZhbCkge1xyXG5cdFx0XHR0aGlzLmludGVybmFsVmFsdWUuc2V0VmFsdWUodmFsKTtcclxuXHRcdH1cclxuXHR9XHJcblxyXG5cdEBPdXRwdXQoKSBzZWFyY2hDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcclxuXHRAT3V0cHV0KCkgb3Blbk1vZGFsID0gbmV3IEV2ZW50RW1pdHRlcjx2b2lkPigpO1xyXG5cdEBPdXRwdXQoKSBjbGVhciA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcclxuXHJcblx0Z2V0IGRpYWxvZ0NvbmZpZygpIHtcclxuXHRcdHJldHVybiB0aGlzLnNlYXJjaENvbmZpZz8uc3VmZml4Py5kaWFsb2c7XHJcblx0fVxyXG5cclxuXHRnZXQgc2VuZE1vZGUoKSB7XHJcblx0XHRyZXR1cm4gdGhpcy5zZWFyY2hDb25maWc/LnNlYXJjaE1vZGU7XHJcblx0fVxyXG5cclxuXHRnZXQgc2hvd1NlbmRCdXR0b24oKSB7XHJcblx0XHRyZXR1cm4gIXRoaXMuc2VuZE1vZGUgfHwgdGhpcy5zZW5kTW9kZSA9PSAndHJpZ2dlcmVkJztcclxuXHR9XHJcblxyXG5cdG5nT25Jbml0KCk6IHZvaWQge1xyXG5cdFx0aWYgKHRoaXMuc2VhcmNoQ29uZmlnLnNlYXJjaE1vZGUgPT09ICdyZWFsVGltZScpIHtcclxuXHRcdFx0dGhpcy5pbnRlcm5hbFZhbHVlLnZhbHVlQ2hhbmdlc1xyXG5cdFx0XHRcdC5waXBlKFxyXG5cdFx0XHRcdFx0ZGlzdGluY3RVbnRpbENoYW5nZWQoKSxcclxuXHRcdFx0XHRcdGRlYm91bmNlVGltZSh0aGlzLnNlYXJjaENvbmZpZz8uZGVib3VuY2VUaW1lIHx8IERFRkFVTFRfREVCT1VOQ0VfVElNRSksXHJcblx0XHRcdFx0XHR0YWtlVW50aWwodGhpcy5kZXN0cm95JClcclxuXHRcdFx0XHQpXHJcblx0XHRcdFx0LnN1YnNjcmliZSgocmVzKSA9PiB7XHJcblx0XHRcdFx0XHR0aGlzLm9uU2VhcmNoKHJlcyk7XHJcblx0XHRcdFx0fSk7XHJcblx0XHR9XHJcblx0fVxyXG5cclxuXHRvblNlYXJjaCh2YWx1ZTogc3RyaW5nID0gdGhpcy5pbnRlcm5hbFZhbHVlLnZhbHVlKSB7XHJcblx0XHR0aGlzLnNlYXJjaENoYW5nZS5lbWl0KHZhbHVlKTtcclxuXHR9XHJcblxyXG5cdG9uUmVzZXQoKSB7XHJcblx0XHR0aGlzLmludGVybmFsVmFsdWUucmVzZXQoJycpO1xyXG5cdFx0dGhpcy5jbGVhci5lbWl0KCk7XHJcblx0fVxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJnbG9iYWwtc2VhcmNoIGlucHV0LXdyYXBwZXJcIj5cclxuXHQ8bGFiZWwgKm5nSWY9XCJzZWFyY2hDb25maWc/LmxhYmVsXCI+e3sgc2VhcmNoQ29uZmlnLmxhYmVsIHwgdHJhbnNsYXRlIH19PC9sYWJlbD5cclxuXHJcblx0PGRpdiBjbGFzcz1cInBvc2l0aW9uLXJlbGF0aXZlXCI+XHJcblx0XHQ8aW5wdXRcclxuXHRcdFx0dHlwZT1cInRleHRcIlxyXG5cdFx0XHRjbGFzcz1cImdsb2JhbC1zZWFyY2hfX2lucHV0XCJcclxuXHRcdFx0KGtleXVwLmVudGVyKT1cIm9uU2VhcmNoKClcIlxyXG5cdFx0XHRbZm9ybUNvbnRyb2xdPVwiaW50ZXJuYWxWYWx1ZVwiXHJcblx0XHRcdFtwbGFjZWhvbGRlcl09XCJzZWFyY2hDb25maWc/LnBsYWNlaG9sZGVyID8/ICdGSUxURVJTLmVudGVyVGV4dCcgfCB0cmFuc2xhdGVcIlxyXG5cdFx0Lz5cclxuXHJcblx0XHQ8YnV0dG9uXHJcblx0XHRcdCpuZ0lmPVwiISFpbnRlcm5hbFZhbHVlLnZhbHVlXCJcclxuXHRcdFx0Y2xhc3M9XCJnbG9iYWwtc2VhcmNoX19zdWZmaXhfX2l0ZW0gZ2xvYmFsLXNlYXJjaF9fY2xlYXItYnV0dG9uXCJcclxuXHRcdFx0KGNsaWNrKT1cIm9uUmVzZXQoKVwiXHJcblx0XHQ+XHJcblx0XHRcdDxpIGNsYXNzPVwiYmkgaWNvbi1zaXplLTUgdGV4dC1hdXJvTWV0YWxTYXVydXMgYmkteC1sZyBjdXJzb3ItcG9pbnRlclwiPjwvaT5cclxuXHRcdDwvYnV0dG9uPlxyXG5cdDwvZGl2PlxyXG5cclxuXHQ8ZGl2ICpuZ0lmPVwic2VhcmNoQ29uZmlnPy5zdWZmaXhcIiBjbGFzcz1cImdsb2JhbC1zZWFyY2hfX3N1ZmZpeFwiPlxyXG5cdFx0PGJ1dHRvbiAqbmdJZj1cImRpYWxvZ0NvbmZpZ1wiIGNsYXNzPVwiZ2xvYmFsLXNlYXJjaF9fc3VmZml4X19pdGVtIHN1ZmZpeC1idXR0b25cIiAoY2xpY2spPVwib3Blbk1vZGFsLmVtaXQoKVwiPlxyXG5cdFx0XHQ8bWF0LWljb24+aGVscF9vdXRsaW5lPC9tYXQtaWNvbj5cclxuXHRcdDwvYnV0dG9uPlxyXG5cclxuXHRcdDxidXR0b25cclxuXHRcdFx0Km5nSWY9XCJzaG93U2VuZEJ1dHRvblwiXHJcblx0XHRcdGNsYXNzPVwiZ2xvYmFsLXNlYXJjaF9fc3VmZml4X19pdGVtIHNlYXJjaC1idXR0b25cIlxyXG5cdFx0XHQoY2xpY2spPVwib25TZWFyY2goKVwiXHJcblx0XHRcdFtkaXNhYmxlZF09XCIhaW50ZXJuYWxWYWx1ZS52YWx1ZVwiXHJcblx0XHQ+XHJcblx0XHRcdHt7IHNlYXJjaENvbmZpZz8uc2VhcmNoQnV0dG9uTGFiZWwgfHwgJ0ZJTFRFUlMuc2VhcmNoJyB8IHRyYW5zbGF0ZSB9fVxyXG5cdFx0PC9idXR0b24+XHJcblx0PC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './sizes';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udXhlby1kZXZlbG9wbWVudC1mcmFtZXdvcmsvc3JjL2xpYi9jb21wb25lbnRzL3RhYmxlcy9uZGYtdGFibGUvY29uc3RhbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zaXplcyc7XHJcbiJdfQ==
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export const PAGE_SIZE = [
|
|
2
|
+
{
|
|
3
|
+
label: '5',
|
|
4
|
+
size: 5
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
label: '10',
|
|
8
|
+
size: 10
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
label: '25',
|
|
12
|
+
size: 25
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
label: '50',
|
|
16
|
+
size: 50
|
|
17
|
+
}
|
|
18
|
+
];
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2l6ZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udXhlby1kZXZlbG9wbWVudC1mcmFtZXdvcmsvc3JjL2xpYi9jb21wb25lbnRzL3RhYmxlcy9uZGYtdGFibGUvY29uc3RhbnRzL3NpemVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxNQUFNLFNBQVMsR0FBc0M7SUFDM0Q7UUFDQyxLQUFLLEVBQUUsR0FBRztRQUNWLElBQUksRUFBRSxDQUFDO0tBQ1A7SUFDRDtRQUNDLEtBQUssRUFBRSxJQUFJO1FBQ1gsSUFBSSxFQUFFLEVBQUU7S0FDUjtJQUNEO1FBQ0MsS0FBSyxFQUFFLElBQUk7UUFDWCxJQUFJLEVBQUUsRUFBRTtLQUNSO0lBQ0Q7UUFDQyxLQUFLLEVBQUUsSUFBSTtRQUNYLElBQUksRUFBRSxFQUFFO0tBQ1I7Q0FDRCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IFBBR0VfU0laRTogeyBsYWJlbDogc3RyaW5nOyBzaXplOiBudW1iZXIgfVtdID0gW1xyXG5cdHtcclxuXHRcdGxhYmVsOiAnNScsXHJcblx0XHRzaXplOiA1XHJcblx0fSxcclxuXHR7XHJcblx0XHRsYWJlbDogJzEwJyxcclxuXHRcdHNpemU6IDEwXHJcblx0fSxcclxuXHR7XHJcblx0XHRsYWJlbDogJzI1JyxcclxuXHRcdHNpemU6IDI1XHJcblx0fSxcclxuXHR7XHJcblx0XHRsYWJlbDogJzUwJyxcclxuXHRcdHNpemU6IDUwXHJcblx0fVxyXG5dO1xyXG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './ndf-table/ndf-table.component';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udXhlby1kZXZlbG9wbWVudC1mcmFtZXdvcmsvc3JjL2xpYi9jb21wb25lbnRzL3RhYmxlcy9uZGYtdGFibGUvY29udGFpbmVycy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlDQUFpQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9uZGYtdGFibGUvbmRmLXRhYmxlLmNvbXBvbmVudCc7XHJcbiJdfQ==
|