@lblod/ember-rdfa-editor-lblod-plugins 11.3.0 → 12.1.0

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.
Files changed (52) hide show
  1. package/.changeset/README.md +8 -0
  2. package/.changeset/config.json +11 -0
  3. package/.release-it.json +5 -8
  4. package/.woodpecker/.changeset.yml +8 -0
  5. package/CHANGELOG.md +288 -111
  6. package/README.md +61 -8
  7. package/addon/components/citation-plugin/citation-card.ts +1 -1
  8. package/addon/components/citation-plugin/citations/search-modal.hbs +22 -0
  9. package/addon/components/citation-plugin/citations/search-modal.ts +16 -1
  10. package/addon/components/rdfa-date-plugin/date.hbs +1 -1
  11. package/addon/components/table-of-contents-plugin/ember-nodes/table-of-contents.ts +1 -1
  12. package/addon/components/variable-plugin/address/edit.ts +2 -2
  13. package/addon/components/variable-plugin/address/insert-variable.hbs +9 -0
  14. package/addon/components/variable-plugin/address/insert-variable.ts +27 -0
  15. package/addon/components/variable-plugin/address/insert.hbs +2 -1
  16. package/addon/components/variable-plugin/address/insert.ts +10 -20
  17. package/addon/components/variable-plugin/address/nodeview.hbs +1 -1
  18. package/addon/components/variable-plugin/address/utils.ts +26 -0
  19. package/addon/components/variable-plugin/codelist/insert.ts +1 -1
  20. package/addon/components/variable-plugin/insert-variable-card.ts +1 -1
  21. package/addon/components/variable-plugin/location/insert.ts +1 -1
  22. package/addon/components/variable-plugin/location/nodeview.hbs +8 -0
  23. package/addon/components/variable-plugin/location/nodeview.ts +15 -0
  24. package/addon/components/variable-plugin/number/nodeview.hbs +7 -8
  25. package/addon/components/variable-plugin/number/nodeview.ts +1 -58
  26. package/addon/components/variable-plugin/variable/nodeview.hbs +1 -0
  27. package/addon/helpers/capitalize.ts +6 -0
  28. package/addon/plugins/citation-plugin/index.ts +1 -0
  29. package/addon/plugins/citation-plugin/utils/legal-documents.ts +2 -0
  30. package/addon/plugins/citation-plugin/utils/public-decisions.ts +62 -26
  31. package/addon/plugins/citation-plugin/utils/types.ts +1 -1
  32. package/addon/plugins/variable-plugin/variables/location.ts +1 -1
  33. package/addon/utils/strings.ts +6 -0
  34. package/app/components/variable-plugin/address/insert-variable.js +1 -0
  35. package/app/components/variable-plugin/location/nodeview.js +1 -0
  36. package/app/helpers/capitalize.js +4 -0
  37. package/app/styles/variable-plugin.scss +6 -2
  38. package/components/citation-plugin/citations/search-modal.d.ts +3 -0
  39. package/components/variable-plugin/address/insert-variable.d.ts +12 -0
  40. package/components/variable-plugin/address/insert.d.ts +1 -1
  41. package/components/variable-plugin/address/utils.d.ts +2 -0
  42. package/components/variable-plugin/location/nodeview.d.ts +12 -0
  43. package/components/variable-plugin/number/nodeview.d.ts +0 -7
  44. package/helpers/capitalize.d.ts +8 -0
  45. package/index.js +3 -0
  46. package/package.json +16 -13
  47. package/plugins/citation-plugin/index.d.ts +1 -0
  48. package/plugins/citation-plugin/utils/legal-documents.d.ts +1 -0
  49. package/translations/en-US.yaml +1 -0
  50. package/translations/nl-BE.yaml +1 -0
  51. package/utils/strings.d.ts +1 -0
  52. package/.woodpecker/.changelog.yml +0 -9
