@lblod/ember-rdfa-editor-lblod-plugins 8.2.1 → 8.2.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,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [8.2.2] - 2023-06-28
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fix code filtering of roadsign regulation plugin
|
|
14
|
+
|
|
10
15
|
## [8.2.1] - 2023-06-28
|
|
11
16
|
### Fixed
|
|
12
17
|
- GN-4200: Fixed bug with TOC scroll in GN and RB
|
|
@@ -515,7 +520,7 @@ add onclick handler to pencil icon in variable plugin
|
|
|
515
520
|
|
|
516
521
|
# Changelog
|
|
517
522
|
|
|
518
|
-
[unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.2.
|
|
523
|
+
[unreleased]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.2.2...HEAD
|
|
519
524
|
[8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.0.0...v8.0.1
|
|
520
525
|
[8.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.1.0...v8.0.0
|
|
521
526
|
[7.1.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v7.0.0...v7.1.0
|
|
@@ -531,6 +536,7 @@ add onclick handler to pencil icon in variable plugin
|
|
|
531
536
|
[3.0.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.2...v3.0.0
|
|
532
537
|
[2.1.2]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.1...v2.1.2
|
|
533
538
|
[2.1.1]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v2.1.0...v2.1.1
|
|
539
|
+
[8.2.2]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.2.1...v8.2.2
|
|
534
540
|
[8.2.1]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.2.0...v8.2.1
|
|
535
541
|
[8.2.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.1.0...v8.2.0
|
|
536
542
|
[8.1.0]: https://github.com/lblod/ember-rdfa-editor-lblod-plugins/compare/v8.0.1...v8.1.0
|
|
@@ -156,11 +156,17 @@ export default class RoadsignRegulationCard extends Component<Args> {
|
|
|
156
156
|
closeModal() {
|
|
157
157
|
this.args.closeModal();
|
|
158
158
|
}
|
|
159
|
+
|
|
159
160
|
@action
|
|
160
161
|
searchCodes(term: string) {
|
|
161
162
|
const category = this.categorySelected?.value;
|
|
162
163
|
const type = this.typeSelected?.value;
|
|
163
|
-
return this.roadsignRegistry.searchCode.perform(
|
|
164
|
+
return this.roadsignRegistry.searchCode.perform(
|
|
165
|
+
this.endpoint,
|
|
166
|
+
term,
|
|
167
|
+
category,
|
|
168
|
+
type
|
|
169
|
+
);
|
|
164
170
|
}
|
|
165
171
|
|
|
166
172
|
async fetchCodeCombinations() {
|