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