@piveau/dpi 0.1.0-beta.8 → 0.1.0-beta.83

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.
Files changed (94) hide show
  1. package/dist/assets/dpi.css +1 -1
  2. package/dist/data-provider-interface/DPIMenu.vue.js +2 -2
  3. package/dist/data-provider-interface/HappyFlowComponents/ComponentLibrary.vue.js +1 -1
  4. package/dist/data-provider-interface/HappyFlowComponents/HomeTable.vue.js +56 -51
  5. package/dist/data-provider-interface/HappyFlowComponents/services/dpiV3_apis.js +96 -76
  6. package/dist/data-provider-interface/HappyFlowComponents/ui/CloseOpenButtonV3.vue.js +11 -10
  7. package/dist/data-provider-interface/HappyFlowComponents/ui/DpiModalBase.vue.js +2 -2
  8. package/dist/data-provider-interface/HappyFlowComponents/ui/Dropdown.vue.js +101 -76
  9. package/dist/data-provider-interface/HappyFlowComponents/ui/InputField.vue.js +1 -1
  10. package/dist/data-provider-interface/HappyFlowComponents/ui/ModalSimpleV3.vue.js +11 -11
  11. package/dist/data-provider-interface/HappyFlowComponents/ui/ModalV3.vue.js +441 -353
  12. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AccessRightsV3.vue.js +64 -28
  13. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AccessServiceV3.vue.js +108 -74
  14. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/AvailabilityV3.vue.js +17 -22
  15. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ChangeLicenseV3.vue.js +130 -77
  16. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ChecksumV3.vue.js +122 -85
  17. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/ConformsToV3.vue.js +111 -74
  18. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/DocumentationsV3.vue.js +170 -99
  19. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/FileFormatV3.vue.js +7 -10
  20. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/LanguageV3.vue.js +118 -52
  21. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/PolicyV3.vue.js +65 -86
  22. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/StatusV3.vue.js +29 -28
  23. package/dist/data-provider-interface/HappyFlowComponents/ui/RapModal.vue.js +159 -103
  24. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/AdditionalsModal.vue.js +48 -48
  25. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/AdditionalsSubModal.vue.js +573 -207
  26. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/CoverageModal.vue.js +100 -53
  27. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/DistributionModal.vue.js +43 -89
  28. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/EssentialsModal.vue.js +329 -100
  29. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/FindabilityChips.vue.js +43 -26
  30. package/dist/data-provider-interface/HappyFlowComponents/ui/SectionItems/HVDSwitch.vue.js +70 -38
  31. package/dist/data-provider-interface/HappyFlowComponents/ui/TableRowV3.vue.js +181 -107
  32. package/dist/data-provider-interface/HappyFlowComponents/ui/TextAreaV3.vue.js +19 -14
  33. package/dist/data-provider-interface/HappyFlowComponents/ui/TextButtonSmall.vue.js +1 -1
  34. package/dist/data-provider-interface/HappyFlowComponents/ui/Toast.vue.js +30 -29
  35. package/dist/data-provider-interface/components/ContactPage.vue.js +148 -100
  36. package/dist/data-provider-interface/components/DiscoverabilityPage.vue.js +32 -32
  37. package/dist/data-provider-interface/components/DistLicense.vue.js +198 -99
  38. package/dist/data-provider-interface/components/DistributionSimplePage.vue.js +957 -833
  39. package/dist/data-provider-interface/components/Dropup.vue.js +6 -6
  40. package/dist/data-provider-interface/components/HVDPage.vue.js +107 -85
  41. package/dist/data-provider-interface/components/InfoSlot.vue.js +5 -5
  42. package/dist/data-provider-interface/components/PolGeoUriPage.vue.js +89 -46
  43. package/dist/data-provider-interface/components/PublisherPage.vue.js +107 -77
  44. package/dist/data-provider-interface/components/ReviewAndPublishPage.vue.js +315 -260
  45. package/dist/data-provider-interface/components/TempResPage.vue.js +267 -187
  46. package/dist/data-provider-interface/components/TempResPageInModal.vue.js +392 -0
  47. package/dist/data-provider-interface/components/TitelPage.vue.js +4 -4
  48. package/dist/data-provider-interface/components/UpdateDate.vue.js +33 -29
  49. package/dist/data-provider-interface/components/dpiV3Description.vue.js +7 -6
  50. package/dist/data-provider-interface/composables/useDpiSimpleLoader.js +408 -246
  51. package/dist/data-provider-interface/config/dcatapde/vocab-prefixes.js +1 -1
  52. package/dist/data-provider-interface/config/dcatapdeHappyFlow/converter.js +496 -98
  53. package/dist/data-provider-interface/config/dcatapdeHappyFlow/input-definition.js +104 -152
  54. package/dist/data-provider-interface/config/dcatapdeHappyFlow/page-content-config.js +9 -2
  55. package/dist/data-provider-interface/store/modules/authStore.js +11 -11
  56. package/dist/data-provider-interface/views/DraftsPage.vue.js +3 -3
  57. package/dist/data-provider-interface/views/InputPage.vue.js +366 -737
  58. package/dist/msw/handlers.js +107 -0
  59. package/dist/msw/vocabularies-search/access-right.json.js +7 -0
  60. package/dist/msw/vocabularies-search/adms.json.js +7 -0
  61. package/dist/msw/vocabularies-search/continent.json.js +7 -0
  62. package/dist/msw/vocabularies-search/contributors.json.js +7 -0
  63. package/dist/msw/vocabularies-search/corporate-body.json.js +7 -0
  64. package/dist/msw/vocabularies-search/country.json.js +7 -0
  65. package/dist/msw/vocabularies-search/data-theme.json.js +7 -0
  66. package/dist/msw/vocabularies-search/dataset-status.json.js +7 -0
  67. package/dist/msw/vocabularies-search/dataset-type.json.js +7 -0
  68. package/dist/msw/vocabularies-search/dataset-types.json.js +7 -0
  69. package/dist/msw/vocabularies-search/distribution-type.json.js +7 -0
  70. package/dist/msw/vocabularies-search/file-type.json.js +7 -0
  71. package/dist/msw/vocabularies-search/frequency.json.js +7 -0
  72. package/dist/msw/vocabularies-search/hash-algorithms.json.js +7 -0
  73. package/dist/msw/vocabularies-search/hvd-category.json.js +7 -0
  74. package/dist/msw/vocabularies-search/iana-media-types.json.js +7 -0
  75. package/dist/msw/vocabularies-search/language.json.js +7 -0
  76. package/dist/msw/vocabularies-search/licence.json.js +7 -0
  77. package/dist/msw/vocabularies-search/licenses.json.js +7 -0
  78. package/dist/msw/vocabularies-search/place.json.js +7 -0
  79. package/dist/msw/vocabularies-search/planned-availability.json.js +7 -0
  80. package/dist/msw/vocabularies-search/political-geocoding-district-key.json.js +7 -0
  81. package/dist/msw/vocabularies-search/political-geocoding-government-district-key.json.js +7 -0
  82. package/dist/msw/vocabularies-search/political-geocoding-level.json.js +7 -0
  83. package/dist/msw/vocabularies-search/political-geocoding-municipal-association-key.json.js +7 -0
  84. package/dist/msw/vocabularies-search/political-geocoding-municipality-key.json.js +7 -0
  85. package/dist/msw/vocabularies-search/political-geocoding-regional-key.json.js +7 -0
  86. package/dist/msw/vocabularies-search/political-geocoding-state-key.json.js +7 -0
  87. package/dist/msw/vocabularies-search/spdx-checksum-algorithm.json.js +7 -0
  88. package/dist/msw.d.ts +1 -0
  89. package/dist/msw.js +6 -0
  90. package/dist/styles/_dpi.scss +1614 -0
  91. package/dist/styles/_maps.scss +24 -0
  92. package/dist/styles/_variables.scss +973 -0
  93. package/package.json +34 -19
  94. package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalInformation/LicenseAttributionByText.vue.js +0 -46
