@piveau/dpi 0.2.0-alpha.12 → 0.2.0-alpha.13
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/assets/dpi.css +1 -1
- package/dist/packages/dpi/src/data-provider-interface/HappyFlowComponents/services/dpiV3_apis.js +1 -1
- package/dist/packages/dpi/src/data-provider-interface/components/DistLicense.vue.js +224 -133
- package/dist/packages/dpi/src/data-provider-interface/components/VisibilityPage.vue.js +106 -0
- package/dist/packages/dpi/src/data-provider-interface/config/dcatapdeHappyFlow/input-definition.js +4 -0
- package/dist/packages/dpi/src/data-provider-interface/config/dcatapdeHappyFlow/page-content-config.js +1 -1
- package/dist/packages/dpi/src/data-provider-interface/views/InputPage.vue.js +276 -251
- package/dist/packages/dpi/src/form/inputDefinitions.js +15 -10
- package/package.json +1 -1
|
@@ -9,22 +9,23 @@ import m from "../data-provider-interface/components/ConditionalInput.vue.js";
|
|
|
9
9
|
import r from "../data-provider-interface/components/SimpleSelect.vue.js";
|
|
10
10
|
import c from "../data-provider-interface/components/SimpleInput.vue.js";
|
|
11
11
|
import a from "../data-provider-interface/components/SimpleAccessURLInput.vue.js";
|
|
12
|
-
import
|
|
13
|
-
import
|
|
12
|
+
import g from "../data-provider-interface/components/HappyFlowLandingPage.vue.js";
|
|
13
|
+
import u from "../data-provider-interface/components/DiscoverabilityPage.vue.js";
|
|
14
14
|
import f from "../data-provider-interface/components/HVDPage.vue.js";
|
|
15
15
|
import s from "../data-provider-interface/components/BasicInfosPage.vue.js";
|
|
16
16
|
import l from "../data-provider-interface/components/CoveringPage.vue.js";
|
|
17
17
|
import y from "../data-provider-interface/components/DistributionSimplePage.vue.js";
|
|
18
18
|
import d from "../data-provider-interface/components/ReviewAndPublishPage.vue.js";
|
|
19
19
|
import P from "../data-provider-interface/components/dpiV3Description.vue.js";
|
|
20
|
-
import
|
|
21
|
-
import
|
|
20
|
+
import b from "../data-provider-interface/components/TitelPage.vue.js";
|
|
21
|
+
import _ from "../data-provider-interface/components/UpdateDate.vue.js";
|
|
22
22
|
import v from "../data-provider-interface/components/PublisherPage.vue.js";
|
|
23
23
|
import D from "../data-provider-interface/components/ContactPage.vue.js";
|
|
24
24
|
import h from "../data-provider-interface/components/TempResPage.vue.js";
|
|
25
25
|
import I from "../data-provider-interface/components/PolGeoUriPage.vue.js";
|
|
26
26
|
import R from "../data-provider-interface/components/DistLicense.vue.js";
|
|
27
|
-
|
|
27
|
+
import U from "../data-provider-interface/components/VisibilityPage.vue.js";
|
|
28
|
+
const Z = {
|
|
28
29
|
repeatable: {
|
|
29
30
|
type: "list",
|
|
30
31
|
component: o
|
|
@@ -67,27 +68,31 @@ const X = {
|
|
|
67
68
|
},
|
|
68
69
|
happyFlowLandingPage: {
|
|
69
70
|
type: "group",
|
|
70
|
-
component:
|
|
71
|
+
component: g
|
|
71
72
|
},
|
|
72
73
|
discoverabilityPage: {
|
|
73
74
|
type: "group",
|
|
74
|
-
component:
|
|
75
|
+
component: u
|
|
75
76
|
},
|
|
76
77
|
hvdPage: {
|
|
77
78
|
type: "group",
|
|
78
79
|
component: f
|
|
79
80
|
},
|
|
81
|
+
visibilityPage: {
|
|
82
|
+
type: "group",
|
|
83
|
+
component: U
|
|
84
|
+
},
|
|
80
85
|
basicInfosPage: {
|
|
81
86
|
type: "group",
|
|
82
87
|
component: s
|
|
83
88
|
},
|
|
84
89
|
"dct:title": {
|
|
85
90
|
type: "input",
|
|
86
|
-
component:
|
|
91
|
+
component: b
|
|
87
92
|
},
|
|
88
93
|
"dct:modified": {
|
|
89
94
|
type: "input",
|
|
90
|
-
component:
|
|
95
|
+
component: _
|
|
91
96
|
},
|
|
92
97
|
"dct:publisher": {
|
|
93
98
|
type: "group",
|
|
@@ -127,5 +132,5 @@ const X = {
|
|
|
127
132
|
}
|
|
128
133
|
};
|
|
129
134
|
export {
|
|
130
|
-
|
|
135
|
+
Z as default
|
|
131
136
|
};
|