@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.
@@ -0,0 +1,5 @@
1
+ ---
2
+ '@lblod/ember-rdfa-editor-lblod-plugins': major
3
+ ---
4
+
5
+ BREAKING CHANGE: Adapt roadsign plugin to the new MOW model
@@ -0,0 +1,5 @@
1
+ ---
2
+ '@lblod/ember-rdfa-editor-lblod-plugins': patch
3
+ ---
4
+
5
+ IRGN: increase font size of measure preview"
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 skin='secondary' class='au-u-margin-none'>
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.0",
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';
@@ -1,3 +0,0 @@
1
- export default class ApplicationSerializer {
2
- serializeAttribute(snapshot: any, json: any, key: any, attributes: any): void;
3
- }