@@ -0,0 +1,7 @@
1
+ const e = { index: "vocabulary", count: 16, facets: [{ id: "attribution", title: "Attribution", items: [] }, { id: "copyleft", title: "Copy Left", items: [] }, { id: "lesser_copyleft", title: "Lesser Copy Left", items: [] }, { id: "notice", title: "Notice", items: [] }, { id: "share_alike", title: "Share Alike", items: [] }, { id: "state_changes", title: "State Changes", items: [] }], results: [{ pref_label: { de: "11" }, index: "vocabulary", id: "11", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/11", alt_label: { de: "Berlin" } }, { pref_label: { de: "12" }, index: "vocabulary", id: "12", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/12", alt_label: { de: "Brandenburg" } }, { pref_label: { de: "01" }, index: "vocabulary", id: "01", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/01", alt_label: { de: "Schleswig-Holstein" } }, { pref_label: { de: "13" }, index: "vocabulary", id: "13", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/13", alt_label: { de: "Mecklenburg-Vorpommern" } }, { pref_label: { de: "02" }, index: "vocabulary", id: "02", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/02", alt_label: { de: "Hamburg" } }, { pref_label: { de: "14" }, index: "vocabulary", id: "14", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/14", alt_label: { de: "Sachsen" } }, { pref_label: { de: "03" }, index: "vocabulary", id: "03", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/03", alt_label: { de: "Niedersachsen" } }, { pref_label: { de: "15" }, index: "vocabulary", id: "15", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/15", alt_label: { de: "Sachsen-Anhalt" } }, { pref_label: { de: "04" }, index: "vocabulary", id: "04", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/04", alt_label: { de: "Bremen" } }, { pref_label: { de: "16" }, index: "vocabulary", id: "16", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/16", alt_label: { de: "Thüringen" } }, { pref_label: { de: "05" }, index: "vocabulary", id: "05", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/05", alt_label: { de: "Nordrhein-Westfalen" } }, { pref_label: { de: "06" }, index: "vocabulary", id: "06", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/06", alt_label: { de: "Hessen" } }, { pref_label: { de: "07" }, index: "vocabulary", id: "07", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/07", alt_label: { de: "Rheinland-Pfalz" } }, { pref_label: { de: "08" }, index: "vocabulary", id: "08", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/08", alt_label: { de: "Baden-Württemberg" } }, { pref_label: { de: "09" }, index: "vocabulary", id: "09", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/09", alt_label: { de: "Bayern" } }, { pref_label: { de: "10" }, index: "vocabulary", id: "10", in_scheme: "http://dcat-ap.de/def/politicalGeocoding/stateKey", resource: "http://dcat-ap.de/def/politicalGeocoding/stateKey/10", alt_label: { de: "Saarland" } }] }, t = {
2
+ result: e
3
+ };
4
+ export {
5
+ t as default,
6
+ e as result
7
+ };
@@ -0,0 +1,7 @@
1
+ const e = { index: "vocabulary", count: 17, facets: [{ id: "attribution", title: "Attribution", items: [] }, { id: "copyleft", title: "Copy Left", items: [] }, { id: "lesser_copyleft", title: "Lesser Copy Left", items: [] }, { id: "notice", title: "Notice", items: [] }, { id: "share_alike", title: "Share Alike", items: [] }, { id: "state_changes", title: "State Changes", items: [] }], results: [{ pref_label: { en: "SHA384" }, index: "vocabulary", id: "sha384", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_sha384" }, { pref_label: { en: "BLAKE2B256" }, index: "vocabulary", id: "blake2b256", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_blake2b256" }, { pref_label: { en: "SHA256" }, index: "vocabulary", id: "sha256", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_sha256" }, { pref_label: { en: "BLAKE2B512" }, index: "vocabulary", id: "blake2b512", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_blake2b512" }, { pref_label: { en: "SHA512" }, index: "vocabulary", id: "sha512", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_sha512" }, { pref_label: { en: "SHA224" }, index: "vocabulary", id: "sha224", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_sha224" }, { pref_label: { en: "SHA1" }, index: "vocabulary", id: "sha1", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_sha1" }, { pref_label: { en: "SHA3_512" }, index: "vocabulary", id: "sha3_512", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_sha3_512" }, { pref_label: { en: "SHA3_256" }, index: "vocabulary", id: "sha3_256", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_sha3_256" }, { pref_label: { en: "ADLER32" }, index: "vocabulary", id: "adler32", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_adler32" }, { pref_label: { en: "BLAKE3" }, index: "vocabulary", id: "blake3", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_blake3" }, { pref_label: { en: "SHA3_384" }, index: "vocabulary", id: "sha3_384", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_sha3_384" }, { pref_label: { en: "MD2" }, index: "vocabulary", id: "md2", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_md2" }, { pref_label: { en: "MD4" }, index: "vocabulary", id: "md4", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_md4" }, { pref_label: { en: "BLAKE2B384" }, index: "vocabulary", id: "blake2b384", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_blake2b384" }, { pref_label: { en: "MD6" }, index: "vocabulary", id: "md6", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_md6" }, { pref_label: { en: "MD5" }, index: "vocabulary", id: "md5", in_scheme: ["http://spdx.org/rdf/terms#ChecksumAlgorithm"], resource: "http://spdx.org/rdf/terms#checksumAlgorithm_md5" }] }, r = {
2
+ result: e
3
+ };
4
+ export {
5
+ r as default,
6
+ e as result
7
+ };
package/dist/msw.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {}
package/dist/msw.js ADDED
@@ -0,0 +1,6 @@
1
+ import { createHandlers as e, handlers as l, vocabularyMap as o } from "./msw/handlers.js";
2
+ export {
3
+ e as createHandlers,
4
+ l as handlers,
5
+ o as vocabularyMap
6
+ };