nuxeo-development-framework 5.2.2 → 5.2.4
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 +7114 -714
- 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/tables/table/table/table.component.js +302 -0
- 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 +6335 -554
- 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 +6 -5
- 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/table.component.js +0 -300
- 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
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import { DATE_TYPE, GREGORIAN_FORMAT, HIJRI_FORMAT } from '../constants';
|
|
4
|
+
import * as _moment from 'moment';
|
|
5
|
+
import { default as _rollupMoment } from 'moment';
|
|
6
|
+
import * as _momentHjr from 'moment-hijri';
|
|
7
|
+
import { default as _rollupMomentHijri } from 'moment-hijri';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
const moment = _rollupMoment || _moment;
|
|
10
|
+
const momentHijri = _rollupMomentHijri || _momentHjr;
|
|
11
|
+
export class CalendarService {
|
|
12
|
+
constructor() {
|
|
13
|
+
this._dateTypeSub = new BehaviorSubject(DATE_TYPE.Gregorian);
|
|
14
|
+
this.dateType$ = this._dateTypeSub.asObservable();
|
|
15
|
+
this._gregorianFormat = GREGORIAN_FORMAT;
|
|
16
|
+
this._hijriFormat = HIJRI_FORMAT;
|
|
17
|
+
}
|
|
18
|
+
get dateType() {
|
|
19
|
+
return this._dateTypeSub.value;
|
|
20
|
+
}
|
|
21
|
+
get isHijri() {
|
|
22
|
+
return this.dateType === DATE_TYPE.Hijri;
|
|
23
|
+
}
|
|
24
|
+
get isGregorian() {
|
|
25
|
+
return this.dateType === DATE_TYPE.Gregorian;
|
|
26
|
+
}
|
|
27
|
+
toggleCalendar() {
|
|
28
|
+
const newValue = this.dateType === DATE_TYPE.Gregorian ? DATE_TYPE.Hijri : DATE_TYPE.Gregorian;
|
|
29
|
+
this._dateTypeSub.next(newValue);
|
|
30
|
+
}
|
|
31
|
+
formatInputDate(date) {
|
|
32
|
+
if (!date) {
|
|
33
|
+
return '';
|
|
34
|
+
}
|
|
35
|
+
return momentHijri(date).locale('en').format();
|
|
36
|
+
}
|
|
37
|
+
formatOutputDate(date) {
|
|
38
|
+
if (!date) {
|
|
39
|
+
return '';
|
|
40
|
+
}
|
|
41
|
+
return date;
|
|
42
|
+
}
|
|
43
|
+
formatRangeInputDate(date) {
|
|
44
|
+
if (!date) {
|
|
45
|
+
return {};
|
|
46
|
+
}
|
|
47
|
+
return Object.entries(date).reduce((acc, [key, value]) => {
|
|
48
|
+
return Object.assign(Object.assign({}, acc), { [key]: this.formatInputDate(value) });
|
|
49
|
+
}, {});
|
|
50
|
+
}
|
|
51
|
+
formatRangeOutputDate(date) {
|
|
52
|
+
if (!date) {
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
return date;
|
|
56
|
+
}
|
|
57
|
+
validateDate(value) {
|
|
58
|
+
if (!value) {
|
|
59
|
+
return true;
|
|
60
|
+
}
|
|
61
|
+
return this.isHijri ? this._validateHijriDate(value) : this._validateGregorianDate(value);
|
|
62
|
+
}
|
|
63
|
+
validateRangeDate(value) {
|
|
64
|
+
//TODO Implement method
|
|
65
|
+
return true;
|
|
66
|
+
}
|
|
67
|
+
prepareOutputValue(date) {
|
|
68
|
+
if (!date || !moment(date).isValid()) {
|
|
69
|
+
return null;
|
|
70
|
+
}
|
|
71
|
+
return {
|
|
72
|
+
value: this.formatToISOString(date),
|
|
73
|
+
hijriValue: this.formatToHijri(date)
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
prepareRangeOutputValue(date) {
|
|
77
|
+
if (!date || Object.values(date).every((value) => !value)) {
|
|
78
|
+
return null;
|
|
79
|
+
}
|
|
80
|
+
return {
|
|
81
|
+
value: this._format(date, this.formatToISOString.bind(this)),
|
|
82
|
+
hijriValue: this._format(date, this.formatToHijri.bind(this))
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
createMoment(value) {
|
|
86
|
+
return momentHijri(new Date(value).toISOString()).format(this._gregorianFormat);
|
|
87
|
+
}
|
|
88
|
+
formatToGregorian(date) {
|
|
89
|
+
return momentHijri(date).locale('en').format(this._gregorianFormat);
|
|
90
|
+
}
|
|
91
|
+
formatToHijri(date) {
|
|
92
|
+
const result = momentHijri(date).locale('en').format(this._hijriFormat);
|
|
93
|
+
return result !== 'Invalid date' ? result : null;
|
|
94
|
+
}
|
|
95
|
+
formatToISOString(date) {
|
|
96
|
+
return momentHijri(date).locale('en').toISOString();
|
|
97
|
+
}
|
|
98
|
+
createFullDateFromYear(year) {
|
|
99
|
+
const yearNum = Number(year);
|
|
100
|
+
if (isNaN(yearNum) || yearNum.toString().length !== 4) {
|
|
101
|
+
return null;
|
|
102
|
+
}
|
|
103
|
+
return momentHijri({ year: yearNum }).locale('en').startOf('year').format(this._gregorianFormat);
|
|
104
|
+
}
|
|
105
|
+
createFullDateFromMonth(month, year = moment().year()) {
|
|
106
|
+
if (isNaN(year) || isNaN(month)) {
|
|
107
|
+
return null;
|
|
108
|
+
}
|
|
109
|
+
return momentHijri({ year, month: month }).locale('en').startOf('month').format(this._gregorianFormat);
|
|
110
|
+
}
|
|
111
|
+
_validateGregorianDate(value) {
|
|
112
|
+
var _a;
|
|
113
|
+
return (_a = moment(value)) === null || _a === void 0 ? void 0 : _a.isValid();
|
|
114
|
+
}
|
|
115
|
+
_validateHijriDate(value) {
|
|
116
|
+
var _a;
|
|
117
|
+
return (_a = momentHijri(value)) === null || _a === void 0 ? void 0 : _a.isValid();
|
|
118
|
+
}
|
|
119
|
+
_format(data, map) {
|
|
120
|
+
return Object.entries(data).reduce((acc, [key, value]) => {
|
|
121
|
+
return Object.assign(Object.assign({}, acc), { [key]: map(value) });
|
|
122
|
+
}, {});
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
CalendarService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: CalendarService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
126
|
+
CalendarService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: CalendarService });
|
|
127
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: CalendarService, decorators: [{
|
|
128
|
+
type: Injectable
|
|
129
|
+
}] });
|
|
130
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXIuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL251eGVvLWRldmVsb3BtZW50LWZyYW1ld29yay9zcmMvbGliL2NvbXBvbmVudHMvbmRmLWRhdGVwaWNrZXIvc2VydmljZXMvY2FsZW5kYXIuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDdkMsT0FBTyxFQUFFLFNBQVMsRUFBRSxnQkFBZ0IsRUFBRSxZQUFZLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFHekUsT0FBTyxLQUFLLE9BQU8sTUFBTSxRQUFRLENBQUM7QUFDbEMsT0FBTyxFQUFFLE9BQU8sSUFBSSxhQUFhLEVBQVUsTUFBTSxRQUFRLENBQUM7QUFDMUQsT0FBTyxLQUFLLFVBQVUsTUFBTSxjQUFjLENBQUM7QUFDM0MsT0FBTyxFQUFFLE9BQU8sSUFBSSxrQkFBa0IsRUFBRSxNQUFNLGNBQWMsQ0FBQzs7QUFFN0QsTUFBTSxNQUFNLEdBQUcsYUFBYSxJQUFJLE9BQU8sQ0FBQztBQUN4QyxNQUFNLFdBQVcsR0FBRyxrQkFBa0IsSUFBSSxVQUFVLENBQUM7QUFHckQsTUFBTSxPQUFPLGVBQWU7SUFENUI7UUFFUyxpQkFBWSxHQUFHLElBQUksZUFBZSxDQUFXLFNBQVMsQ0FBQyxTQUFTLENBQUMsQ0FBQztRQUUxRSxjQUFTLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUU1QixxQkFBZ0IsR0FBRyxnQkFBZ0IsQ0FBQztRQUNwQyxpQkFBWSxHQUFHLFlBQVksQ0FBQztLQTJJN0M7SUF6SUEsSUFBSSxRQUFRO1FBQ1gsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQztJQUNoQyxDQUFDO0lBRUQsSUFBSSxPQUFP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Y2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEJlaGF2aW9yU3ViamVjdCB9IGZyb20gJ3J4anMnO1xyXG5pbXBvcnQgeyBEQVRFX1RZUEUsIEdSRUdPUklBTl9GT1JNQVQsIEhJSlJJX0ZPUk1BVCB9IGZyb20gJy4uL2NvbnN0YW50cyc7XHJcbmltcG9ydCB7IERhdGVUeXBlLCBEYXRlVmFsdWVPYmplY3QsIExvY2FsaXplRGF0ZVZhbHVlIH0gZnJvbSAnLi4vbW9kZWxzJztcclxuXHJcbmltcG9ydCAqIGFzIF9tb21lbnQgZnJvbSAnbW9tZW50JztcclxuaW1wb3J0IHsgZGVmYXVsdCBhcyBfcm9sbHVwTW9tZW50LCBNb21lbnQgfSBmcm9tICdtb21lbnQnO1xyXG5pbXBvcnQgKiBhcyBfbW9tZW50SGpyIGZyb20gJ21vbWVudC1oaWpyaSc7XHJcbmltcG9ydCB7IGRlZmF1bHQgYXMgX3JvbGx1cE1vbWVudEhpanJpIH0gZnJvbSAnbW9tZW50LWhpanJpJztcclxuXHJcbmNvbnN0IG1vbWVudCA9IF9yb2xsdXBNb21lbnQgfHwgX21vbWVudDtcclxuY29uc3QgbW9tZW50SGlqcmkgPSBfcm9sbHVwTW9tZW50SGlqcmkgfHwgX21vbWVudEhqcjtcclxuXHJcbkBJbmplY3RhYmxlKClcclxuZXhwb3J0IGNsYXNzIENhbGVuZGFyU2VydmljZSB7XHJcblx0cHJpdmF0ZSBfZGF0ZVR5cGVTdWIgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PERhdGVUeXBlPihEQVRFX1RZUEUuR3JlZ29yaWFuKTtcclxuXHJcblx0ZGF0ZVR5cGUkID0gdGhpcy5fZGF0ZVR5cGVTdWIuYXNPYnNlcnZhYmxlKCk7XHJcblxyXG5cdHByaXZhdGUgcmVhZG9ubHkgX2dyZWdvcmlhbkZvcm1hdCA9IEdSRUdPUklBTl9GT1JNQVQ7XHJcblx0cHJpdmF0ZSByZWFkb25seSBfaGlqcmlGb3JtYXQgPSBISUpSSV9GT1JNQVQ7XHJcblxyXG5cdGdldCBkYXRlVHlwZSgpIHtcclxuXHRcdHJldHVybiB0aGlzLl9kYXRlVHlwZVN1Yi52YWx1ZTtcclxuXHR9XHJcblxyXG5cdGdldCBpc0hpanJpKCkge1xyXG5cdFx0cmV0dXJuIHRoaXMuZGF0ZVR5cGUgPT09IERBVEVfVFlQRS5IaWpyaTtcclxuXHR9XHJcblxyXG5cdGdldCBpc0dyZWdvcmlhbigpIHtcclxuXHRcdHJldHVybiB0aGlzLmRhdGVUeXBlID09PSBEQVRFX1RZUEUuR3JlZ29yaWFuO1xyXG5cdH1cclxuXHJcblx0dG9nZ2xlQ2FsZW5kYXIoKSB7XHJcblx0XHRjb25zdCBuZXdWYWx1ZSA9IHRoaXMuZGF0ZVR5cGUgPT09IERBVEVfVFlQRS5HcmVnb3JpYW4gPyBEQVRFX1RZUEUuSGlqcmkgOiBEQVRFX1RZUEUuR3JlZ29yaWFuO1xyXG5cdFx0dGhpcy5fZGF0ZVR5cGVTdWIubmV4dChuZXdWYWx1ZSk7XHJcblx0fVxyXG5cclxuXHRmb3JtYXRJbnB1dERhdGUoZGF0ZTogc3RyaW5nIHwgTW9tZW50KTogc3RyaW5nIHtcclxuXHRcdGlmICghZGF0ZSkge1xyXG5cdFx0XHRyZXR1cm4gJyc7XHJcblx0XHR9XHJcblxyXG5cdFx0cmV0dXJuIG1vbWVudEhpanJpKGRhdGUpLmxvY2FsZSgnZW4nKS5mb3JtYXQoKTtcclxuXHR9XHJcblxyXG5cdGZvcm1hdE91dHB1dERhdGUoZGF0ZTogc3RyaW5nIHwgTW9tZW50KTogc3RyaW5nIHtcclxuXHRcdGlmICghZGF0ZSkge1xyXG5cdFx0XHRyZXR1cm4gJyc7XHJcblx0XHR9XHJcblx0XHRyZXR1cm4gZGF0ZSBhcyBzdHJpbmc7XHJcblx0fVxyXG5cclxuXHRmb3JtYXRSYW5nZUlucHV0RGF0ZShkYXRlOiBEYXRlVmFsdWVPYmplY3QpOiBEYXRlVmFsdWVPYmplY3Qge1xyXG5cdFx0aWYgKCFkYXRlKSB7XHJcblx0XHRcdHJldHVybiB7fTtcclxuXHRcdH1cclxuXHRcdHJldHVybiBPYmplY3QuZW50cmllcyhkYXRlKS5yZWR1Y2UoKGFjYywgW2tleSwgdmFsdWVdKSA9PiB7XHJcblx0XHRcdHJldHVybiB7XHJcblx0XHRcdFx0Li4uYWNjLFxyXG5cdFx0XHRcdFtrZXldOiB0aGlzLmZvcm1hdElucHV0RGF0ZSh2YWx1ZSBhcyBhbnkpXHJcblx0XHRcdH07XHJcblx0XHR9LCB7fSkgYXMgRGF0ZVZhbHVlT2JqZWN0O1xyXG5cdH1cclxuXHJcblx0Zm9ybWF0UmFuZ2VPdXRwdXREYXRlKGRhdGU6IERhdGVWYWx1ZU9iamVjdCkge1xyXG5cdFx0aWYgKCFkYXRlKSB7XHJcblx0XHRcdHJldHVybiBudWxsO1xyXG5cdFx0fVxyXG5cdFx0cmV0dXJuIGRhdGU7XHJcblx0fVxyXG5cclxuXHR2YWxpZGF0ZURhdGUodmFsdWU6IGFueSk6IGJvb2xlYW4ge1xyXG5cdFx0aWYgKCF2YWx1ZSkge1xyXG5cdFx0XHRyZXR1cm4gdHJ1ZTtcclxuXHRcdH1cclxuXHJcblx0XHRyZXR1cm4gdGhpcy5pc0hpanJpID8gdGhpcy5fdmFsaWRhdGVIaWpyaURhdGUodmFsdWUpIDogdGhpcy5fdmFsaWRhdGVHcmVnb3JpYW5EYXRlKHZhbHVlKTtcclxuXHR9XHJcblxyXG5cdHZhbGlkYXRlUmFuZ2VEYXRlKHZhbHVlOiBhbnkpOiBib29sZWFuIHtcclxuXHRcdC8vVE9ETyBJbXBsZW1lbnQgbWV0aG9kXHJcblx0XHRyZXR1cm4gdHJ1ZTtcclxuXHR9XHJcblxyXG5cdHByZXBhcmVPdXRwdXRWYWx1ZShkYXRlOiBzdHJpbmcgfCBfbW9tZW50Lk1vbWVudCk6IExvY2FsaXplRGF0ZVZhbHVlPHN0cmluZz4gfCBudWxsIHtcclxuXHRcdGlmICghZGF0ZSB8fCAhbW9tZW50KGRhdGUpLmlzVmFsaWQoKSkge1xyXG5cdFx0XHRyZXR1cm4gbnVsbDtcclxuXHRcdH1cclxuXHJcblx0XHRyZXR1cm4ge1xyXG5cdFx0XHR2YWx1ZTogdGhpcy5mb3JtYXRUb0lTT1N0cmluZyhkYXRlKSxcclxuXHRcdFx0aGlqcmlWYWx1ZTogdGhpcy5mb3JtYXRUb0hpanJpKGRhdGUpXHJcblx0XHR9O1xyXG5cdH1cclxuXHJcblx0cHJlcGFyZVJhbmdlT3V0cHV0VmFsdWUoZGF0ZTogRGF0ZVZhbHVlT2JqZWN0KTogTG9jYWxpemVEYXRlVmFsdWU8RGF0ZVZhbHVlT2JqZWN0PiB8IG51bGwge1xyXG5cdFx0aWYgKCFkYXRlIHx8IE9iamVjdC52YWx1ZXMoZGF0ZSkuZXZlcnkoKHZhbHVlKSA9PiAhdmFsdWUpKSB7XHJcblx0XHRcdHJldHVybiBudWxsO1xyXG5cdFx0fVxyXG5cclxuXHRcdHJldHVybiB7XHJcblx0XHRcdHZhbHVlOiB0aGlzLl9mb3JtYXQoZGF0ZSwgdGhpcy5mb3JtYXRUb0lTT1N0cmluZy5iaW5kKHRoaXMpKSxcclxuXHRcdFx0aGlqcmlWYWx1ZTogdGhpcy5fZm9ybWF0KGRhdGUsIHRoaXMuZm9ybWF0VG9IaWpyaS5iaW5kKHRoaXMpKVxyXG5cdFx0fTtcclxuXHR9XHJcblxyXG5cdGNyZWF0ZU1vbWVudCh2YWx1ZTogc3RyaW5nKTogYW55IHtcclxuXHRcdHJldHVybiBtb21lbnRIaWpyaShuZXcgRGF0ZSh2YWx1ZSkudG9JU09TdHJpbmcoKSkuZm9ybWF0KHRoaXMuX2dyZWdvcmlhbkZvcm1hdCk7XHJcblx0fVxyXG5cclxuXHRmb3JtYXRUb0dyZWdvcmlhbihkYXRlOiBzdHJpbmcgfCBfbW9tZW50Lk1vbWVudCk6IHN0cmluZyB7XHJcblx0XHRyZXR1cm4gbW9tZW50SGlqcmkoZGF0ZSkubG9jYWxlKCdlbicpLmZvcm1hdCh0aGlzLl9ncmVnb3JpYW5Gb3JtYXQpO1xyXG5cdH1cclxuXHJcblx0Zm9ybWF0VG9IaWpyaShkYXRlOiBzdHJpbmcgfCBfbW9tZW50Lk1vbWVudCk6IHN0cmluZyB7XHJcblx0XHRjb25zdCByZXN1bHQgPSBtb21lbnRIaWpyaShkYXRlKS5sb2NhbGUoJ2VuJykuZm9ybWF0KHRoaXMuX2hpanJpRm9ybWF0KTtcclxuXHRcdHJldHVybiByZXN1bHQgIT09ICdJbnZhbGlkIGRhdGUnID8gcmVzdWx0IDogKG51bGwgYXMgdW5rbm93biBhcyBzdHJpbmcpO1xyXG5cdH1cclxuXHJcblx0Zm9ybWF0VG9JU09TdHJpbmcoZGF0ZTogc3RyaW5nIHwgX21vbWVudC5Nb21lbnQpOiBzdHJpbmcge1xyXG5cdFx0cmV0dXJuIG1vbWVudEhpanJpKGRhdGUpLmxvY2FsZSgnZW4nKS50b0lTT1N0cmluZygpO1xyXG5cdH1cclxuXHJcblx0Y3JlYXRlRnVsbERhdGVGcm9tWWVhcih5ZWFyOiBudW1iZXIpIHtcclxuXHRcdGNvbnN0IHllYXJOdW0gPSBOdW1iZXIoeWVhcik7XHJcblxyXG5cdFx0aWYgKGlzTmFOKHllYXJOdW0pIHx8IHllYXJOdW0udG9TdHJpbmcoKS5sZW5ndGggIT09IDQpIHtcclxuXHRcdFx0cmV0dXJuIG51bGw7XHJcblx0XHR9XHJcblxyXG5cdFx0cmV0dXJuIG1vbWVudEhpanJpKHsgeWVhcjogeWVhck51bSB9KS5sb2NhbGUoJ2VuJykuc3RhcnRPZigneWVhcicpLmZvcm1hdCh0aGlzLl9ncmVnb3JpYW5Gb3JtYXQpO1xyXG5cdH1cclxuXHJcblx0Y3JlYXRlRnVsbERhdGVGcm9tTW9udGgobW9udGg6IG51bWJlciwgeWVhcjogbnVtYmVyID0gbW9tZW50KCkueWVhcigpKSB7XHJcblx0XHRpZiAoaXNOYU4oeWVhcikgfHwgaXNOYU4obW9udGgpKSB7XHJcblx0XHRcdHJldHVybiBudWxsO1xyXG5cdFx0fVxyXG5cclxuXHRcdHJldHVybiBtb21lbnRIaWpyaSh7IHllYXIsIG1vbnRoOiBtb250aCB9KS5sb2NhbGUoJ2VuJykuc3RhcnRPZignbW9udGgnKS5mb3JtYXQodGhpcy5fZ3JlZ29yaWFuRm9ybWF0KTtcclxuXHR9XHJcblxyXG5cdHByaXZhdGUgX3ZhbGlkYXRlR3JlZ29yaWFuRGF0ZSh2YWx1ZTogYW55KSB7XHJcblx0XHRyZXR1cm4gbW9tZW50KHZhbHVlKT8uaXNWYWxpZCgpO1xyXG5cdH1cclxuXHJcblx0cHJpdmF0ZSBfdmFsaWRhdGVIaWpyaURhdGUodmFsdWU6IGFueSkge1xyXG5cdFx0cmV0dXJuIG1vbWVudEhpanJpKHZhbHVlKT8uaXNWYWxpZCgpO1xyXG5cdH1cclxuXHJcblx0cHJpdmF0ZSBfZm9ybWF0KGRhdGE6IERhdGVWYWx1ZU9iamVjdCwgbWFwOiAoZGF0ZTogc3RyaW5nIHwgX21vbWVudC5Nb21lbnQpID0+IHN0cmluZykge1xyXG5cdFx0cmV0dXJuIE9iamVjdC5lbnRyaWVzKGRhdGEpLnJlZHVjZSgoYWNjLCBba2V5LCB2YWx1ZV0pID0+IHtcclxuXHRcdFx0cmV0dXJuIHtcclxuXHRcdFx0XHQuLi5hY2MsXHJcblx0XHRcdFx0W2tleV06IG1hcCh2YWx1ZSBhcyBhbnkpXHJcblx0XHRcdH07XHJcblx0XHR9LCB7fSkgYXMgRGF0ZVZhbHVlT2JqZWN0O1xyXG5cdH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './calendar.service';
|
|
2
|
+
export * from './localize-state.service';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udXhlby1kZXZlbG9wbWVudC1mcmFtZXdvcmsvc3JjL2xpYi9jb21wb25lbnRzL25kZi1kYXRlcGlja2VyL3NlcnZpY2VzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY2FsZW5kYXIuc2VydmljZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbG9jYWxpemUtc3RhdGUuc2VydmljZSc7XHJcbiJdfQ==
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EventEmitter, Injectable } from '@angular/core';
|
|
2
|
+
import { BehaviorSubject, Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class LocalizeState {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.stateChange = new Subject();
|
|
7
|
+
this.appearance = 'outline';
|
|
8
|
+
this.autoFill = false;
|
|
9
|
+
this.showActions = false;
|
|
10
|
+
this.range = false;
|
|
11
|
+
this.placeholder = '';
|
|
12
|
+
this.endDatePlaceholder = '';
|
|
13
|
+
this.startDatePlaceholder = '';
|
|
14
|
+
this.panelClass = '';
|
|
15
|
+
this.startView = 'month';
|
|
16
|
+
this.max = null;
|
|
17
|
+
this.min = null;
|
|
18
|
+
this.startAt = null;
|
|
19
|
+
this.updateLocalLang = false;
|
|
20
|
+
this.disabledState = new BehaviorSubject(false);
|
|
21
|
+
this.requiredState = new BehaviorSubject(false);
|
|
22
|
+
this.statusState = new BehaviorSubject('');
|
|
23
|
+
this.yearSelectedEmitter = new EventEmitter();
|
|
24
|
+
this.monthSelectedEmitter = new EventEmitter();
|
|
25
|
+
}
|
|
26
|
+
get disabled() {
|
|
27
|
+
return this.disabledState.value;
|
|
28
|
+
}
|
|
29
|
+
get required() {
|
|
30
|
+
return this.requiredState.value;
|
|
31
|
+
}
|
|
32
|
+
get status() {
|
|
33
|
+
return this.statusState.value;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
LocalizeState.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: LocalizeState, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
37
|
+
LocalizeState.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: LocalizeState });
|
|
38
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: LocalizeState, decorators: [{
|
|
39
|
+
type: Injectable
|
|
40
|
+
}] });
|
|
41
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9jYWxpemUtc3RhdGUuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL251eGVvLWRldmVsb3BtZW50LWZyYW1ld29yay9zcmMvbGliL2NvbXBvbmVudHMvbmRmLWRhdGVwaWNrZXIvc2VydmljZXMvbG9jYWxpemUtc3RhdGUuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUd6RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE9BQU8sRUFBRSxNQUFNLE1BQU0sQ0FBQzs7QUFJaEQsTUFBTSxPQUFPLGFBQWE7SUFEMUI7UUFFVSxnQkFBVyxHQUFHLElBQUksT0FBTyxFQUFRLENBQUM7UUFFM0MsZUFBVSxHQUEyQixTQUFTLENBQUM7UUFDL0MsYUFBUSxHQUFHLEtBQUssQ0FBQztRQUNqQixnQkFBVyxHQUFHLEtBQUssQ0FBQztRQUNwQixVQUFLLEdBQUcsS0FBSyxDQUFDO1FBQ2QsZ0JBQVcsR0FBRyxFQUFFLENBQUM7UUFDakIsdUJBQWtCLEdBQUcsRUFBRSxDQUFDO1FBQ3hCLHlCQUFvQixHQUFHLEVBQUUsQ0FBQztRQUMxQixlQUFVLEdBQUcsRUFBRSxDQUFDO1FBQ2hCLGNBQVMsR0FBb0MsT0FBTyxDQUFDO1FBQ3JELFFBQUcsR0FBeUIsSUFBSSxDQUFDO1FBQ2pDLFFBQUcsR0FBeUIsSUFBSSxDQUFDO1FBQ2pDLFlBQU8sR0FBeUIsSUFBSSxDQUFDO1FBRXJDLG9CQUFlLEdBQUcsS0FBSyxDQUFDO1FBS2Ysa0JBQWEsR0FBRyxJQUFJLGVBQWUsQ0FBVSxLQUFLLENBQUMsQ0FBQztRQU1wRCxrQkFBYSxHQUFHLElBQUksZUFBZSxDQUFVLEtBQUssQ0FBQyxDQUFDO1FBS3BELGdCQUFXLEdBQUcsSUFBSSxlQUFlLENBQVMsRUFBRSxDQUFDLENBQUM7UUFLdkQsd0JBQW1CLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQztRQUNqRCx5QkFBb0IsR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO0tBQ2xEO0lBaEJBLElBQUksUUFBUTtRQUNYLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUM7SUFDakMsQ0FBQztJQUdELElBQUksUUFBUTtRQUNYLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUM7SUFDakMsQ0FBQztJQUdELElBQUksTUFBTTtRQUNULE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxLQUFLLENBQUM7SUFDL0IsQ0FBQzs7MkdBbkNXLGFBQWE7K0dBQWIsYUFBYTs0RkFBYixhQUFhO2tCQUR6QixVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRXZlbnRFbWl0dGVyLCBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IERhdGVGaWx0ZXJGbiB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2RhdGVwaWNrZXInO1xyXG5pbXBvcnQgeyBNYXRGb3JtRmllbGRBcHBlYXJhbmNlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZm9ybS1maWVsZCc7XHJcbmltcG9ydCB7IEJlaGF2aW9yU3ViamVjdCwgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xyXG5pbXBvcnQgeyBNb21lbnQgfSBmcm9tICdtb21lbnQtaGlqcmknO1xyXG5cclxuQEluamVjdGFibGUoKVxyXG5leHBvcnQgY2xhc3MgTG9jYWxpemVTdGF0ZSB7XHJcblx0cmVhZG9ubHkgc3RhdGVDaGFuZ2UgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xyXG5cclxuXHRhcHBlYXJhbmNlOiBNYXRGb3JtRmllbGRBcHBlYXJhbmNlID0gJ291dGxpbmUnO1xyXG5cdGF1dG9GaWxsID0gZmFsc2U7XHJcblx0c2hvd0FjdGlvbnMgPSBmYWxzZTtcclxuXHRyYW5nZSA9IGZhbHNlO1xyXG5cdHBsYWNlaG9sZGVyID0gJyc7XHJcblx0ZW5kRGF0ZVBsYWNlaG9sZGVyID0gJyc7XHJcblx0c3RhcnREYXRlUGxhY2Vob2xkZXIgPSAnJztcclxuXHRwYW5lbENsYXNzID0gJyc7XHJcblx0c3RhcnRWaWV3OiAnbW9udGgnIHwgJ3llYXInIHwgJ211bHRpLXllYXInID0gJ21vbnRoJztcclxuXHRtYXg6IHN0cmluZyB8IERhdGUgfCBudWxsID0gbnVsbDtcclxuXHRtaW46IHN0cmluZyB8IERhdGUgfCBudWxsID0gbnVsbDtcclxuXHRzdGFydEF0OiBzdHJpbmcgfCBEYXRlIHwgbnVsbCA9IG51bGw7XHJcblx0ZGF0ZUZpbHRlciE6IERhdGVGaWx0ZXJGbjxhbnk+O1xyXG5cdHVwZGF0ZUxvY2FsTGFuZyA9IGZhbHNlO1xyXG5cclxuXHRoaWpyaURpc3BsYXlGb3JtYXQhOiBzdHJpbmc7XHJcblx0ZGlzcGxheUZvcm1hdCE6IHN0cmluZztcclxuXHJcblx0cmVhZG9ubHkgZGlzYWJsZWRTdGF0ZSA9IG5ldyBCZWhhdmlvclN1YmplY3Q8Ym9vbGVhbj4oZmFsc2UpO1xyXG5cclxuXHRnZXQgZGlzYWJsZWQoKSB7XHJcblx0XHRyZXR1cm4gdGhpcy5kaXNhYmxlZFN0YXRlLnZhbHVlO1xyXG5cdH1cclxuXHJcblx0cmVhZG9ubHkgcmVxdWlyZWRTdGF0ZSA9IG5ldyBCZWhhdmlvclN1YmplY3Q8Ym9vbGVhbj4oZmFsc2UpO1xyXG5cdGdldCByZXF1aXJlZCgpIHtcclxuXHRcdHJldHVybiB0aGlzLnJlcXVpcmVkU3RhdGUudmFsdWU7XHJcblx0fVxyXG5cclxuXHRyZWFkb25seSBzdGF0dXNTdGF0ZSA9IG5ldyBCZWhhdmlvclN1YmplY3Q8c3RyaW5nPignJyk7XHJcblx0Z2V0IHN0YXR1cygpIHtcclxuXHRcdHJldHVybiB0aGlzLnN0YXR1c1N0YXRlLnZhbHVlO1xyXG5cdH1cclxuXHJcblx0eWVhclNlbGVjdGVkRW1pdHRlciA9IG5ldyBFdmVudEVtaXR0ZXI8TW9tZW50PigpO1xyXG5cdG1vbnRoU2VsZWN0ZWRFbWl0dGVyID0gbmV3IEV2ZW50RW1pdHRlcjxNb21lbnQ+KCk7XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './no-data.module';
|
|
2
|
+
export * from './no-data-found.component';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udXhlby1kZXZlbG9wbWVudC1mcmFtZXdvcmsvc3JjL2xpYi9jb21wb25lbnRzL25vLWRhdGEtZm91bmQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLDJCQUEyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9uby1kYXRhLm1vZHVsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbm8tZGF0YS1mb3VuZC5jb21wb25lbnQnO1xyXG4iXX0=
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "@ngx-translate/core";
|
|
5
|
+
export class NoDataFoundComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.message = 'table_noData';
|
|
8
|
+
this.width = '400px';
|
|
9
|
+
this.height = '200px';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
NoDataFoundComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NoDataFoundComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
13
|
+
NoDataFoundComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: NoDataFoundComponent, selector: "app-no-data-found", inputs: { message: "message", width: "width", height: "height" }, host: { properties: { "style.--no-data-found-icon-width": "width", "style.--no-data-found-icon-height": "height" }, classAttribute: "no-data-found" }, ngImport: i0, template: "\r\n\r\n <svg\r\n id=\"noDataFound\"\r\n data-name=\"Layer 1\"\r\n viewBox=\"0 0 222 222\"\r\n fill=\"none\"\r\n xmlns=\"http://www.w3.org/2000/svg\"\r\n >\r\n <path\r\n fill-rule=\"evenodd\"\r\n clip-rule=\"evenodd\"\r\n d=\"M189.541 209.525L135.549 209.423L106.418 174.485C106.319 174.366 106.326 174.19 106.436 174.081L128.972 151.5L105.937 128.652C105.818 128.535 105.818 128.344 105.937 128.226L133.921 100.458L143.717 110.282L125.494 128.439L148.368 151.288C148.485 151.405 148.485 151.595 148.368 151.712L125.032 175.106L142.07 195.557L182.706 195.631V24.5156H104.081V89.2656H39.3306V195.641H92.7493V209.516H32.4857C28.6099 209.516 25.4556 206.361 25.4556 202.486V79.4514L94.2662 10.6406H189.55C193.426 10.6406 196.581 13.7949 196.581 17.6706V202.486C196.581 206.361 193.426 209.516 189.55 209.516L189.541 209.525ZM90.2013 75.4045H49.1406L90.2013 34.3438V75.4045Z\"\r\n />\r\n </svg>\r\n <!-- @formatter:on -->\r\n <div class=\"no-data-found-text \" *ngIf=\"message\">\r\n {{ message | translate }}\r\n </div>\r\n\r\n", styles: [":host{display:var(--no-data-found-display, flex);flex-direction:var(--no-data-found-flex-direction, column);justify-content:var(--no-data-found-justify-content, center);align-items:var(--no-data-found-align-items, center);background-color:var(--no-data-found-background-color, transparent);color:var(--no-data-found-color, #000)}:host svg{--nod-icon-width: var(--no-data-found-icon-width);--nod-icon-height: var(--no-data-found-icon-height);height:var(--nod-icon-height);width:var(--nod-icon-width);color:var(--no-data-found-icon-color, #d2d6db)}:host svg path{fill:var(--nod-icon-fill, currentColor)}:host .no-data-found-text{color:var(--no-data-found-text-color, var(--main-text));font-size:var(--no-data-found-text-font-size, 1.2rem);font-weight:var(--no-data-found-text-font-weight, 400);text-align:var(--no-data-found-text-align, center);margin-top:var(--no-data-found-text-margin-top, .5rem)}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "translate": i2.TranslatePipe } });
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NoDataFoundComponent, decorators: [{
|
|
15
|
+
type: Component,
|
|
16
|
+
args: [{
|
|
17
|
+
selector: 'app-no-data-found',
|
|
18
|
+
templateUrl: './no-data-found.component.html',
|
|
19
|
+
styleUrls: ['./no-data-found.component.scss'],
|
|
20
|
+
host: {
|
|
21
|
+
class: 'no-data-found',
|
|
22
|
+
'[style.--no-data-found-icon-width]': 'width',
|
|
23
|
+
'[style.--no-data-found-icon-height]': 'height'
|
|
24
|
+
}
|
|
25
|
+
}]
|
|
26
|
+
}], propDecorators: { message: [{
|
|
27
|
+
type: Input
|
|
28
|
+
}], width: [{
|
|
29
|
+
type: Input
|
|
30
|
+
}], height: [{
|
|
31
|
+
type: Input
|
|
32
|
+
}] } });
|
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm8tZGF0YS1mb3VuZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udXhlby1kZXZlbG9wbWVudC1mcmFtZXdvcmsvc3JjL2xpYi9jb21wb25lbnRzL25vLWRhdGEtZm91bmQvbm8tZGF0YS1mb3VuZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udXhlby1kZXZlbG9wbWVudC1mcmFtZXdvcmsvc3JjL2xpYi9jb21wb25lbnRzL25vLWRhdGEtZm91bmQvbm8tZGF0YS1mb3VuZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7OztBQWFqRCxNQUFNLE9BQU8sb0JBQW9CO0lBVmpDO1FBV1UsWUFBTyxHQUFXLGNBQWMsQ0FBQztRQUNqQyxVQUFLLEdBQUcsT0FBTyxDQUFDO1FBQ2hCLFdBQU0sR0FBRyxPQUFPLENBQUM7S0FDMUI7O2tIQUpZLG9CQUFvQjtzR0FBcEIsb0JBQW9CLGtSQ2JqQywraUNBb0JBOzRGRFBhLG9CQUFvQjtrQkFWaEMsU0FBUzttQkFBQztvQkFDVixRQUFRLEVBQUUsbUJBQW1CO29CQUM3QixXQUFXLEVBQUUsZ0NBQWdDO29CQUM3QyxTQUFTLEVBQUUsQ0FBQyxnQ0FBZ0MsQ0FBQztvQkFDN0MsSUFBSSxFQUFFO3dCQUNMLEtBQUssRUFBRSxlQUFlO3dCQUN0QixvQ0FBb0MsRUFBRSxPQUFPO3dCQUM3QyxxQ0FBcUMsRUFBRSxRQUFRO3FCQUMvQztpQkFDRDs4QkFFUyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcblxyXG5AQ29tcG9uZW50KHtcclxuXHRzZWxlY3RvcjogJ2FwcC1uby1kYXRhLWZvdW5kJyxcclxuXHR0ZW1wbGF0ZVVybDogJy4vbm8tZGF0YS1mb3VuZC5jb21wb25lbnQuaHRtbCcsXHJcblx0c3R5bGVVcmxzOiBbJy4vbm8tZGF0YS1mb3VuZC5jb21wb25lbnQuc2NzcyddLFxyXG5cdGhvc3Q6IHtcclxuXHRcdGNsYXNzOiAnbm8tZGF0YS1mb3VuZCcsXHJcblx0XHQnW3N0eWxlLi0tbm8tZGF0YS1mb3VuZC1pY29uLXdpZHRoXSc6ICd3aWR0aCcsXHJcblx0XHQnW3N0eWxlLi0tbm8tZGF0YS1mb3VuZC1pY29uLWhlaWdodF0nOiAnaGVpZ2h0J1xyXG5cdH1cclxufSlcclxuZXhwb3J0IGNsYXNzIE5vRGF0YUZvdW5kQ29tcG9uZW50IHtcclxuXHRASW5wdXQoKSBtZXNzYWdlOiBzdHJpbmcgPSAndGFibGVfbm9EYXRhJztcclxuXHRASW5wdXQoKSB3aWR0aCA9ICc0MDBweCc7XHJcblx0QElucHV0KCkgaGVpZ2h0ID0gJzIwMHB4JztcclxufVxyXG4iLCJcclxuXHJcbiAgPHN2Z1xyXG4gICAgaWQ9XCJub0RhdGFGb3VuZFwiXHJcbiAgICBkYXRhLW5hbWU9XCJMYXllciAxXCJcclxuICAgIHZpZXdCb3g9XCIwIDAgMjIyIDIyMlwiXHJcbiAgICBmaWxsPVwibm9uZVwiXHJcbiAgICB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCJcclxuICA+XHJcbiAgICA8cGF0aFxyXG4gICAgICBmaWxsLXJ1bGU9XCJldmVub2RkXCJcclxuICAgICAgY2xpcC1ydWxlPVwiZXZlbm9kZFwiXHJcbiAgICAgIGQ9XCJNMTg5LjU0MSAyMDkuNTI1TDEzNS41NDkgMjA5LjQyM0wxMDYuNDE4IDE3NC40ODVDMTA2LjMxOSAxNzQuMzY2IDEwNi4zMjYgMTc0LjE5IDEwNi40MzYgMTc0LjA4MUwxMjguOTcyIDE1MS41TDEwNS45MzcgMTI4LjY1MkMxMDUuODE4IDEyOC41MzUgMTA1LjgxOCAxMjguMzQ0IDEwNS45MzcgMTI4LjIyNkwxMzMuOTIxIDEwMC40NThMMTQzLjcxNyAxMTAuMjgyTDEyNS40OTQgMTI4LjQzOUwxNDguMzY4IDE1MS4yODhDMTQ4LjQ4NSAxNTEuNDA1IDE0OC40ODUgMTUxLjU5NSAxNDguMzY4IDE1MS43MTJMMTI1LjAzMiAxNzUuMTA2TDE0Mi4wNyAxOTUuNTU3TDE4Mi43MDYgMTk1LjYzMVYyNC41MTU2SDEwNC4wODFWODkuMjY1NkgzOS4zMzA2VjE5NS42NDFIOTIuNzQ5M1YyMDkuNTE2SDMyLjQ4NTdDMjguNjA5OSAyMDkuNTE2IDI1LjQ1NTYgMjA2LjM2MSAyNS40NTU2IDIwMi40ODZWNzkuNDUxNEw5NC4yNjYyIDEwLjY0MDZIMTg5LjU1QzE5My40MjYgMTAuNjQwNiAxOTYuNTgxIDEzLjc5NDkgMTk2LjU4MSAxNy42NzA2VjIwMi40ODZDMTk2LjU4MSAyMDYuMzYxIDE5My40MjYgMjA5LjUxNiAxODkuNTUgMjA5LjUxNkwxODkuNTQxIDIwOS41MjVaTTkwLjIwMTMgNzUuNDA0NUg0OS4xNDA2TDkwLjIwMTMgMzQuMzQzOFY3NS40MDQ1WlwiXHJcbiAgICAvPlxyXG4gIDwvc3ZnPlxyXG4gIDwhLS0gQGZvcm1hdHRlcjpvbiAtLT5cclxuICA8ZGl2IGNsYXNzPVwibm8tZGF0YS1mb3VuZC10ZXh0IFwiICpuZ0lmPVwibWVzc2FnZVwiPlxyXG4gICAge3sgbWVzc2FnZSB8IHRyYW5zbGF0ZSB9fVxyXG4gIDwvZGl2PlxyXG5cclxuIl19
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
4
|
+
import { NoDataFoundComponent } from './no-data-found.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export class NoDataModule {
|
|
7
|
+
}
|
|
8
|
+
NoDataModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NoDataModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
+
NoDataModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NoDataModule, declarations: [NoDataFoundComponent], imports: [CommonModule, TranslateModule], exports: [NoDataFoundComponent] });
|
|
10
|
+
NoDataModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NoDataModule, imports: [[CommonModule, TranslateModule]] });
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: NoDataModule, decorators: [{
|
|
12
|
+
type: NgModule,
|
|
13
|
+
args: [{
|
|
14
|
+
declarations: [NoDataFoundComponent],
|
|
15
|
+
imports: [CommonModule, TranslateModule],
|
|
16
|
+
exports: [NoDataFoundComponent]
|
|
17
|
+
}]
|
|
18
|
+
}] });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm8tZGF0YS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udXhlby1kZXZlbG9wbWVudC1mcmFtZXdvcmsvc3JjL2xpYi9jb21wb25lbnRzL25vLWRhdGEtZm91bmQvbm8tZGF0YS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3RELE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDOztBQU9qRSxNQUFNLE9BQU8sWUFBWTs7MEdBQVosWUFBWTsyR0FBWixZQUFZLGlCQUpULG9CQUFvQixhQUN6QixZQUFZLEVBQUUsZUFBZSxhQUM3QixvQkFBb0I7MkdBRWxCLFlBQVksWUFIZixDQUFDLFlBQVksRUFBRSxlQUFlLENBQUM7NEZBRzVCLFlBQVk7a0JBTHhCLFFBQVE7bUJBQUM7b0JBQ1QsWUFBWSxFQUFFLENBQUMsb0JBQW9CLENBQUM7b0JBQ3BDLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxlQUFlLENBQUM7b0JBQ3hDLE9BQU8sRUFBRSxDQUFDLG9CQUFvQixDQUFDO2lCQUMvQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xyXG5pbXBvcnQgeyBOb0RhdGFGb3VuZENvbXBvbmVudCB9IGZyb20gJy4vbm8tZGF0YS1mb3VuZC5jb21wb25lbnQnO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuXHRkZWNsYXJhdGlvbnM6IFtOb0RhdGFGb3VuZENvbXBvbmVudF0sXHJcblx0aW1wb3J0czogW0NvbW1vbk1vZHVsZSwgVHJhbnNsYXRlTW9kdWxlXSxcclxuXHRleHBvcnRzOiBbTm9EYXRhRm91bmRDb21wb25lbnRdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBOb0RhdGFNb2R1bGUge31cclxuIl19
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy9ub3RpZmljYXRpb25zL21vZGVscy9jb21tb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNjaGVtYU1vZGVsIH0gZnJvbSAnLi4vLi4vLi4vY29yZS9tb2RlbHMnO1xyXG5pbXBvcnQgeyBGSUxURVJfREFURVNfVFlQRSB9IGZyb20gJy4uL2NvbnN0YW50cyc7XHJcblxyXG5leHBvcnQgdHlwZSBGaWx0ZXJEYXRlVHlwZSA9ICh0eXBlb2YgRklMVEVSX0RBVEVTX1RZUEUpW2tleW9mIHR5cGVvZiBGSUxURVJfREFURVNfVFlQRV07XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEJhc2VOb3RpZmljYXRpb25FbnRyeSB7XHJcblx0J2VudGl0eS10eXBlJzogc3RyaW5nO1xyXG5cdHJlcG9zaXRvcnk6IHN0cmluZztcclxuXHR1aWQ6IHN0cmluZztcclxuXHRwYXRoOiBzdHJpbmc7XHJcblx0dHlwZTogc3RyaW5nO1xyXG5cdHN0YXRlOiBzdHJpbmc7XHJcblx0cGFyZW50UmVmOiBzdHJpbmc7XHJcblx0aXNDaGVja2VkT3V0OiBib29sZWFuO1xyXG5cdGlzUmVjb3JkOiBib29sZWFuO1xyXG5cdHJldGFpblVudGlsOiBhbnk7XHJcblx0aGFzTGVnYWxIb2xkOiBib29sZWFuO1xyXG5cdGlzVW5kZXJSZXRlbnRpb25PckxlZ2FsSG9sZDogYm9vbGVhbjtcclxuXHRpc1ZlcnNpb246IGJvb2xlYW47XHJcblx0aXNQcm94eTogYm9vbGVhbjtcclxuXHRjaGFuZ2VUb2tlbjogc3RyaW5nO1xyXG5cdGlzVHJhc2hlZDogYm9vbGVhbjtcclxuXHR0aXRsZTogc3RyaW5nO1xyXG5cdGxhc3RNb2RpZmllZDogc3RyaW5nO1xyXG5cdGZhY2V0czogYW55W107XHJcblx0c2NoZW1hczogU2NoZW1hTW9kZWxbXTtcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBCYXNlTm90aWZpY2F0aW9uUHJvcGVydGllcyB7XHJcblx0J25vdGZfbnQ6Y2F0ZWdvcnknOiBzdHJpbmc7XHJcblx0J25vdGZfbnQ6aXNDbGlja2FibGUnOiBib29sZWFuO1xyXG5cdCdub3RmX250OnNvdXJjZVR5cGVlJzogc3RyaW5nO1xyXG5cdCdub3RmX250OmtleSc6IHN0cmluZztcclxuXHQnZGM6ZGVzY3JpcHRpb24nOiBhbnk7XHJcblx0J2RjOmxhbmd1YWdlJzogYW55O1xyXG5cdCdkYzpjb3ZlcmFnZSc6IGFueTtcclxuXHQnZGM6dmFsaWQnOiBhbnk7XHJcblx0J2RjOmNyZWF0b3InOiBzdHJpbmc7XHJcblx0J2RjOm1vZGlmaWVkJzogc3RyaW5nO1xyXG5cdCdkYzpsYXN0Q29udHJpYnV0b3InOiBzdHJpbmc7XHJcblx0J2RjOnJpZ2h0cyc6IGFueTtcclxuXHQnZGM6ZXhwaXJlZCc6IGFueTtcclxuXHQnZGM6Zm9ybWF0JzogYW55O1xyXG5cdCdkYzpjcmVhdGVkJzogc3RyaW5nO1xyXG5cdCdkYzp0aXRsZSc6IHN0cmluZztcclxuXHQnZGM6aXNzdWVkJzogYW55O1xyXG5cdCdkYzpuYXR1cmUnOiBhbnk7XHJcblx0J2RjOnN1YmplY3RzJzogYW55W107XHJcblx0J2RjOmNvbnRyaWJ1dG9ycyc6IHN0cmluZ1tdO1xyXG5cdCdkYzpzb3VyY2UnOiBhbnk7XHJcblx0J2RjOnB1Ymxpc2hlcic6IGFueTtcclxuXHQndWlkOnVpZCc6IGFueTtcclxuXHQndWlkOm1ham9yX3ZlcnNpb24nOiBudW1iZXI7XHJcblx0J3VpZDptaW5vcl92ZXJzaW9uJzogbnVtYmVyO1xyXG5cdCdjb21tb246aWNvbi1leHBhbmRlZCc6IGFueTtcclxuXHQnY29tbW9uOmljb24nOiBhbnk7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgTm90aWZpY2F0aW9uQmFzZU9wdGlvbnMge1xyXG5cdHNjaGVtYXM6IGFueVtdO1xyXG5cdGVucmljaGVyczogUmVjb3JkPHN0cmluZywgYW55PjtcclxuXHRmZXRjaFByb3BlcnRpZXM6IFJlY29yZDxzdHJpbmcsIGFueT47XHJcblx0dHJhbnNsYXRlUHJvcGVydGllczogUmVjb3JkPHN0cmluZywgYW55PjtcclxuXHRoZWFkZXJzOiBIZWFkZXJzO1xyXG5cdHRpbWVvdXQ6IG51bWJlcjtcclxuXHRodHRwVGltZW91dDogbnVtYmVyO1xyXG59XHJcbiJdfQ==
|
|
@@ -25,4 +25,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
25
25
|
]
|
|
26
26
|
}]
|
|
27
27
|
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
28
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1wdHktc3RhdGUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnV4ZW8tZGV2ZWxvcG1lbnQtZnJhbWV3b3JrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZXMvZHluYW1pYy10YWJsZS9kaXJlY3RpdmVzL2VtcHR5LXN0YXRlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLGNBQWMsRUFBZSxNQUFNLGVBQWUsQ0FBQzs7QUFFdkUsTUFBTSxDQUFDLE1BQU0sY0FBYyxHQUFHLElBQUksY0FBYyxDQUF5Qix3QkFBd0IsQ0FBQyxDQUFDO0FBV25HLE1BQU0sT0FBTyxzQkFBc0I7SUFDbEMsWUFBbUIsUUFBMEI7UUFBMUIsYUFBUSxHQUFSLFFBQVEsQ0FBa0I7SUFBRyxDQUFDOztvSEFEckMsc0JBQXNCO3dHQUF0QixzQkFBc0IsMENBUHZCO1FBQ1Y7WUFDQyxPQUFPLEVBQUUsY0FBYztZQUN2QixXQUFXLEVBQUUsc0JBQXNCO1NBQ25DO0tBQ0Q7NEZBRVcsc0JBQXNCO2tCQVRsQyxTQUFTO21CQUFDO29CQUNWLFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFNBQVMsRUFBRTt3QkFDVjs0QkFDQyxPQUFPLEVBQUUsY0FBYzs0QkFDdkIsV0FBVyx3QkFBd0I7eUJBQ25DO3FCQUNEO2lCQUNEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBJbmplY3Rpb25Ub2tlbiwgVGVtcGxhdGVSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbmV4cG9ydCBjb25zdCBFTVBUWV9URU1QTEFURSA9IG5ldyBJbmplY3Rpb25Ub2tlbjxFbXB0eVRlbXBsYXRlRGlyZWN0aXZlPignRW1wdHlUZW1wbGF0ZURpcmVjdGl2ZScpO1xyXG5cclxuQERpcmVjdGl2ZSh7XHJcblx0c2VsZWN0b3I6ICdbZW1wdHlUZW1wbGF0ZV0nLFxyXG5cdHByb3ZpZGVyczogW1xyXG5cdFx0e1xyXG5cdFx0XHRwcm92aWRlOiBFTVBUWV9URU1QTEFURSxcclxuXHRcdFx0dXNlRXhpc3Rpbmc6IEVtcHR5VGVtcGxhdGVEaXJlY3RpdmVcclxuXHRcdH1cclxuXHRdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBFbXB0eVRlbXBsYXRlRGlyZWN0aXZlIHtcclxuXHRjb25zdHJ1Y3RvcihwdWJsaWMgdGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT4pIHt9XHJcbn1cclxuIl19
|