@lblod/ember-rdfa-editor-lblod-plugins 8.4.0 → 8.4.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,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [8.4.1] - 2023-07-06
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fixed compatibility issue with ember 3.28 in number variable component
|
|
14
|
+
|
|
10
15
|
## [8.4.0] - 2023-07-06
|
|
11
16
|
|
|
12
17
|
### Changed
|
|
@@ -548,7 +553,7 @@ add onclick handler to pencil icon in variable plugin
|
|
|
548
553
|
|
|
549
554
|
# Changelog
|
|
550
555
|
|
|
551
|
-
[unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.4.
|
|
556
|
+
[unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.4.1...HEAD
|
|
552
557
|
[8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.0.0...v8.0.1
|
|
553
558
|
[8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.1.0...v8.0.0
|
|
554
559
|
[7.1.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.0.0...v7.1.0
|
|
@@ -564,6 +569,7 @@ add onclick handler to pencil icon in variable plugin
|
|
|
564
569
|
[3.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.2...v3.0.0
|
|
565
570
|
[2.1.2]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.1...v2.1.2
|
|
566
571
|
[2.1.1]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.0...v2.1.1
|
|
572
|
+
[8.4.1]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.4.0...v8.4.1
|
|
567
573
|
[8.4.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.3.0...v8.4.0
|
|
568
574
|
[8.3.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.2.2...v8.3.0
|
|
569
575
|
[8.2.2]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.2.1...v8.2.2
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
} from '@lblod/ember-rdfa-editor';
|
|
10
10
|
import { action } from '@ember/object';
|
|
11
11
|
import { tracked } from '@glimmer/tracking';
|
|
12
|
-
import { service } from '@ember/service';
|
|
12
|
+
import { inject as service } from '@ember/service';
|
|
13
13
|
import intlService from 'ember-intl/services/intl';
|
|
14
14
|
import { localCopy } from 'tracked-toolbox';
|
|
15
15
|
import {
|