@lblod/ember-rdfa-editor-lblod-plugins 12.1.0 → 14.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.
Files changed (133) hide show
  1. package/CHANGELOG.md +59 -0
  2. package/README.md +215 -164
  3. package/addon/components/besluit-type-plugin/toolbar-dropdown.ts +1 -8
  4. package/addon/components/citation-plugin/citation-card.hbs +7 -7
  5. package/addon/components/citation-plugin/citation-card.ts +21 -16
  6. package/addon/components/citation-plugin/citation-insert.hbs +1 -1
  7. package/addon/components/citation-plugin/citation-insert.ts +8 -8
  8. package/addon/components/citation-plugin/citations/article-preview.hbs +1 -1
  9. package/addon/components/citation-plugin/citations/article-preview.ts +13 -0
  10. package/addon/components/citation-plugin/citations/{decision-detail.hbs → legal-document-detail.hbs} +6 -6
  11. package/addon/components/citation-plugin/citations/{decision-detail.ts → legal-document-detail.ts} +6 -3
  12. package/addon/components/citation-plugin/citations/{decision-list.hbs → legal-document-list.hbs} +6 -6
  13. package/addon/components/citation-plugin/citations/{decision-preview.hbs → legal-document-preview.hbs} +5 -5
  14. package/addon/components/citation-plugin/citations/{decision-preview.ts → legal-document-preview.ts} +4 -4
  15. package/addon/components/citation-plugin/citations/search-modal.hbs +12 -12
  16. package/addon/components/citation-plugin/citations/search-modal.ts +22 -19
  17. package/addon/components/decision-plugin/decision-plugin-card.hbs +3 -3
  18. package/addon/components/snippet-plugin/snippet-list/snippet-list-view.hbs +2 -2
  19. package/addon/components/standard-template-plugin/card.hbs +1 -1
  20. package/addon/components/standard-template-plugin/card.ts +5 -0
  21. package/addon/components/standard-template-plugin/template-provider.hbs +1 -2
  22. package/addon/components/standard-template-plugin/template-provider.ts +6 -14
  23. package/addon/components/table-of-contents-plugin/ember-nodes/table-of-contents.ts +1 -0
  24. package/addon/components/template-comments-plugin/template-comment.hbs +4 -4
  25. package/addon/components/template-comments-plugin/template-comment.ts +16 -0
  26. package/addon/components/variable-plugin/address/edit.hbs +13 -11
  27. package/addon/components/variable-plugin/address/edit.ts +88 -22
  28. package/addon/components/variable-plugin/address/insert-variable.ts +14 -1
  29. package/addon/components/variable-plugin/address/insert.ts +15 -1
  30. package/addon/components/variable-plugin/address/nodeview.hbs +1 -1
  31. package/addon/components/variable-plugin/address/nodeview.ts +23 -1
  32. package/addon/components/variable-plugin/codelist/insert.ts +10 -1
  33. package/addon/components/{rdfa-date-plugin → variable-plugin/date}/date-time-picker.ts +1 -1
  34. package/addon/components/{rdfa-date-plugin/card.hbs → variable-plugin/date/edit.hbs} +3 -3
  35. package/addon/components/{rdfa-date-plugin/card.ts → variable-plugin/date/edit.ts} +10 -10
  36. package/addon/components/{rdfa-date-plugin → variable-plugin/date}/help-modal.ts +2 -2
  37. package/addon/components/variable-plugin/date/insert-variable.hbs +9 -0
  38. package/addon/components/variable-plugin/date/insert-variable.ts +57 -0
  39. package/addon/components/variable-plugin/date/insert.hbs +9 -9
  40. package/addon/components/variable-plugin/date/insert.ts +13 -10
  41. package/addon/components/{rdfa-date-plugin/date.ts → variable-plugin/date/nodeview.ts} +20 -6
  42. package/addon/components/variable-plugin/location/insert.ts +11 -2
  43. package/addon/components/variable-plugin/number/insert.hbs +1 -1
  44. package/addon/components/variable-plugin/number/insert.ts +9 -1
  45. package/addon/components/variable-plugin/number/nodeview.hbs +1 -1
  46. package/addon/components/variable-plugin/number/nodeview.ts +17 -0
  47. package/addon/components/variable-plugin/text/insert.ts +14 -2
  48. package/addon/models/template.ts +6 -13
  49. package/addon/plugins/besluit-type-plugin/index.ts +1 -0
  50. package/addon/plugins/citation-plugin/index.ts +1 -1
  51. package/addon/plugins/citation-plugin/utils/legal-documents.ts +3 -3
  52. package/addon/plugins/citation-plugin/utils/public-decisions.ts +6 -4
  53. package/addon/plugins/citation-plugin/utils/types.ts +7 -3
  54. package/addon/plugins/table-of-contents-plugin/nodes/table-of-contents.ts +8 -13
  55. package/addon/plugins/table-of-contents-plugin/utils/index.ts +7 -4
  56. package/addon/plugins/template-comments-plugin/node.ts +12 -3
  57. package/addon/plugins/variable-plugin/utils/address-helpers.ts +13 -1
  58. package/addon/plugins/variable-plugin/variables/address.ts +15 -8
  59. package/addon/plugins/variable-plugin/variables/codelist.ts +4 -4
  60. package/addon/plugins/variable-plugin/variables/date.ts +200 -0
  61. package/addon/plugins/variable-plugin/variables/index.ts +1 -0
  62. package/addon/plugins/variable-plugin/variables/location.ts +4 -4
  63. package/addon/plugins/variable-plugin/variables/number.ts +11 -8
  64. package/addon/plugins/variable-plugin/variables/text.ts +4 -4
  65. package/addon/utils/translation.ts +19 -0
  66. package/app/components/citation-plugin/citations/{decision-list.js → legal-document-detail.js} +1 -1
  67. package/app/components/citation-plugin/citations/{decision-detail.js → legal-document-list.js} +1 -1
  68. package/app/components/citation-plugin/citations/{decision-preview.js → legal-document-preview.js} +1 -1
  69. package/app/components/{rdfa-date-plugin/card.js → variable-plugin/date/date-time-picker.js} +1 -1
  70. package/app/components/{rdfa-date-plugin/date.js → variable-plugin/date/edit.js} +1 -1
  71. package/app/components/{rdfa-date-plugin/insert.js → variable-plugin/date/help-modal.js} +1 -1
  72. package/app/components/{rdfa-date-plugin/date-time-picker.js → variable-plugin/date/insert-variable.js} +1 -1
  73. package/app/components/{rdfa-date-plugin/help-modal.js → variable-plugin/date/nodeview.js} +1 -1
  74. package/app/styles/besluit-plugin.scss +2 -2
  75. package/app/styles/date-plugin.scss +0 -20
  76. package/app/styles/snippet-plugin.scss +1 -1
  77. package/app/styles/template-comments-plugin.scss +4 -4
  78. package/app/styles/variable-plugin.scss +2 -2
  79. package/components/besluit-type-plugin/toolbar-dropdown.d.ts +0 -2
  80. package/components/citation-plugin/citation-card.d.ts +7 -7
  81. package/components/citation-plugin/citation-insert.d.ts +2 -2
  82. package/components/citation-plugin/citations/article-preview.d.ts +9 -0
  83. package/components/citation-plugin/citations/{decision-detail.d.ts → legal-document-detail.d.ts} +2 -2
  84. package/components/citation-plugin/citations/{decision-preview.d.ts → legal-document-preview.d.ts} +2 -2
  85. package/components/citation-plugin/citations/search-modal.d.ts +10 -11
  86. package/components/standard-template-plugin/card.d.ts +3 -0
  87. package/components/standard-template-plugin/template-provider.d.ts +5 -7
  88. package/components/template-comments-plugin/template-comment.d.ts +6 -0
  89. package/components/variable-plugin/address/edit.d.ts +4 -2
  90. package/components/variable-plugin/address/insert-variable.d.ts +3 -0
  91. package/components/variable-plugin/address/insert.d.ts +3 -0
  92. package/components/variable-plugin/address/nodeview.d.ts +7 -0
  93. package/components/variable-plugin/codelist/insert.d.ts +1 -0
  94. package/components/{rdfa-date-plugin → variable-plugin/date}/date-time-picker.d.ts +1 -1
  95. package/components/{rdfa-date-plugin/card.d.ts → variable-plugin/date/edit.d.ts} +3 -3
  96. package/components/{rdfa-date-plugin → variable-plugin/date}/help-modal.d.ts +1 -1
  97. package/components/variable-plugin/date/insert-variable.d.ts +16 -0
  98. package/components/variable-plugin/date/insert.d.ts +4 -3
  99. package/components/{rdfa-date-plugin/date.d.ts → variable-plugin/date/nodeview.d.ts} +5 -1
  100. package/components/variable-plugin/location/insert.d.ts +1 -0
  101. package/components/variable-plugin/number/insert.d.ts +1 -0
  102. package/components/variable-plugin/number/nodeview.d.ts +5 -0
  103. package/components/variable-plugin/text/insert.d.ts +3 -0
  104. package/models/template.d.ts +1 -7
  105. package/package.json +7 -12
  106. package/plugins/besluit-type-plugin/index.d.ts +1 -0
  107. package/plugins/citation-plugin/utils/types.d.ts +5 -4
  108. package/plugins/table-of-contents-plugin/utils/index.d.ts +3 -2
  109. package/plugins/variable-plugin/utils/address-helpers.d.ts +2 -1
  110. package/plugins/{rdfa-date-plugin/nodes → variable-plugin/variables}/date.d.ts +10 -1
  111. package/plugins/variable-plugin/variables/index.d.ts +1 -0
  112. package/translations/en-US.yaml +13 -0
  113. package/translations/nl-BE.yaml +14 -0
  114. package/utils/translation.d.ts +3 -0
  115. package/addon/components/rdfa-date-plugin/insert.hbs +0 -9
  116. package/addon/components/rdfa-date-plugin/insert.ts +0 -52
  117. package/addon/plugins/rdfa-date-plugin/index.ts +0 -28
  118. package/addon/plugins/rdfa-date-plugin/nodes/date.ts +0 -167
  119. package/addon/services/standard-template-plugin.ts +0 -55
  120. package/app/services/standard-template-plugin.js +0 -1
  121. package/components/rdfa-date-plugin/insert.d.ts +0 -16
  122. package/plugins/rdfa-date-plugin/index.d.ts +0 -15
  123. package/services/standard-template-plugin.d.ts +0 -20
  124. package/types/lblod/frontend-gelinkt-notuleren/models/account.d.ts +0 -10
  125. package/types/lblod/frontend-gelinkt-notuleren/models/bestuurseenheid-classificatie-code.d.ts +0 -10
  126. package/types/lblod/frontend-gelinkt-notuleren/models/bestuurseenheid.d.ts +0 -12
  127. package/types/lblod/frontend-gelinkt-notuleren/models/gebruiker-model.d.ts +0 -18
  128. package/types/lblod/frontend-gelinkt-notuleren/services/current-session.d.ts +0 -30
  129. /package/addon/components/{rdfa-date-plugin → variable-plugin/date}/date-time-picker.hbs +0 -0
  130. /package/addon/components/{rdfa-date-plugin → variable-plugin/date}/help-modal.hbs +0 -0
  131. /package/addon/components/{rdfa-date-plugin/date.hbs → variable-plugin/date/nodeview.hbs} +0 -0
  132. /package/addon/plugins/{rdfa-date-plugin/utils.ts → variable-plugin/utils/date-helpers.ts} +0 -0
  133. /package/plugins/{rdfa-date-plugin/utils.d.ts → variable-plugin/utils/date-helpers.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,64 @@
1
1
  # @lblod/ember-rdfa-editor-lblod-plugins
2
2
 
3
+ ## 14.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#314](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/314) [`a4402a0`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/a4402a0eb3acc4b7184ed362451875a6cf43be76) Thanks [@piemonkey](https://github.com/piemonkey)! - Remove Current Session Service from plugins, now classificatie uri needs to be passed in to the besluit-type plugin
8
+
9
+ - [#313](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/313) [`d4127ce`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/d4127cece3424051447b0b3407202f0f05f23512) Thanks [@piemonkey](https://github.com/piemonkey)! - Breaking change: Standard Template plugin now requires a list of templates to be passed in.
10
+ No depends on ember-data.
11
+
12
+ ### Patch Changes
13
+
14
+ - [#309](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/309) [`679b030`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/679b030539d5b604e5eaa4276a4e3d966998fc3f) Thanks [@dkozickis](https://github.com/dkozickis)! - GN-4539: Rename `besluit` to `gemeentebesluit`
15
+
16
+ - [#310](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/310) [`b07035f`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/b07035f8568ea397a5ed6514701ebedb284078b9) Thanks [@dkozickis](https://github.com/dkozickis)! - GN-4501: Fail gracefully when house number does not exist
17
+
18
+ When house number does not exist provide user with an alternative of inserting
19
+ address with just the street information.
20
+
21
+ - [#309](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/309) [`679b030`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/679b030539d5b604e5eaa4276a4e3d966998fc3f) Thanks [@dkozickis](https://github.com/dkozickis)! - GN-4539: Rename references to `decision` in Citation plugin
22
+
23
+ Instead of using `decision` use `legalDocument` in Citation plugin, to not confuse with `besluit` usage (which also means "decision" in Flemish).
24
+
25
+ - [#311](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/311) [`bb8eee6`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/bb8eee6f60acaae7c243b85a30979137757ba1dc) Thanks [@dkozickis](https://github.com/dkozickis)! - GN-4544: Decision title sometimes is not present from public decisions query
26
+
27
+ - [#308](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/308) [`39f3105`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/39f31053b59a5077c9a118431154c6d766f494eb) Thanks [@dkozickis](https://github.com/dkozickis)! - GN-4534: Citation insert card filter enhancement
28
+
29
+ - [#307](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/307) [`03ab824`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/03ab824d7dbe3eab6a86b6b0aa6c99a27d9fbeee) Thanks [@elpoelma](https://github.com/elpoelma)! - Allow municipality and street fields of address-variable to be cleared when editing
30
+
31
+ - [#312](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/312) [`52420c6`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/52420c62846b18532b1d87b8d746c201ac1be408) Thanks [@elpoelma](https://github.com/elpoelma)! - reset address-edit input fields when `currentAddress` property changes
32
+
33
+ ## 13.0.0
34
+
35
+ ### Major Changes
36
+
37
+ - [#304](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/304) [`d52be6c`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/d52be6c70c30e81dffdbf14f91e140d3fc1b5e7e) Thanks [@elpoelma](https://github.com/elpoelma)! - Merge rdfa-date plugin into variable plugin
38
+
39
+ Breaking changes:
40
+
41
+ - Rename of variable date insert component from `VariablePlugin::Date::Insert` to `VariablePlugin::Date::InsertVariable`
42
+ - Rename of standalone date insert component from `RdfaDatePlugin::Insert` to `VariablePlugin::Date::Insert`
43
+ - Removal of `RdfaDatePlugin::Card` component, replaced by `VariablePlugin::Date::Edit` component
44
+ - Removal of `RdfaDatePlugin::Date` component, replace by `VariablePlugin::Date::Nodeview` component
45
+ - Removal of `RdfaDatePlugin::DateTimePicker` component, replaced by `VariablePlugin::Date::DateTimePicker` component
46
+ - Removal of `RdfaDatePlugin::HelpModal` component, replaced by `VariablePlugin::Date::HelpModal` component
47
+ - The `date` node-spec and `dateView` node-view should now be imported from `@lblod/ember-rdfa-editor-lblod-plugins/plugins/variable-plugin/variables`
48
+
49
+ - [#297](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/297) [`30aad4d`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/30aad4df3fc45c37d985dc76d955ed051fc837b2) Thanks [@dkozickis](https://github.com/dkozickis)! - Internationalization of variable plugins using document language
50
+
51
+ Breaking: date plugins does not accept `placeholder` config anymore, the plugin won't break
52
+ if the config is still present, but it will be ignored.
53
+
54
+ - [#303](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/303) [`80f92d2`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/80f92d293404883871b7ac4e9ab4175d5deb8b46) Thanks [@elpoelma](https://github.com/elpoelma)! - Addition of @glint/template to peerDependencies
55
+
56
+ - [#303](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/303) [`80f92d2`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/80f92d293404883871b7ac4e9ab4175d5deb8b46) Thanks [@elpoelma](https://github.com/elpoelma)! - Update @lblod/ember-rdfa-editor to 6.0.0 and increase peerdependency requirement to ^6.0.0
57
+
58
+ ### Patch Changes
59
+
60
+ - [#302](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/302) [`90b5d1a`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/90b5d1a8e1b25f944305445eb653a11bf463fa6e) Thanks [@dkozickis](https://github.com/dkozickis)! - GN-4517: Reduce possible CSS conflicts
61
+
3
62
  ## 12.1.0
4
63
 
5
64
  ### Minor Changes