geonetwork-ui 2.10.0-dev.b5836aad7 → 2.10.0-dev.bf2e85a24
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/fesm2022/geonetwork-ui.mjs +2285 -6919
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +248 -173
- package/index.d.ts.map +1 -1
- package/material-styles.css +483 -0
- package/package.json +25 -35
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +5 -4
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +33 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +8 -4
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +72 -38
- package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -1
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +48 -2
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +13 -5
- package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
- package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
- package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +56 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +10 -1
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -20
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +15 -2
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +67 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +39 -0
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +18 -3
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +33 -40
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +41 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +32 -34
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +13 -13
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +18 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +8 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +6 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.ts +89 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +3 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +21 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +14 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -5
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +118 -5
- package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
- package/src/libs/feature/editor/src/lib/fields.config.ts +310 -336
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +6 -3
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +9 -13
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
- package/src/libs/feature/notify-reuse/src/index.ts +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.css +0 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +21 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
- package/src/libs/ui/dataviz/src/index.ts +0 -1
- package/src/libs/ui/elements/src/index.ts +2 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +88 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.ts +45 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +41 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +70 -0
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +1 -1
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +0 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +0 -4
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +39 -68
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +59 -11
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +8 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +2 -2
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +2 -1
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -1
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +15 -64
- package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +0 -1
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
- package/src/libs/util/app-config/src/lib/app-config.ts +70 -9
- package/src/libs/util/app-config/src/lib/model.ts +7 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
- package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
- package/src/libs/util/i18n/src/index.ts +0 -1
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
- package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
- package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +23 -1
- package/src/libs/util/shared/src/lib/record/quality-score.util.ts +33 -18
- package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
- package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
- package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/user-display.ts +32 -0
- package/style.css +0 -1
- package/tailwind.base.css +19 -2
- package/translations/de.json +81 -48
- package/translations/en.json +86 -53
- package/translations/es.json +55 -22
- package/translations/fr.json +83 -50
- package/translations/it.json +81 -48
- package/translations/nl.json +54 -21
- package/translations/pt.json +55 -22
- package/translations/sk.json +55 -22
|
@@ -0,0 +1,483 @@
|
|
|
1
|
+
/* These classes were extracted from the full Material theme to save size */
|
|
2
|
+
.cdk-overlay-pane {
|
|
3
|
+
position: absolute;
|
|
4
|
+
pointer-events: auto;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
z-index: 1000;
|
|
7
|
+
display: flex;
|
|
8
|
+
max-width: 100%;
|
|
9
|
+
max-height: 100%;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.cdk-overlay-connected-position-bounding-box {
|
|
13
|
+
position: absolute;
|
|
14
|
+
z-index: 1000;
|
|
15
|
+
display: flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
min-width: 1px;
|
|
18
|
+
min-height: 1px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.cdk-overlay-backdrop {
|
|
22
|
+
position: absolute;
|
|
23
|
+
top: 0;
|
|
24
|
+
bottom: 0;
|
|
25
|
+
left: 0;
|
|
26
|
+
right: 0;
|
|
27
|
+
z-index: 1000;
|
|
28
|
+
pointer-events: auto;
|
|
29
|
+
transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
30
|
+
opacity: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
|
|
34
|
+
opacity: 1;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.cdk-overlay-transparent-backdrop {
|
|
38
|
+
transition:
|
|
39
|
+
visibility 1ms linear,
|
|
40
|
+
opacity 1ms linear;
|
|
41
|
+
visibility: hidden;
|
|
42
|
+
opacity: 1;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
|
|
46
|
+
opacity: 0;
|
|
47
|
+
visibility: visible;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.mat-mdc-option.suggestion.mat-mdc-option-active {
|
|
51
|
+
background-color: var(--color-primary-lightest);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/* TODO(mdc-migration): The following rule targets internal classes of autocomplete that may no longer apply for the MDC version. */
|
|
55
|
+
.mat-mdc-autocomplete-panel
|
|
56
|
+
.mat-mdc-option.mat-selected:not(.mat-active):not(:hover):not(
|
|
57
|
+
.mat-option-disabled
|
|
58
|
+
) {
|
|
59
|
+
color: rgba(0, 0, 0, 0.87);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.mat-mdc-option:hover:not(.mat-option-disabled),
|
|
63
|
+
.mat-mdc-option:focus:not(.mat-option-disabled) {
|
|
64
|
+
background: rgba(0, 0, 0, 0.04);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/* TODO(mdc-migration): The following rule targets internal classes of option that may no longer apply for the MDC version. */
|
|
68
|
+
.mat-mdc-option.mat-selected:not(.mat-mdc-option-multiple):not(
|
|
69
|
+
.mat-option-disabled
|
|
70
|
+
) {
|
|
71
|
+
background: rgba(0, 0, 0, 0.04);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.mat-mdc-select-panel
|
|
75
|
+
.mat-mdc-option.mat-selected:not(.mat-mdc-option-multiple) {
|
|
76
|
+
background: rgba(0, 0, 0, 0.12);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.mdc-menu-surface.mat-mdc-autocomplete-panel {
|
|
80
|
+
margin-top: 10px !important;
|
|
81
|
+
border-radius: 8px;
|
|
82
|
+
background: white;
|
|
83
|
+
box-shadow:
|
|
84
|
+
0 2px 4px -1px #0003,
|
|
85
|
+
0 4px 5px #00000024,
|
|
86
|
+
0 1px 10px #0000001f;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* set up CSS variables for material (extracted from the prebuilt theme) */
|
|
90
|
+
:host {
|
|
91
|
+
--mat-tab-container-height: 48px;
|
|
92
|
+
--mat-tab-divider-color: transparent;
|
|
93
|
+
--mat-tab-divider-height: 0;
|
|
94
|
+
--mat-tab-active-indicator-height: 2px;
|
|
95
|
+
--mat-tab-active-indicator-shape: 0;
|
|
96
|
+
--mat-checkbox-disabled-selected-checkmark-color: white;
|
|
97
|
+
--mat-checkbox-selected-focus-state-layer-opacity: 0.12;
|
|
98
|
+
--mat-checkbox-selected-hover-state-layer-opacity: 0.04;
|
|
99
|
+
--mat-checkbox-selected-pressed-state-layer-opacity: 0.12;
|
|
100
|
+
--mat-checkbox-unselected-focus-state-layer-opacity: 0.12;
|
|
101
|
+
--mat-checkbox-unselected-hover-state-layer-opacity: 0.04;
|
|
102
|
+
--mat-checkbox-unselected-pressed-state-layer-opacity: 0.12;
|
|
103
|
+
--mat-checkbox-touch-target-size: 48px;
|
|
104
|
+
--mat-checkbox-disabled-label-color: color-mix(
|
|
105
|
+
in srgb,
|
|
106
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
107
|
+
transparent
|
|
108
|
+
);
|
|
109
|
+
--mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
|
|
110
|
+
--mat-checkbox-disabled-selected-icon-color: color-mix(
|
|
111
|
+
in srgb,
|
|
112
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
113
|
+
transparent
|
|
114
|
+
);
|
|
115
|
+
--mat-checkbox-disabled-unselected-icon-color: color-mix(
|
|
116
|
+
in srgb,
|
|
117
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
118
|
+
transparent
|
|
119
|
+
);
|
|
120
|
+
--mat-checkbox-selected-checkmark-color: white;
|
|
121
|
+
--mat-checkbox-selected-focus-icon-color: #ff4081;
|
|
122
|
+
--mat-checkbox-selected-hover-icon-color: #ff4081;
|
|
123
|
+
--mat-checkbox-selected-icon-color: #ff4081;
|
|
124
|
+
--mat-checkbox-selected-pressed-icon-color: #ff4081;
|
|
125
|
+
--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
|
|
126
|
+
--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
|
|
127
|
+
--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
128
|
+
--mat-checkbox-selected-focus-state-layer-color: #ff4081;
|
|
129
|
+
--mat-checkbox-selected-hover-state-layer-color: #ff4081;
|
|
130
|
+
--mat-checkbox-selected-pressed-state-layer-color: #ff4081;
|
|
131
|
+
--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, 0.87);
|
|
132
|
+
--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, 0.87);
|
|
133
|
+
--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, 0.87);
|
|
134
|
+
--mat-checkbox-touch-target-display: block;
|
|
135
|
+
--mat-checkbox-state-layer-size: 40px;
|
|
136
|
+
--mat-checkbox-label-text-font: Roboto, sans-serif;
|
|
137
|
+
--mat-checkbox-label-text-line-height: 20px;
|
|
138
|
+
--mat-checkbox-label-text-size: 14px;
|
|
139
|
+
--mat-checkbox-label-text-tracking: 0.0178571429em;
|
|
140
|
+
--mat-checkbox-label-text-weight: 400;
|
|
141
|
+
--mat-button-filled-container-shape: 4px;
|
|
142
|
+
--mat-button-filled-horizontal-padding: 16px;
|
|
143
|
+
--mat-button-filled-icon-offset: -4px;
|
|
144
|
+
--mat-button-filled-icon-spacing: 8px;
|
|
145
|
+
--mat-button-filled-touch-target-size: 48px;
|
|
146
|
+
--mat-button-outlined-container-shape: 4px;
|
|
147
|
+
--mat-button-outlined-horizontal-padding: 15px;
|
|
148
|
+
--mat-button-outlined-icon-offset: -4px;
|
|
149
|
+
--mat-button-outlined-icon-spacing: 8px;
|
|
150
|
+
--mat-button-outlined-keep-touch-target: false;
|
|
151
|
+
--mat-button-outlined-outline-width: 1px;
|
|
152
|
+
--mat-button-outlined-touch-target-size: 48px;
|
|
153
|
+
--mat-button-protected-container-elevation-shadow: 0px 3px 1px -2px
|
|
154
|
+
rgba(0, 0, 0, 0.2),
|
|
155
|
+
0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
156
|
+
--mat-button-protected-container-shape: 4px;
|
|
157
|
+
--mat-button-protected-disabled-container-elevation-shadow: 0px 0px 0px 0px
|
|
158
|
+
rgba(0, 0, 0, 0.2),
|
|
159
|
+
0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
160
|
+
--mat-button-protected-focus-container-elevation-shadow: 0px 2px 4px -1px
|
|
161
|
+
rgba(0, 0, 0, 0.2),
|
|
162
|
+
0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
163
|
+
--mat-button-protected-horizontal-padding: 16px;
|
|
164
|
+
--mat-button-protected-hover-container-elevation-shadow: 0px 2px 4px -1px
|
|
165
|
+
rgba(0, 0, 0, 0.2),
|
|
166
|
+
0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
167
|
+
--mat-button-protected-icon-offset: -4px;
|
|
168
|
+
--mat-button-protected-icon-spacing: 8px;
|
|
169
|
+
--mat-button-protected-pressed-container-elevation-shadow: 0px 5px 5px -3px
|
|
170
|
+
rgba(0, 0, 0, 0.2),
|
|
171
|
+
0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
172
|
+
--mat-button-protected-touch-target-size: 48px;
|
|
173
|
+
--mat-button-text-container-shape: 4px;
|
|
174
|
+
--mat-button-text-horizontal-padding: 8px;
|
|
175
|
+
--mat-button-text-icon-offset: 0;
|
|
176
|
+
--mat-button-text-icon-spacing: 8px;
|
|
177
|
+
--mat-button-text-with-icon-horizontal-padding: 8px;
|
|
178
|
+
--mat-button-text-touch-target-size: 48px;
|
|
179
|
+
--mat-button-tonal-container-shape: 4px;
|
|
180
|
+
--mat-button-tonal-horizontal-padding: 16px;
|
|
181
|
+
--mat-button-tonal-icon-offset: -4px;
|
|
182
|
+
--mat-button-tonal-icon-spacing: 8px;
|
|
183
|
+
--mat-button-tonal-touch-target-size: 48px;
|
|
184
|
+
--mat-button-filled-container-color: white;
|
|
185
|
+
--mat-button-filled-disabled-container-color: color-mix(
|
|
186
|
+
in srgb,
|
|
187
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
188
|
+
transparent
|
|
189
|
+
);
|
|
190
|
+
--mat-button-filled-disabled-label-text-color: color-mix(
|
|
191
|
+
in srgb,
|
|
192
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
193
|
+
transparent
|
|
194
|
+
);
|
|
195
|
+
--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
|
|
196
|
+
--mat-button-filled-focus-state-layer-opacity: 0.12;
|
|
197
|
+
--mat-button-filled-hover-state-layer-opacity: 0.04;
|
|
198
|
+
--mat-button-filled-label-text-color: rgba(0, 0, 0, 0.87);
|
|
199
|
+
--mat-button-filled-pressed-state-layer-opacity: 0.12;
|
|
200
|
+
--mat-button-filled-ripple-color: color-mix(
|
|
201
|
+
in srgb,
|
|
202
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
203
|
+
transparent
|
|
204
|
+
);
|
|
205
|
+
--mat-button-filled-state-layer-color: rgba(0, 0, 0, 0.87);
|
|
206
|
+
--mat-button-outlined-disabled-label-text-color: color-mix(
|
|
207
|
+
in srgb,
|
|
208
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
209
|
+
transparent
|
|
210
|
+
);
|
|
211
|
+
--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, 0.12);
|
|
212
|
+
--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
|
|
213
|
+
--mat-button-outlined-focus-state-layer-opacity: 0.12;
|
|
214
|
+
--mat-button-outlined-hover-state-layer-opacity: 0.04;
|
|
215
|
+
--mat-button-outlined-label-text-color: rgba(0, 0, 0, 0.87);
|
|
216
|
+
--mat-button-outlined-outline-color: rgba(0, 0, 0, 0.12);
|
|
217
|
+
--mat-button-outlined-pressed-state-layer-opacity: 0.12;
|
|
218
|
+
--mat-button-outlined-ripple-color: color-mix(
|
|
219
|
+
in srgb,
|
|
220
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
221
|
+
transparent
|
|
222
|
+
);
|
|
223
|
+
--mat-button-outlined-state-layer-color: rgba(0, 0, 0, 0.87);
|
|
224
|
+
--mat-button-protected-container-color: white;
|
|
225
|
+
--mat-button-protected-disabled-container-color: color-mix(
|
|
226
|
+
in srgb,
|
|
227
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
228
|
+
transparent
|
|
229
|
+
);
|
|
230
|
+
--mat-button-protected-disabled-label-text-color: color-mix(
|
|
231
|
+
in srgb,
|
|
232
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
233
|
+
transparent
|
|
234
|
+
);
|
|
235
|
+
--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
|
|
236
|
+
--mat-button-protected-focus-state-layer-opacity: 0.12;
|
|
237
|
+
--mat-button-protected-hover-state-layer-opacity: 0.04;
|
|
238
|
+
--mat-button-protected-label-text-color: rgba(0, 0, 0, 0.87);
|
|
239
|
+
--mat-button-protected-pressed-state-layer-opacity: 0.12;
|
|
240
|
+
--mat-button-protected-ripple-color: color-mix(
|
|
241
|
+
in srgb,
|
|
242
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
243
|
+
transparent
|
|
244
|
+
);
|
|
245
|
+
--mat-button-protected-state-layer-color: rgba(0, 0, 0, 0.87);
|
|
246
|
+
--mat-button-text-disabled-label-text-color: color-mix(
|
|
247
|
+
in srgb,
|
|
248
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
249
|
+
transparent
|
|
250
|
+
);
|
|
251
|
+
--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
|
|
252
|
+
--mat-button-text-focus-state-layer-opacity: 0.12;
|
|
253
|
+
--mat-button-text-hover-state-layer-opacity: 0.04;
|
|
254
|
+
--mat-button-text-label-text-color: rgba(0, 0, 0, 0.87);
|
|
255
|
+
--mat-button-text-pressed-state-layer-opacity: 0.12;
|
|
256
|
+
--mat-button-text-ripple-color: color-mix(
|
|
257
|
+
in srgb,
|
|
258
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
259
|
+
transparent
|
|
260
|
+
);
|
|
261
|
+
--mat-button-text-state-layer-color: rgba(0, 0, 0, 0.87);
|
|
262
|
+
--mat-button-tonal-container-color: white;
|
|
263
|
+
--mat-button-tonal-disabled-container-color: color-mix(
|
|
264
|
+
in srgb,
|
|
265
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
266
|
+
transparent
|
|
267
|
+
);
|
|
268
|
+
--mat-button-tonal-disabled-label-text-color: color-mix(
|
|
269
|
+
in srgb,
|
|
270
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
271
|
+
transparent
|
|
272
|
+
);
|
|
273
|
+
--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
|
|
274
|
+
--mat-button-tonal-focus-state-layer-opacity: 0.12;
|
|
275
|
+
--mat-button-tonal-hover-state-layer-opacity: 0.04;
|
|
276
|
+
--mat-button-tonal-label-text-color: rgba(0, 0, 0, 0.87);
|
|
277
|
+
--mat-button-tonal-pressed-state-layer-opacity: 0.12;
|
|
278
|
+
--mat-button-tonal-ripple-color: color-mix(
|
|
279
|
+
in srgb,
|
|
280
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
281
|
+
transparent
|
|
282
|
+
);
|
|
283
|
+
--mat-button-tonal-state-layer-color: rgba(0, 0, 0, 0.87);
|
|
284
|
+
--mat-button-filled-container-height: 36px;
|
|
285
|
+
--mat-button-filled-touch-target-display: block;
|
|
286
|
+
--mat-button-outlined-container-height: 36px;
|
|
287
|
+
--mat-button-outlined-touch-target-display: block;
|
|
288
|
+
--mat-button-protected-container-height: 36px;
|
|
289
|
+
--mat-button-protected-touch-target-display: block;
|
|
290
|
+
--mat-button-text-container-height: 36px;
|
|
291
|
+
--mat-button-text-touch-target-display: block;
|
|
292
|
+
--mat-button-tonal-container-height: 36px;
|
|
293
|
+
--mat-button-tonal-touch-target-display: block;
|
|
294
|
+
--mat-button-filled-label-text-font: Roboto, sans-serif;
|
|
295
|
+
--mat-button-filled-label-text-size: 14px;
|
|
296
|
+
--mat-button-filled-label-text-tracking: 0.0892857143em;
|
|
297
|
+
--mat-button-filled-label-text-transform: none;
|
|
298
|
+
--mat-button-filled-label-text-weight: 500;
|
|
299
|
+
--mat-button-outlined-label-text-font: Roboto, sans-serif;
|
|
300
|
+
--mat-button-outlined-label-text-size: 14px;
|
|
301
|
+
--mat-button-outlined-label-text-tracking: 0.0892857143em;
|
|
302
|
+
--mat-button-outlined-label-text-transform: none;
|
|
303
|
+
--mat-button-outlined-label-text-weight: 500;
|
|
304
|
+
--mat-button-protected-label-text-font: Roboto, sans-serif;
|
|
305
|
+
--mat-button-protected-label-text-size: 14px;
|
|
306
|
+
--mat-button-protected-label-text-tracking: 0.0892857143em;
|
|
307
|
+
--mat-button-protected-label-text-transform: none;
|
|
308
|
+
--mat-button-protected-label-text-weight: 500;
|
|
309
|
+
--mat-button-text-label-text-font: Roboto, sans-serif;
|
|
310
|
+
--mat-button-text-label-text-size: 14px;
|
|
311
|
+
--mat-button-text-label-text-tracking: 0.0892857143em;
|
|
312
|
+
--mat-button-text-label-text-transform: none;
|
|
313
|
+
--mat-button-text-label-text-weight: 500;
|
|
314
|
+
--mat-button-tonal-label-text-font: Roboto, sans-serif;
|
|
315
|
+
--mat-button-tonal-label-text-size: 14px;
|
|
316
|
+
--mat-button-tonal-label-text-tracking: 0.0892857143em;
|
|
317
|
+
--mat-button-tonal-label-text-transform: none;
|
|
318
|
+
--mat-button-tonal-label-text-weight: 500;
|
|
319
|
+
--mat-progress-spinner-active-indicator-width: 4px;
|
|
320
|
+
--mat-progress-spinner-size: 48px;
|
|
321
|
+
--mat-progress-spinner-active-indicator-color: #3f51b5;
|
|
322
|
+
--mat-option-selected-state-label-text-color: #3f51b5;
|
|
323
|
+
--mat-option-label-text-color: rgba(0, 0, 0, 0.87);
|
|
324
|
+
--mat-option-hover-state-layer-color: color-mix(
|
|
325
|
+
in srgb,
|
|
326
|
+
rgba(0, 0, 0, 0.87) 4%,
|
|
327
|
+
transparent
|
|
328
|
+
);
|
|
329
|
+
--mat-option-focus-state-layer-color: color-mix(
|
|
330
|
+
in srgb,
|
|
331
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
332
|
+
transparent
|
|
333
|
+
);
|
|
334
|
+
--mat-option-selected-state-layer-color: color-mix(
|
|
335
|
+
in srgb,
|
|
336
|
+
rgba(0, 0, 0, 0.87) 12%,
|
|
337
|
+
transparent
|
|
338
|
+
);
|
|
339
|
+
--mat-dialog-container-shape: 4px;
|
|
340
|
+
--mat-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2),
|
|
341
|
+
0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
342
|
+
--mat-dialog-container-max-width: 80vw;
|
|
343
|
+
--mat-dialog-container-small-max-width: 80vw;
|
|
344
|
+
--mat-dialog-container-min-width: 0;
|
|
345
|
+
--mat-dialog-actions-alignment: start;
|
|
346
|
+
--mat-dialog-actions-padding: 8px;
|
|
347
|
+
--mat-dialog-content-padding: 20px 24px;
|
|
348
|
+
--mat-dialog-with-actions-content-padding: 20px 24px;
|
|
349
|
+
--mat-dialog-headline-padding: 0 24px 9px;
|
|
350
|
+
--mat-dialog-container-color: white;
|
|
351
|
+
--mat-dialog-subhead-color: rgba(0, 0, 0, 0.87);
|
|
352
|
+
--mat-dialog-supporting-text-color: rgba(0, 0, 0, 0.54);
|
|
353
|
+
--mat-dialog-subhead-font: Roboto, sans-serif;
|
|
354
|
+
--mat-dialog-subhead-line-height: 32px;
|
|
355
|
+
--mat-dialog-subhead-size: 20px;
|
|
356
|
+
--mat-dialog-subhead-weight: 500;
|
|
357
|
+
--mat-dialog-subhead-tracking: 0.0125em;
|
|
358
|
+
--mat-dialog-supporting-text-font: Roboto, sans-serif;
|
|
359
|
+
--mat-dialog-supporting-text-line-height: 24px;
|
|
360
|
+
--mat-dialog-supporting-text-size: 16px;
|
|
361
|
+
--mat-dialog-supporting-text-weight: 400;
|
|
362
|
+
--mat-dialog-supporting-text-tracking: 0.03125em;
|
|
363
|
+
--mat-tooltip-container-shape: 4px;
|
|
364
|
+
--mat-tooltip-supporting-text-line-height: 16px;
|
|
365
|
+
--mat-tooltip-container-color: #424242;
|
|
366
|
+
--mat-tooltip-supporting-text-color: white;
|
|
367
|
+
--mat-tooltip-supporting-text-font: Roboto, sans-serif;
|
|
368
|
+
--mat-tooltip-supporting-text-size: 12px;
|
|
369
|
+
--mat-tooltip-supporting-text-weight: 400;
|
|
370
|
+
--mat-tooltip-supporting-text-tracking: 0.0333333333em;
|
|
371
|
+
--mat-radio-disabled-selected-icon-opacity: 0.38;
|
|
372
|
+
--mat-radio-disabled-unselected-icon-opacity: 0.38;
|
|
373
|
+
--mat-radio-state-layer-size: 40px;
|
|
374
|
+
--mat-radio-touch-target-size: 48px;
|
|
375
|
+
--mat-sort-arrow-color: rgba(0, 0, 0, 0.87);
|
|
376
|
+
--mat-paginator-page-size-select-width: 84px;
|
|
377
|
+
--mat-paginator-page-size-select-touch-target-height: 48px;
|
|
378
|
+
--mat-paginator-container-text-color: rgba(0, 0, 0, 0.87);
|
|
379
|
+
--mat-paginator-container-background-color: white;
|
|
380
|
+
--mat-paginator-enabled-icon-color: rgba(0, 0, 0, 0.54);
|
|
381
|
+
--mat-paginator-disabled-icon-color: color-mix(
|
|
382
|
+
in srgb,
|
|
383
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
384
|
+
transparent
|
|
385
|
+
);
|
|
386
|
+
--mat-paginator-container-size: 56px;
|
|
387
|
+
--mat-paginator-form-field-container-height: 40px;
|
|
388
|
+
--mat-paginator-form-field-container-vertical-padding: 8px;
|
|
389
|
+
--mat-paginator-touch-target-display: block;
|
|
390
|
+
--mat-paginator-container-text-font: Roboto, sans-serif;
|
|
391
|
+
--mat-paginator-container-text-line-height: 20px;
|
|
392
|
+
--mat-paginator-container-text-size: 12px;
|
|
393
|
+
--mat-paginator-container-text-tracking: 0.0333333333em;
|
|
394
|
+
--mat-paginator-container-text-weight: 400;
|
|
395
|
+
--mat-paginator-select-trigger-text-size: 12px;
|
|
396
|
+
--mat-autocomplete-container-shape: 4px;
|
|
397
|
+
--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px
|
|
398
|
+
rgba(0, 0, 0, 0.2),
|
|
399
|
+
0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
400
|
+
--mat-autocomplete-background-color: white;
|
|
401
|
+
--mat-datepicker-calendar-container-shape: 4px;
|
|
402
|
+
--mat-datepicker-calendar-container-touch-shape: 4px;
|
|
403
|
+
--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px
|
|
404
|
+
rgba(0, 0, 0, 0.2),
|
|
405
|
+
0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
406
|
+
--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px
|
|
407
|
+
rgba(0, 0, 0, 0.2),
|
|
408
|
+
0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
409
|
+
--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(
|
|
410
|
+
in srgb,
|
|
411
|
+
#3f51b5 20%,
|
|
412
|
+
transparent
|
|
413
|
+
);
|
|
414
|
+
--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(
|
|
415
|
+
in srgb,
|
|
416
|
+
#ff4081 20%,
|
|
417
|
+
transparent
|
|
418
|
+
);
|
|
419
|
+
--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
|
|
420
|
+
--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(
|
|
421
|
+
69.5241935484,
|
|
422
|
+
163.4758064516,
|
|
423
|
+
93.9516129032
|
|
424
|
+
);
|
|
425
|
+
--mat-datepicker-calendar-date-selected-state-text-color: white;
|
|
426
|
+
--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;
|
|
427
|
+
--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(
|
|
428
|
+
in srgb,
|
|
429
|
+
#3f51b5 38%,
|
|
430
|
+
transparent
|
|
431
|
+
);
|
|
432
|
+
--mat-datepicker-calendar-date-today-selected-state-outline-color: white;
|
|
433
|
+
--mat-datepicker-calendar-date-focus-state-background-color: color-mix(
|
|
434
|
+
in srgb,
|
|
435
|
+
#3f51b5 12%,
|
|
436
|
+
transparent
|
|
437
|
+
);
|
|
438
|
+
--mat-datepicker-calendar-date-hover-state-background-color: color-mix(
|
|
439
|
+
in srgb,
|
|
440
|
+
#3f51b5 4%,
|
|
441
|
+
transparent
|
|
442
|
+
);
|
|
443
|
+
--mat-datepicker-toggle-active-state-icon-color: #3f51b5;
|
|
444
|
+
--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
|
|
445
|
+
--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
|
|
446
|
+
--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, 0.87);
|
|
447
|
+
--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
|
|
448
|
+
--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
|
|
449
|
+
--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
|
|
450
|
+
--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
|
|
451
|
+
--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.54);
|
|
452
|
+
--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(
|
|
453
|
+
in srgb,
|
|
454
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
455
|
+
transparent
|
|
456
|
+
);
|
|
457
|
+
--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
|
|
458
|
+
--mat-datepicker-calendar-date-outline-color: transparent;
|
|
459
|
+
--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(
|
|
460
|
+
in srgb,
|
|
461
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
462
|
+
transparent
|
|
463
|
+
);
|
|
464
|
+
--mat-datepicker-calendar-date-preview-state-outline-color: rgba(
|
|
465
|
+
0,
|
|
466
|
+
0,
|
|
467
|
+
0,
|
|
468
|
+
0.54
|
|
469
|
+
);
|
|
470
|
+
--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
|
|
471
|
+
--mat-datepicker-range-input-disabled-state-separator-color: color-mix(
|
|
472
|
+
in srgb,
|
|
473
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
474
|
+
transparent
|
|
475
|
+
);
|
|
476
|
+
--mat-datepicker-range-input-disabled-state-text-color: color-mix(
|
|
477
|
+
in srgb,
|
|
478
|
+
rgba(0, 0, 0, 0.87) 38%,
|
|
479
|
+
transparent
|
|
480
|
+
);
|
|
481
|
+
--mat-datepicker-calendar-container-background-color: white;
|
|
482
|
+
--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
|
|
483
|
+
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geonetwork-ui",
|
|
3
|
-
"version": "2.10.0-dev.
|
|
3
|
+
"version": "2.10.0-dev.bf2e85a24",
|
|
4
4
|
"engines": {
|
|
5
|
-
"node": ">=
|
|
5
|
+
"node": ">=24"
|
|
6
6
|
},
|
|
7
7
|
"main": "./index.ts",
|
|
8
8
|
"type": "module",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"@angular/core": "19.x || 20.x || 21.x",
|
|
29
29
|
"@angular/forms": "19.x || 20.x || 21.x",
|
|
30
30
|
"@angular/material": "19.x || 20.x || 21.x",
|
|
31
|
-
"@angular/material-moment-adapter": "19.x || 20.x || 21.x",
|
|
32
31
|
"@angular/platform-browser": "19.x || 20.x || 21.x",
|
|
33
32
|
"@angular/platform-browser-dynamic": "19.x || 20.x || 21.x",
|
|
34
33
|
"@angular/router": "19.x || 20.x || 21.x",
|
|
@@ -47,46 +46,37 @@
|
|
|
47
46
|
},
|
|
48
47
|
"dependencies": {
|
|
49
48
|
"@biesbjerg/ngx-translate-extract-marker": "~1.0.0",
|
|
50
|
-
"@camptocamp/ogc-client": "1.3.1-dev.
|
|
49
|
+
"@camptocamp/ogc-client": "1.3.1-dev.bb345f0",
|
|
51
50
|
"@geospatial-sdk/core": "0.0.5-dev.61",
|
|
52
51
|
"@geospatial-sdk/geocoding": "0.0.5-dev.61",
|
|
53
52
|
"@geospatial-sdk/legend": "0.0.5-dev.61",
|
|
54
53
|
"@geospatial-sdk/openlayers": "0.0.5-dev.61",
|
|
55
|
-
"@ltd/j-toml": "~1.
|
|
56
|
-
"@messageformat/core": "
|
|
57
|
-
"@ng-icons/core": "
|
|
58
|
-
"@ng-icons/iconoir": "
|
|
59
|
-
"@ng-icons/material-icons": "
|
|
60
|
-
"@ng-icons/tabler-icons": "
|
|
61
|
-
"@nx/angular": "22.0.4",
|
|
54
|
+
"@ltd/j-toml": "~1.38.0",
|
|
55
|
+
"@messageformat/core": "~3.4.0",
|
|
56
|
+
"@ng-icons/core": "~32.5.0",
|
|
57
|
+
"@ng-icons/iconoir": "~32.5.0",
|
|
58
|
+
"@ng-icons/material-icons": "~32.5.0",
|
|
59
|
+
"@ng-icons/tabler-icons": "~32.4.0",
|
|
62
60
|
"@rgrove/parse-xml": "4.2.0",
|
|
63
|
-
"alasql": "4.
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"chroma-js": "3.1.2",
|
|
61
|
+
"alasql": "~4.17.0",
|
|
62
|
+
"chart.js": "~4.5.1",
|
|
63
|
+
"chroma-js": "~3.2.0",
|
|
67
64
|
"date-fns": "4.1.0",
|
|
68
|
-
"document-register-element": "
|
|
69
|
-
"duration-relativetimeformat": "
|
|
70
|
-
"embla-carousel": "8.
|
|
71
|
-
"
|
|
72
|
-
"geojson-validation": "
|
|
73
|
-
"marked": "
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"pg": "^8.9.0",
|
|
82
|
-
"proj4": "^2.9.2",
|
|
83
|
-
"rdflib": "^2.3.0",
|
|
84
|
-
"reflect-metadata": "^0.1.13",
|
|
85
|
-
"semver": "7.6.3",
|
|
65
|
+
"document-register-element": "~1.14.10",
|
|
66
|
+
"duration-relativetimeformat": "~2.0.4",
|
|
67
|
+
"embla-carousel": "~8.6.0",
|
|
68
|
+
"flag-icons": "~7.5.0",
|
|
69
|
+
"geojson-validation": "~1.0.2",
|
|
70
|
+
"marked": "~17.0.4",
|
|
71
|
+
"ngx-dropzone": "~3.1.0",
|
|
72
|
+
"ngx-translate-messageformat-compiler": "~7.2.0",
|
|
73
|
+
"ol": "~10.8.0",
|
|
74
|
+
"papaparse": "~5.5.3",
|
|
75
|
+
"proj4": "~2.20.4",
|
|
76
|
+
"rdflib": "~2.3.5",
|
|
77
|
+
"semver": "~7.7.4",
|
|
86
78
|
"tippy.js": "6.3.7",
|
|
87
79
|
"tslib": "^2.3.0",
|
|
88
|
-
"typeorm": "^0.3.27",
|
|
89
|
-
"whatwg-fetch": "^3.6.2",
|
|
90
80
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
91
81
|
},
|
|
92
82
|
"module": "fesm2022/geonetwork-ui.mjs",
|
|
@@ -77,6 +77,7 @@ export class DcatApConverter extends BaseConverter<string> {
|
|
|
77
77
|
updateFrequency: () => 'unknown',
|
|
78
78
|
overviews: () => [],
|
|
79
79
|
lineage: () => '',
|
|
80
|
+
sourceRecords: () => [],
|
|
80
81
|
temporalExtents: () => [],
|
|
81
82
|
spatialRepresentation: () => undefined,
|
|
82
83
|
extras: () => undefined,
|
|
@@ -114,6 +115,7 @@ export class DcatApConverter extends BaseConverter<string> {
|
|
|
114
115
|
spatialRepresentation: () => undefined,
|
|
115
116
|
overviews: () => undefined,
|
|
116
117
|
lineage: () => undefined,
|
|
118
|
+
sourceRecords: () => [],
|
|
117
119
|
onlineResources: () => undefined,
|
|
118
120
|
temporalExtents: () => undefined,
|
|
119
121
|
spatialExtents: () => undefined,
|
|
@@ -314,6 +316,12 @@ export class DcatApConverter extends BaseConverter<string> {
|
|
|
314
316
|
tr,
|
|
315
317
|
defaultLanguage
|
|
316
318
|
)
|
|
319
|
+
const sourceRecords = this.readers['sourceRecords'](
|
|
320
|
+
dataStore,
|
|
321
|
+
catalogRecord,
|
|
322
|
+
tr,
|
|
323
|
+
defaultLanguage
|
|
324
|
+
)
|
|
317
325
|
const onlineResources = this.readers['onlineResources'](
|
|
318
326
|
dataStore,
|
|
319
327
|
catalogRecord,
|
|
@@ -351,6 +359,7 @@ export class DcatApConverter extends BaseConverter<string> {
|
|
|
351
359
|
securityConstraints,
|
|
352
360
|
otherConstraints,
|
|
353
361
|
lineage,
|
|
362
|
+
sourceRecords,
|
|
354
363
|
...(spatialRepresentation && { spatialRepresentation }),
|
|
355
364
|
overviews,
|
|
356
365
|
spatialExtents,
|
|
@@ -646,6 +646,7 @@ export const EU_SURVEY_DATASET_RECORD: DatasetRecord = {
|
|
|
646
646
|
'http://publications.europa.eu/resource/authority/data-theme/EDUC',
|
|
647
647
|
],
|
|
648
648
|
lineage: '',
|
|
649
|
+
sourceRecords: [],
|
|
649
650
|
ownerOrganization: {
|
|
650
651
|
name: 'http://publications.europa.eu/resource/authority/corporate-body/FRA',
|
|
651
652
|
},
|
|
@@ -735,6 +736,7 @@ export const EU_WHOISWHO_DATASET_RECORD: DatasetRecord = {
|
|
|
735
736
|
\r
|
|
736
737
|
[Privacy statement of EU Whoiswho](https://op.europa.eu/en/web/about-us/legal-notices/op_whoiswho).`,
|
|
737
738
|
lineage: '',
|
|
739
|
+
sourceRecords: [],
|
|
738
740
|
ownerOrganization: undefined,
|
|
739
741
|
recordUpdated: undefined,
|
|
740
742
|
status: 'completed',
|
|
@@ -192,6 +192,7 @@ Cette section contient des *caractères internationaux* (ainsi que des "caractè
|
|
|
192
192
|
lineage: `This record was edited manually to test the conversion processes
|
|
193
193
|
|
|
194
194
|
As such, **it is not very interesting at all.**`,
|
|
195
|
+
sourceRecords: [],
|
|
195
196
|
otherConstraints: [
|
|
196
197
|
{ text: 'Should only be used as a testing tool', translations: {} },
|
|
197
198
|
{ text: 'Might cause minor annoyance in people', translations: {} },
|
package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts
CHANGED
|
@@ -237,6 +237,13 @@ export const GEO2FRANCE_REUSE_ONGULES_RECORD: ReuseRecord = {
|
|
|
237
237
|
],
|
|
238
238
|
translations: {},
|
|
239
239
|
lineage: null,
|
|
240
|
+
sourceRecords: [
|
|
241
|
+
{
|
|
242
|
+
uuid: '67c60362-0461-4574-8975-f4e7cfa64d20',
|
|
243
|
+
title: 'Répartition des ongulés sauvages en France (données depuis 1980)',
|
|
244
|
+
href: 'https://data.ofb.fr/catalogue/Donnees-geographiques-OFB/fre/csw?service=CSW&request=GetRecordById&version=2.0.2&outputSchema=http://www.isotc211.org/2005/gmd&elementSetName=full&id=67c60362-0461-4574-8975-f4e7cfa64d20',
|
|
245
|
+
},
|
|
246
|
+
],
|
|
240
247
|
temporalExtents: [
|
|
241
248
|
{
|
|
242
249
|
start: null,
|
|
@@ -122,6 +122,7 @@ Malgré l'attention portée à la création de ces données, il est rappelé que
|
|
|
122
122
|
],
|
|
123
123
|
lineage: `Document d’urbanisme numérisé conformément aux prescriptions nationales du CNIG par le Service d'Information Géographique de l'Agglomération de la Région de Compiègne.
|
|
124
124
|
Ce lot de données produit en 2019, a été numérisé à partir du PCI Vecteur de 2019 et contrôlé par le Service d'Information Géographique de l'Agglomération de la Région de Compiègne.`,
|
|
125
|
+
sourceRecords: [],
|
|
125
126
|
licenses: [
|
|
126
127
|
{
|
|
127
128
|
text: "En dépit des efforts et diligences mis en œuvre pour en vérifier la fiabilité, le fournisseur n’est pas en mesure de garantir l’exactitude, la mise à jour, l’intégrité, l’exhaustivité des données et en particulier que les données sont exemptes d'erreurs, notamment de localisation, d’identification ou d’actualisation ou d’imprécisions. Les données ne sont pas fournies en vue d'une utilisation particulière et aucune garantie quant à leur aptitude à un usage particulier n'est apportée par le fournisseur. En conséquence, les utilisateurs utilisent les données sous leur responsabilité pleine et entière, à leurs risques et périls, sans recours possible contre le fournisseur dont la responsabilité ne saurait être engagée du fait d’un dommage résultant directement ou indirectement de l’utilisation de ces données. En particulier, il appartient aux utilisateurs d’apprécier, sous leur seule responsabilité : – l'opportunité d'utiliser les données ; – la compatibilité des fichiers avec leurs systèmes informatiques ; – l’adéquation des données à leurs besoins ; – qu’ils disposent de la compétence suffisante pour utiliser les données ; – l’opportunité d’utiliser la documentation ou les outils d’analyse fournis ou préconisés, en relation avec l’utilisation des données, le cas échéant. Le fournisseur n’est en aucune façon responsable des éléments extérieurs aux données et notamment des outils d’analyse, matériels, logiciels, réseaux..., utilisés pour consulter et/ou traiter les données, même s’il a préconisé ces éléments. L’utilisateur veille à vérifier que l’actualité des informations mises à disposition est compatible avec l’usage qu’il en fait.",
|
|
@@ -546,6 +546,7 @@ export const GEOCAT_CH_DATASET_RECORD: DatasetRecord = {
|
|
|
546
546
|
],
|
|
547
547
|
lineage:
|
|
548
548
|
'Digitalisiert nach den administrativen Einheiten der Schweiz, die im Anhang des Übereinkommens erscheinen.',
|
|
549
|
+
sourceRecords: [],
|
|
549
550
|
licenses: [
|
|
550
551
|
{
|
|
551
552
|
text: "Licence passée entre l'Office fédéral de l'environnement (OFEV), et le canton de Fribourg, représenté par la Coordination SIT (SITel)",
|