@lblod/ember-rdfa-editor-lblod-plugins 32.2.0 → 32.3.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 (78) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +28 -817
  3. package/addon/components/location-plugin/nodeview.gts +9 -1
  4. package/addon/components/mandatee-table-plugin/node.gts +6 -1
  5. package/addon/components/snippet-plugin/nodes/placeholder.gts +9 -1
  6. package/addon/components/snippet-plugin/nodes/snippet.gts +5 -1
  7. package/addon/components/structure-plugin/_private/structure.gts +5 -0
  8. package/addon/components/template-comments-plugin/template-comment.hbs +1 -1
  9. package/addon/components/template-comments-plugin/template-comment.ts +4 -0
  10. package/addon/components/variable-plugin/address/nodeview.hbs +1 -1
  11. package/addon/components/variable-plugin/address/nodeview.ts +4 -0
  12. package/addon/components/variable-plugin/date/nodeview.hbs +1 -1
  13. package/addon/components/variable-plugin/date/nodeview.ts +5 -0
  14. package/addon/components/variable-plugin/number/nodeview.hbs +5 -1
  15. package/addon/components/variable-plugin/number/nodeview.ts +4 -0
  16. package/addon/components/variable-plugin/person/nodeview.hbs +1 -1
  17. package/addon/components/variable-plugin/person/nodeview.ts +4 -0
  18. package/addon/components/variable-plugin/variable/nodeview.hbs +1 -1
  19. package/addon/components/variable-plugin/variable/nodeview.ts +4 -0
  20. package/addon/plugins/document-title-plugin/nodes/document-title.ts +1 -0
  21. package/addon/plugins/location-plugin/node-contents/address.ts +15 -2
  22. package/addon/plugins/location-plugin/node-contents/area.ts +13 -2
  23. package/addon/plugins/location-plugin/node-contents/place.ts +13 -2
  24. package/addon/plugins/location-plugin/node.ts +14 -4
  25. package/addon/plugins/mandatee-table-plugin/node.ts +5 -2
  26. package/addon/plugins/roadsign-regulation-plugin/nodes.ts +10 -2
  27. package/addon/plugins/snippet-plugin/nodes/snippet-placeholder.ts +3 -1
  28. package/addon/plugins/snippet-plugin/nodes/snippet.ts +3 -0
  29. package/addon/plugins/structure-plugin/node.ts +3 -0
  30. package/addon/plugins/template-comments-plugin/node.ts +1 -0
  31. package/addon/plugins/variable-plugin/variables/address.ts +3 -1
  32. package/addon/plugins/variable-plugin/variables/autofilled.ts +4 -2
  33. package/addon/plugins/variable-plugin/variables/codelist.ts +4 -2
  34. package/addon/plugins/variable-plugin/variables/date.ts +3 -1
  35. package/addon/plugins/variable-plugin/variables/location.ts +4 -2
  36. package/addon/plugins/variable-plugin/variables/number.ts +3 -1
  37. package/addon/plugins/variable-plugin/variables/person.ts +3 -1
  38. package/addon/plugins/variable-plugin/variables/text.ts +4 -2
  39. package/app/styles/snippet-plugin.scss +3 -12
  40. package/app/styles/variable-plugin.scss +46 -44
  41. package/declarations/addon/components/location-plugin/nodeview.d.ts +1 -0
  42. package/declarations/addon/components/mandatee-table-plugin/node.d.ts +1 -0
  43. package/declarations/addon/components/snippet-plugin/nodes/placeholder.d.ts +1 -0
  44. package/declarations/addon/components/snippet-plugin/nodes/snippet.d.ts +1 -0
  45. package/declarations/addon/components/structure-plugin/_private/structure.d.ts +1 -0
  46. package/declarations/addon/components/template-comments-plugin/template-comment.d.ts +1 -0
  47. package/declarations/addon/components/variable-plugin/address/nodeview.d.ts +1 -0
  48. package/declarations/addon/components/variable-plugin/date/nodeview.d.ts +1 -0
  49. package/declarations/addon/components/variable-plugin/number/nodeview.d.ts +1 -0
  50. package/declarations/addon/components/variable-plugin/person/nodeview.d.ts +1 -0
  51. package/declarations/addon/components/variable-plugin/variable/nodeview.d.ts +1 -0
  52. package/declarations/addon/plugins/location-plugin/node-contents/address.d.ts +6 -1
  53. package/declarations/addon/plugins/location-plugin/node-contents/area.d.ts +6 -1
  54. package/declarations/addon/plugins/location-plugin/node-contents/index.d.ts +9 -3
  55. package/declarations/addon/plugins/location-plugin/node-contents/place.d.ts +6 -1
  56. package/declarations/addon/plugins/location-plugin/node.d.ts +2 -0
  57. package/docs/plugins/article-structure.md +145 -0
  58. package/docs/plugins/besluit-topic.md +20 -0
  59. package/docs/plugins/besluit-type.md +20 -0
  60. package/docs/plugins/citation.md +102 -0
  61. package/docs/plugins/confidentiality.md +30 -0
  62. package/docs/plugins/decision.md +22 -0
  63. package/docs/plugins/document-title.md +20 -0
  64. package/docs/plugins/generic-rdfa-variable.md +4 -0
  65. package/docs/plugins/import-snippet.md +30 -0
  66. package/docs/plugins/lmb.md +9 -0
  67. package/docs/plugins/location.md +23 -0
  68. package/docs/plugins/lpdc.md +4 -0
  69. package/docs/plugins/mandatee-table.md +23 -0
  70. package/docs/plugins/roadsign-regulation.md +40 -0
  71. package/docs/plugins/snippet.md +28 -0
  72. package/docs/plugins/standard-template.md +29 -0
  73. package/docs/plugins/structure.md +27 -0
  74. package/docs/plugins/table-of-contents.md +65 -0
  75. package/docs/plugins/template-comments.md +49 -0
  76. package/docs/plugins/variable.md +283 -0
  77. package/docs/plugins/worship.md +4 -0
  78. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @lblod/ember-rdfa-editor-lblod-plugins
2
2
 
3
+ ## 32.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#583](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/583) [`4703977`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/4703977bcd18e3a08bc1713654b5767a73a0a791) Thanks [@elpoelma](https://github.com/elpoelma)! - location-plugin: add support for `additionalRDFTypes` option
8
+
9
+ ### Patch Changes
10
+
11
+ - [#560](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/560) [`c02dc06`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/c02dc06c264a5fc949af542d5d5c93fc3e09b17f) Thanks [@piemonkey](https://github.com/piemonkey)! - Update documentation to contain information on custom CSS classes
12
+
3
13
  ## 32.2.0
4
14
 
5
15
  ### Minor Changes