@lblod/ember-rdfa-editor-lblod-plugins 8.0.0 → 8.0.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/CHANGELOG.md CHANGED
@@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [8.0.1] - 2023-06-15
11
+ ### Fixed
12
+ - Change problematic type in citation that made it to break with new ember
13
+
10
14
 
11
- ## [8.0.0] - 2023-06-13
15
+ ## [8.0.0] - 2023-06-15
12
16
  ### Fixed
13
17
  - Bump `@lblod/ember-rdfa-editor` package to fix annotation not present for some structures
14
18
  - Change variable label to be stored in the data-attributes and solve bug with date not getting a default label
@@ -469,7 +473,8 @@ add onclick handler to pencil icon in variable plugin
469
473
 
470
474
  # Changelog
471
475
 
472
- [unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.0.0...HEAD
476
+ [unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.0.1...HEAD
477
+ [8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.0.0...v8.0.1
473
478
  [8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.1.0...v8.0.0
474
479
  [7.1.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.0.0...v7.1.0
475
480
  [7.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v6.1.0...v7.0.0
@@ -5,8 +5,7 @@ import {
5
5
  Option,
6
6
  optionMapOr,
7
7
  } from '@lblod/ember-rdfa-editor-lblod-plugins/utils/option';
8
- import Ember from 'ember';
9
- import SafeString = Ember.Handlebars.SafeString;
8
+ type SafeString = ReturnType<typeof htmlSafe>;
10
9
 
11
10
  interface DecisionArgs {
12
11
  uri: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lblod/ember-rdfa-editor-lblod-plugins",
3
- "version": "8.0.0",
3
+ "version": "8.0.1",
4
4
  "description": "Ember addon providing lblod specific plugins for the ember-rdfa-editor",
5
5
  "keywords": [
6
6
  "ember-addon",
@@ -1,6 +1,6 @@
1
+ import { htmlSafe } from '@ember/template';
1
2
  import { Option } from '@lblod/ember-rdfa-editor-lblod-plugins/utils/option';
2
- import Ember from 'ember';
3
- import SafeString = Ember.Handlebars.SafeString;
3
+ type SafeString = ReturnType<typeof htmlSafe>;
4
4
  interface DecisionArgs {
5
5
  uri: string;
6
6
  legislationTypeUri: Option<string>;