@piveau/piveau-hub-ui-modules 4.1.10 → 4.2.1
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/components/ConditionalInput.vue.mjs +41 -40
- package/dist/data-provider-interface/components/ConditionalInput.vue.mjs.map +1 -1
- package/dist/data-provider-interface/components/DistributionStepper.vue.d.ts +1 -0
- package/dist/data-provider-interface/components/DistributionStepper.vue.mjs +120 -95
- package/dist/data-provider-interface/components/DistributionStepper.vue.mjs.map +1 -1
- package/dist/data-provider-interface/components/SimpleAccessURLInput.vue.d.ts +7 -0
- package/dist/data-provider-interface/components/SimpleAccessURLInput.vue.mjs +33 -0
- package/dist/data-provider-interface/components/SimpleAccessURLInput.vue.mjs.map +1 -0
- package/dist/data-provider-interface/config/dcatap/input-definition.mjs +1 -1
- package/dist/data-provider-interface/config/dcatap/input-definition.mjs.map +1 -1
- package/dist/data-provider-interface/config/dcatapde/input-definition.mjs +87 -59
- package/dist/data-provider-interface/config/dcatapde/input-definition.mjs.map +1 -1
- package/dist/data-provider-interface/config/dcatapdeODB/format-types.mjs +275 -0
- package/dist/data-provider-interface/config/dcatapdeODB/format-types.mjs.map +1 -0
- package/dist/data-provider-interface/config/dcatapdeODB/input-definition.d.ts +18 -0
- package/dist/data-provider-interface/config/dcatapdeODB/input-definition.mjs +2087 -0
- package/dist/data-provider-interface/config/dcatapdeODB/input-definition.mjs.map +1 -0
- package/dist/data-provider-interface/config/dcatapdeODB/page-content-config.mjs +24 -0
- package/dist/data-provider-interface/config/dcatapdeODB/page-content-config.mjs.map +1 -0
- package/dist/data-provider-interface/config/dcatapdeODB/prefixes.mjs +27 -0
- package/dist/data-provider-interface/config/dcatapdeODB/prefixes.mjs.map +1 -0
- package/dist/data-provider-interface/config/dcatapdeODB/vocab-prefixes.mjs +34 -0
- package/dist/data-provider-interface/config/dcatapdeODB/vocab-prefixes.mjs.map +1 -0
- package/dist/data-provider-interface/config/dpi-spec-config.mjs +14 -2
- package/dist/data-provider-interface/config/dpi-spec-config.mjs.map +1 -1
- package/dist/data-provider-interface/views/DistributionInputPage.vue.mjs +3 -2
- package/dist/data-provider-interface/views/DistributionInputPage.vue.mjs.map +1 -1
- package/dist/external/@vueuse/core/index +1 -1
- package/dist/form/Repeatable.vue.mjs +30 -30
- package/dist/form/Repeatable.vue.mjs.map +1 -1
- package/dist/form/inputDefinitions.mjs +13 -8
- package/dist/form/inputDefinitions.mjs.map +1 -1
- package/dist/piveau-hub-ui-modules.css +1 -1
- package/package.json +1 -1
|
@@ -2,19 +2,20 @@ import o from "./Repeatable.vue.mjs";
|
|
|
2
2
|
import p from "./FormKitGroup.vue.mjs";
|
|
3
3
|
import t from "../data-provider-interface/components/AutocompleteInput.vue.mjs";
|
|
4
4
|
import m from "../data-provider-interface/components/FileUpload.vue.mjs";
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
5
|
+
import n from "../data-provider-interface/components/UniqueIdentifierInput.vue.mjs";
|
|
6
|
+
import e from "../data-provider-interface/components/SpatialInput.vue.mjs";
|
|
7
|
+
import i from "../data-provider-interface/components/ConditionalInput.vue.mjs";
|
|
8
8
|
import r from "../data-provider-interface/components/SimpleSelect.vue.mjs";
|
|
9
9
|
import a from "../data-provider-interface/components/SimpleInput.vue.mjs";
|
|
10
|
-
|
|
10
|
+
import c from "../data-provider-interface/components/SimpleAccessURLInput.vue.mjs";
|
|
11
|
+
const b = {
|
|
11
12
|
repeatable: {
|
|
12
13
|
type: "list",
|
|
13
14
|
component: o
|
|
14
15
|
},
|
|
15
16
|
id: {
|
|
16
17
|
type: "input",
|
|
17
|
-
component:
|
|
18
|
+
component: n
|
|
18
19
|
},
|
|
19
20
|
auto: {
|
|
20
21
|
type: "group",
|
|
@@ -26,7 +27,7 @@ const $ = {
|
|
|
26
27
|
},
|
|
27
28
|
spatialinput: {
|
|
28
29
|
type: "group",
|
|
29
|
-
component:
|
|
30
|
+
component: e
|
|
30
31
|
},
|
|
31
32
|
formkitGroup: {
|
|
32
33
|
type: "group",
|
|
@@ -34,7 +35,7 @@ const $ = {
|
|
|
34
35
|
},
|
|
35
36
|
simpleConditional: {
|
|
36
37
|
type: "group",
|
|
37
|
-
component:
|
|
38
|
+
component: i
|
|
38
39
|
},
|
|
39
40
|
simpleSelect: {
|
|
40
41
|
type: "input",
|
|
@@ -43,9 +44,13 @@ const $ = {
|
|
|
43
44
|
simpleInput: {
|
|
44
45
|
type: "input",
|
|
45
46
|
component: a
|
|
47
|
+
},
|
|
48
|
+
simpleAccessURLInput: {
|
|
49
|
+
type: "group",
|
|
50
|
+
component: c
|
|
46
51
|
}
|
|
47
52
|
};
|
|
48
53
|
export {
|
|
49
|
-
|
|
54
|
+
b as default
|
|
50
55
|
};
|
|
51
56
|
//# sourceMappingURL=inputDefinitions.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inputDefinitions.mjs","sources":["../../lib/form/inputDefinitions.ts"],"sourcesContent":["import Repeatable from \"./Repeatable.vue\";\nimport FormKitGroup from \"./FormKitGroup.vue\";\nimport { FormKitLibrary } from \"@formkit/core\";\nimport AutocompleteInput from \"../data-provider-interface/components/AutocompleteInput.vue\";\nimport FileUpload from \"../data-provider-interface/components/FileUpload.vue\";\nimport UniqueIdentifierInput from \"../data-provider-interface/components/UniqueIdentifierInput.vue\";\nimport SpatialInput from \"../data-provider-interface/components/SpatialInput.vue\";\nimport ConditionalInput from \"../data-provider-interface/components/ConditionalInput.vue\";\nimport SimpleSelect from \"../data-provider-interface/components/SimpleSelect.vue\";\nimport SimpleInput from \"../data-provider-interface/components/SimpleInput.vue\";\n\n\nexport default {\n \n repeatable: {\n type: 'list',\n component: Repeatable\n },\n id: {\n type: 'input',\n component: UniqueIdentifierInput,\n },\n auto: {\n type: 'group',\n component: AutocompleteInput\n },\n fileupload: {\n type: 'group',\n component: FileUpload\n },\n spatialinput: {\n type: 'group',\n component: SpatialInput\n },\n formkitGroup: {\n type: 'group',\n component: FormKitGroup\n },\n simpleConditional: {\n type: 'group',\n component: ConditionalInput\n },\n simpleSelect: {\n type: 'input',\n component: SimpleSelect,\n },\n simpleInput: {\n type: 'input',\n component: SimpleInput,\n },\n\n\n} as FormKitLibrary;"],"names":["inputDefinitions","Repeatable","UniqueIdentifierInput","AutocompleteInput","FileUpload","SpatialInput","FormKitGroup","ConditionalInput","SimpleSelect","SimpleInput"],"mappings":"
|
|
1
|
+
{"version":3,"file":"inputDefinitions.mjs","sources":["../../lib/form/inputDefinitions.ts"],"sourcesContent":["import Repeatable from \"./Repeatable.vue\";\nimport FormKitGroup from \"./FormKitGroup.vue\";\nimport { FormKitLibrary } from \"@formkit/core\";\nimport AutocompleteInput from \"../data-provider-interface/components/AutocompleteInput.vue\";\nimport FileUpload from \"../data-provider-interface/components/FileUpload.vue\";\nimport UniqueIdentifierInput from \"../data-provider-interface/components/UniqueIdentifierInput.vue\";\nimport SpatialInput from \"../data-provider-interface/components/SpatialInput.vue\";\nimport ConditionalInput from \"../data-provider-interface/components/ConditionalInput.vue\";\nimport SimpleSelect from \"../data-provider-interface/components/SimpleSelect.vue\";\nimport SimpleInput from \"../data-provider-interface/components/SimpleInput.vue\";\nimport SimpleAccessURLInput from \"../data-provider-interface/components/SimpleAccessURLInput.vue\";\n\n\nexport default {\n \n repeatable: {\n type: 'list',\n component: Repeatable\n },\n id: {\n type: 'input',\n component: UniqueIdentifierInput,\n },\n auto: {\n type: 'group',\n component: AutocompleteInput\n },\n fileupload: {\n type: 'group',\n component: FileUpload\n },\n spatialinput: {\n type: 'group',\n component: SpatialInput\n },\n formkitGroup: {\n type: 'group',\n component: FormKitGroup\n },\n simpleConditional: {\n type: 'group',\n component: ConditionalInput\n },\n simpleSelect: {\n type: 'input',\n component: SimpleSelect,\n },\n simpleInput: {\n type: 'input',\n component: SimpleInput,\n },\n simpleAccessURLInput: {\n type: 'group',\n component: SimpleAccessURLInput,\n },\n\n\n} as FormKitLibrary;"],"names":["inputDefinitions","Repeatable","UniqueIdentifierInput","AutocompleteInput","FileUpload","SpatialInput","FormKitGroup","ConditionalInput","SimpleSelect","SimpleInput","SimpleAccessURLInput"],"mappings":";;;;;;;;;;AAaA,MAAeA,IAAA;AAAA,EAEX,YAAY;AAAA,IACR,MAAM;AAAA,IACN,WAAWC;AAAA,EACf;AAAA,EACA,IAAI;AAAA,IACA,MAAM;AAAA,IACN,WAAWC;AAAAA,EACf;AAAA,EACA,MAAM;AAAA,IACF,MAAM;AAAA,IACN,WAAWC;AAAAA,EACf;AAAA,EACA,YAAY;AAAA,IACR,MAAM;AAAA,IACN,WAAWC;AAAA,EACf;AAAA,EACA,cAAc;AAAA,IACV,MAAM;AAAA,IACN,WAAWC;AAAA,EACf;AAAA,EACA,cAAc;AAAA,IACV,MAAM;AAAA,IACN,WAAWC;AAAA,EACf;AAAA,EACA,mBAAmB;AAAA,IACf,MAAM;AAAA,IACN,WAAWC;AAAAA,EACf;AAAA,EACA,cAAc;AAAA,IACV,MAAM;AAAA,IACN,WAAWC;AAAAA,EACf;AAAA,EACA,aAAa;AAAA,IACT,MAAM;AAAA,IACN,WAAWC;AAAAA,EACf;AAAA,EACA,sBAAsB;AAAA,IAClB,MAAM;AAAA,IACN,WAAWC;AAAAA,EACf;AAGJ;"}
|