geonetwork-ui 2.4.0-dev.b0bcda82 → 2.4.0-dev.c2a3cdd1
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/esm2022/libs/api/metadata-converter/src/index.mjs +2 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +5 -5
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +7 -4
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +10 -7
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +11 -16
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +6 -6
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +28 -33
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +18 -2
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +78 -39
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +11 -1
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +51 -7
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
- package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
- package/esm2022/libs/feature/editor/src/index.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +6 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +4 -1
- package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +4 -16
- package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +80 -0
- package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +93 -0
- package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +71 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +42 -67
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +19 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +31 -40
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +11 -9
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +101 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +148 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +22 -25
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +93 -11
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +12 -16
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +9 -8
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +140 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +41 -69
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +17 -15
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +42 -65
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -2
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +5 -3
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +8 -8
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +6 -4
- package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +41 -7
- package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +5 -1
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +6 -6
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +7 -6
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +8 -5
- package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +6 -7
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +8 -7
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +7 -6
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +7 -26
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +29 -13
- package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +4 -2
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +5 -4
- package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
- package/esm2022/libs/ui/elements/src/index.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +6 -6
- package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +7 -4
- package/esm2022/libs/ui/inputs/src/index.mjs +6 -1
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +7 -4
- package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +5 -3
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +8 -1
- package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +11 -4
- package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +9 -3
- package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +26 -24
- package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
- package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +19 -15
- package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +32 -0
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +7 -21
- package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +6 -17
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +3 -7
- package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +43 -0
- package/esm2022/libs/ui/layout/src/index.mjs +3 -1
- package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +5 -3
- package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
- package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
- package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +8 -8
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +2 -1
- package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
- package/esm2022/translations/de.json +42 -3
- package/esm2022/translations/en.json +41 -2
- package/esm2022/translations/es.json +39 -0
- package/esm2022/translations/fr.json +45 -6
- package/esm2022/translations/it.json +41 -2
- package/esm2022/translations/nl.json +39 -0
- package/esm2022/translations/pt.json +39 -0
- package/fesm2022/geonetwork-ui.mjs +2915 -1938
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/index.d.ts +1 -0
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +2 -6
- package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +4 -5
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +7 -7
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +6 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +12 -7
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +22 -2
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +7 -6
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
- package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +16 -0
- package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +7 -0
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
- package/libs/feature/editor/src/index.d.ts +1 -0
- package/libs/feature/editor/src/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +1 -0
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +1 -0
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +1 -5
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +33 -0
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +33 -0
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +11 -17
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +9 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +11 -19
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +6 -4
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +22 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +10 -12
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +24 -4
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +4 -6
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +4 -3
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +28 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +10 -18
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +5 -5
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +18 -28
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +5 -3
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -1
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts +10 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +6 -0
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +1 -0
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +6 -6
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/feature-map.module.d.ts +16 -21
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +1 -1
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +2 -2
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +2 -2
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +1 -0
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
- package/libs/ui/elements/src/index.d.ts +1 -1
- package/libs/ui/elements/src/index.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +2 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/inputs/src/index.d.ts +5 -0
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +5 -3
- package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +24 -0
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +4 -5
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +16 -0
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -4
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +34 -35
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +18 -0
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
- package/libs/ui/layout/src/index.d.ts +2 -0
- package/libs/ui/layout/src/index.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +2 -2
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +1 -1
- package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
- package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
- package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +3 -3
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libs/api/metadata-converter/src/index.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +7 -2
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
- package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +4 -4
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +14 -8
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +8 -15
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +13 -15
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +48 -63
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +20 -1
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +132 -68
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +12 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +90 -15
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +8 -7
- package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +30 -0
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +10 -0
- package/src/libs/common/fixtures/src/index.ts +1 -1
- package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +37 -37
- package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
- package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
- package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
- package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
- package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
- package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
- package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +37 -3
- package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +9 -9
- package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
- package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
- package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
- package/src/libs/common/fixtures/src/lib/user.fixtures.ts +32 -15
- package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
- package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
- package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
- package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
- package/src/libs/feature/editor/src/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +2 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +15 -0
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +4 -0
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +12 -22
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +1 -13
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +26 -0
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +90 -0
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +43 -0
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +129 -0
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +13 -23
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +47 -107
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.html +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.ts +21 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +44 -45
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css +8 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +13 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +128 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +34 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +182 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +18 -29
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +107 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +15 -8
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +11 -14
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +5 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +11 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +20 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +212 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +31 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +43 -87
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +16 -14
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +17 -15
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +106 -81
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +45 -67
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +32 -29
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +9 -3
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
- package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
- package/src/libs/feature/editor/src/lib/fields.config.ts +45 -6
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +12 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +7 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +12 -8
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +5 -0
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -7
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +5 -0
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +1 -1
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +6 -1
- package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -15
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +24 -1
- package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +26 -22
- package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +2 -2
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -2
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +5 -1
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -0
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -1
- package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
- package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
- package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
- package/src/libs/ui/elements/src/index.ts +1 -1
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +13 -20
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +5 -0
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +6 -1
- package/src/libs/ui/inputs/src/index.ts +5 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +25 -18
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +38 -24
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +4 -1
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +12 -3
- package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +2 -1
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +15 -1
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +7 -2
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +14 -6
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +7 -1
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +7 -2
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +28 -23
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +7 -1
- package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +40 -26
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +4 -0
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +89 -0
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +92 -0
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +4 -0
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +76 -68
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +17 -14
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +4 -3
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +0 -1
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -2
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +3 -2
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +3 -28
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -3
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +9 -0
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +37 -0
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +33 -0
- package/src/libs/ui/layout/src/index.ts +2 -0
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +8 -3
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +4 -3
- package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.css +0 -0
- package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
- package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
- package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +11 -18
- package/src/libs/ui/map/src/lib/ui-map.module.ts +1 -1
- package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +9 -2
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +5 -6
- package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
- package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
- package/src/libs/util/shared/src/lib/services/theme.service.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
- package/tailwind.base.config.js +1 -0
- package/tailwind.base.css +49 -6
- package/translations/de.json +42 -3
- package/translations/en.json +41 -2
- package/translations/es.json +39 -0
- package/translations/fr.json +45 -6
- package/translations/it.json +41 -2
- package/translations/nl.json +39 -0
- package/translations/pt.json +39 -0
- package/translations/sk.json +39 -0
- package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +0 -131
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -15
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
- package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -47
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +0 -27
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +0 -8
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -22
- package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
- package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
- package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
- package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -9
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -161
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +0 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +0 -15
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
- package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -38
- /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → generic-keywords/generic-keywords.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css → import-record/import-record.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → online-resource-card/online-resource-card.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → form-field-date-updated/form-field-date-updated.component.css} +0 -0
- /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
package/translations/it.json
CHANGED
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
"dashboard.catalog.discussion": "",
|
|
25
25
|
"dashboard.catalog.thesaurus": "",
|
|
26
26
|
"dashboard.createRecord": "Crea un record",
|
|
27
|
+
"dashboard.importRecord": "",
|
|
28
|
+
"dashboard.importRecord.importExternal": "",
|
|
29
|
+
"dashboard.importRecord.importExternalLabel": "",
|
|
30
|
+
"dashboard.importRecord.useModel": "",
|
|
27
31
|
"dashboard.labels.catalog": "Catalogo",
|
|
28
32
|
"dashboard.labels.mySpace": "Il mio spazio",
|
|
29
33
|
"dashboard.records.all": "Catalogo",
|
|
@@ -186,6 +190,8 @@
|
|
|
186
190
|
"downloads.format.unknown": "sconosciuto",
|
|
187
191
|
"downloads.wfs.featuretype.not.found": "Il layer non è stato trovato",
|
|
188
192
|
"dropFile": "Trascina il suo file",
|
|
193
|
+
"editor.form.keywords.placeholder": "",
|
|
194
|
+
"editor.form.placeKeywordWithoutExtent": "",
|
|
189
195
|
"editor.record.delete.confirmation.cancelText": "",
|
|
190
196
|
"editor.record.delete.confirmation.confirmText": "",
|
|
191
197
|
"editor.record.delete.confirmation.message": "",
|
|
@@ -203,9 +209,18 @@
|
|
|
203
209
|
"editor.record.form.field.contactsForResource.noContact": "",
|
|
204
210
|
"editor.record.form.field.keywords": "",
|
|
205
211
|
"editor.record.form.field.license": "Licenza",
|
|
212
|
+
"editor.record.form.field.onlineLinkResources": "",
|
|
213
|
+
"editor.record.form.field.onlineResource.cancel": "",
|
|
214
|
+
"editor.record.form.field.onlineResource.confirm": "",
|
|
215
|
+
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
216
|
+
"editor.record.form.field.onlineResource.edit.description": "",
|
|
217
|
+
"editor.record.form.field.onlineResource.edit.title": "",
|
|
218
|
+
"editor.record.form.field.onlineResource.fileSize": "",
|
|
219
|
+
"editor.record.form.field.onlineResource.modify": "",
|
|
206
220
|
"editor.record.form.field.overviews": "",
|
|
207
221
|
"editor.record.form.field.recordUpdated": "",
|
|
208
222
|
"editor.record.form.field.resourceUpdated": "",
|
|
223
|
+
"editor.record.form.field.spatialExtents": "",
|
|
209
224
|
"editor.record.form.field.temporalExtents": "",
|
|
210
225
|
"editor.record.form.field.title": "",
|
|
211
226
|
"editor.record.form.field.uniqueIdentifier": "",
|
|
@@ -240,18 +255,35 @@
|
|
|
240
255
|
"editor.record.form.temporalExtents.date": "",
|
|
241
256
|
"editor.record.form.temporalExtents.range": "",
|
|
242
257
|
"editor.record.form.updateFrequency.planned": "",
|
|
258
|
+
"editor.record.importFromExternalFile.failure.body": "",
|
|
259
|
+
"editor.record.importFromExternalFile.failure.title": "",
|
|
260
|
+
"editor.record.importFromExternalFile.success.body": "",
|
|
261
|
+
"editor.record.importFromExternalFile.success.title": "",
|
|
243
262
|
"editor.record.loadError.body": "",
|
|
244
263
|
"editor.record.loadError.closeMessage": "",
|
|
245
264
|
"editor.record.loadError.title": "",
|
|
265
|
+
"editor.record.onlineResourceError.body": "",
|
|
266
|
+
"editor.record.onlineResourceError.closeMessage": "",
|
|
267
|
+
"editor.record.onlineResourceError.title": "",
|
|
268
|
+
"editor.record.placeKeywordWithoutLabel": "",
|
|
246
269
|
"editor.record.publish": "",
|
|
247
270
|
"editor.record.publishError.body": "",
|
|
248
271
|
"editor.record.publishError.closeMessage": "",
|
|
249
272
|
"editor.record.publishError.title": "",
|
|
250
273
|
"editor.record.publishSuccess.body": "",
|
|
251
274
|
"editor.record.publishSuccess.title": "",
|
|
275
|
+
"editor.record.resourceError.body": "",
|
|
276
|
+
"editor.record.resourceError.closeMessage": "",
|
|
277
|
+
"editor.record.resourceError.title": "",
|
|
252
278
|
"editor.record.saveStatus.asDraftOnly": "",
|
|
253
279
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
254
280
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
281
|
+
"editor.record.undo.confirmation.cancelText": "",
|
|
282
|
+
"editor.record.undo.confirmation.confirmText": "",
|
|
283
|
+
"editor.record.undo.confirmation.message": "",
|
|
284
|
+
"editor.record.undo.confirmation.title": "",
|
|
285
|
+
"editor.record.undo.tooltip.disabled": "",
|
|
286
|
+
"editor.record.undo.tooltip.enabled": "",
|
|
255
287
|
"editor.record.upToDate": "",
|
|
256
288
|
"editor.sidebar.menu.editor": "",
|
|
257
289
|
"externalviewer.dataset.unnamed": "Layer del datahub",
|
|
@@ -267,6 +299,11 @@
|
|
|
267
299
|
"facets.block.title.tag.default": "Tag",
|
|
268
300
|
"facets.block.title.th_regions_tree.default": "Regioni",
|
|
269
301
|
"favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Login</a> per accedere a questa funzionalità</div>",
|
|
302
|
+
"input.file.dropFileLabel": "",
|
|
303
|
+
"input.file.orInputUrl": "",
|
|
304
|
+
"input.file.selectFileLabel": "",
|
|
305
|
+
"input.file.uploadProgressCancel": "",
|
|
306
|
+
"input.file.uploadProgressLabel": "",
|
|
270
307
|
"input.image.altTextPlaceholder": "",
|
|
271
308
|
"input.image.delete": "",
|
|
272
309
|
"input.image.displayAltTextInput": "",
|
|
@@ -348,7 +385,7 @@
|
|
|
348
385
|
"record.metadata.api.form.reset": "Reset",
|
|
349
386
|
"record.metadata.api.form.title": "Genera un URL personalizzata",
|
|
350
387
|
"record.metadata.api.form.type": "Formato in uscita",
|
|
351
|
-
"record.metadata.author": "
|
|
388
|
+
"record.metadata.author": "Modificato da",
|
|
352
389
|
"record.metadata.catalog": "Catalogo",
|
|
353
390
|
"record.metadata.contact": "Contatto",
|
|
354
391
|
"record.metadata.creation": "Data di creazione",
|
|
@@ -387,6 +424,8 @@
|
|
|
387
424
|
"record.metadata.related": "Vedi anche",
|
|
388
425
|
"record.metadata.sheet": "Origine del metadata",
|
|
389
426
|
"record.metadata.status": "Stato",
|
|
427
|
+
"record.metadata.status.notPublished": "",
|
|
428
|
+
"record.metadata.status.published": "",
|
|
390
429
|
"record.metadata.technical": "Informazioni tecniche",
|
|
391
430
|
"record.metadata.temporalExtent": "Periodo di tempo",
|
|
392
431
|
"record.metadata.temporalExtent.fromDateToDate": "Da {start} a {end}",
|
|
@@ -397,7 +436,7 @@
|
|
|
397
436
|
"record.metadata.type": "Dati geografici",
|
|
398
437
|
"record.metadata.uniqueId": "Identificatore unico di risorsa",
|
|
399
438
|
"record.metadata.updateFrequency": "Frequenza di aggiornamento dei dati",
|
|
400
|
-
"record.metadata.updatedOn": "
|
|
439
|
+
"record.metadata.updatedOn": "Modificato il",
|
|
401
440
|
"record.metadata.usage": "Licenze e limiti di utilizzo",
|
|
402
441
|
"record.metadata.userFeedbacks": "",
|
|
403
442
|
"record.metadata.userFeedbacks.anonymousUser": "",
|
package/translations/nl.json
CHANGED
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
"dashboard.catalog.discussion": "",
|
|
25
25
|
"dashboard.catalog.thesaurus": "",
|
|
26
26
|
"dashboard.createRecord": "",
|
|
27
|
+
"dashboard.importRecord": "",
|
|
28
|
+
"dashboard.importRecord.importExternal": "",
|
|
29
|
+
"dashboard.importRecord.importExternalLabel": "",
|
|
30
|
+
"dashboard.importRecord.useModel": "",
|
|
27
31
|
"dashboard.labels.catalog": "Catalogus",
|
|
28
32
|
"dashboard.labels.mySpace": "Mijn ruimte",
|
|
29
33
|
"dashboard.records.all": "Catalogus",
|
|
@@ -186,6 +190,8 @@
|
|
|
186
190
|
"downloads.format.unknown": "",
|
|
187
191
|
"downloads.wfs.featuretype.not.found": "",
|
|
188
192
|
"dropFile": "",
|
|
193
|
+
"editor.form.keywords.placeholder": "",
|
|
194
|
+
"editor.form.placeKeywordWithoutExtent": "",
|
|
189
195
|
"editor.record.delete.confirmation.cancelText": "",
|
|
190
196
|
"editor.record.delete.confirmation.confirmText": "",
|
|
191
197
|
"editor.record.delete.confirmation.message": "",
|
|
@@ -203,9 +209,18 @@
|
|
|
203
209
|
"editor.record.form.field.contactsForResource.noContact": "",
|
|
204
210
|
"editor.record.form.field.keywords": "",
|
|
205
211
|
"editor.record.form.field.license": "",
|
|
212
|
+
"editor.record.form.field.onlineLinkResources": "",
|
|
213
|
+
"editor.record.form.field.onlineResource.cancel": "",
|
|
214
|
+
"editor.record.form.field.onlineResource.confirm": "",
|
|
215
|
+
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
216
|
+
"editor.record.form.field.onlineResource.edit.description": "",
|
|
217
|
+
"editor.record.form.field.onlineResource.edit.title": "",
|
|
218
|
+
"editor.record.form.field.onlineResource.fileSize": "",
|
|
219
|
+
"editor.record.form.field.onlineResource.modify": "",
|
|
206
220
|
"editor.record.form.field.overviews": "",
|
|
207
221
|
"editor.record.form.field.recordUpdated": "",
|
|
208
222
|
"editor.record.form.field.resourceUpdated": "",
|
|
223
|
+
"editor.record.form.field.spatialExtents": "",
|
|
209
224
|
"editor.record.form.field.temporalExtents": "",
|
|
210
225
|
"editor.record.form.field.title": "",
|
|
211
226
|
"editor.record.form.field.uniqueIdentifier": "",
|
|
@@ -240,18 +255,35 @@
|
|
|
240
255
|
"editor.record.form.temporalExtents.date": "",
|
|
241
256
|
"editor.record.form.temporalExtents.range": "",
|
|
242
257
|
"editor.record.form.updateFrequency.planned": "",
|
|
258
|
+
"editor.record.importFromExternalFile.failure.body": "",
|
|
259
|
+
"editor.record.importFromExternalFile.failure.title": "",
|
|
260
|
+
"editor.record.importFromExternalFile.success.body": "",
|
|
261
|
+
"editor.record.importFromExternalFile.success.title": "",
|
|
243
262
|
"editor.record.loadError.body": "",
|
|
244
263
|
"editor.record.loadError.closeMessage": "",
|
|
245
264
|
"editor.record.loadError.title": "",
|
|
265
|
+
"editor.record.onlineResourceError.body": "",
|
|
266
|
+
"editor.record.onlineResourceError.closeMessage": "",
|
|
267
|
+
"editor.record.onlineResourceError.title": "",
|
|
268
|
+
"editor.record.placeKeywordWithoutLabel": "",
|
|
246
269
|
"editor.record.publish": "",
|
|
247
270
|
"editor.record.publishError.body": "",
|
|
248
271
|
"editor.record.publishError.closeMessage": "",
|
|
249
272
|
"editor.record.publishError.title": "",
|
|
250
273
|
"editor.record.publishSuccess.body": "",
|
|
251
274
|
"editor.record.publishSuccess.title": "",
|
|
275
|
+
"editor.record.resourceError.body": "",
|
|
276
|
+
"editor.record.resourceError.closeMessage": "",
|
|
277
|
+
"editor.record.resourceError.title": "",
|
|
252
278
|
"editor.record.saveStatus.asDraftOnly": "",
|
|
253
279
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
254
280
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
281
|
+
"editor.record.undo.confirmation.cancelText": "",
|
|
282
|
+
"editor.record.undo.confirmation.confirmText": "",
|
|
283
|
+
"editor.record.undo.confirmation.message": "",
|
|
284
|
+
"editor.record.undo.confirmation.title": "",
|
|
285
|
+
"editor.record.undo.tooltip.disabled": "",
|
|
286
|
+
"editor.record.undo.tooltip.enabled": "",
|
|
255
287
|
"editor.record.upToDate": "",
|
|
256
288
|
"editor.sidebar.menu.editor": "",
|
|
257
289
|
"externalviewer.dataset.unnamed": "",
|
|
@@ -267,6 +299,11 @@
|
|
|
267
299
|
"facets.block.title.tag.default": "",
|
|
268
300
|
"facets.block.title.th_regions_tree.default": "",
|
|
269
301
|
"favorite.not.authenticated.tooltip": "",
|
|
302
|
+
"input.file.dropFileLabel": "",
|
|
303
|
+
"input.file.orInputUrl": "",
|
|
304
|
+
"input.file.selectFileLabel": "",
|
|
305
|
+
"input.file.uploadProgressCancel": "",
|
|
306
|
+
"input.file.uploadProgressLabel": "",
|
|
270
307
|
"input.image.altTextPlaceholder": "",
|
|
271
308
|
"input.image.delete": "",
|
|
272
309
|
"input.image.displayAltTextInput": "",
|
|
@@ -387,6 +424,8 @@
|
|
|
387
424
|
"record.metadata.related": "",
|
|
388
425
|
"record.metadata.sheet": "",
|
|
389
426
|
"record.metadata.status": "",
|
|
427
|
+
"record.metadata.status.notPublished": "",
|
|
428
|
+
"record.metadata.status.published": "",
|
|
390
429
|
"record.metadata.technical": "",
|
|
391
430
|
"record.metadata.temporalExtent": "",
|
|
392
431
|
"record.metadata.temporalExtent.fromDateToDate": "",
|
package/translations/pt.json
CHANGED
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
"dashboard.catalog.discussion": "",
|
|
25
25
|
"dashboard.catalog.thesaurus": "",
|
|
26
26
|
"dashboard.createRecord": "",
|
|
27
|
+
"dashboard.importRecord": "",
|
|
28
|
+
"dashboard.importRecord.importExternal": "",
|
|
29
|
+
"dashboard.importRecord.importExternalLabel": "",
|
|
30
|
+
"dashboard.importRecord.useModel": "",
|
|
27
31
|
"dashboard.labels.catalog": "Catálogo",
|
|
28
32
|
"dashboard.labels.mySpace": "Meu espaço",
|
|
29
33
|
"dashboard.records.all": "Catálogo",
|
|
@@ -186,6 +190,8 @@
|
|
|
186
190
|
"downloads.format.unknown": "",
|
|
187
191
|
"downloads.wfs.featuretype.not.found": "",
|
|
188
192
|
"dropFile": "",
|
|
193
|
+
"editor.form.keywords.placeholder": "",
|
|
194
|
+
"editor.form.placeKeywordWithoutExtent": "",
|
|
189
195
|
"editor.record.delete.confirmation.cancelText": "",
|
|
190
196
|
"editor.record.delete.confirmation.confirmText": "",
|
|
191
197
|
"editor.record.delete.confirmation.message": "",
|
|
@@ -203,9 +209,18 @@
|
|
|
203
209
|
"editor.record.form.field.contactsForResource.noContact": "",
|
|
204
210
|
"editor.record.form.field.keywords": "",
|
|
205
211
|
"editor.record.form.field.license": "",
|
|
212
|
+
"editor.record.form.field.onlineLinkResources": "",
|
|
213
|
+
"editor.record.form.field.onlineResource.cancel": "",
|
|
214
|
+
"editor.record.form.field.onlineResource.confirm": "",
|
|
215
|
+
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
216
|
+
"editor.record.form.field.onlineResource.edit.description": "",
|
|
217
|
+
"editor.record.form.field.onlineResource.edit.title": "",
|
|
218
|
+
"editor.record.form.field.onlineResource.fileSize": "",
|
|
219
|
+
"editor.record.form.field.onlineResource.modify": "",
|
|
206
220
|
"editor.record.form.field.overviews": "",
|
|
207
221
|
"editor.record.form.field.recordUpdated": "",
|
|
208
222
|
"editor.record.form.field.resourceUpdated": "",
|
|
223
|
+
"editor.record.form.field.spatialExtents": "",
|
|
209
224
|
"editor.record.form.field.temporalExtents": "",
|
|
210
225
|
"editor.record.form.field.title": "",
|
|
211
226
|
"editor.record.form.field.uniqueIdentifier": "",
|
|
@@ -240,18 +255,35 @@
|
|
|
240
255
|
"editor.record.form.temporalExtents.date": "",
|
|
241
256
|
"editor.record.form.temporalExtents.range": "",
|
|
242
257
|
"editor.record.form.updateFrequency.planned": "",
|
|
258
|
+
"editor.record.importFromExternalFile.failure.body": "",
|
|
259
|
+
"editor.record.importFromExternalFile.failure.title": "",
|
|
260
|
+
"editor.record.importFromExternalFile.success.body": "",
|
|
261
|
+
"editor.record.importFromExternalFile.success.title": "",
|
|
243
262
|
"editor.record.loadError.body": "",
|
|
244
263
|
"editor.record.loadError.closeMessage": "",
|
|
245
264
|
"editor.record.loadError.title": "",
|
|
265
|
+
"editor.record.onlineResourceError.body": "",
|
|
266
|
+
"editor.record.onlineResourceError.closeMessage": "",
|
|
267
|
+
"editor.record.onlineResourceError.title": "",
|
|
268
|
+
"editor.record.placeKeywordWithoutLabel": "",
|
|
246
269
|
"editor.record.publish": "",
|
|
247
270
|
"editor.record.publishError.body": "",
|
|
248
271
|
"editor.record.publishError.closeMessage": "",
|
|
249
272
|
"editor.record.publishError.title": "",
|
|
250
273
|
"editor.record.publishSuccess.body": "",
|
|
251
274
|
"editor.record.publishSuccess.title": "",
|
|
275
|
+
"editor.record.resourceError.body": "",
|
|
276
|
+
"editor.record.resourceError.closeMessage": "",
|
|
277
|
+
"editor.record.resourceError.title": "",
|
|
252
278
|
"editor.record.saveStatus.asDraftOnly": "",
|
|
253
279
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
254
280
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
281
|
+
"editor.record.undo.confirmation.cancelText": "",
|
|
282
|
+
"editor.record.undo.confirmation.confirmText": "",
|
|
283
|
+
"editor.record.undo.confirmation.message": "",
|
|
284
|
+
"editor.record.undo.confirmation.title": "",
|
|
285
|
+
"editor.record.undo.tooltip.disabled": "",
|
|
286
|
+
"editor.record.undo.tooltip.enabled": "",
|
|
255
287
|
"editor.record.upToDate": "",
|
|
256
288
|
"editor.sidebar.menu.editor": "",
|
|
257
289
|
"externalviewer.dataset.unnamed": "",
|
|
@@ -267,6 +299,11 @@
|
|
|
267
299
|
"facets.block.title.tag.default": "",
|
|
268
300
|
"facets.block.title.th_regions_tree.default": "",
|
|
269
301
|
"favorite.not.authenticated.tooltip": "",
|
|
302
|
+
"input.file.dropFileLabel": "",
|
|
303
|
+
"input.file.orInputUrl": "",
|
|
304
|
+
"input.file.selectFileLabel": "",
|
|
305
|
+
"input.file.uploadProgressCancel": "",
|
|
306
|
+
"input.file.uploadProgressLabel": "",
|
|
270
307
|
"input.image.altTextPlaceholder": "",
|
|
271
308
|
"input.image.delete": "",
|
|
272
309
|
"input.image.displayAltTextInput": "",
|
|
@@ -387,6 +424,8 @@
|
|
|
387
424
|
"record.metadata.related": "",
|
|
388
425
|
"record.metadata.sheet": "",
|
|
389
426
|
"record.metadata.status": "",
|
|
427
|
+
"record.metadata.status.notPublished": "",
|
|
428
|
+
"record.metadata.status.published": "",
|
|
390
429
|
"record.metadata.technical": "",
|
|
391
430
|
"record.metadata.temporalExtent": "",
|
|
392
431
|
"record.metadata.temporalExtent.fromDateToDate": "",
|
package/translations/sk.json
CHANGED
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
"dashboard.catalog.discussion": "",
|
|
25
25
|
"dashboard.catalog.thesaurus": "",
|
|
26
26
|
"dashboard.createRecord": "",
|
|
27
|
+
"dashboard.importRecord": "",
|
|
28
|
+
"dashboard.importRecord.importExternal": "",
|
|
29
|
+
"dashboard.importRecord.importExternalLabel": "",
|
|
30
|
+
"dashboard.importRecord.useModel": "",
|
|
27
31
|
"dashboard.labels.catalog": "Katalóg",
|
|
28
32
|
"dashboard.labels.mySpace": "Môj priestor",
|
|
29
33
|
"dashboard.records.all": "Katalóg",
|
|
@@ -186,6 +190,8 @@
|
|
|
186
190
|
"downloads.format.unknown": "neznámy",
|
|
187
191
|
"downloads.wfs.featuretype.not.found": "Vrstva nebola nájdená",
|
|
188
192
|
"dropFile": "nahrať súbor",
|
|
193
|
+
"editor.form.keywords.placeholder": "",
|
|
194
|
+
"editor.form.placeKeywordWithoutExtent": "",
|
|
189
195
|
"editor.record.delete.confirmation.cancelText": "",
|
|
190
196
|
"editor.record.delete.confirmation.confirmText": "",
|
|
191
197
|
"editor.record.delete.confirmation.message": "",
|
|
@@ -203,9 +209,18 @@
|
|
|
203
209
|
"editor.record.form.field.contactsForResource.noContact": "",
|
|
204
210
|
"editor.record.form.field.keywords": "",
|
|
205
211
|
"editor.record.form.field.license": "Licencia",
|
|
212
|
+
"editor.record.form.field.onlineLinkResources": "",
|
|
213
|
+
"editor.record.form.field.onlineResource.cancel": "",
|
|
214
|
+
"editor.record.form.field.onlineResource.confirm": "",
|
|
215
|
+
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
216
|
+
"editor.record.form.field.onlineResource.edit.description": "",
|
|
217
|
+
"editor.record.form.field.onlineResource.edit.title": "",
|
|
218
|
+
"editor.record.form.field.onlineResource.fileSize": "",
|
|
219
|
+
"editor.record.form.field.onlineResource.modify": "",
|
|
206
220
|
"editor.record.form.field.overviews": "",
|
|
207
221
|
"editor.record.form.field.recordUpdated": "",
|
|
208
222
|
"editor.record.form.field.resourceUpdated": "",
|
|
223
|
+
"editor.record.form.field.spatialExtents": "",
|
|
209
224
|
"editor.record.form.field.temporalExtents": "",
|
|
210
225
|
"editor.record.form.field.title": "",
|
|
211
226
|
"editor.record.form.field.uniqueIdentifier": "",
|
|
@@ -240,18 +255,35 @@
|
|
|
240
255
|
"editor.record.form.temporalExtents.date": "",
|
|
241
256
|
"editor.record.form.temporalExtents.range": "",
|
|
242
257
|
"editor.record.form.updateFrequency.planned": "",
|
|
258
|
+
"editor.record.importFromExternalFile.failure.body": "",
|
|
259
|
+
"editor.record.importFromExternalFile.failure.title": "",
|
|
260
|
+
"editor.record.importFromExternalFile.success.body": "",
|
|
261
|
+
"editor.record.importFromExternalFile.success.title": "",
|
|
243
262
|
"editor.record.loadError.body": "",
|
|
244
263
|
"editor.record.loadError.closeMessage": "",
|
|
245
264
|
"editor.record.loadError.title": "",
|
|
265
|
+
"editor.record.onlineResourceError.body": "",
|
|
266
|
+
"editor.record.onlineResourceError.closeMessage": "",
|
|
267
|
+
"editor.record.onlineResourceError.title": "",
|
|
268
|
+
"editor.record.placeKeywordWithoutLabel": "",
|
|
246
269
|
"editor.record.publish": "",
|
|
247
270
|
"editor.record.publishError.body": "",
|
|
248
271
|
"editor.record.publishError.closeMessage": "",
|
|
249
272
|
"editor.record.publishError.title": "",
|
|
250
273
|
"editor.record.publishSuccess.body": "",
|
|
251
274
|
"editor.record.publishSuccess.title": "",
|
|
275
|
+
"editor.record.resourceError.body": "",
|
|
276
|
+
"editor.record.resourceError.closeMessage": "",
|
|
277
|
+
"editor.record.resourceError.title": "",
|
|
252
278
|
"editor.record.saveStatus.asDraftOnly": "",
|
|
253
279
|
"editor.record.saveStatus.draftWithChangesPending": "",
|
|
254
280
|
"editor.record.saveStatus.recordUpToDate": "",
|
|
281
|
+
"editor.record.undo.confirmation.cancelText": "",
|
|
282
|
+
"editor.record.undo.confirmation.confirmText": "",
|
|
283
|
+
"editor.record.undo.confirmation.message": "",
|
|
284
|
+
"editor.record.undo.confirmation.title": "",
|
|
285
|
+
"editor.record.undo.tooltip.disabled": "",
|
|
286
|
+
"editor.record.undo.tooltip.enabled": "",
|
|
255
287
|
"editor.record.upToDate": "",
|
|
256
288
|
"editor.sidebar.menu.editor": "",
|
|
257
289
|
"externalviewer.dataset.unnamed": "",
|
|
@@ -267,6 +299,11 @@
|
|
|
267
299
|
"facets.block.title.tag.default": "Štítok",
|
|
268
300
|
"facets.block.title.th_regions_tree.default": "Regióny",
|
|
269
301
|
"favorite.not.authenticated.tooltip": "<div><a href='{link}'>Prihlásiť sa</a> pre prístup k tejto funkcii</div>",
|
|
302
|
+
"input.file.dropFileLabel": "",
|
|
303
|
+
"input.file.orInputUrl": "",
|
|
304
|
+
"input.file.selectFileLabel": "",
|
|
305
|
+
"input.file.uploadProgressCancel": "",
|
|
306
|
+
"input.file.uploadProgressLabel": "",
|
|
270
307
|
"input.image.altTextPlaceholder": "",
|
|
271
308
|
"input.image.delete": "",
|
|
272
309
|
"input.image.displayAltTextInput": "",
|
|
@@ -387,6 +424,8 @@
|
|
|
387
424
|
"record.metadata.related": "Súvisiace záznamy",
|
|
388
425
|
"record.metadata.sheet": "Ďalšie metadáta sú k dispozícii na:",
|
|
389
426
|
"record.metadata.status": "Stav",
|
|
427
|
+
"record.metadata.status.notPublished": "",
|
|
428
|
+
"record.metadata.status.published": "",
|
|
390
429
|
"record.metadata.technical": "",
|
|
391
430
|
"record.metadata.temporalExtent": "",
|
|
392
431
|
"record.metadata.temporalExtent.fromDateToDate": "",
|
package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs
DELETED
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, EventEmitter, Input, Output, } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { RecordsApiService } from '../../../../../../../libs/data-access/gn4/src';
|
|
4
|
-
import { UiInputsModule } from '../../../../../../../libs/ui/inputs/src';
|
|
5
|
-
import { FormControl } from '@angular/forms';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "../../../../../../../libs/data-access/gn4/src";
|
|
8
|
-
import * as i2 from "../../../../../../ui/inputs/src/lib/image-input/image-input.component";
|
|
9
|
-
export class OverviewUploadComponent {
|
|
10
|
-
constructor(recordsApiService, cd) {
|
|
11
|
-
this.recordsApiService = recordsApiService;
|
|
12
|
-
this.cd = cd;
|
|
13
|
-
this.overviewChange = new EventEmitter();
|
|
14
|
-
this.altTextChange = new EventEmitter();
|
|
15
|
-
this.errorHandle = (error) => {
|
|
16
|
-
console.error(error);
|
|
17
|
-
this.resourceUrl = '';
|
|
18
|
-
this.resourceAltText = '';
|
|
19
|
-
this.resourceFileName = '';
|
|
20
|
-
this.overviewChange.emit(null);
|
|
21
|
-
this.cd.markForCheck();
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
ngOnInit() {
|
|
25
|
-
this.recordsApiService.getAllResources(this.metadataUuid).subscribe({
|
|
26
|
-
next: (resources) => {
|
|
27
|
-
if (resources && resources.length > 0) {
|
|
28
|
-
this.resourceUrl = resources[0].url;
|
|
29
|
-
this.resourceFileName = resources[0].filename;
|
|
30
|
-
if (!this.resourceAltText) {
|
|
31
|
-
this.resourceAltText = this.resourceFileName;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
else {
|
|
35
|
-
this.resourceUrl = '';
|
|
36
|
-
this.resourceAltText = '';
|
|
37
|
-
this.resourceFileName = '';
|
|
38
|
-
}
|
|
39
|
-
this.cd.markForCheck();
|
|
40
|
-
},
|
|
41
|
-
error: this.errorHandle,
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
handleFileChange(file) {
|
|
45
|
-
this.recordsApiService
|
|
46
|
-
.putResource(this.metadataUuid, file, 'public')
|
|
47
|
-
.subscribe({
|
|
48
|
-
next: (resource) => {
|
|
49
|
-
this.resourceUrl = resource.url;
|
|
50
|
-
this.resourceAltText = resource.filename;
|
|
51
|
-
this.overviewChange.emit({
|
|
52
|
-
url: new URL(resource.url),
|
|
53
|
-
description: resource.filename,
|
|
54
|
-
});
|
|
55
|
-
this.cd.markForCheck();
|
|
56
|
-
},
|
|
57
|
-
error: this.errorHandle,
|
|
58
|
-
});
|
|
59
|
-
}
|
|
60
|
-
handleUrlChange(url) {
|
|
61
|
-
this.recordsApiService
|
|
62
|
-
.putResourceFromURL(this.metadataUuid, url, 'public')
|
|
63
|
-
.subscribe({
|
|
64
|
-
next: (resource) => {
|
|
65
|
-
this.resourceUrl = resource.url;
|
|
66
|
-
this.resourceAltText = resource.filename;
|
|
67
|
-
this.overviewChange.emit({
|
|
68
|
-
url: new URL(resource.url),
|
|
69
|
-
description: resource.filename,
|
|
70
|
-
});
|
|
71
|
-
this.cd.markForCheck();
|
|
72
|
-
},
|
|
73
|
-
error: this.errorHandle,
|
|
74
|
-
});
|
|
75
|
-
}
|
|
76
|
-
handleAltTextChange(newAltText) {
|
|
77
|
-
this.resourceAltText = newAltText;
|
|
78
|
-
this.overviewChange.emit({
|
|
79
|
-
url: new URL(this.resourceUrl),
|
|
80
|
-
description: this.resourceAltText,
|
|
81
|
-
});
|
|
82
|
-
this.cd.markForCheck();
|
|
83
|
-
}
|
|
84
|
-
handleDelete() {
|
|
85
|
-
//this.formControl.markAsDirty()
|
|
86
|
-
this.recordsApiService
|
|
87
|
-
.delResource(this.metadataUuid, this.resourceFileName)
|
|
88
|
-
.subscribe({
|
|
89
|
-
next: () => {
|
|
90
|
-
this.resourceAltText = '';
|
|
91
|
-
this.resourceUrl = '';
|
|
92
|
-
this.overviewChange.emit(null);
|
|
93
|
-
this.cd.markForCheck();
|
|
94
|
-
},
|
|
95
|
-
error: this.errorHandle,
|
|
96
|
-
});
|
|
97
|
-
}
|
|
98
|
-
ngOnChanges(changes) {
|
|
99
|
-
const overviewChanges = changes['formControl'];
|
|
100
|
-
if (overviewChanges &&
|
|
101
|
-
overviewChanges.currentValue !== overviewChanges.previousValue) {
|
|
102
|
-
let overview;
|
|
103
|
-
if (overviewChanges.currentValue.value &&
|
|
104
|
-
overviewChanges.currentValue.value.length > 0) {
|
|
105
|
-
overview = overviewChanges.currentValue.value[0];
|
|
106
|
-
}
|
|
107
|
-
else {
|
|
108
|
-
return;
|
|
109
|
-
}
|
|
110
|
-
if (overview.description) {
|
|
111
|
-
this.resourceAltText = overview.description;
|
|
112
|
-
this.cd.markForCheck();
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: OverviewUploadComponent, deps: [{ token: i1.RecordsApiService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
117
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: OverviewUploadComponent, isStandalone: true, selector: "gn-ui-overview-upload", inputs: { metadataUuid: "metadataUuid", formControl: "formControl" }, outputs: { overviewChange: "overviewChange", altTextChange: "altTextChange" }, usesOnChanges: true, ngImport: i0, template: "<gn-ui-image-input\n [maxSizeMB]=\"5\"\n [previewUrl]=\"resourceUrl\"\n [altText]=\"resourceAltText\"\n (fileChange)=\"handleFileChange($event)\"\n (urlChange)=\"handleUrlChange($event)\"\n (altTextChange)=\"handleAltTextChange($event)\"\n (delete)=\"handleDelete()\"\n></gn-ui-image-input>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: UiInputsModule }, { kind: "component", type: i2.ImageInputComponent, selector: "gn-ui-image-input", inputs: ["maxSizeMB", "previewUrl", "altText", "uploadProgress", "uploadError"], outputs: ["fileChange", "urlChange", "uploadCancel", "delete", "altTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
118
|
-
}
|
|
119
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: OverviewUploadComponent, decorators: [{
|
|
120
|
-
type: Component,
|
|
121
|
-
args: [{ selector: 'gn-ui-overview-upload', standalone: true, imports: [CommonModule, UiInputsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<gn-ui-image-input\n [maxSizeMB]=\"5\"\n [previewUrl]=\"resourceUrl\"\n [altText]=\"resourceAltText\"\n (fileChange)=\"handleFileChange($event)\"\n (urlChange)=\"handleUrlChange($event)\"\n (altTextChange)=\"handleAltTextChange($event)\"\n (delete)=\"handleDelete()\"\n></gn-ui-image-input>\n" }]
|
|
122
|
-
}], ctorParameters: function () { return [{ type: i1.RecordsApiService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { metadataUuid: [{
|
|
123
|
-
type: Input
|
|
124
|
-
}], formControl: [{
|
|
125
|
-
type: Input
|
|
126
|
-
}], overviewChange: [{
|
|
127
|
-
type: Output
|
|
128
|
-
}], altTextChange: [{
|
|
129
|
-
type: Output
|
|
130
|
-
}] } });
|
|
131
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3ZlcnZpZXctdXBsb2FkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL292ZXJ2aWV3LXVwbG9hZC9vdmVydmlldy11cGxvYWQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvb3ZlcnZpZXctdXBsb2FkL292ZXJ2aWV3LXVwbG9hZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLGlCQUFpQixFQUNqQixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFHTCxNQUFNLEdBRVAsTUFBTSxlQUFlLENBQUE7QUFDdEIsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFBO0FBQzlDLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtDQUErQyxDQUFBO0FBQ2pGLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQTtBQUN4RSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUE7Ozs7QUFXNUMsTUFBTSxPQUFPLHVCQUF1QjtJQVVsQyxZQUNVLGlCQUFvQyxFQUNwQyxFQUFxQjtRQURyQixzQkFBaUIsR0FBakIsaUJBQWlCLENBQW1CO1FBQ3BDLE9BQUUsR0FBRixFQUFFLENBQW1CO1FBVHJCLG1CQUFjLEdBQUcsSUFBSSxZQUFZLEVBQTBCLENBQUE7UUFDM0Qsa0JBQWEsR0FBeUIsSUFBSSxZQUFZLEVBQUUsQ0FBQTtRQWtHMUQsZ0JBQVcsR0FBRyxDQUFDLEtBQVksRUFBRSxFQUFFO1lBQ3JDLE9BQU8sQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLENBQUE7WUFFcEIsSUFBSSxDQUFDLFdBQVcsR0FBRyxFQUFFLENBQUE7WUFDckIsSUFBSSxDQUFDLGVBQWUsR0FBRyxFQUFFLENBQUE7WUFDekIsSUFBSSxDQUFDLGdCQUFnQixHQUFHLEVBQUUsQ0FBQTtZQUUxQixJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQTtZQUU5QixJQUFJLENBQUMsRUFBRSxDQUFDLFlBQVksRUFBRSxDQUFBO1FBQ3hCLENBQUMsQ0FBQTtJQW5HRSxDQUFDO0lBRUosUUFBUTtRQUNOLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUNsRSxJQUFJLEVBQUUsQ0FBQyxTQUFTLEVBQUUsRUFBRTtnQkFDbEIsSUFBSSxTQUFTLElBQUksU0FBUyxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUU7b0JBQ3JDLElBQUksQ0FBQyxXQUFXLEdBQUcsU0FBUyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQTtvQkFDbkMsSUFBSSxDQUFDLGdCQUFnQixHQUFHLFNBQVMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUE7b0JBQzdDLElBQUksQ0FBQyxJQUFJLENBQUMsZUFBZSxFQUFFO3dCQUN6QixJQUFJLENBQUMsZUFBZSxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQTtxQkFDN0M7aUJBQ0Y7cUJBQU07b0JBQ0wsSUFBSSxDQUFDLFdBQVcsR0FBRyxFQUFFLENBQUE7b0JBQ3JCLElBQUksQ0FBQyxlQUFlLEdBQUcsRUFBRSxDQUFBO29CQUN6QixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsRUFBRSxDQUFBO2lCQUMzQjtnQkFFRCxJQUFJLENBQUMsRUFBRSxDQUFDLFlBQVksRUFBRSxDQUFBO1lBQ3hCLENBQUM7WUFDRCxLQUFLLEVBQUUsSUFBSSxDQUFDLFdBQVc7U0FDeEIsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQUVELGdCQUFnQixDQUFDLElBQVU7UUFDekIsSUFBSSxDQUFDLGlCQUFpQjthQUNuQixXQUFXLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRSxJQUFJLEVBQUUsUUFBUSxDQUFDO2FBQzlDLFNBQVMsQ0FBQztZQUNULElBQUksRUFBRSxDQUFDLFFBQVEsRUFBRSxFQUFFO2dCQUNqQixJQUFJLENBQUMsV0FBVyxHQUFHLFFBQVEsQ0FBQyxHQUFHLENBQUE7Z0JBQy9CLElBQUksQ0FBQyxlQUFlLEdBQUcsUUFBUSxDQUFDLFFBQVEsQ0FBQTtnQkFFeEMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUM7b0JBQ3ZCLEdBQUcsRUFBRSxJQUFJLEdBQUcsQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDO29CQUMxQixXQUFXLEVBQUUsUUFBUSxDQUFDLFFBQVE7aUJBQy9CLENBQUMsQ0FBQTtnQkFFRixJQUFJLENBQUMsRUFBRSxDQUFDLFlBQVksRUFBRSxDQUFBO1lBQ3hCLENBQUM7WUFDRCxLQUFLLEVBQUUsSUFBSSxDQUFDLFdBQVc7U0FDeEIsQ0FBQyxDQUFBO0lBQ04sQ0FBQztJQUVELGVBQWUsQ0FBQyxHQUFXO1FBQ3pCLElBQUksQ0FBQyxpQkFBaUI7YUFDbkIsa0JBQWtCLENBQUMsSUFBSSxDQUFDLFlBQVksRUFBRSxHQUFHLEVBQUUsUUFBUSxDQUFDO2FBQ3BELFNBQVMsQ0FBQztZQUNULElBQUksRUFBRSxDQUFDLFFBQVEsRUFBRSxFQUFFO2dCQUNqQixJQUFJLENBQUMsV0FBVyxHQUFHLFFBQVEsQ0FBQyxHQUFHLENBQUE7Z0JBQy9CLElBQUksQ0FBQyxlQUFlLEdBQUcsUUFBUSxDQUFDLFFBQVEsQ0FBQTtnQkFFeEMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUM7b0JBQ3ZCLEdBQUcsRUFBRSxJQUFJLEdBQUcsQ0FBQyxRQUFRLENBQUMsR0FBRyxDQUFDO29CQUMxQixXQUFXLEVBQUUsUUFBUSxDQUFDLFFBQVE7aUJBQy9CLENBQUMsQ0FBQTtnQkFFRixJQUFJLENBQUMsRUFBRSxDQUFDLFlBQVksRUFBRSxDQUFBO1lBQ3hCLENBQUM7WUFDRCxLQUFLLEVBQUUsSUFBSSxDQUFDLFdBQVc7U0FDeEIsQ0FBQyxDQUFBO0lBQ04sQ0FBQztJQUVELG1CQUFtQixDQUFDLFVBQWtCO1FBQ3BDLElBQUksQ0FBQyxlQUFlLEdBQUcsVUFBVSxDQUFBO1FBRWpDLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDO1lBQ3ZCLEdBQUcsRUFBRSxJQUFJLEdBQUcsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDO1lBQzlCLFdBQVcsRUFBRSxJQUFJLENBQUMsZUFBZTtTQUNsQyxDQUFDLENBQUE7UUFFRixJQUFJLENBQUMsRUFBRSxDQUFDLFlBQVksRUFBRSxDQUFBO0lBQ3hCLENBQUM7SUFFRCxZQUFZO1FBQ1YsZ0NBQWdDO1FBQ2hDLElBQUksQ0FBQyxpQkFBaUI7YUFDbkIsV0FBVyxDQUFDLElBQUksQ0FBQyxZQUFZLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDO2FBQ3JELFNBQVMsQ0FBQztZQUNULElBQUksRUFBRSxHQUFHLEVBQUU7Z0JBQ1QsSUFBSSxDQUFDLGVBQWUsR0FBRyxFQUFFLENBQUE7Z0JBQ3pCLElBQUksQ0FBQyxXQUFXLEdBQUcsRUFBRSxDQUFBO2dCQUVyQixJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQTtnQkFFOUIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxZQUFZLEVBQUUsQ0FBQTtZQUN4QixDQUFDO1lBQ0QsS0FBSyxFQUFFLElBQUksQ0FBQyxXQUFXO1NBQ3hCLENBQUMsQ0FBQTtJQUNOLENBQUM7SUFjRCxXQUFXLENBQUMsT0FBc0I7UUFDaEMsTUFBTSxlQUFlLEdBQUcsT0FBTyxDQUFDLGFBQWEsQ0FBQyxDQUFBO1FBQzlDLElBQ0UsZUFBZTtZQUNmLGVBQWUsQ0FBQyxZQUFZLEtBQUssZUFBZSxDQUFDLGFBQWEsRUFDOUQ7WUFDQSxJQUFJLFFBQXlCLENBQUE7WUFDN0IsSUFDRSxlQUFlLENBQUMsWUFBWSxDQUFDLEtBQUs7Z0JBQ2xDLGVBQWUsQ0FBQyxZQUFZLENBQUMsS0FBSyxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQzdDO2dCQUNBLFFBQVEsR0FBRyxlQUFlLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQW9CLENBQUE7YUFDcEU7aUJBQU07Z0JBQ0wsT0FBTTthQUNQO1lBQ0QsSUFBSSxRQUFRLENBQUMsV0FBVyxFQUFFO2dCQUN4QixJQUFJLENBQUMsZUFBZSxHQUFHLFFBQVEsQ0FBQyxXQUFXLENBQUE7Z0JBQzNDLElBQUksQ0FBQyxFQUFFLENBQUMsWUFBWSxFQUFFLENBQUE7YUFDdkI7U0FDRjtJQUNILENBQUM7K0dBdElVLHVCQUF1QjttR0FBdkIsdUJBQXVCLDJQQ3pCcEMsNlNBU0EseUREV1ksWUFBWSw4QkFBRSxjQUFjOzs0RkFLM0IsdUJBQXVCO2tCQVJuQyxTQUFTOytCQUNFLHVCQUF1QixjQUNyQixJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUsY0FBYyxDQUFDLG1CQUd0Qix1QkFBdUIsQ0FBQyxNQUFNO3dJQUd0QyxZQUFZO3NCQUFwQixLQUFLO2dCQUNHLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0ksY0FBYztzQkFBdkIsTUFBTTtnQkFDRyxhQUFhO3NCQUF0QixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENoYW5nZURldGVjdG9yUmVmLFxuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE9uQ2hhbmdlcyxcbiAgT25Jbml0LFxuICBPdXRwdXQsXG4gIFNpbXBsZUNoYW5nZXMsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nXG5pbXBvcnQgeyBSZWNvcmRzQXBpU2VydmljZSB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZGF0YS1hY2Nlc3MvZ240L3NyYydcbmltcG9ydCB7IFVpSW5wdXRzTW9kdWxlIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjJ1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3JtcydcbmltcG9ydCB7IEdyYXBoaWNPdmVydmlldyB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tbW9uL2RvbWFpbi9zcmMvbGliL21vZGVsL3JlY29yZCdcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktb3ZlcnZpZXctdXBsb2FkJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgVWlJbnB1dHNNb2R1bGVdLFxuICB0ZW1wbGF0ZVVybDogJy4vb3ZlcnZpZXctdXBsb2FkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vb3ZlcnZpZXctdXBsb2FkLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIE92ZXJ2aWV3VXBsb2FkQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBPbkNoYW5nZXMge1xuICBASW5wdXQoKSBtZXRhZGF0YVV1aWQ6IHN0cmluZ1xuICBASW5wdXQoKSBmb3JtQ29udHJvbCE6IEZvcm1Db250cm9sXG4gIEBPdXRwdXQoKSBvdmVydmlld0NoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8R3JhcGhpY092ZXJ2aWV3IHwgbnVsbD4oKVxuICBAT3V0cHV0KCkgYWx0VGV4dENoYW5nZTogRXZlbnRFbWl0dGVyPHN0cmluZz4gPSBuZXcgRXZlbnRFbWl0dGVyKClcblxuICByZXNvdXJjZUFsdFRleHQ6IHN0cmluZ1xuICByZXNvdXJjZUZpbGVOYW1lOiBzdHJpbmdcbiAgcmVzb3VyY2VVcmw6IHN0cmluZ1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgcmVjb3Jkc0FwaVNlcnZpY2U6IFJlY29yZHNBcGlTZXJ2aWNlLFxuICAgIHByaXZhdGUgY2Q6IENoYW5nZURldGVjdG9yUmVmXG4gICkge31cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnJlY29yZHNBcGlTZXJ2aWNlLmdldEFsbFJlc291cmNlcyh0aGlzLm1ldGFkYXRhVXVpZCkuc3Vic2NyaWJlKHtcbiAgICAgIG5leHQ6IChyZXNvdXJjZXMpID0+IHtcbiAgICAgICAgaWYgKHJlc291cmNlcyAmJiByZXNvdXJjZXMubGVuZ3RoID4gMCkge1xuICAgICAgICAgIHRoaXMucmVzb3VyY2VVcmwgPSByZXNvdXJjZXNbMF0udXJsXG4gICAgICAgICAgdGhpcy5yZXNvdXJjZUZpbGVOYW1lID0gcmVzb3VyY2VzWzBdLmZpbGVuYW1lXG4gICAgICAgICAgaWYgKCF0aGlzLnJlc291cmNlQWx0VGV4dCkge1xuICAgICAgICAgICAgdGhpcy5yZXNvdXJjZUFsdFRleHQgPSB0aGlzLnJlc291cmNlRmlsZU5hbWVcbiAgICAgICAgICB9XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgdGhpcy5yZXNvdXJjZVVybCA9ICcnXG4gICAgICAgICAgdGhpcy5yZXNvdXJjZUFsdFRleHQgPSAnJ1xuICAgICAgICAgIHRoaXMucmVzb3VyY2VGaWxlTmFtZSA9ICcnXG4gICAgICAgIH1cblxuICAgICAgICB0aGlzLmNkLm1hcmtGb3JDaGVjaygpXG4gICAgICB9LFxuICAgICAgZXJyb3I6IHRoaXMuZXJyb3JIYW5kbGUsXG4gICAgfSlcbiAgfVxuXG4gIGhhbmRsZUZpbGVDaGFuZ2UoZmlsZTogRmlsZSkge1xuICAgIHRoaXMucmVjb3Jkc0FwaVNlcnZpY2VcbiAgICAgIC5wdXRSZXNvdXJjZSh0aGlzLm1ldGFkYXRhVXVpZCwgZmlsZSwgJ3B1YmxpYycpXG4gICAgICAuc3Vic2NyaWJlKHtcbiAgICAgICAgbmV4dDogKHJlc291cmNlKSA9PiB7XG4gICAgICAgICAgdGhpcy5yZXNvdXJjZVVybCA9IHJlc291cmNlLnVybFxuICAgICAgICAgIHRoaXMucmVzb3VyY2VBbHRUZXh0ID0gcmVzb3VyY2UuZmlsZW5hbWVcblxuICAgICAgICAgIHRoaXMub3ZlcnZpZXdDaGFuZ2UuZW1pdCh7XG4gICAgICAgICAgICB1cmw6IG5ldyBVUkwocmVzb3VyY2UudXJsKSxcbiAgICAgICAgICAgIGRlc2NyaXB0aW9uOiByZXNvdXJjZS5maWxlbmFtZSxcbiAgICAgICAgICB9KVxuXG4gICAgICAgICAgdGhpcy5jZC5tYXJrRm9yQ2hlY2soKVxuICAgICAgICB9LFxuICAgICAgICBlcnJvcjogdGhpcy5lcnJvckhhbmRsZSxcbiAgICAgIH0pXG4gIH1cblxuICBoYW5kbGVVcmxDaGFuZ2UodXJsOiBzdHJpbmcpIHtcbiAgICB0aGlzLnJlY29yZHNBcGlTZXJ2aWNlXG4gICAgICAucHV0UmVzb3VyY2VGcm9tVVJMKHRoaXMubWV0YWRhdGFVdWlkLCB1cmwsICdwdWJsaWMnKVxuICAgICAgLnN1YnNjcmliZSh7XG4gICAgICAgIG5leHQ6IChyZXNvdXJjZSkgPT4ge1xuICAgICAgICAgIHRoaXMucmVzb3VyY2VVcmwgPSByZXNvdXJjZS51cmxcbiAgICAgICAgICB0aGlzLnJlc291cmNlQWx0VGV4dCA9IHJlc291cmNlLmZpbGVuYW1lXG5cbiAgICAgICAgICB0aGlzLm92ZXJ2aWV3Q2hhbmdlLmVtaXQoe1xuICAgICAgICAgICAgdXJsOiBuZXcgVVJMKHJlc291cmNlLnVybCksXG4gICAgICAgICAgICBkZXNjcmlwdGlvbjogcmVzb3VyY2UuZmlsZW5hbWUsXG4gICAgICAgICAgfSlcblxuICAgICAgICAgIHRoaXMuY2QubWFya0ZvckNoZWNrKClcbiAgICAgICAgfSxcbiAgICAgICAgZXJyb3I6IHRoaXMuZXJyb3JIYW5kbGUsXG4gICAgICB9KVxuICB9XG5cbiAgaGFuZGxlQWx0VGV4dENoYW5nZShuZXdBbHRUZXh0OiBzdHJpbmcpIHtcbiAgICB0aGlzLnJlc291cmNlQWx0VGV4dCA9IG5ld0FsdFRleHRcblxuICAgIHRoaXMub3ZlcnZpZXdDaGFuZ2UuZW1pdCh7XG4gICAgICB1cmw6IG5ldyBVUkwodGhpcy5yZXNvdXJjZVVybCksXG4gICAgICBkZXNjcmlwdGlvbjogdGhpcy5yZXNvdXJjZUFsdFRleHQsXG4gICAgfSlcblxuICAgIHRoaXMuY2QubWFya0ZvckNoZWNrKClcbiAgfVxuXG4gIGhhbmRsZURlbGV0ZSgpIHtcbiAgICAvL3RoaXMuZm9ybUNvbnRyb2wubWFya0FzRGlydHkoKVxuICAgIHRoaXMucmVjb3Jkc0FwaVNlcnZpY2VcbiAgICAgIC5kZWxSZXNvdXJjZSh0aGlzLm1ldGFkYXRhVXVpZCwgdGhpcy5yZXNvdXJjZUZpbGVOYW1lKVxuICAgICAgLnN1YnNjcmliZSh7XG4gICAgICAgIG5leHQ6ICgpID0+IHtcbiAgICAgICAgICB0aGlzLnJlc291cmNlQWx0VGV4dCA9ICcnXG4gICAgICAgICAgdGhpcy5yZXNvdXJjZVVybCA9ICcnXG5cbiAgICAgICAgICB0aGlzLm92ZXJ2aWV3Q2hhbmdlLmVtaXQobnVsbClcblxuICAgICAgICAgIHRoaXMuY2QubWFya0ZvckNoZWNrKClcbiAgICAgICAgfSxcbiAgICAgICAgZXJyb3I6IHRoaXMuZXJyb3JIYW5kbGUsXG4gICAgICB9KVxuICB9XG5cbiAgcHJpdmF0ZSBlcnJvckhhbmRsZSA9IChlcnJvcjogbmV2ZXIpID0+IHtcbiAgICBjb25zb2xlLmVycm9yKGVycm9yKVxuXG4gICAgdGhpcy5yZXNvdXJjZVVybCA9ICcnXG4gICAgdGhpcy5yZXNvdXJjZUFsdFRleHQgPSAnJ1xuICAgIHRoaXMucmVzb3VyY2VGaWxlTmFtZSA9ICcnXG5cbiAgICB0aGlzLm92ZXJ2aWV3Q2hhbmdlLmVtaXQobnVsbClcblxuICAgIHRoaXMuY2QubWFya0ZvckNoZWNrKClcbiAgfVxuXG4gIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICBjb25zdCBvdmVydmlld0NoYW5nZXMgPSBjaGFuZ2VzWydmb3JtQ29udHJvbCddXG4gICAgaWYgKFxuICAgICAgb3ZlcnZpZXdDaGFuZ2VzICYmXG4gICAgICBvdmVydmlld0NoYW5nZXMuY3VycmVudFZhbHVlICE9PSBvdmVydmlld0NoYW5nZXMucHJldmlvdXNWYWx1ZVxuICAgICkge1xuICAgICAgbGV0IG92ZXJ2aWV3OiBHcmFwaGljT3ZlcnZpZXdcbiAgICAgIGlmIChcbiAgICAgICAgb3ZlcnZpZXdDaGFuZ2VzLmN1cnJlbnRWYWx1ZS52YWx1ZSAmJlxuICAgICAgICBvdmVydmlld0NoYW5nZXMuY3VycmVudFZhbHVlLnZhbHVlLmxlbmd0aCA+IDBcbiAgICAgICkge1xuICAgICAgICBvdmVydmlldyA9IG92ZXJ2aWV3Q2hhbmdlcy5jdXJyZW50VmFsdWUudmFsdWVbMF0gYXMgR3JhcGhpY092ZXJ2aWV3XG4gICAgICB9IGVsc2Uge1xuICAgICAgICByZXR1cm5cbiAgICAgIH1cbiAgICAgIGlmIChvdmVydmlldy5kZXNjcmlwdGlvbikge1xuICAgICAgICB0aGlzLnJlc291cmNlQWx0VGV4dCA9IG92ZXJ2aWV3LmRlc2NyaXB0aW9uXG4gICAgICAgIHRoaXMuY2QubWFya0ZvckNoZWNrKClcbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIjxnbi11aS1pbWFnZS1pbnB1dFxuICBbbWF4U2l6ZU1CXT1cIjVcIlxuICBbcHJldmlld1VybF09XCJyZXNvdXJjZVVybFwiXG4gIFthbHRUZXh0XT1cInJlc291cmNlQWx0VGV4dFwiXG4gIChmaWxlQ2hhbmdlKT1cImhhbmRsZUZpbGVDaGFuZ2UoJGV2ZW50KVwiXG4gICh1cmxDaGFuZ2UpPVwiaGFuZGxlVXJsQ2hhbmdlKCRldmVudClcIlxuICAoYWx0VGV4dENoYW5nZSk9XCJoYW5kbGVBbHRUZXh0Q2hhbmdlKCRldmVudClcIlxuICAoZGVsZXRlKT1cImhhbmRsZURlbGV0ZSgpXCJcbj48L2duLXVpLWltYWdlLWlucHV0PlxuIl19
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import { DatePickerComponent } from '../../../../../../../../../libs/ui/inputs/src';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class FormFieldResourceUpdatedComponent {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldResourceUpdatedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FormFieldResourceUpdatedComponent, isStandalone: true, selector: "gn-ui-form-field-resource-updated", inputs: { control: "control" }, ngImport: i0, template: "<gn-ui-date-picker\n [date]=\"control.value\"\n (dateChange)=\"control.setValue($event)\"\n></gn-ui-date-picker>\n", styles: [""], dependencies: [{ kind: "component", type: DatePickerComponent, selector: "gn-ui-date-picker", inputs: ["date"], outputs: ["dateChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldResourceUpdatedComponent, decorators: [{
|
|
10
|
-
type: Component,
|
|
11
|
-
args: [{ selector: 'gn-ui-form-field-resource-updated', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [DatePickerComponent], template: "<gn-ui-date-picker\n [date]=\"control.value\"\n (dateChange)=\"control.setValue($event)\"\n></gn-ui-date-picker>\n" }]
|
|
12
|
-
}], propDecorators: { control: [{
|
|
13
|
-
type: Input
|
|
14
|
-
}] } });
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC1yZXNvdXJjZS11cGRhdGVkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL3JlY29yZC1mb3JtL2Zvcm0tZmllbGQvZm9ybS1maWVsZC1yZXNvdXJjZS11cGRhdGVkL2Zvcm0tZmllbGQtcmVzb3VyY2UtdXBkYXRlZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZWRpdG9yL3NyYy9saWIvY29tcG9uZW50cy9yZWNvcmQtZm9ybS9mb3JtLWZpZWxkL2Zvcm0tZmllbGQtcmVzb3VyY2UtdXBkYXRlZC9mb3JtLWZpZWxkLXJlc291cmNlLXVwZGF0ZWQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDekUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFBO0FBQzVDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLCtDQUErQyxDQUFBOztBQVVuRixNQUFNLE9BQU8saUNBQWlDOytHQUFqQyxpQ0FBaUM7bUdBQWpDLGlDQUFpQyw2SENaOUMsc0hBSUEsMERETVksbUJBQW1COzs0RkFFbEIsaUNBQWlDO2tCQVI3QyxTQUFTOytCQUNFLG1DQUFtQyxtQkFHNUIsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyxtQkFBbUIsQ0FBQzs4QkFHckIsT0FBTztzQkFBZixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3JtcydcbmltcG9ydCB7IERhdGVQaWNrZXJDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtcmVzb3VyY2UtdXBkYXRlZCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLWZpZWxkLXJlc291cmNlLXVwZGF0ZWQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mb3JtLWZpZWxkLXJlc291cmNlLXVwZGF0ZWQuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0RhdGVQaWNrZXJDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBGb3JtRmllbGRSZXNvdXJjZVVwZGF0ZWRDb21wb25lbnQge1xuICBASW5wdXQoKSBjb250cm9sITogRm9ybUNvbnRyb2xcbn1cbiIsIjxnbi11aS1kYXRlLXBpY2tlclxuICBbZGF0ZV09XCJjb250cm9sLnZhbHVlXCJcbiAgKGRhdGVDaGFuZ2UpPVwiY29udHJvbC5zZXRWYWx1ZSgkZXZlbnQpXCJcbj48L2duLXVpLWRhdGUtcGlja2VyPlxuIl19
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import { DatePickerComponent } from '../../../../../../../../../../libs/ui/inputs/src';
|
|
4
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "@ngx-translate/core";
|
|
7
|
-
export class FormFieldTemporalExtentsDateComponent {
|
|
8
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FormFieldTemporalExtentsDateComponent, isStandalone: true, selector: "gn-ui-form-field-temporal-extents-date", inputs: { control: "control" }, ngImport: i0, template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.date</p>\n <gn-ui-date-picker\n [date]=\"control.value?.start\"\n (dateChange)=\"control.setValue({ start: $event })\"\n ></gn-ui-date-picker>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: DatePickerComponent, selector: "gn-ui-date-picker", inputs: ["date"], outputs: ["dateChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "directive", type: i1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
10
|
-
}
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsDateComponent, decorators: [{
|
|
12
|
-
type: Component,
|
|
13
|
-
args: [{ selector: 'gn-ui-form-field-temporal-extents-date', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [DatePickerComponent, TranslateModule], template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.date</p>\n <gn-ui-date-picker\n [date]=\"control.value?.start\"\n (dateChange)=\"control.setValue({ start: $event })\"\n ></gn-ui-date-picker>\n</div>\n" }]
|
|
14
|
-
}], propDecorators: { control: [{
|
|
15
|
-
type: Input
|
|
16
|
-
}] } });
|
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDekUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFBO0FBQzVDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGtEQUFrRCxDQUFBO0FBQ3RGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTs7O0FBVXJELE1BQU0sT0FBTyxxQ0FBcUM7K0dBQXJDLHFDQUFxQzttR0FBckMscUNBQXFDLGtJQ2JsRCxnUkFPQSwwRERJWSxtQkFBbUIsd0dBQUUsZUFBZTs7NEZBRW5DLHFDQUFxQztrQkFSakQsU0FBUzsrQkFDRSx3Q0FBd0MsbUJBR2pDLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSxXQUNQLENBQUMsbUJBQW1CLEVBQUUsZUFBZSxDQUFDOzhCQUd0QyxPQUFPO3NCQUFmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJ1xuaW1wb3J0IHsgRGF0ZVBpY2tlckNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYydcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1kYXRlJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1kYXRlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0RhdGVQaWNrZXJDb21wb25lbnQsIFRyYW5zbGF0ZU1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIEZvcm1GaWVsZFRlbXBvcmFsRXh0ZW50c0RhdGVDb21wb25lbnQge1xuICBASW5wdXQoKSBjb250cm9sITogRm9ybUNvbnRyb2xcbn1cbiIsIjxkaXYgY2xhc3M9XCJib3JkZXIgcm91bmRlZC1sZyBweC00IHBiLTRcIj5cbiAgPHAgY2xhc3M9XCJteS0yXCIgdHJhbnNsYXRlPmVkaXRvci5yZWNvcmQuZm9ybS50ZW1wb3JhbEV4dGVudHMuZGF0ZTwvcD5cbiAgPGduLXVpLWRhdGUtcGlja2VyXG4gICAgW2RhdGVdPVwiY29udHJvbC52YWx1ZT8uc3RhcnRcIlxuICAgIChkYXRlQ2hhbmdlKT1cImNvbnRyb2wuc2V0VmFsdWUoeyBzdGFydDogJGV2ZW50IH0pXCJcbiAgPjwvZ24tdWktZGF0ZS1waWNrZXI+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import { DateRangePickerComponent } from '../../../../../../../../../../libs/ui/inputs/src';
|
|
4
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "@ngx-translate/core";
|
|
7
|
-
export class FormFieldTemporalExtentsRangeComponent {
|
|
8
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsRangeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FormFieldTemporalExtentsRangeComponent, isStandalone: true, selector: "gn-ui-form-field-temporal-extents-range", inputs: { control: "control" }, ngImport: i0, template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.range</p>\n <gn-ui-date-range-picker\n [startDate]=\"control.value?.start\"\n [endDate]=\"control.value?.end\"\n (startDateChange)=\"\n control.setValue({ start: $event, end: control.value?.end })\n \"\n (endDateChange)=\"\n control.setValue({ start: control.value?.start, end: $event })\n \"\n ></gn-ui-date-range-picker>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: DateRangePickerComponent, selector: "gn-ui-date-range-picker", inputs: ["startDate", "endDate"], outputs: ["startDateChange", "endDateChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "directive", type: i1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
10
|
-
}
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsRangeComponent, decorators: [{
|
|
12
|
-
type: Component,
|
|
13
|
-
args: [{ selector: 'gn-ui-form-field-temporal-extents-range', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [DateRangePickerComponent, TranslateModule], template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.range</p>\n <gn-ui-date-range-picker\n [startDate]=\"control.value?.start\"\n [endDate]=\"control.value?.end\"\n (startDateChange)=\"\n control.setValue({ start: $event, end: control.value?.end })\n \"\n (endDateChange)=\"\n control.setValue({ start: control.value?.start, end: $event })\n \"\n ></gn-ui-date-range-picker>\n</div>\n" }]
|
|
14
|
-
}], propDecorators: { control: [{
|
|
15
|
-
type: Input
|
|
16
|
-
}] } });
|
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL3JlY29yZC1mb3JtL2Zvcm0tZmllbGQvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1yYW5nZS9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMtcmFuZ2UuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1yYW5nZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUN6RSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUE7QUFDNUMsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sa0RBQWtELENBQUE7QUFDM0YsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFBOzs7QUFVckQsTUFBTSxPQUFPLHNDQUFzQzsrR0FBdEMsc0NBQXNDO21HQUF0QyxzQ0FBc0MsbUlDYm5ELDBkQWFBLDBEREZZLHdCQUF3QixvSkFBRSxlQUFlOzs0RkFFeEMsc0NBQXNDO2tCQVJsRCxTQUFTOytCQUNFLHlDQUF5QyxtQkFHbEMsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyx3QkFBd0IsRUFBRSxlQUFlLENBQUM7OEJBRzNDLE9BQU87c0JBQWYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IEZvcm1Db250cm9sIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnXG5pbXBvcnQgeyBEYXRlUmFuZ2VQaWNrZXJDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMnXG5pbXBvcnQgeyBUcmFuc2xhdGVNb2R1bGUgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMtcmFuZ2UnLFxuICB0ZW1wbGF0ZVVybDogJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtEYXRlUmFuZ2VQaWNrZXJDb21wb25lbnQsIFRyYW5zbGF0ZU1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIEZvcm1GaWVsZFRlbXBvcmFsRXh0ZW50c1JhbmdlQ29tcG9uZW50IHtcbiAgQElucHV0KCkgY29udHJvbCE6IEZvcm1Db250cm9sXG59XG4iLCI8ZGl2IGNsYXNzPVwiYm9yZGVyIHJvdW5kZWQtbGcgcHgtNCBwYi00XCI+XG4gIDxwIGNsYXNzPVwibXktMlwiIHRyYW5zbGF0ZT5lZGl0b3IucmVjb3JkLmZvcm0udGVtcG9yYWxFeHRlbnRzLnJhbmdlPC9wPlxuICA8Z24tdWktZGF0ZS1yYW5nZS1waWNrZXJcbiAgICBbc3RhcnREYXRlXT1cImNvbnRyb2wudmFsdWU/LnN0YXJ0XCJcbiAgICBbZW5kRGF0ZV09XCJjb250cm9sLnZhbHVlPy5lbmRcIlxuICAgIChzdGFydERhdGVDaGFuZ2UpPVwiXG4gICAgICBjb250cm9sLnNldFZhbHVlKHsgc3RhcnQ6ICRldmVudCwgZW5kOiBjb250cm9sLnZhbHVlPy5lbmQgfSlcbiAgICBcIlxuICAgIChlbmREYXRlQ2hhbmdlKT1cIlxuICAgICAgY29udHJvbC5zZXRWYWx1ZSh7IHN0YXJ0OiBjb250cm9sLnZhbHVlPy5zdGFydCwgZW5kOiAkZXZlbnQgfSlcbiAgICBcIlxuICA+PC9nbi11aS1kYXRlLXJhbmdlLXBpY2tlcj5cbjwvZGl2PlxuIl19
|