package/CHANGELOG.md CHANGED
@@ -1,38 +1,74 @@
1
- # Changelog
1
+ # @lblod/ember-rdfa-editor-lblod-plugins
2
+
3
+ ## 12.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#286](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/286) [`955535b`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/955535b4d99d729b40f0e01bf1c634042894bf60) Thanks [@dkozickis](https://github.com/dkozickis)! - GN-4266: Referring to published decisions - filter by government name
8
+
9
+ - [#299](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/299) [`3732e50`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/3732e5041df3d3e994df34de9dd436f59f7bade0) Thanks [@x-m-el](https://github.com/x-m-el)! - Update readme documentation for RDFa date and Table of Contents plugin to include explanation about their configurations
10
+
11
+ - [#290](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/290) [`8c1ad72`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/8c1ad729b0eb1a159637d3ed9f3b49a02a659a96) Thanks [@elpoelma](https://github.com/elpoelma)! - Add support for address variables inside location variables
12
+
13
+ - [#296](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/296) [`bcf7a2d`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/bcf7a2d7314dfd1156ca1e310d5c15d1d2c2fbfe) Thanks [@abeforgit](https://github.com/abeforgit)! - bump ember and ember data to 4.12 for development, and add correct peerdep specification for consumers
14
+
15
+ - [#298](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/298) [`2908aa3`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/2908aa355b6dadc694ee90fd93ad2e79faa22257) Thanks [@x-m-el](https://github.com/x-m-el)! - Added a second address insert `variable-plugin/address/insert-variable`. This replaces the `insert` from before when used inside the `insert-variable-card` dropdown.
16
+
17
+ - same UI as other variables
18
+ - allows using a custom label
19
+
20
+ ## 12.0.0
21
+
22
+ ### Major Changes
23
+
24
+ - [#289](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/289) [`d1e2af1`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/d1e2af14bab0eb4ed6e1d7d62a5c55e396c707ce) Thanks [@elpoelma](https://github.com/elpoelma)! - refactor number-variable: component now uses modifiers for keyboard navigation (arrow keys and enter)
25
+ Breaking: This needs at least ember-rdfa-editor 5.3.0 to work.
2
26
 
3
- All notable changes to this project will be documented in this file.
27
+ ### Patch Changes
4
28
 
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
29
+ - fixed compat with 3.28 by importing inject as service
7
30
 
8
- ## [Unreleased]
31
+ - got rid of all uses of ember/string
32
+
33
+ - [#289](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/289) [`d1e2af1`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/d1e2af14bab0eb4ed6e1d7d62a5c55e396c707ce) Thanks [@elpoelma](https://github.com/elpoelma)! - switch to changesets for changelog management
34
+
35
+ - [#289](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/289) [`d1e2af1`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/d1e2af14bab0eb4ed6e1d7d62a5c55e396c707ce) Thanks [@elpoelma](https://github.com/elpoelma)! - Bumps `@lblod/ember-rdfa-editor` from 5.2.0 to 5.3.0
9
36
 
10
37
  ## [11.3.0] - 2023-09-06
11
38
 
12
39
  ### Changed
13
- - CI: move changelog check to seperate CI pipeline
40
+
41
+ - CI: move changelog check to separate CI pipeline
14
42
 
15
43
  ### Added
44
+
16
45
  - GN-4266: Referring to published decisions
46
+
17
47
  ## [11.2.0] - 2023-09-04
48
+
18
49
  ### Added
19
- - ember-modifier is now explicitely a peerDependency
20
- - GN4470: ability to specifly single/multi-select per codelist instance
50
+
51
+ - ember-modifier is now explicitly a peerDependency
52
+ - GN4470: ability to specify single/multi-select per codelist instance
53
+
21
54
  ## [11.1.0] - 2023-08-29
22
55
 
23
56
  ### Fixed
57
+
24
58
  - GN-4370: Do not allow header nodes to be split by table
25
59
  - Grey out Generic RDFA button in embedded view
26
60
  - GN-4425: Smarter content wrapping for structure nodes
27
61
 
28
62
  ### Changed
29
- - GN-4442: template comments can move up and down over the *whole* document
30
- - GN-4322: Add ORDER to snippet list query
63
+
64
+ - GN-4442: template comments can move up and down over the _whole_ document
65
+ - GN-4322: Add ORDER to snippet list query
31
66
  - Bumps `@lblod/ember-rdfa-editor` from 5.1.0 to 5.2.0
32
67
 
33
68
  ## [11.0.0] - 2023-08-22
34
69
 
35
70
  ### Added
71
+
36
72
  - GN-4261: addition of an address variable
37
73
  - GN-4262: addition of WGS84 coordinates to address variables
38
74
  - Introduce internationalization in the table of contents node based on the document language.
@@ -41,6 +77,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
41
77
  - Check validity on number minimum/maximum inputs
42
78
 
43
79
  ### Changed
80
+
44
81
  - GN-4263: update address variable edit UI/UX according to updated design
45
82
  - Allow the address municipality-edit field to be prefilled
46
83
  - Use one-way-binding in variable label input
@@ -48,26 +85,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
48
85
  - Manage snippet list connection with template
49
86
 
50
87
  ### Fixed
88
+
51
89
  - GN-4404: ensure number-variable placeholders are consistent
52
90
 
53
91
  ### Breaking
92
+
54
93
  - Removal of old address-plugin
55
94
  - Removal of the `entries` attribute from the table-of-contents prosemirror node. The node can now generate it's own outline in its `serialize` method.
95
+
56
96
  ### Dependencies
97
+
57
98
  - Bumps `@codemirror/view` from 6.12.0 to 6.16.0
58
99
  - Bumps `@lblod/ember-rdfa-editor` from 4.2.0 to 5.1.0
59
100
 
60
101
  ## [10.0.0] - 2023-08-08
102
+
61
103
  ### Changed
104
+
62
105
  - remove unused code from template comment component
63
106
  - remove allowedTypes from indentation menu
64
107
  - allow normal type of paragraphs (=can have italic mark) in template comments
108
+
65
109
  ### Dependencies
110
+
66
111
  - Bumps `@embroider/test-setup` from 1.8.3 to 3.0.1
67
112
  - Bumps `@types/ember__application` from 4.0.4 to 4.0.6
68
113
  - Bumps `webpack` from 5.76.0 to 5.88.2
69
114
  - Bumps `@types/ember__component` from 4.0.11 to 4.0.14
115
+
70
116
  ### Fixed
117
+
71
118
  - Allow `block*` content in `article_paragraph`
72
119
  - Move buttons for template comments are blue
73
120
  - problems with lists in template comments
@@ -76,19 +123,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
76
123
  - Enable no-bare-strings rule and update translations where needed
77
124
 
78
125
  ### Added
126
+
79
127
  - Addition of `variable` group to each variable node-spec.
80
128
 
81
129
  ### Breaking
130
+
82
131
  #### Major rework of variable plugin
132
+
83
133
  - Removal of generic `variable` node-spec. This node-spec is now replaced by domain-specific `text_variable`, `number`, `date`, `location` and `codelist` node-specs. These new node-specs each have their corresponding node-view.
84
134
  - Rework of the `insert-variable-card` component: this component is only a wrapper which lets you select a variable type. It then shows the insert component corresponding to that variable type. You can configure the `insert-variable-card` with a list of variable types and their corresponding insert component. Each variable type (text, number, date, codelist and location) now has a seperate insert component defined.
85
135
  - Removal of the `template-variable-card` component. This component has been replaced by two edit components for both the `location` and `codelist` variables.
86
136
  - Removal of `DEFAULT_VARIABLE_TYPES`. The insertion of the variable types are now handled by the insert components of the different variable types.
87
137
 
88
138
  ## [9.1.1] - 2023-08-02
139
+
89
140
  ### Fixed
141
+
90
142
  - GN-4446: fix email-address formatting in error components
143
+
91
144
  ### Dependencies
145
+
92
146
  - Bumps `@types/uuid` from 9.0.0 to 9.0.2
93
147
  - Bumps `@types/rdf-validate-shacl` from 0.4.0 to 0.4.2
94
148
  - Bumps `@types/ember__polyfills` from 4.0.1 to 4.0.2
@@ -96,23 +150,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
96
150
  ## [8.4.3] - 2023-08-07
97
151
 
98
152
  ### Fixed
153
+
99
154
  - GN-4451: fix roadsign plugin no longer showing rendered templates in modal
100
155
 
101
156
  ## [8.4.2] - 2023-08-02
157
+
102
158
  ### Fixed
159
+
103
160
  - GN-4446: fix email-address formatting in error components
104
161
 
105
162
  ## [9.1.0] - 2023-07-29
106
163
 
107
164
  ### Added
165
+
108
166
  - template-comments plugin
109
167
  - A plugin to insert and edit template comments (as a "block")
110
168
  - can be inserted anywhere
111
169
  - have a specific rdfa-attribute so they can be removed at publishing
112
170
 
113
-
114
171
  ## [9.0.2] - 2023-07-28
172
+
115
173
  ### Dependencies
174
+
116
175
  - Bumps `release-it` from 15.5.0 to 15.11.0
117
176
  - Bumps `@codemirror/lang-html` from 6.4.3 to 6.4.5
118
177
  - Bumps `@types/ember-data__model` from 4.0.0 to 4.0.1
@@ -120,27 +179,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
120
179
  - Bumps `@types/ember__runloop` from 4.0.2 to 4.0.3
121
180
 
122
181
  ### Fixed
182
+
123
183
  - Snippet insertion accounts for wrapping document
124
184
 
125
185
  ## [9.0.1] - 2023-07-24
126
186
 
127
187
  ### Changed
188
+
128
189
  - Update docker build to serve static files
129
190
 
130
191
  ## [9.0.0] - 2023-07-24
131
192
 
132
193
  ### Added
194
+
133
195
  - Addition of documentation on the article-structure plugin
134
196
 
135
197
  ### Fixed
198
+
136
199
  - When a number is too big to be converted to words, display it numerically.
137
200
  - Can only insert a number variable with a minimum that is smaller than its maximum
138
201
  - Fetch public snippets
202
+
139
203
  ### Changed
204
+
140
205
  - Make `errorMessage` of number input modal reactive to attribute changes
141
206
  - Number variable input box has a cleaner UI by adjusting the top margins.
142
207
  - Demo uses `initialize` and `docWithConfig` introduced in `ember-rdfa-editor@4.0.0`
208
+
143
209
  ### Dependencies
210
+
144
211
  - Bumps `@lblod/ember-rdfa-editor` from 3.10.0 to 4.0.0
145
212
  - Bumps `@typescript-eslint/parser` from 5.60.0 to 5.61.0
146
213
  - Bumps `@tsconfig/ember` from 1.0.1 to 3.0.0
@@ -155,10 +222,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
155
222
  - Bumps `word-wrap` from 1.2.3 to 1.2.4
156
223
  - Pin `ember-auto-import` to 2.5.x
157
224
 
158
-
159
225
  ## [8.4.1] - 2023-07-06
160
226
 
161
227
  ### Fixed
228
+
162
229
  - Fixed compatibility issue with ember 3.28 in number variable component
163
230
 
164
231
  ## [8.4.0] - 2023-07-06
@@ -169,18 +236,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
169
236
  - Addition of document-title plugin
170
237
 
171
238
  ## [8.3.0] - 2023-07-06
239
+
172
240
  ### Added
241
+
173
242
  - Insert the snippet
174
243
  - Addition of a precompile step to woodpecker PR check
175
244
 
176
245
  ### Fixed
246
+
177
247
  - fix type error due to bad tsconfig
248
+
178
249
  ### Changed
250
+
179
251
  - Woodpecker: do not run changelog-check when PR contains `dependabot` label
180
252
  - Made the number variable also show placeholders
181
253
  - Extract SPARQL query tools
182
254
 
183
255
  ### Dependencies
256
+
184
257
  - Bumps `@types/rdfjs__data-model` from 2.0.1 to 2.0.4
185
258
  - Bumps `eslint-plugin-ember` from 11.4.6 to 11.9.0
186
259
  - Bumps `@typescript-eslint/eslint-plugin` from 5.45.0 to 5.60.1
@@ -191,19 +264,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
191
264
  ## [8.2.2] - 2023-06-28
192
265
 
193
266
  ### Fixed
267
+
194
268
  - Fix code filtering of roadsign regulation plugin
195
269
 
196
270
  ## [8.2.1] - 2023-06-28
271
+
197
272
  ### Fixed
198
- - GN-4200: Fixed bug with TOC scroll in GN and RB
273
+
274
+ - GN-4200: Fixed bug with TOC scroll in GN and RB
275
+
199
276
  ### Dependencies
200
- - Bump `date-fns` from 2.29.3 to 2.30.0
277
+
278
+ - Bump `date-fns` from 2.29.3 to 2.30.0
201
279
 
202
280
  ## [8.2.0] - 2023-06-26
281
+
203
282
  ### Added
283
+
204
284
  - Add a toggle to show the number as words in a number variable
205
285
 
206
286
  ### Dependencies
287
+
207
288
  - Bumps `sass` from 1.56.1 to 1.63.6
208
289
  - Bumps `@types/ember` from 4.0.2 to 4.0.4
209
290
  - Bumps `@types/ember-data__store` from 4.0.2 to 4.0.3
@@ -211,11 +292,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
211
292
  - Bumps `@types/rdfjs__parser-n3` from 1.1.5 to 2.0.1
212
293
 
213
294
  ## [8.1.0] - 2023-06-22
295
+
214
296
  ### Added
297
+
215
298
  - Numbers inputted into a number variable are validated on defined min/max and if it is a number
216
299
  - Add toggle for the user to show number variable as words
217
300
 
218
301
  ### Fixed
302
+
219
303
  - Fixed woodpecker builds crashing on syntax errors
220
304
  - Use dutch language in static version of table of contents
221
305
  - fix typo "Vlaams Codex" → "Vlaamse Codex"
@@ -223,12 +307,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
223
307
  - correct erroneous arguments to AuAlert
224
308
 
225
309
  ### Changed
310
+
226
311
  - remove the unnecessary type and add the html-safe tag at the rendering site
227
312
 
228
313
  ### Removed
314
+
229
315
  - remove ensure-changelog github action
230
316
 
231
317
  ### Dependencies
318
+
232
319
  - Bumps `@types/rdfjs__dataset` from 2.0.0 to 2.0.2
233
320
  - Bumps `@types/ember__array` from 4.0.3 to 4.0.4
234
321
  - Bumps `@typescript-eslint/parser` from 5.45.0 to 5.60.0
@@ -237,25 +324,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
237
324
  - Bumps `prosemirror-dev-tools` from 3.1.0 to 4.0.0
238
325
 
239
326
  ## [8.0.1] - 2023-06-15
327
+
240
328
  ### Fixed
241
- - Change problematic type in citation that made it to break with new ember
242
329
 
330
+ - Change problematic type in citation that made it to break with new ember
243
331
 
244
332
  ## [8.0.0] - 2023-06-15
333
+
245
334
  ### Fixed
335
+
246
336
  - Bump `@lblod/ember-rdfa-editor` package to fix annotation not present for some structures
247
337
  - Change variable label to be stored in the data-attributes and solve bug with date not getting a default label
248
338
 
249
339
  ### Added
340
+
250
341
  - navigation links in TOC of readme
251
342
  - support for option labels in Variable-plugin
252
343
  - Generic rdfa variables input plugin - HTML only input
253
344
  - Number variable - support min/max
254
345
 
255
346
  ### Breaking
347
+
256
348
  - Add label to variables
257
-
349
+
258
350
  ### Dependencies
351
+
259
352
  - Bumps `webpack` from 5.75.0 to 5.76.0
260
353
  - Move `tracked-toolbox` to dependencies
261
354
  - Bumps `prettier` from 2.8.0 to 2.8.8
@@ -268,14 +361,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
268
361
  ## [7.1.0] - 2023-05-18
269
362
 
270
363
  ### Added
364
+
271
365
  - validate motivering and article section
272
366
 
273
367
  ## [7.0.0] - 2023-05-17
368
+
274
369
  ### Added
370
+
275
371
  - add docker build for easy demo environments
372
+
276
373
  ### Change
374
+
277
375
  - BREAKING: Endpoint config for `CitationPlugin`
376
+
278
377
  ### Fixed
378
+
279
379
  - Remove structure doesn't always work - disable the "Remove <structure>" button correctly
280
380
  - Fix initialization of default date properties
281
381
 
@@ -284,21 +384,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
284
384
  ## [6.1.0] - 2023-05-11
285
385
 
286
386
  ### Added
387
+
287
388
  - make static TOC look the same in dynamic content
389
+
288
390
  ## [6.0.0] - 2023-05-05
391
+
289
392
  ### Changed
393
+
290
394
  - Use plugin configuration instead of ember environment in all the plugins
291
395
  - Insert address plugin
292
396
 
293
397
  ### Added
398
+
294
399
  - validation plugin
295
400
  - Enable Firefox cursor fix for variables
296
-
401
+
297
402
  ### Deprecated
403
+
298
404
  - the decision-plugin card component is now deprecated in favor of the host app's choice of insert button
299
405
 
300
406
  ## [5.0.1] - 2023-04-07
407
+
301
408
  ### Fixed
409
+
302
410
  - fix deprecated use of modifier without specifying eagerness
303
411
  - add missing translations
304
412
  - make application route in dummy app a javascript file to avoid [issues](https://github.com/typed-ember/ember-cli-typescript/issues/780)
@@ -306,38 +414,46 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
306
414
  ## [5.0.0] - 2023-04-07
307
415
 
308
416
  ### Added
417
+
309
418
  - add a hover-tooltip utility component
310
419
  - docs: add tooltips to the remove structure buttons
311
420
 
312
421
  ### Changed
422
+
313
423
  - Change date labels based on designer feedback
314
424
  - split out structure removal card into two buttons
315
425
 
316
426
  ### Fixed
427
+
317
428
  - BREAKING: Rename decision title node from title to besluit_title to avoid conflicts
318
429
  - properly initialize ember-intl
319
430
 
320
431
  ## [4.0.2] - 2023-04-04
321
432
 
322
433
  ### Fixed
434
+
323
435
  - Prevent decision nodes regenerating when (de)serializing
324
436
  - Ensure editor is focused after inserting a citation
325
437
  - fix(citation): make plugin trigger correctly when `doc` is passed as an allowed nodeType
326
438
 
327
439
  ### Added
440
+
328
441
  - docs: add examples on how to enable the citation plugin for the entire document
329
-
442
+
330
443
  ## [4.0.1] - 2023-03-27
331
444
 
332
445
  ### Dependencies
446
+
333
447
  - bump `ember-rdfa-editor` to v3.4.1
334
448
 
335
449
  ## [4.0.0] - 2023-03-27
336
450
 
337
451
  ### Fixed
452
+
338
453
  - Ensure citation suggestions are only updated when search-text or document-legislation-type updates.
339
454
 
340
455
  ### Changed
456
+
341
457
  - Feature: make citation use the new link node
342
458
  - BREAKING: citation mark has been removed
343
459
  - Table of contents now is able to be inserted in the corresponding place instead of always being inserted at position 0
@@ -348,44 +464,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
348
464
  - Feature/improve toc scroll
349
465
 
350
466
  ### Removed:
467
+
351
468
  - Removal of prosemirror-plugin dependency of `CitationPlugin::CitationInsert` component.
352
469
 
353
470
  ### Dependencies
471
+
354
472
  - bump `ember-rdfa-editor` to v3.4.0
355
473
 
356
474
  ## [3.1.0] - 2023-03-02
357
475
 
358
476
  ### Fixed
477
+
359
478
  - Article paragraph numbering is no longer continuous
360
479
  - Fixed white-space issue in variables
480
+
361
481
  ### Changed
362
- - Use `AuModalContainer` component instead of #ember-appuniversum-wormhole element in dummy app
482
+
483
+ - Use `AuModalContainer` component instead of #ember-appuniversum-wormhole element in dummy app
363
484
  - Improved documentation of the plugins
364
485
 
365
486
  ### Dependencies
487
+
366
488
  - bump `ember-rdfa-editor` to v3.3.0
367
489
 
368
490
  ## [3.0.0] - 2023-02-27
369
491
 
370
492
  ### Changed
493
+
371
494
  - Feature/allow paragraphs inside article paragraphs
372
495
  - Set selectable on false for structure-headers
373
496
  - BREAKING: the argument structure of plugin components has changed. `widgetArgs` is no longer in use, it's properties are now direct properties of the component `args`.
374
-
497
+
375
498
  ### Added
499
+
376
500
  - Added a new option to the structures to not support unwrap and made the article paragraphs the first structure to use this option
377
501
 
378
502
  ### Fixed
503
+
379
504
  - fix translation warnings
380
505
 
381
506
  ### Removed
507
+
382
508
  - Remove insert date and time as it's no longer needed
383
509
 
384
510
  ### Dependencies
511
+
385
512
  - Bumps `ember-power-select` to 6.0.1
386
513
  - Bumps `ember-source` to 4.8.4
387
514
  - Bumps `@lblod/ember-rdfa-editor` to 3.2.0
388
-
515
+
389
516
  ## [2.1.2] - 2023-02-15
390
517
 
391
518
  ### Fixed
@@ -408,208 +535,239 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
408
535
  ### Fixed
409
536
 
410
537
  - correctly set the date type as xsd:date or xsd:dateTime based on the date content
411
- - Add the __rdfaId when manually creating decisions titles, decision articles or citations
538
+ - Add the \_\_rdfaId when manually creating decisions titles, decision articles or citations
412
539
  - fix citation highlights not triggering correctly in various situations
413
540
 
414
541
  ## [2.1.0] - 2023-02-06
415
542
 
416
543
  #### :rocket: Enhancement
417
544
 
418
- * [#98](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/98) Improve citation plugin regex and improve
545
+ - [#98](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/98) Improve citation plugin regex and improve
419
546
  citation type matching ([@elpoelma](https://github.com/elpoelma))
420
547
 
421
548
  #### :bug: Bug Fix
422
549
 
423
- * [#96](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/96) Fix insert-citation button not being enabled
550
+ - [#96](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/96) Fix insert-citation button not being enabled
424
551
  in correct context. ([@elpoelma](https://github.com/elpoelma))
425
- * [#100](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/100) Prevent splitting of besluit related nodes ([@elpoelma](https://github.com/elpoelma))
426
- * [#97](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/97) Fix: disallow splitting of besluit node ([@elpoelma](https://github.com/elpoelma))
552
+ - [#100](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/100) Prevent splitting of besluit related nodes ([@elpoelma](https://github.com/elpoelma))
553
+ - [#97](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/97) Fix: disallow splitting of besluit node ([@elpoelma](https://github.com/elpoelma))
427
554
 
428
555
  #### :house: Internal
429
- * [#99](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/99) Update editor to 2.1.0 ([@elpoelma](https://github.com/elpoelma))
556
+
557
+ - [#99](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/99) Update editor to 2.1.0 ([@elpoelma](https://github.com/elpoelma))
430
558
 
431
559
  #### Committers: 1
560
+
432
561
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
433
562
 
434
563
  ## 2.0.1 (2023-02-06)
435
564
 
436
565
  #### :bug: Bug Fix
437
- * [#95](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/95) Move ember-velcro to hard dependencies ([@elpoelma](https://github.com/elpoelma))
566
+
567
+ - [#95](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/95) Move ember-velcro to hard dependencies ([@elpoelma](https://github.com/elpoelma))
438
568
 
439
569
  #### Committers: 1
570
+
440
571
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
441
572
 
442
573
  ## 2.0.0 (2023-02-06)
443
- version-only bump to match editor major cycle
444
574
 
575
+ version-only bump to match editor major cycle
445
576
 
446
577
  ## 1.0.0 (2023-02-06)
447
578
 
448
579
  #### :boom: Breaking Change
449
- * [#94](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/94) feat(dates): add nice error messages to custom format box ([@abeforgit](https://github.com/abeforgit))
580
+
581
+ - [#94](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/94) feat(dates): add nice error messages to custom format box ([@abeforgit](https://github.com/abeforgit))
450
582
 
451
583
  #### :rocket: Enhancement
452
- * [#94](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/94) feat(dates): add nice error messages to custom format box ([@abeforgit](https://github.com/abeforgit))
453
- * [#93](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/93) Make headers and content nodes of structures isolating and defining ([@elpoelma](https://github.com/elpoelma))
454
- * [#74](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/74) Feature/recreate uuids on paste ([@lagartoverde](https://github.com/lagartoverde))
455
- * [#90](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/90) show error when the date format is empty ([@lagartoverde](https://github.com/lagartoverde))
584
+
585
+ - [#94](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/94) feat(dates): add nice error messages to custom format box ([@abeforgit](https://github.com/abeforgit))
586
+ - [#93](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/93) Make headers and content nodes of structures isolating and defining ([@elpoelma](https://github.com/elpoelma))
587
+ - [#74](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/74) Feature/recreate uuids on paste ([@lagartoverde](https://github.com/lagartoverde))
588
+ - [#90](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/90) show error when the date format is empty ([@lagartoverde](https://github.com/lagartoverde))
456
589
 
457
590
  #### :house: Internal
458
- * [#92](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/92) Update editor to 2.0.1 ([@elpoelma](https://github.com/elpoelma))
591
+
592
+ - [#92](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/92) Update editor to 2.0.1 ([@elpoelma](https://github.com/elpoelma))
459
593
 
460
594
  #### Committers: 3
595
+
461
596
  - Arne Bertrand ([@abeforgit](https://github.com/abeforgit))
462
597
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
463
598
  - Oscar Rodriguez Villalobos ([@lagartoverde](https://github.com/lagartoverde))
464
599
 
465
-
466
600
  ## 1.0.0-beta.8 (2023-01-26)
467
601
 
468
602
  #### :house: Internal
469
- * [#83](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/83) Update editor to 1.0.0 ([@elpoelma](https://github.com/elpoelma))
603
+
604
+ - [#83](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/83) Update editor to 1.0.0 ([@elpoelma](https://github.com/elpoelma))
470
605
 
471
606
  #### Committers: 1
607
+
472
608
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
473
609
 
474
610
  ## 1.0.0-beta.7 (2023-01-25)
475
611
 
476
612
  #### :bug: Bug Fix
477
- * [#82](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/82) Add typeof and property to article_paragraph attrs ([@elpoelma](https://github.com/elpoelma))
613
+
614
+ - [#82](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/82) Add typeof and property to article_paragraph attrs ([@elpoelma](https://github.com/elpoelma))
478
615
 
479
616
  #### Committers: 1
617
+
480
618
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
481
619
 
482
620
  ## 1.0.0-beta.6 (2023-01-25)
483
621
 
484
622
  #### :bug: Bug Fix
485
- * [#81](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/81) Wrap-structure-content: return false if structure is not a wrapper ([@elpoelma](https://github.com/elpoelma))
623
+
624
+ - [#81](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/81) Wrap-structure-content: return false if structure is not a wrapper ([@elpoelma](https://github.com/elpoelma))
486
625
 
487
626
  #### Committers: 1
627
+
488
628
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
489
629
 
490
630
  ## 1.0.0-beta.5 (2023-01-25)
491
631
 
492
- * chore(deps): update editor to beta 7 (ef72b82)
493
- * Merge pull request #80 (d76dd89)
494
- * Merge pull request #79 (69a5c62)
495
- * Merge pull request #78 (fc68bf5)
496
- * fix(decision-type): remove the old type before adding the new one (701ad87)
497
- * fix(template): improve insertion behavior of standard templates (96cba5c)
498
- * fix(nodes): make important nodes defining (5534c00)
499
- * fix(nodes): make title node also parse on other header levels (9229677)
500
-
632
+ - chore(deps): update editor to beta 7 (ef72b82)
633
+ - Merge pull request #80 (d76dd89)
634
+ - Merge pull request #79 (69a5c62)
635
+ - Merge pull request #78 (fc68bf5)
636
+ - fix(decision-type): remove the old type before adding the new one (701ad87)
637
+ - fix(template): improve insertion behavior of standard templates (96cba5c)
638
+ - fix(nodes): make important nodes defining (5534c00)
639
+ - fix(nodes): make title node also parse on other header levels (9229677)
501
640
 
502
641
  ## 1.0.0-beta.4 (2023-01-24)
503
642
 
504
643
  #### :bug: Bug Fix
505
- * [#72](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/72) Enable word-break as break-all on variable contenteditable ([@elpoelma](https://github.com/elpoelma))
506
- * [#71](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/71) Avoid writing out p tags for nodes different than paragraph ([@elpoelma](https://github.com/elpoelma))
644
+
645
+ - [#72](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/72) Enable word-break as break-all on variable contenteditable ([@elpoelma](https://github.com/elpoelma))
646
+ - [#71](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/71) Avoid writing out p tags for nodes different than paragraph ([@elpoelma](https://github.com/elpoelma))
507
647
 
508
648
  #### :house: Internal
509
- * [#73](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/73) Make besluit title optional ([@elpoelma](https://github.com/elpoelma))
649
+
650
+ - [#73](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/73) Make besluit title optional ([@elpoelma](https://github.com/elpoelma))
510
651
 
511
652
  #### Committers: 1
512
- - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
513
653
 
654
+ - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
514
655
 
515
656
  ## 1.0.0-beta.3 (2023-01-23)
516
657
 
517
658
  add onclick handler to pencil icon in variable plugin
518
659
 
519
-
520
660
  ## 1.0.0-beta.2 (2023-01-23)
521
661
 
522
662
  #### :boom: Breaking Change
523
- * [#67](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/67) New version of the variable plugin ([@elpoelma](https://github.com/elpoelma))
524
- * [#62](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/62) feat(citation): make citation plugin datastore-independent ([@abeforgit](https://github.com/abeforgit))
663
+
664
+ - [#67](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/67) New version of the variable plugin ([@elpoelma](https://github.com/elpoelma))
665
+ - [#62](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/62) feat(citation): make citation plugin datastore-independent ([@abeforgit](https://github.com/abeforgit))
525
666
 
526
667
  #### :rocket: Enhancement
527
- * [#69](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/69) Add enter handler to variable editor view ([@elpoelma](https://github.com/elpoelma))
528
- * [#66](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/66) make the template plugin independent of the datastore ([@abeforgit](https://github.com/abeforgit))
529
- * [#43](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/43) Feature/template nodes ([@lagartoverde](https://github.com/lagartoverde))
530
- * [#62](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/62) feat(citation): make citation plugin datastore-independent ([@abeforgit](https://github.com/abeforgit))
531
- * [#49](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/49) Avoid using the datastore on the besluit type plugin ([@lagartoverde](https://github.com/lagartoverde))
532
- * [#47](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/47) Implement besluit articles using article-structure plugin ([@elpoelma](https://github.com/elpoelma))
533
- * [#48](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/48) Roadsign regulation plugin rework ([@elpoelma](https://github.com/elpoelma))
668
+
669
+ - [#69](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/69) Add enter handler to variable editor view ([@elpoelma](https://github.com/elpoelma))
670
+ - [#66](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/66) make the template plugin independent of the datastore ([@abeforgit](https://github.com/abeforgit))
671
+ - [#43](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/43) Feature/template nodes ([@lagartoverde](https://github.com/lagartoverde))
672
+ - [#62](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/62) feat(citation): make citation plugin datastore-independent ([@abeforgit](https://github.com/abeforgit))
673
+ - [#49](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/49) Avoid using the datastore on the besluit type plugin ([@lagartoverde](https://github.com/lagartoverde))
674
+ - [#47](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/47) Implement besluit articles using article-structure plugin ([@elpoelma](https://github.com/elpoelma))
675
+ - [#48](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/48) Roadsign regulation plugin rework ([@elpoelma](https://github.com/elpoelma))
534
676
 
535
677
  #### :bug: Bug Fix
536
- * [#63](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/63) Preserve date format across reloads ([@elpoelma](https://github.com/elpoelma))
678
+
679
+ - [#63](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/63) Preserve date format across reloads ([@elpoelma](https://github.com/elpoelma))
537
680
 
538
681
  #### :house: Internal
539
- * [#68](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/68) Update editor to 1.0.0-beta.5 ([@elpoelma](https://github.com/elpoelma))
540
- * [#65](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/65) Update editor to 1.0.0-beta.4 ([@elpoelma](https://github.com/elpoelma))
682
+
683
+ - [#68](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/68) Update editor to 1.0.0-beta.5 ([@elpoelma](https://github.com/elpoelma))
684
+ - [#65](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/65) Update editor to 1.0.0-beta.4 ([@elpoelma](https://github.com/elpoelma))
541
685
 
542
686
  #### Committers: 3
687
+
543
688
  - Arne Bertrand ([@abeforgit](https://github.com/abeforgit))
544
689
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
545
690
  - Oscar Rodriguez Villalobos ([@lagartoverde](https://github.com/lagartoverde))
546
691
 
547
-
548
692
  ## 1.0.0-beta.1 (2023-01-17)
549
693
 
550
694
  #### :rocket: Enhancement
551
- * [#27](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/27) Conversion of plugins to prosemirror based editor ([@elpoelma](https://github.com/elpoelma))
552
- * [#54](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/54) Move table-of-contents toggle to toolbar ([@elpoelma](https://github.com/elpoelma))
553
- * [#46](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/46) Update insert-structure command so it looks forward for the next best position to insert ([@elpoelma](https://github.com/elpoelma))
695
+
696
+ - [#27](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/27) Conversion of plugins to prosemirror based editor ([@elpoelma](https://github.com/elpoelma))
697
+ - [#54](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/54) Move table-of-contents toggle to toolbar ([@elpoelma](https://github.com/elpoelma))
698
+ - [#46](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/46) Update insert-structure command so it looks forward for the next best position to insert ([@elpoelma](https://github.com/elpoelma))
554
699
 
555
700
  #### :bug: Bug Fix
556
- * [#59](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/59) Rename verwijzing to citeeropschrift ([@elpoelma](https://github.com/elpoelma))
557
- * [#56](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/56) Add space before 'met zonale geldigheid' ([@elpoelma](https://github.com/elpoelma))
701
+
702
+ - [#59](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/59) Rename verwijzing to citeeropschrift ([@elpoelma](https://github.com/elpoelma))
703
+ - [#56](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/56) Add space before 'met zonale geldigheid' ([@elpoelma](https://github.com/elpoelma))
558
704
 
559
705
  #### :house: Internal
560
- * [#61](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/61) Update editor to 1.0.0-beta.2 ([@elpoelma](https://github.com/elpoelma))
561
- * [#60](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/60) Update editor to 1.0.0-beta.1 ([@elpoelma](https://github.com/elpoelma))
706
+
707
+ - [#61](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/61) Update editor to 1.0.0-beta.2 ([@elpoelma](https://github.com/elpoelma))
708
+ - [#60](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/60) Update editor to 1.0.0-beta.1 ([@elpoelma](https://github.com/elpoelma))
562
709
 
563
710
  #### Committers: 1
711
+
564
712
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
565
713
 
566
714
  ## 1.0.0-alpha.3 (2023-01-09)
567
715
 
568
716
  #### :house: Internal
569
- * [#42](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/42) Remove redundant context from article-structure plugin ([@elpoelma](https://github.com/elpoelma))
717
+
718
+ - [#42](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/42) Remove redundant context from article-structure plugin ([@elpoelma](https://github.com/elpoelma))
570
719
 
571
720
  #### Committers: 1
721
+
572
722
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
573
723
 
574
724
  ## 1.0.0-alpha.2 (2023-01-03)
575
725
 
576
726
  #### :boom: Breaking Change
577
- * [#38](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/38) Folder restructure ([@elpoelma](https://github.com/elpoelma))
727
+
728
+ - [#38](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/38) Folder restructure ([@elpoelma](https://github.com/elpoelma))
578
729
 
579
730
  #### :rocket: Enhancement
580
- * [#40](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/40) Major rework of article-structure plugin ([@elpoelma](https://github.com/elpoelma))
581
- * [#39](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/39) Remove paragraphs from toc ([@lagartoverde](https://github.com/lagartoverde))
731
+
732
+ - [#40](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/40) Major rework of article-structure plugin ([@elpoelma](https://github.com/elpoelma))
733
+ - [#39](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/39) Remove paragraphs from toc ([@lagartoverde](https://github.com/lagartoverde))
582
734
 
583
735
  #### :bug: Bug Fix
584
- * [#37](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/37) Fix besluit plugin numbering ([@elpoelma](https://github.com/elpoelma))
736
+
737
+ - [#37](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/37) Fix besluit plugin numbering ([@elpoelma](https://github.com/elpoelma))
585
738
 
586
739
  #### :house: Internal
587
- * [#41](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/41) Update editor to 1.0.0-alpha.13 ([@elpoelma](https://github.com/elpoelma))
588
- * [#38](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/38) Folder restructure ([@elpoelma](https://github.com/elpoelma))
740
+
741
+ - [#41](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/41) Update editor to 1.0.0-alpha.13 ([@elpoelma](https://github.com/elpoelma))
742
+ - [#38](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/38) Folder restructure ([@elpoelma](https://github.com/elpoelma))
589
743
 
590
744
  #### Committers: 2
745
+
591
746
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
592
747
  - Oscar Rodriguez Villalobos ([@lagartoverde](https://github.com/lagartoverde))
593
748
 
594
749
  ## 1.0.0-alpha.1 (2022-12-22)
595
750
 
596
751
  #### :rocket: Enhancement
597
- * [#35](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/35) converting the besluit-plugin to new API ([@usrtim](https://github.com/usrtim))
598
- * [#34](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/34) Add and convert citation plugin ([@abeforgit](https://github.com/abeforgit))
599
- * [#32](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/32) Convert table-of-contents plugin to prosemirror based editor. ([@elpoelma](https://github.com/elpoelma))
600
- * [#33](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/33) feature/dev utils ([@abeforgit](https://github.com/abeforgit))
601
- * [#31](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/31) Convert roadsign-regulation plugin to prosemirror based editor. ([@elpoelma](https://github.com/elpoelma))
602
- * [#28](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/28) Convert insert-variable plugin to prosemirror based editor. ([@elpoelma](https://github.com/elpoelma))
603
- * [#29](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/29) Convert template-variable plugin to prosemirror based editor. ([@elpoelma](https://github.com/elpoelma))
604
- * [#20](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/20) Convert standard-template plugin to prosemirror based editor plugin ([@elpoelma](https://github.com/elpoelma))
605
- * [#19](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/19) Convert import-snippet plugin to prosemirror based editor plugin ([@elpoelma](https://github.com/elpoelma))
606
- * [#18](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/18) Convert besluit-type plugin to prosemirror based editor plugin ([@elpoelma](https://github.com/elpoelma))
607
- * [#17](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/17) Convert rdfa-date plugin to prosemirror based editor plugin ([@elpoelma](https://github.com/elpoelma))
752
+
753
+ - [#35](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/35) converting the besluit-plugin to new API ([@usrtim](https://github.com/usrtim))
754
+ - [#34](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/34) Add and convert citation plugin ([@abeforgit](https://github.com/abeforgit))
755
+ - [#32](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/32) Convert table-of-contents plugin to prosemirror based editor. ([@elpoelma](https://github.com/elpoelma))
756
+ - [#33](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/33) feature/dev utils ([@abeforgit](https://github.com/abeforgit))
757
+ - [#31](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/31) Convert roadsign-regulation plugin to prosemirror based editor. ([@elpoelma](https://github.com/elpoelma))
758
+ - [#28](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/28) Convert insert-variable plugin to prosemirror based editor. ([@elpoelma](https://github.com/elpoelma))
759
+ - [#29](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/29) Convert template-variable plugin to prosemirror based editor. ([@elpoelma](https://github.com/elpoelma))
760
+ - [#20](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/20) Convert standard-template plugin to prosemirror based editor plugin ([@elpoelma](https://github.com/elpoelma))
761
+ - [#19](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/19) Convert import-snippet plugin to prosemirror based editor plugin ([@elpoelma](https://github.com/elpoelma))
762
+ - [#18](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/18) Convert besluit-type plugin to prosemirror based editor plugin ([@elpoelma](https://github.com/elpoelma))
763
+ - [#17](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/17) Convert rdfa-date plugin to prosemirror based editor plugin ([@elpoelma](https://github.com/elpoelma))
608
764
 
609
765
  #### :house: Internal
610
- * [#26](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/26) Convert besluit-type, import-snippet, rdfa-date and standard-template plugins to typescript ([@elpoelma](https://github.com/elpoelma))
766
+
767
+ - [#26](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/26) Convert besluit-type, import-snippet, rdfa-date and standard-template plugins to typescript ([@elpoelma](https://github.com/elpoelma))
611
768
 
612
769
  #### Committers: 4
770
+
613
771
  - Arne Bertrand ([@abeforgit](https://github.com/abeforgit))
614
772
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
615
773
  - Oscar Rodriguez Villalobos ([@lagartoverde](https://github.com/lagartoverde))
@@ -618,86 +776,105 @@ add onclick handler to pencil icon in variable plugin
618
776
  ## 0.4.1 (2022-12-02)
619
777
 
620
778
  #### :bug: Bug Fix
621
- * [#25](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/25) Replace citaten-plugin.citaten-plugin by citaten-plugin ([@elpoelma](https://github.com/elpoelma))
622
- * [#24](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/24) Trigger date plugin correctly ([@lagartoverde](https://github.com/lagartoverde))
779
+
780
+ - [#25](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/25) Replace citaten-plugin.citaten-plugin by citaten-plugin ([@elpoelma](https://github.com/elpoelma))
781
+ - [#24](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/24) Trigger date plugin correctly ([@lagartoverde](https://github.com/lagartoverde))
623
782
 
624
783
  #### Committers: 2
784
+
625
785
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
626
786
  - Oscar Rodriguez Villalobos ([@lagartoverde](https://github.com/lagartoverde))
627
787
 
628
788
  ## 0.4.0 (2022-12-01)
629
789
 
630
790
  #### :house: Internal
631
- * [#23](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/23) Add typescript support ([@elpoelma](https://github.com/elpoelma))
632
- * [#22](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/22) Move to classic ember addon ([@elpoelma](https://github.com/elpoelma))
791
+
792
+ - [#23](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/23) Add typescript support ([@elpoelma](https://github.com/elpoelma))
793
+ - [#22](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/22) Move to classic ember addon ([@elpoelma](https://github.com/elpoelma))
633
794
 
634
795
  #### Committers: 1
796
+
635
797
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
636
798
 
637
799
  ## v0.3.1 (2022-11-24)
638
800
 
639
801
  #### :memo: Documentation
640
- * [#15](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/15) Add documentation to readme ([@elpoelma](https://github.com/elpoelma))
802
+
803
+ - [#15](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/15) Add documentation to readme ([@elpoelma](https://github.com/elpoelma))
641
804
 
642
805
  #### Committers: 1
806
+
643
807
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
644
808
 
645
809
  ## v0.3.0 (2022-11-23)
646
810
 
647
811
  #### :rocket: Enhancement
648
- * [#7](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/7) Add roadsign regulation plugin ([@elpoelma](https://github.com/elpoelma))
812
+
813
+ - [#7](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/7) Add roadsign regulation plugin ([@elpoelma](https://github.com/elpoelma))
649
814
 
650
815
  #### Committers: 1
816
+
651
817
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
652
818
 
653
819
  ## v0.2.0 (2022-11-23)
654
820
 
655
821
  #### :rocket: Enhancement
656
- * [#14](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/14) Add insert and template variable plugins ([@elpoelma](https://github.com/elpoelma))
822
+
823
+ - [#14](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/14) Add insert and template variable plugins ([@elpoelma](https://github.com/elpoelma))
657
824
 
658
825
  #### Committers: 1
826
+
659
827
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
660
828
 
661
829
  ## v0.1.3 (2022-11-23)
662
830
 
663
831
  #### :bug: Bug Fix
664
- * [#13](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/13) Fix path of table-of-contents outline component ([@elpoelma](https://github.com/elpoelma))
832
+
833
+ - [#13](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/13) Fix path of table-of-contents outline component ([@elpoelma](https://github.com/elpoelma))
665
834
 
666
835
  #### Committers: 1
836
+
667
837
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
668
838
 
669
839
  ## v0.1.2 (2022-11-23)
670
840
 
671
841
  #### :house: Internal
672
- * [#12](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/12) Export config and translations ([@elpoelma](https://github.com/elpoelma))
842
+
843
+ - [#12](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/12) Export config and translations ([@elpoelma](https://github.com/elpoelma))
673
844
 
674
845
  #### Committers: 1
846
+
675
847
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
676
848
 
677
849
  ## v0.1.1 (2022-11-23)
678
850
 
679
851
  #### :house: Internal
680
- * [#11](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/11) Loosen ember-data peerdep requirement to 3.27.0 ([@elpoelma](https://github.com/elpoelma))
852
+
853
+ - [#11](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/11) Loosen ember-data peerdep requirement to 3.27.0 ([@elpoelma](https://github.com/elpoelma))
681
854
 
682
855
  #### Committers: 1
856
+
683
857
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
684
858
 
685
859
  ## v0.1.0 (2022-11-23)
686
860
 
687
861
  #### :rocket: Enhancement
688
- * [#9](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/9) Add import-snippet plugin ([@elpoelma](https://github.com/elpoelma))
689
- * [#8](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/8) Add rdfa-date plugin ([@elpoelma](https://github.com/elpoelma))
690
- * [#3](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/3) Add standard-template plugin ([@elpoelma](https://github.com/elpoelma))
691
- * [#4](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/4) Add besluit-type plugin ([@elpoelma](https://github.com/elpoelma))
692
- * [#6](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/6) Add generate template plugin ([@elpoelma](https://github.com/elpoelma))
693
- * [#5](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/5) Add table-of-contents plugin ([@elpoelma](https://github.com/elpoelma))
694
- * [#2](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/2) Add citaten-plugin ([@elpoelma](https://github.com/elpoelma))
862
+
863
+ - [#9](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/9) Add import-snippet plugin ([@elpoelma](https://github.com/elpoelma))
864
+ - [#8](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/8) Add rdfa-date plugin ([@elpoelma](https://github.com/elpoelma))
865
+ - [#3](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/3) Add standard-template plugin ([@elpoelma](https://github.com/elpoelma))
866
+ - [#4](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/4) Add besluit-type plugin ([@elpoelma](https://github.com/elpoelma))
867
+ - [#6](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/6) Add generate template plugin ([@elpoelma](https://github.com/elpoelma))
868
+ - [#5](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/5) Add table-of-contents plugin ([@elpoelma](https://github.com/elpoelma))
869
+ - [#2](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/2) Add citaten-plugin ([@elpoelma](https://github.com/elpoelma))
695
870
 
696
871
  #### :house: Internal
697
- * [#10](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/10) Set up woodpecker ([@elpoelma](https://github.com/elpoelma))
698
- * [#1](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/1) Setup basic test-app ([@elpoelma](https://github.com/elpoelma))
872
+
873
+ - [#10](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/10) Set up woodpecker ([@elpoelma](https://github.com/elpoelma))
874
+ - [#1](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/1) Setup basic test-app ([@elpoelma](https://github.com/elpoelma))
699
875
 
700
876
  #### Committers: 1
877
+
701
878
  - Elena Poelman ([@elpoelma](https://github.com/elpoelma))
702
879
 
703
880
  # Changelog