@piveau/piveau-hub-ui-modules 4.4.11 → 4.4.12
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/dist/data-provider-interface/DataProviderInterface.vue.d.ts +37 -0
- package/dist/data-provider-interface/components/DistributionStepper.vue.d.ts +1 -0
- package/dist/data-provider-interface/components/DistributionStepper.vue.mjs +101 -96
- package/dist/data-provider-interface/components/DistributionStepper.vue.mjs.map +1 -1
- package/dist/data-provider-interface/config/dcatap/input-definition.mjs +2 -2
- package/dist/data-provider-interface/config/dcatap/input-definition.mjs.map +1 -1
- package/dist/data-provider-interface/config/dcatapde/input-definition.mjs +16 -8
- package/dist/data-provider-interface/config/dcatapde/input-definition.mjs.map +1 -1
- package/dist/data-provider-interface/views/DraftsPage.vue.mjs +37 -37
- package/dist/data-provider-interface/views/DraftsPage.vue.mjs.map +1 -1
- package/dist/data-provider-interface/views/InputPage.vue.d.ts +37 -0
- package/dist/data-provider-interface/views/InputPage.vue.mjs +111 -149
- package/dist/data-provider-interface/views/InputPage.vue.mjs.map +1 -1
- package/dist/data-provider-interface/views/OverviewPage/CatalogueOverview.vue.d.ts +12 -0
- package/dist/data-provider-interface/views/OverviewPage/DatasetOverview.vue.d.ts +25 -0
- package/dist/data-provider-interface/views/OverviewPage/DatasetOverview.vue.mjs +18 -14
- package/dist/data-provider-interface/views/OverviewPage/DatasetOverview.vue.mjs.map +1 -1
- package/dist/data-provider-interface/views/OverviewPage/DistributionOverview.vue.d.ts +12 -0
- package/dist/data-provider-interface/views/OverviewPage/DistributionOverview.vue.mjs +89 -79
- package/dist/data-provider-interface/views/OverviewPage/DistributionOverview.vue.mjs.map +1 -1
- package/dist/data-provider-interface/views/OverviewPage/Properties/MultilingualProp.vue.d.ts +13 -0
- package/dist/data-provider-interface/views/OverviewPage/Properties/MultilingualProp.vue.mjs +21 -0
- package/dist/data-provider-interface/views/OverviewPage/Properties/MultilingualProp.vue.mjs.map +1 -0
- package/dist/data-provider-interface/views/OverviewPage/Properties/SpecialProp.vue.mjs +48 -48
- package/dist/data-provider-interface/views/OverviewPage/Properties/SpecialProp.vue.mjs.map +1 -1
- package/dist/data-provider-interface/views/OverviewPage/Properties/StringProp.vue.mjs +17 -17
- package/dist/data-provider-interface/views/OverviewPage/Properties/StringProp.vue.mjs.map +1 -1
- package/dist/data-provider-interface/views/OverviewPage/Properties/URLProp.vue.mjs +42 -32
- package/dist/data-provider-interface/views/OverviewPage/Properties/URLProp.vue.mjs.map +1 -1
- package/dist/data-provider-interface/views/OverviewPage/PropertyEntry.vue.d.ts +12 -0
- package/dist/data-provider-interface/views/OverviewPage/PropertyEntry.vue.mjs +48 -38
- package/dist/data-provider-interface/views/OverviewPage/PropertyEntry.vue.mjs.map +1 -1
- package/dist/data-provider-interface/views/OverviewPage.vue.d.ts +37 -0
- package/dist/piveau-hub-ui-modules.css +1 -1
- package/package.json +1 -1
|
@@ -1,17 +1,19 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import k from "
|
|
1
|
+
import g from "./Properties/URIProp.vue.mjs";
|
|
2
|
+
import P from "./Properties/URLProp.vue.mjs";
|
|
3
|
+
import f from "./Properties/StringProp.vue.mjs";
|
|
4
|
+
import S from "./Properties/SpecialProp.vue.mjs";
|
|
5
|
+
import k from "./Properties/MultilingualProp.vue.mjs";
|
|
6
|
+
import R from "../../utils/general-helper.mjs";
|
|
6
7
|
import "lodash-es";
|
|
7
|
-
import { resolveComponent as o, openBlock as t, createElementBlock as
|
|
8
|
-
import
|
|
9
|
-
const
|
|
8
|
+
import { resolveComponent as o, openBlock as t, createElementBlock as r, createBlock as i, createCommentVNode as l, createTextVNode as n, createVNode as d, Fragment as U, renderList as I } from "vue";
|
|
9
|
+
import s from "../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
10
|
+
const H = {
|
|
10
11
|
components: {
|
|
11
|
-
URIProp:
|
|
12
|
-
URLProp:
|
|
13
|
-
StringProp:
|
|
14
|
-
SpecialProp:
|
|
12
|
+
URIProp: g,
|
|
13
|
+
URLProp: P,
|
|
14
|
+
StringProp: f,
|
|
15
|
+
SpecialProp: S,
|
|
16
|
+
MultilingualProp: k
|
|
15
17
|
},
|
|
16
18
|
props: {
|
|
17
19
|
profile: String,
|
|
@@ -25,62 +27,70 @@ const s = {
|
|
|
25
27
|
},
|
|
26
28
|
computed: {
|
|
27
29
|
isSet() {
|
|
28
|
-
return
|
|
30
|
+
return R.propertyHasValue(this.data[this.property]);
|
|
29
31
|
}
|
|
30
32
|
}
|
|
31
|
-
},
|
|
33
|
+
}, x = {
|
|
32
34
|
key: 0,
|
|
33
35
|
class: "align-items-center"
|
|
34
|
-
},
|
|
35
|
-
key:
|
|
36
|
+
}, b = {
|
|
37
|
+
key: 4,
|
|
36
38
|
class: "w-100"
|
|
37
|
-
},
|
|
38
|
-
function
|
|
39
|
-
const
|
|
40
|
-
return t(),
|
|
41
|
-
|
|
42
|
-
e.value.type === "singularURI" || e.value.type === "multiURI" || e.value.type === "singularURI" ? (t(),
|
|
39
|
+
}, N = { key: 0 }, V = { key: 1 }, B = { key: 2 };
|
|
40
|
+
function M(h, a, e, j, C, y) {
|
|
41
|
+
const c = o("URIProp"), p = o("URLProp"), m = o("StringProp"), v = o("MultilingualProp"), u = o("SpecialProp");
|
|
42
|
+
return t(), r("div", null, [
|
|
43
|
+
y.isSet ? (t(), r("tr", x, [
|
|
44
|
+
e.value.type === "singularURI" || e.value.type === "multiURI" || e.value.type === "singularURI" ? (t(), i(c, {
|
|
43
45
|
key: 0,
|
|
44
46
|
property: e.property,
|
|
45
47
|
value: e.value,
|
|
46
48
|
data: e.data,
|
|
47
49
|
inHeader: e.inHeader
|
|
48
50
|
}, null, 8, ["property", "value", "data", "inHeader"])) : l("", !0),
|
|
49
|
-
|
|
50
|
-
e.value.type === "singularURL" || e.value.type === "multiURL" ? (t(),
|
|
51
|
+
a[0] || (a[0] = n()),
|
|
52
|
+
e.value.type === "singularURL" || e.value.type === "multiURL" ? (t(), i(p, {
|
|
51
53
|
key: 1,
|
|
52
54
|
property: e.property,
|
|
53
55
|
value: e.value,
|
|
54
56
|
data: e.data
|
|
55
57
|
}, null, 8, ["property", "value", "data"])) : l("", !0),
|
|
56
|
-
|
|
57
|
-
e.value.type === "singularString" || e.value.type === "multiString" ? (t(),
|
|
58
|
+
a[1] || (a[1] = n()),
|
|
59
|
+
e.value.type === "singularString" || e.value.type === "multiString" ? (t(), i(m, {
|
|
58
60
|
key: 2,
|
|
59
61
|
property: e.property,
|
|
60
62
|
value: e.value,
|
|
61
63
|
data: e.data,
|
|
62
64
|
dpiLocale: e.dpiLocale
|
|
63
65
|
}, null, 8, ["property", "value", "data", "dpiLocale"])) : l("", !0),
|
|
64
|
-
|
|
65
|
-
e.value.type === "
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
a[2] || (a[2] = n()),
|
|
67
|
+
e.value.type === "multiLingual" ? (t(), i(v, {
|
|
68
|
+
key: 3,
|
|
69
|
+
property: e.property,
|
|
70
|
+
value: e.value,
|
|
71
|
+
data: e.data,
|
|
72
|
+
dpiLocale: e.dpiLocale
|
|
73
|
+
}, null, 8, ["property", "value", "data", "dpiLocale"])) : l("", !0),
|
|
74
|
+
a[3] || (a[3] = n()),
|
|
75
|
+
e.value.type === "special" ? (t(), r("div", b, [
|
|
76
|
+
e.property === "dct:publisher" || e.property === "dct:license" ? (t(), r("div", N, [
|
|
77
|
+
d(u, {
|
|
68
78
|
property: e.property,
|
|
69
79
|
value: e.value,
|
|
70
80
|
data: e.data,
|
|
71
81
|
dpiLocale: e.dpiLocale
|
|
72
82
|
}, null, 8, ["property", "value", "data", "dpiLocale"])
|
|
73
|
-
])) : e.property != "dct:creator" && e.property != "dcat:temporalResolution" && e.property != "spdx:checksum" ? (t(),
|
|
74
|
-
(t(!0),
|
|
75
|
-
u
|
|
83
|
+
])) : e.property != "dct:creator" && e.property != "dcat:temporalResolution" && e.property != "spdx:checksum" ? (t(), r("div", V, [
|
|
84
|
+
(t(!0), r(U, null, I(e.data[e.property], (L, _) => (t(), r("div", { key: _ }, [
|
|
85
|
+
d(u, {
|
|
76
86
|
property: e.property,
|
|
77
87
|
value: e.value,
|
|
78
|
-
data:
|
|
88
|
+
data: L,
|
|
79
89
|
dpiLocale: e.dpiLocale
|
|
80
90
|
}, null, 8, ["property", "value", "data", "dpiLocale"])
|
|
81
91
|
]))), 128))
|
|
82
|
-
])) : (t(),
|
|
83
|
-
u
|
|
92
|
+
])) : (t(), r("div", B, [
|
|
93
|
+
d(u, {
|
|
84
94
|
property: e.property,
|
|
85
95
|
value: e.value,
|
|
86
96
|
data: e.data[e.property],
|
|
@@ -91,8 +101,8 @@ function N(V, r, e, B, j, c) {
|
|
|
91
101
|
])) : l("", !0)
|
|
92
102
|
]);
|
|
93
103
|
}
|
|
94
|
-
const
|
|
104
|
+
const G = /* @__PURE__ */ s(H, [["render", M]]);
|
|
95
105
|
export {
|
|
96
|
-
|
|
106
|
+
G as default
|
|
97
107
|
};
|
|
98
108
|
//# sourceMappingURL=PropertyEntry.vue.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PropertyEntry.vue.mjs","sources":["../../../../lib/data-provider-interface/views/OverviewPage/PropertyEntry.vue"],"sourcesContent":["<template>\n <div>\n
|
|
1
|
+
{"version":3,"file":"PropertyEntry.vue.mjs","sources":["../../../../lib/data-provider-interface/views/OverviewPage/PropertyEntry.vue"],"sourcesContent":["<template>\n <div>\n\n <tr class=\"align-items-center\" v-if=\"isSet\">\n <!-- <td class=\" font-weight-bold\" v-if=\"value.type !== 'special'\">{{ $t(`${value.label}`) }}:</td> -->\n <URIProp v-if=\"value.type === 'singularURI' || value.type === 'multiURI' || value.type === 'singularURI'\"\n :property=\"property\" :value=\"value\" :data=\"data\" :inHeader=\"inHeader\">\n </URIProp>\n <URLProp v-if=\"value.type === 'singularURL' || value.type === 'multiURL'\" :property=\"property\"\n :value=\"value\" :data=\"data\"></URLProp>\n <StringProp v-if=\"value.type === 'singularString' || value.type === 'multiString'\" :property=\"property\"\n :value=\"value\" :data=\"data\" :dpiLocale=\"dpiLocale\"></StringProp>\n <MultilingualProp v-if=\"value.type === 'multiLingual' \" :property=\"property\"\n :value=\"value\" :data=\"data\" :dpiLocale=\"dpiLocale\"></MultilingualProp>\n\n <!-- SPECIAL -->\n <div class=\"w-100\" v-if=\"value.type === 'special'\">\n <div v-if=\"property === 'dct:publisher' || property === 'dct:license'\">\n <SpecialProp :property=\"property\" :value=\"value\" :data=\"data\" :dpiLocale=\"dpiLocale\"></SpecialProp>\n </div>\n <div\n v-else-if=\"property != 'dct:creator' && property != 'dcat:temporalResolution' && property != 'spdx:checksum'\">\n <div v-for=\"(elem, index) in data[property]\" :key=\"index\">\n <SpecialProp :property=\"property\" :value=\"value\" :data=\"elem\" :dpiLocale=\"dpiLocale\">\n </SpecialProp>\n </div>\n </div>\n <div v-else>\n <SpecialProp :property=\"property\" :value=\"value\" :data=\"data[property]\" :dpiLocale=\"dpiLocale\">\n </SpecialProp>\n </div>\n\n </div>\n\n </tr>\n </div>\n</template>\n\n<script>\nimport URIProp from './Properties/URIProp.vue';\nimport URLProp from './Properties/URLProp.vue';\nimport StringProp from './Properties/StringProp.vue';\nimport SpecialProp from './Properties/SpecialProp.vue';\nimport MultilingualProp from './Properties/MultilingualProp.vue';\nimport generalHelper from '../../utils/general-helper';\n\nimport { has, isNil, isEmpty } from 'lodash';\n\nexport default {\n components: {\n URIProp,\n URLProp,\n StringProp,\n SpecialProp,\n MultilingualProp\n },\n props: {\n profile: String,\n data: Object,\n property: String,\n value: Object,\n dpiLocale: String,\n distId: Number,\n type: String,\n inHeader: String\n },\n computed: {\n isSet() {\n return generalHelper.propertyHasValue(this.data[this.property]);\n }\n }\n}\n</script>\n"],"names":["_sfc_main","URIProp","URLProp","StringProp","SpecialProp","MultilingualProp","generalHelper","_createElementBlock","$options","_openBlock","_hoisted_1","$props","_createBlock","_component_URIProp","_createCommentVNode","_cache","_createTextVNode","_component_URLProp","_component_StringProp","_component_MultilingualProp","_hoisted_2","_hoisted_3","_createVNode","_component_SpecialProp","_hoisted_4","_Fragment","_renderList","elem","index","_hoisted_5"],"mappings":"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"}
|
|
@@ -254,6 +254,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
254
254
|
getData: import('vuex').Computed;
|
|
255
255
|
}, {
|
|
256
256
|
checkIfPropertySet(data: any, property: any): any;
|
|
257
|
+
getDate(date: any): any;
|
|
257
258
|
checkIfPropertyValueSet(data: any, property: any, value: any): any;
|
|
258
259
|
reqName(URI: any): Promise<any>;
|
|
259
260
|
requestFirstEntrySuggestions: import('vuex').ActionMethod;
|
|
@@ -376,6 +377,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
376
377
|
inHeader: StringConstructor;
|
|
377
378
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
378
379
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
380
|
+
MultilingualProp: import('vue').DefineComponent<{}, {
|
|
381
|
+
value?: Record<string, any> | undefined;
|
|
382
|
+
data?: Record<string, any> | undefined;
|
|
383
|
+
property?: Record<string, any> | undefined;
|
|
384
|
+
dpiLocale?: Record<string, any> | undefined;
|
|
385
|
+
$props: {
|
|
386
|
+
readonly value?: Record<string, any> | undefined;
|
|
387
|
+
readonly data?: Record<string, any> | undefined;
|
|
388
|
+
readonly property?: Record<string, any> | undefined;
|
|
389
|
+
readonly dpiLocale?: Record<string, any> | undefined;
|
|
390
|
+
};
|
|
391
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
379
392
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
380
393
|
DistributionOverview: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
381
394
|
dpiLocale: StringConstructor;
|
|
@@ -624,6 +637,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
624
637
|
inHeader: StringConstructor;
|
|
625
638
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
626
639
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
640
|
+
MultilingualProp: import('vue').DefineComponent<{}, {
|
|
641
|
+
value?: Record<string, any> | undefined;
|
|
642
|
+
data?: Record<string, any> | undefined;
|
|
643
|
+
property?: Record<string, any> | undefined;
|
|
644
|
+
dpiLocale?: Record<string, any> | undefined;
|
|
645
|
+
$props: {
|
|
646
|
+
readonly value?: Record<string, any> | undefined;
|
|
647
|
+
readonly data?: Record<string, any> | undefined;
|
|
648
|
+
readonly property?: Record<string, any> | undefined;
|
|
649
|
+
readonly dpiLocale?: Record<string, any> | undefined;
|
|
650
|
+
};
|
|
651
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
627
652
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
628
653
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
629
654
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -802,6 +827,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
802
827
|
inHeader: StringConstructor;
|
|
803
828
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
804
829
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
830
|
+
MultilingualProp: import('vue').DefineComponent<{}, {
|
|
831
|
+
value?: Record<string, any> | undefined;
|
|
832
|
+
data?: Record<string, any> | undefined;
|
|
833
|
+
property?: Record<string, any> | undefined;
|
|
834
|
+
dpiLocale?: Record<string, any> | undefined;
|
|
835
|
+
$props: {
|
|
836
|
+
readonly value?: Record<string, any> | undefined;
|
|
837
|
+
readonly data?: Record<string, any> | undefined;
|
|
838
|
+
readonly property?: Record<string, any> | undefined;
|
|
839
|
+
readonly dpiLocale?: Record<string, any> | undefined;
|
|
840
|
+
};
|
|
841
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
805
842
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
806
843
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
807
844
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|