@lblod/ember-rdfa-editor-lblod-plugins 31.1.0 → 31.1.1-dev.ea733c98b2e2f1f9efbf2b9f9eb0e0e9ac1f3de9
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/.changeset/metal-wolves-jog.md +5 -0
- package/.changeset/smart-sheep-hope.md +5 -0
- package/CHANGELOG.md +6 -0
- package/addon/components/roadsign-regulation-plugin/roadsigns-table.gts +5 -1
- package/addon/plugins/roadsign-regulation-plugin/queries/mobility-measure-concept.ts +1 -1
- package/addon/plugins/roadsign-regulation-plugin/queries/mobility-template.ts +1 -1
- package/package.json +1 -1
- package/addon/serializers/application.js +0 -8
- package/app/serializers/application.js +0 -1
- package/declarations/addon/serializers/application.d.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @lblod/ember-rdfa-editor-lblod-plugins
|
|
2
2
|
|
|
3
|
+
## 31.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`9f2a193`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/9f2a1930fd1d9471f446852f9bd2a5bcf4c75cd8) Thanks [@elpoelma](https://github.com/elpoelma)! - Remove obsolete `application` serializer
|
|
8
|
+
|
|
3
9
|
## 31.1.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
|
@@ -106,7 +106,11 @@ export default class RoadSignsTable extends Component<Signature> {
|
|
|
106
106
|
</div>
|
|
107
107
|
</td>
|
|
108
108
|
<td>
|
|
109
|
-
<AuHelpText
|
|
109
|
+
<AuHelpText
|
|
110
|
+
@size='large'
|
|
111
|
+
skin='secondary'
|
|
112
|
+
class='au-u-margin-none'
|
|
113
|
+
>
|
|
110
114
|
<MeasurePreview
|
|
111
115
|
@concept={{measureConcept}}
|
|
112
116
|
@limitText={{true}}
|
|
@@ -95,7 +95,7 @@ async function _queryMobilityMeasures<Count extends boolean>(
|
|
|
95
95
|
a mobiliteit:Mobiliteitmaatregelconcept;
|
|
96
96
|
skos:prefLabel ?label;
|
|
97
97
|
ext:zonality ?zonality;
|
|
98
|
-
mobiliteit:template ?templateUri.
|
|
98
|
+
mobiliteit:Mobiliteitsmaatregelconcept.template ?templateUri.
|
|
99
99
|
|
|
100
100
|
?templateUri ext:preview ?preview.
|
|
101
101
|
|
|
@@ -39,7 +39,7 @@ export async function queryMobilityTemplates(
|
|
|
39
39
|
}
|
|
40
40
|
${
|
|
41
41
|
measureConceptUri
|
|
42
|
-
? `${sparqlEscapeUri(measureConceptUri)} mobiliteit:template ?uri`
|
|
42
|
+
? `${sparqlEscapeUri(measureConceptUri)} mobiliteit:Mobiliteitsmaatregelconcept.template ?uri`
|
|
43
43
|
: ''
|
|
44
44
|
}
|
|
45
45
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lblod/ember-rdfa-editor-lblod-plugins",
|
|
3
|
-
"version": "31.1.
|
|
3
|
+
"version": "31.1.1-dev.ea733c98b2e2f1f9efbf2b9f9eb0e0e9ac1f3de9",
|
|
4
4
|
"description": "Ember addon providing lblod specific plugins for the ember-rdfa-editor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import JSONAPISerializer from '@ember-data/serializer/json-api';
|
|
2
|
-
|
|
3
|
-
export default class ApplicationSerializer extends JSONAPISerializer {
|
|
4
|
-
serializeAttribute(snapshot, json, key, attributes) {
|
|
5
|
-
if (key !== 'uri')
|
|
6
|
-
super.serializeAttribute(snapshot, json, key, attributes);
|
|
7
|
-
}
|
|
8
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from '@lblod/ember-rdfa-editor-lblod-plugins/serializers/application';
|