@lblod/ember-rdfa-editor-lblod-plugins 0.1.0
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/LICENSE.md +9 -0
- package/README.md +37 -0
- package/addon-main.js +4 -0
- package/dist/_app_/components/besluit-type-plugin/besluit-type-select.js +1 -0
- package/dist/_app_/components/besluit-type-plugin/toolbar-dropdown.js +1 -0
- package/dist/_app_/components/citaten-plugin/citaat-card.js +1 -0
- package/dist/_app_/components/citaten-plugin/citaat-insert.js +1 -0
- package/dist/_app_/components/citaten-plugin/citations/article-list.js +1 -0
- package/dist/_app_/components/citaten-plugin/citations/article-preview.js +1 -0
- package/dist/_app_/components/citaten-plugin/citations/decision-detail.js +1 -0
- package/dist/_app_/components/citaten-plugin/citations/decision-list.js +1 -0
- package/dist/_app_/components/citaten-plugin/citations/decision-preview.js +1 -0
- package/dist/_app_/components/citaten-plugin/citations/search-modal.js +1 -0
- package/dist/_app_/components/citaten-plugin/helpers/alert-load-error.js +1 -0
- package/dist/_app_/components/citaten-plugin/helpers/alert-no-items.js +1 -0
- package/dist/_app_/components/import-snippet-plugin/card.js +1 -0
- package/dist/_app_/components/rdfa-date-plugin/rdfa-date-plugin-card.js +1 -0
- package/dist/_app_/components/rdfa-date-plugin/rdfa-date-plugin-insert.js +1 -0
- package/dist/_app_/components/rdfa-date-plugin/rdfa-date-time-picker.js +1 -0
- package/dist/_app_/components/standard-template-plugin/template-card.js +1 -0
- package/dist/_app_/components/standard-template-plugin/template-provider.js +1 -0
- package/dist/_app_/components/table-of-contents-plugin/card.js +1 -0
- package/dist/_app_/components/table-of-contents-plugin/inline-components/outline.js +1 -0
- package/dist/_app_/components/table-of-contents-plugin/inline-components/table-of-contents.js +1 -0
- package/dist/_app_/initializers/plugin-initializer.js +1 -0
- package/dist/_app_/models/template.js +1 -0
- package/dist/_app_/serializers/application.js +1 -0
- package/dist/_app_/services/import-rdfa-snippet.js +1 -0
- package/dist/_app_/services/standard-template-plugin.js +1 -0
- package/dist/_rollupPluginBabelHelpers-537ad14b.js +48 -0
- package/dist/_rollupPluginBabelHelpers-537ad14b.js.map +1 -0
- package/dist/components/besluit-type-plugin/besluit-type-select.js +30 -0
- package/dist/components/besluit-type-plugin/besluit-type-select.js.map +1 -0
- package/dist/components/besluit-type-plugin/toolbar-dropdown.js +292 -0
- package/dist/components/besluit-type-plugin/toolbar-dropdown.js.map +1 -0
- package/dist/components/citaten-plugin/citaat-card.js +367 -0
- package/dist/components/citaten-plugin/citaat-card.js.map +1 -0
- package/dist/components/citaten-plugin/citaat-insert.js +84 -0
- package/dist/components/citaten-plugin/citaat-insert.js.map +1 -0
- package/dist/components/citaten-plugin/citations/article-list.js +10 -0
- package/dist/components/citaten-plugin/citations/article-list.js.map +1 -0
- package/dist/components/citaten-plugin/citations/article-preview.js +10 -0
- package/dist/components/citaten-plugin/citations/article-preview.js.map +1 -0
- package/dist/components/citaten-plugin/citations/decision-detail.js +123 -0
- package/dist/components/citaten-plugin/citations/decision-detail.js.map +1 -0
- package/dist/components/citaten-plugin/citations/decision-list.js +10 -0
- package/dist/components/citaten-plugin/citations/decision-list.js.map +1 -0
- package/dist/components/citaten-plugin/citations/decision-preview.js +10 -0
- package/dist/components/citaten-plugin/citations/decision-preview.js.map +1 -0
- package/dist/components/citaten-plugin/citations/search-modal.js +282 -0
- package/dist/components/citaten-plugin/citations/search-modal.js.map +1 -0
- package/dist/components/citaten-plugin/helpers/alert-load-error.js +10 -0
- package/dist/components/citaten-plugin/helpers/alert-load-error.js.map +1 -0
- package/dist/components/citaten-plugin/helpers/alert-no-items.js +10 -0
- package/dist/components/citaten-plugin/helpers/alert-no-items.js.map +1 -0
- package/dist/components/import-snippet-plugin/card.js +99 -0
- package/dist/components/import-snippet-plugin/card.js.map +1 -0
- package/dist/components/rdfa-date-plugin/rdfa-date-plugin-card.js +85 -0
- package/dist/components/rdfa-date-plugin/rdfa-date-plugin-card.js.map +1 -0
- package/dist/components/rdfa-date-plugin/rdfa-date-plugin-insert.js +23 -0
- package/dist/components/rdfa-date-plugin/rdfa-date-plugin-insert.js.map +1 -0
- package/dist/components/rdfa-date-plugin/rdfa-date-time-picker.js +91 -0
- package/dist/components/rdfa-date-plugin/rdfa-date-time-picker.js.map +1 -0
- package/dist/components/standard-template-plugin/template-card.js +15 -0
- package/dist/components/standard-template-plugin/template-card.js.map +1 -0
- package/dist/components/standard-template-plugin/template-provider.js +109 -0
- package/dist/components/standard-template-plugin/template-provider.js.map +1 -0
- package/dist/components/table-of-contents-plugin/card.js +52 -0
- package/dist/components/table-of-contents-plugin/card.js.map +1 -0
- package/dist/components/table-of-contents-plugin/inline-components/outline.js +10 -0
- package/dist/components/table-of-contents-plugin/inline-components/outline.js.map +1 -0
- package/dist/components/table-of-contents-plugin/inline-components/table-of-contents.js +92 -0
- package/dist/components/table-of-contents-plugin/inline-components/table-of-contents.js.map +1 -0
- package/dist/constants-af958fcd.js +12 -0
- package/dist/constants-af958fcd.js.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/initializers/plugin-initializer.js +307 -0
- package/dist/initializers/plugin-initializer.js.map +1 -0
- package/dist/legislation-types-4d487cb9.js +26 -0
- package/dist/legislation-types-4d487cb9.js.map +1 -0
- package/dist/models/template.js +48 -0
- package/dist/models/template.js.map +1 -0
- package/dist/serializers/application.js +10 -0
- package/dist/serializers/application.js.map +1 -0
- package/dist/services/import-rdfa-snippet.js +178 -0
- package/dist/services/import-rdfa-snippet.js.map +1 -0
- package/dist/services/standard-template-plugin.js +53 -0
- package/dist/services/standard-template-plugin.js.map +1 -0
- package/dist/styles/citaten-plugin.scss +50 -0
- package/dist/styles/test.css +0 -0
- package/dist/vlaamse-codex-187fe526.js +304 -0
- package/dist/vlaamse-codex-187fe526.js.map +1 -0
- package/package.json +117 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vlaamse-codex-187fe526.js","sources":["../src/utils/vlaamse-codex.js"],"sourcesContent":["import { LEGISLATION_TYPE_CONCEPTS } from './legislation-types';\nconst SPARQL_ENDPOINT = '/codex/sparql/';\nimport { warn } from '@ember/debug';\nimport { htmlSafe } from '@ember/template';\n\n//const SPARQL_ENDPOINT = 'https://codex.opendata.api.vlaanderen.be:8888/sparql';\n\nclass Decision {\n constructor({\n uri,\n legislationTypeUri,\n title,\n publicationDate,\n documentDate,\n }) {\n this.uri = uri;\n this.legislationType = LEGISLATION_TYPE_CONCEPTS.find(\n (t) => t.value == legislationTypeUri\n );\n this.title = title;\n this.publicationDate = publicationDate;\n this.documentDate = documentDate;\n }\n\n get fullTitle() {\n return `${this.legislationType.label} ${this.title}`;\n }\n}\n\nclass Article {\n constructor({ uri, number, content, dateInForce, dateNoLongerInForce }) {\n this.uri = uri;\n this.number = number;\n this.content = htmlSafe(content);\n this.dateInForce = dateInForce;\n this.dateNoLongerInForce = dateNoLongerInForce;\n }\n}\n\n/*\n * flemish codex encodes certain characters as a html character, which breaks our search\n * this is an ugly work around\n */\nfunction replaceDiacriticsInWord(word) {\n const characters =\n 'Ë À Ì Â Í Ã Î Ä Ï Ç Ò È Ó É Ô Ê Õ Ö ê Ù ë Ú î Û ï Ü ô Ý õ â û ã ÿ ç'.split(\n ' '\n );\n for (let char of characters) {\n word = word.replace(new RegExp(`${char}`, 'g'), `&#${char.charCodeAt(0)};`);\n }\n return word;\n}\n\n//Attempt to memoise on the fetching by stringifying the arguments. This could spare a few fetches.\n//If memoising fails, at least a normal fetch is performed.\n\nconst fetchDecisionsMemory = new Map();\n\nasync function fetchDecisions(\n words,\n filter,\n pageNumber = 0,\n pageSize = 5\n /*abortSignal*/\n) {\n //This is silly, but null != undefined, so we have to be careful and include the correct value here\n //Also, reconstruct the whole filter object to always have the same ordering, hopefully.\n filter = {\n type: filter.type,\n documentDateFrom: filter.documentDateFrom || null,\n documentDateTo: filter.documentDateTo || null,\n publicationDateFrom: filter.publicationDateFrom || null,\n publicationDateTo: filter.publicationDateTo || null,\n };\n const stringArguments = JSON.stringify({\n words,\n filter,\n pageNumber,\n pageSize,\n });\n const results = fetchDecisionsMemory.get(stringArguments);\n if (results) {\n return results;\n } else {\n const newResults = await fetchDecisionsMemd(...arguments);\n fetchDecisionsMemory.set(stringArguments, newResults);\n return newResults;\n }\n}\n\nasync function fetchDecisionsMemd(\n words,\n filter,\n pageNumber = 0,\n pageSize = 5,\n abortSignal\n) {\n // TBD/NOTE: in the context of a <http://data.europa.eu/eli/ontology#LegalResource>\n // the eli:cites can have either a <http://xmlns.com/foaf/0.1/Document> or <http://data.europa.eu/eli/ontology#LegalResource>\n // as range (see AP https://data.vlaanderen.be/doc/applicatieprofiel/besluit-publicatie/#Rechtsgrond),\n // but I currently don't think in the editor you'll ever directly work on a LegalResource.\n const {\n type,\n documentDateFrom,\n documentDateTo,\n publicationDateFrom,\n publicationDateTo,\n } = filter || {};\n\n let documentDateFilter =\n 'OPTIONAL { ?legalResourceUri eli:date_document ?documentDate . }';\n if (documentDateFrom || documentDateTo) {\n documentDateFilter = '?legalResourceUri eli:date_document ?documentDate . ';\n if (documentDateFrom)\n documentDateFilter += `FILTER (?documentDate >= \"${documentDateFrom}\"^^xsd:date) `;\n if (documentDateTo)\n documentDateFilter += `FILTER (?documentDate <= \"${documentDateTo}\"^^xsd:date) `;\n }\n\n let publicationDateFilter =\n 'OPTIONAL { ?expressionUri eli:date_publication ?publicationDate . }';\n if (publicationDateFrom || publicationDateTo) {\n publicationDateFilter =\n '?expressionUri eli:date_publication ?publicationDate . ';\n if (publicationDateFrom)\n publicationDateFilter += `FILTER (?publicationDate >= \"${publicationDateFrom}\"^^xsd:date) `;\n if (publicationDateTo)\n publicationDateFilter += `FILTER (?publicationDate <= \"${publicationDateTo}\"^^xsd:date) `;\n }\n\n const excludeAdaptationFilters = [];\n if (!words.includes('houdende')) {\n excludeAdaptationFilters.push(\n 'FILTER(! STRSTARTS(LCASE(?title),\"houdende\"))'\n );\n }\n if (!words.includes('wijziging')) {\n excludeAdaptationFilters.push(\n 'FILTER(! STRSTARTS(LCASE(?title),\"tot wijziging\"))'\n );\n }\n const totalCount = await executeCountQuery(\n `PREFIX eli: <http://data.europa.eu/eli/ontology#>\n\n SELECT COUNT(DISTINCT(?expressionUri)) as ?count\n WHERE {\n ?legalResourceUri eli:type_document <${type}> ;\n eli:is_realized_by ?expressionUri .\n ?expressionUri a <http://data.europa.eu/eli/ontology#LegalExpression> .\n ?expressionUri eli:title ?title .\n ${words\n .map(\n (word) =>\n `FILTER (CONTAINS(LCASE(?title), \"${replaceDiacriticsInWord(\n word\n ).toLowerCase()}\"))`\n )\n .join('\\n')}\n ${excludeAdaptationFilters.join('\\n')}\n ${documentDateFilter}\n ${publicationDateFilter}\n }`,\n abortSignal\n );\n\n if (totalCount > 0) {\n const response = await executeQuery(\n `PREFIX eli: <http://data.europa.eu/eli/ontology#>\n\n SELECT DISTINCT ?expressionUri as ?uri ?title ?publicationDate ?documentDate\n WHERE {\n ?legalResourceUri eli:type_document <${type}> ;\n eli:is_realized_by ?expressionUri .\n ?expressionUri a <http://data.europa.eu/eli/ontology#LegalExpression> .\n ?expressionUri eli:title ?title .\n ${words\n .map(\n (word) =>\n `FILTER (CONTAINS(LCASE(?title), \"${replaceDiacriticsInWord(\n word\n ).toLowerCase()}\"))`\n )\n .join('\\n')}\n OPTIONAL { ?expressionUri eli:date_publication ?publicationDate . }\n ${excludeAdaptationFilters.join('\\n')}\n ${documentDateFilter}\n ${publicationDateFilter}\n } ORDER BY ?title LIMIT ${pageSize} OFFSET ${pageNumber * pageSize}`,\n abortSignal\n );\n\n const decisions = response.results.bindings.map((binding) => {\n const escapedTitle = escapeValue(binding.title.value);\n const publicationDate = dateValue(\n binding.publicationDate && binding.publicationDate.value\n );\n const documentDate = dateValue(\n binding.documentDate && binding.documentDate.value\n );\n return new Decision({\n uri: binding.uri.value,\n title: escapedTitle,\n legislationTypeUri: type,\n publicationDate,\n documentDate,\n });\n });\n\n return {\n totalCount,\n decisions,\n };\n } else {\n return {\n totalCount,\n decisions: [],\n };\n }\n}\n\nconst fetchArticlesMemory = new Map();\n\nasync function fetchArticles(\n legalExpression,\n pageNumber,\n pageSize,\n articleFilter\n /*abortSignal*/\n) {\n //Simpler here, only one way arguments are set up\n const stringArguments = JSON.stringify({\n legalExpression,\n pageNumber,\n pageSize,\n articleFilter,\n });\n const results = fetchArticlesMemory.get(stringArguments);\n if (results) {\n return results;\n } else {\n const newResults = await fetchArticlesMemd(...arguments);\n fetchArticlesMemory.set(stringArguments, newResults);\n return newResults;\n }\n}\n\nasync function fetchArticlesMemd(\n legalExpression,\n pageNumber = 0,\n pageSize = 10,\n articleFilter,\n abortSignal\n) {\n const numberFilter = articleFilter\n ? `FILTER( !BOUND(?number) || CONTAINS(?number, \"${articleFilter}\"))`\n : '';\n const totalCount = await executeCountQuery(\n `PREFIX eli: <http://data.europa.eu/eli/ontology#>\n PREFIX dct: <http://purl.org/dc/terms/>\n\n SELECT COUNT(DISTINCT(?article)) as ?count\n WHERE {\n ?legalResource eli:is_realized_by <${legalExpression}> ;\n eli:has_part ?articleResource .\n ?articleResource eli:is_realized_by ?article ;\n dct:type <https://data.vlaanderen.be/id/concept/TypeRechtsbrononderdeel/Artikel>.\n OPTIONAL {\n ?article eli:first_date_entry_in_force ?dateInForce .\n FILTER (?dateInForce <= NOW() )\n }\n OPTIONAL { ?article eli:date_no_longer_in_force ?dateNoLongerInForce }\n FILTER( !BOUND(?dateNoLongerInForce) || ?dateNoLongerInForce > NOW() )\n OPTIONAL { ?article eli:number ?number . }\n ${numberFilter}\n }`,\n abortSignal\n );\n\n if (totalCount > 0) {\n // ?number has format like \"Artikel 12.\" We parse the number from the string for ordering\n // Second degree ordering on ?numberStr to make sure \"Artikel 3/1.\" comes after \"Artikel 3.\"\n const response = await executeQuery(\n `PREFIX eli: <http://data.europa.eu/eli/ontology#>\n PREFIX prov: <http://www.w3.org/ns/prov#>\n PREFIX dct: <http://purl.org/dc/terms/>\n\n SELECT DISTINCT ?article ?dateInForce ?dateNoLongerInForce ?number ?content WHERE {\n ?legalResource eli:is_realized_by <${legalExpression}> ;\n eli:has_part ?articleResource .\n ?articleResource eli:is_realized_by ?article ;\n dct:type <https://data.vlaanderen.be/id/concept/TypeRechtsbrononderdeel/Artikel>.\n OPTIONAL {\n ?article eli:first_date_entry_in_force ?dateInForce .\n FILTER (?dateInForce <= NOW() )\n }\n OPTIONAL { ?article eli:date_no_longer_in_force ?dateNoLongerInForce }\n FILTER( !BOUND(?dateNoLongerInForce) || ?dateNoLongerInForce > NOW() )\n OPTIONAL { ?article prov:value ?content . }\n OPTIONAL { ?article eli:number ?number . }\n ${numberFilter}\n BIND(REPLACE(?number, \"Artikel \", \"\") as ?numberStr)\n BIND(STRDT(?numberStr, xsd:integer) as ?numberInt)\n } ORDER BY ?numberInt ?numberStr LIMIT ${pageSize} OFFSET ${\n pageNumber * pageSize\n }`,\n abortSignal\n );\n\n const articles = response.results.bindings.map((binding) => {\n const escapedContent = escapeValue(\n binding.content && binding.content.value\n );\n const dateInForce = dateValue(\n binding.dateInForce && binding.dateInForce.value\n );\n const dateNoLongerInForce = dateValue(\n binding.dateNoLongerInForce && binding.dateNoLongerInForce.value\n );\n return new Article({\n uri: binding.article.value,\n number: binding.number && binding.number.value,\n content: escapedContent,\n dateInForce,\n dateNoLongerInForce,\n });\n });\n\n return {\n totalCount,\n articles,\n };\n } else {\n return {\n totalCount,\n articles: [],\n };\n }\n}\n\nfunction cleanCaches() {\n fetchDecisionsMemory.clear();\n fetchArticlesMemory.clear();\n}\n\nfunction escapeValue(value) {\n if (value) {\n const shadowDomElement = document.createElement('textarea');\n shadowDomElement.innerHTML = value;\n return shadowDomElement.textContent;\n } else {\n return null;\n }\n}\n\nfunction dateValue(value) {\n if (value) {\n try {\n return new Intl.DateTimeFormat('nl-BE').format(\n new Date(Date.parse(value))\n );\n } catch (e) {\n warn(`Error parsing date ${value}: ${e.message}`, {\n id: 'date-parsing-error',\n });\n return null;\n }\n } else {\n return null;\n }\n}\n\nasync function executeCountQuery(query, abortSignal) {\n const response = await executeQuery(query, abortSignal);\n return parseInt(response.results.bindings[0].count.value);\n}\n\nasync function executeQuery(query, abortSignal) {\n const encodedQuery = encodeURIComponent(query.trim());\n const endpoint = `${SPARQL_ENDPOINT}`;\n const response = await fetch(endpoint, {\n method: 'POST',\n headers: {\n Accept: 'application/sparql-results+json',\n 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',\n },\n body: `query=${encodedQuery}`,\n signal: abortSignal,\n });\n\n if (response.ok) {\n return response.json();\n } else {\n throw new Error(\n `Request to Vlaamse Codex was unsuccessful: [${response.status}] ${response.statusText}`\n );\n }\n}\n\nexport { fetchDecisions, fetchArticles, cleanCaches };\n"],"names":["SPARQL_ENDPOINT","Decision","constructor","uri","legislationTypeUri","title","publicationDate","documentDate","legislationType","LEGISLATION_TYPE_CONCEPTS","find","t","value","fullTitle","label","Article","number","content","dateInForce","dateNoLongerInForce","htmlSafe","replaceDiacriticsInWord","word","characters","split","char","replace","RegExp","charCodeAt","fetchDecisionsMemory","Map","fetchDecisions","words","filter","pageNumber","pageSize","type","documentDateFrom","documentDateTo","publicationDateFrom","publicationDateTo","stringArguments","JSON","stringify","results","get","newResults","fetchDecisionsMemd","arguments","set","abortSignal","documentDateFilter","publicationDateFilter","excludeAdaptationFilters","includes","push","totalCount","executeCountQuery","map","toLowerCase","join","response","executeQuery","decisions","bindings","binding","escapedTitle","escapeValue","dateValue","fetchArticlesMemory","fetchArticles","legalExpression","articleFilter","fetchArticlesMemd","numberFilter","articles","escapedContent","article","cleanCaches","clear","shadowDomElement","document","createElement","innerHTML","textContent","Intl","DateTimeFormat","format","Date","parse","e","warn","message","id","query","parseInt","count","encodedQuery","encodeURIComponent","trim","endpoint","fetch","method","headers","Accept","body","signal","ok","json","Error","status","statusText"],"mappings":"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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lblod/ember-rdfa-editor-lblod-plugins",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Ember addon providing lblod specific plugins for the ember-rdfa-editor",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ember-addon"
|
|
7
|
+
],
|
|
8
|
+
"repository": "",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": "",
|
|
11
|
+
"files": [
|
|
12
|
+
"addon-main.js",
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "rollup --config",
|
|
17
|
+
"lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
|
|
18
|
+
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'",
|
|
19
|
+
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
|
|
20
|
+
"lint:js": "eslint . --cache",
|
|
21
|
+
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
|
|
22
|
+
"lint:js:fix": "eslint . --fix",
|
|
23
|
+
"start": "rollup --config --watch",
|
|
24
|
+
"test": "echo 'A v2 addon does not have tests, run tests in test-app'",
|
|
25
|
+
"prepack": "rollup --config"
|
|
26
|
+
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"@appuniversum/ember-appuniversum": "^1.10.0",
|
|
29
|
+
"@lblod/ember-rdfa-editor": "^0.64.0",
|
|
30
|
+
"ember-concurrency": "^2.2.0",
|
|
31
|
+
"ember-data": "~4.4.0",
|
|
32
|
+
"ember-power-select": "^5.0.4",
|
|
33
|
+
"ember-source": ">=3.28.0",
|
|
34
|
+
"uuid": "^8.3.2"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@embroider/addon-shim": "^1.0.0",
|
|
38
|
+
"@lblod/marawa": "^0.8.0-beta.2",
|
|
39
|
+
"@rdfjs/data-model": "^2.0.1",
|
|
40
|
+
"buffer": "^6.0.3",
|
|
41
|
+
"concurrently": "^7.2.1",
|
|
42
|
+
"ember-cli-string-helpers": "^6.1.0",
|
|
43
|
+
"ember-mu-transform-helpers": "^2.1.2",
|
|
44
|
+
"ember-concurrency": "^2.2.0",
|
|
45
|
+
"ember-intl": "^5.7.2",
|
|
46
|
+
"ember-power-select": "^5.0.4",
|
|
47
|
+
"ember-resources": "^5.6.0",
|
|
48
|
+
"fetch-sparql-endpoint": "^3.0.0",
|
|
49
|
+
"process": "0.11.10",
|
|
50
|
+
"tracked-toolbox": "^1.2.3"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@babel/core": "^7.17.0",
|
|
54
|
+
"@babel/eslint-parser": "^7.18.2",
|
|
55
|
+
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
|
56
|
+
"@babel/plugin-proposal-decorators": "^7.17.0",
|
|
57
|
+
"@babel/plugin-syntax-decorators": "^7.17.0",
|
|
58
|
+
"@embroider/addon-dev": "^2.0.0",
|
|
59
|
+
"@rollup/plugin-babel": "^5.3.0",
|
|
60
|
+
"@rollup/plugin-inject": "^4.0.3",
|
|
61
|
+
"ember-template-lint": "^4.0.0",
|
|
62
|
+
"eslint": "^7.32.0",
|
|
63
|
+
"eslint-config-prettier": "^8.3.0",
|
|
64
|
+
"eslint-plugin-ember": "^10.5.8",
|
|
65
|
+
"eslint-plugin-node": "^11.1.0",
|
|
66
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
67
|
+
"prettier": "^2.5.1",
|
|
68
|
+
"rollup": "^2.67.0",
|
|
69
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
70
|
+
"sass": "^1.56.1"
|
|
71
|
+
},
|
|
72
|
+
"publishConfig": {
|
|
73
|
+
"access": "public",
|
|
74
|
+
"registry": "https://registry.npmjs.org/"
|
|
75
|
+
},
|
|
76
|
+
"ember": {
|
|
77
|
+
"edition": "octane"
|
|
78
|
+
},
|
|
79
|
+
"ember-addon": {
|
|
80
|
+
"version": 2,
|
|
81
|
+
"type": "addon",
|
|
82
|
+
"main": "addon-main.js",
|
|
83
|
+
"app-js": {
|
|
84
|
+
"./components/besluit-type-plugin/besluit-type-select.js": "./dist/_app_/components/besluit-type-plugin/besluit-type-select.js",
|
|
85
|
+
"./components/besluit-type-plugin/toolbar-dropdown.js": "./dist/_app_/components/besluit-type-plugin/toolbar-dropdown.js",
|
|
86
|
+
"./components/citaten-plugin/citaat-card.js": "./dist/_app_/components/citaten-plugin/citaat-card.js",
|
|
87
|
+
"./components/citaten-plugin/citaat-insert.js": "./dist/_app_/components/citaten-plugin/citaat-insert.js",
|
|
88
|
+
"./components/citaten-plugin/citations/article-list.js": "./dist/_app_/components/citaten-plugin/citations/article-list.js",
|
|
89
|
+
"./components/citaten-plugin/citations/article-preview.js": "./dist/_app_/components/citaten-plugin/citations/article-preview.js",
|
|
90
|
+
"./components/citaten-plugin/citations/decision-detail.js": "./dist/_app_/components/citaten-plugin/citations/decision-detail.js",
|
|
91
|
+
"./components/citaten-plugin/citations/decision-list.js": "./dist/_app_/components/citaten-plugin/citations/decision-list.js",
|
|
92
|
+
"./components/citaten-plugin/citations/decision-preview.js": "./dist/_app_/components/citaten-plugin/citations/decision-preview.js",
|
|
93
|
+
"./components/citaten-plugin/citations/search-modal.js": "./dist/_app_/components/citaten-plugin/citations/search-modal.js",
|
|
94
|
+
"./components/citaten-plugin/helpers/alert-load-error.js": "./dist/_app_/components/citaten-plugin/helpers/alert-load-error.js",
|
|
95
|
+
"./components/citaten-plugin/helpers/alert-no-items.js": "./dist/_app_/components/citaten-plugin/helpers/alert-no-items.js",
|
|
96
|
+
"./components/import-snippet-plugin/card.js": "./dist/_app_/components/import-snippet-plugin/card.js",
|
|
97
|
+
"./components/rdfa-date-plugin/rdfa-date-plugin-card.js": "./dist/_app_/components/rdfa-date-plugin/rdfa-date-plugin-card.js",
|
|
98
|
+
"./components/rdfa-date-plugin/rdfa-date-plugin-insert.js": "./dist/_app_/components/rdfa-date-plugin/rdfa-date-plugin-insert.js",
|
|
99
|
+
"./components/rdfa-date-plugin/rdfa-date-time-picker.js": "./dist/_app_/components/rdfa-date-plugin/rdfa-date-time-picker.js",
|
|
100
|
+
"./components/standard-template-plugin/template-card.js": "./dist/_app_/components/standard-template-plugin/template-card.js",
|
|
101
|
+
"./components/standard-template-plugin/template-provider.js": "./dist/_app_/components/standard-template-plugin/template-provider.js",
|
|
102
|
+
"./components/table-of-contents-plugin/card.js": "./dist/_app_/components/table-of-contents-plugin/card.js",
|
|
103
|
+
"./components/table-of-contents-plugin/inline-components/outline.js": "./dist/_app_/components/table-of-contents-plugin/inline-components/outline.js",
|
|
104
|
+
"./components/table-of-contents-plugin/inline-components/table-of-contents.js": "./dist/_app_/components/table-of-contents-plugin/inline-components/table-of-contents.js",
|
|
105
|
+
"./initializers/plugin-initializer.js": "./dist/_app_/initializers/plugin-initializer.js",
|
|
106
|
+
"./models/template.js": "./dist/_app_/models/template.js",
|
|
107
|
+
"./serializers/application.js": "./dist/_app_/serializers/application.js",
|
|
108
|
+
"./services/import-rdfa-snippet.js": "./dist/_app_/services/import-rdfa-snippet.js",
|
|
109
|
+
"./services/standard-template-plugin.js": "./dist/_app_/services/standard-template-plugin.js"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"exports": {
|
|
113
|
+
".": "./dist/index.js",
|
|
114
|
+
"./*": "./dist/*.js",
|
|
115
|
+
"./addon-main.js": "./addon-main.js"
|
|
116
|
+
}
|
|
117
|
+
}
|