@lblod/ember-rdfa-editor-lblod-plugins 8.4.0 → 8.4.2
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,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [8.4.2] - 2023-08-02
|
|
11
|
+
### Fixed
|
|
12
|
+
- GN-4446: fix email-address formatting in error components
|
|
13
|
+
|
|
14
|
+
## [8.4.1] - 2023-07-06
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- Fixed compatibility issue with ember 3.28 in number variable component
|
|
18
|
+
|
|
10
19
|
## [8.4.0] - 2023-07-06
|
|
11
20
|
|
|
12
21
|
### Changed
|
|
@@ -548,7 +557,7 @@ add onclick handler to pencil icon in variable plugin
|
|
|
548
557
|
|
|
549
558
|
# Changelog
|
|
550
559
|
|
|
551
|
-
[unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.4.
|
|
560
|
+
[unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.4.2...HEAD
|
|
552
561
|
[8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.0.0...v8.0.1
|
|
553
562
|
[8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.1.0...v8.0.0
|
|
554
563
|
[7.1.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.0.0...v7.1.0
|
|
@@ -564,6 +573,8 @@ add onclick handler to pencil icon in variable plugin
|
|
|
564
573
|
[3.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.2...v3.0.0
|
|
565
574
|
[2.1.2]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.1...v2.1.2
|
|
566
575
|
[2.1.1]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.0...v2.1.1
|
|
576
|
+
[8.4.2]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.4.1...v8.4.2
|
|
577
|
+
[8.4.1]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.4.0...v8.4.1
|
|
567
578
|
[8.4.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.3.0...v8.4.0
|
|
568
579
|
[8.3.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.2.2...v8.3.0
|
|
569
580
|
[8.2.2]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.2.1...v8.2.2
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
<p>
|
|
11
11
|
{{t "citaten-plugin.alert.error-outro"}}
|
|
12
12
|
<AuLinkExternal
|
|
13
|
-
href="mailto:
|
|
13
|
+
href="mailto:gelinktnotuleren@vlaanderen.be"
|
|
14
14
|
@icon="mail"
|
|
15
15
|
@iconAlignment="left">
|
|
16
16
|
{{!-- template-lint-disable no-bare-strings --}}
|
|
17
|
-
|
|
17
|
+
gelinktnotuleren@vlaanderen.be
|
|
18
18
|
</AuLinkExternal>.
|
|
19
19
|
</p>
|
|
20
20
|
</AuAlert>
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
<p>
|
|
12
12
|
{{t 'snippet-plugin.modal.alert.error-outro'}}
|
|
13
13
|
<AuLinkExternal
|
|
14
|
-
href='mailto:
|
|
14
|
+
href='mailto:gelinktnotuleren@vlaanderen.be'
|
|
15
15
|
@icon='mail'
|
|
16
16
|
@iconAlignment='left'
|
|
17
17
|
>
|
|
18
18
|
{{! template-lint-disable no-bare-strings }}
|
|
19
|
-
|
|
19
|
+
gelinktnotuleren@vlaanderen.be
|
|
20
20
|
</AuLinkExternal>.
|
|
21
21
|
</p>
|
|
22
22
|
</AuAlert>
|
|
@@ -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 {
|