ariadne_view_components 0.0.47 → 0.0.49

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +29 -25
  3. data/app/assets/javascripts/ariadne_view_components.js +2 -2
  4. data/app/assets/javascripts/ariadne_view_components.js.map +1 -1
  5. data/app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts +22 -0
  6. data/app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts +1 -0
  7. data/app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts +4 -0
  8. data/app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts +40 -0
  9. data/app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +42 -0
  10. data/app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts +27 -0
  11. data/app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +44 -0
  12. data/app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts +34 -0
  13. data/app/assets/stylesheets/ariadne_view_components.css +3 -3
  14. data/app/components/ariadne/accumulator_controller/accumulator_controller.d.ts +22 -0
  15. data/app/components/ariadne/accumulator_controller/accumulator_controller.js +39 -0
  16. data/app/components/ariadne/accumulator_controller/accumulator_controller.ts +48 -0
  17. data/app/components/ariadne/action_card_component.html.erb +11 -0
  18. data/app/components/ariadne/action_card_component.rb +45 -0
  19. data/app/components/ariadne/ariadne.js +10 -0
  20. data/app/components/ariadne/ariadne.ts +10 -0
  21. data/app/components/ariadne/bottom_tab_component.html.erb +4 -0
  22. data/app/components/ariadne/bottom_tab_component.rb +44 -0
  23. data/app/components/ariadne/bottom_tab_nav_component.html.erb +5 -0
  24. data/app/components/ariadne/bottom_tab_nav_component.rb +33 -0
  25. data/app/components/ariadne/breadcrumbs_component.html.erb +13 -0
  26. data/app/components/ariadne/breadcrumbs_component.rb +31 -0
  27. data/app/components/ariadne/checkbox_component.html.erb +5 -0
  28. data/app/components/ariadne/checkbox_component.rb +43 -0
  29. data/app/components/ariadne/close_button_component.html.erb +4 -0
  30. data/app/components/ariadne/close_button_component.rb +33 -0
  31. data/app/components/ariadne/combobox_component.html.erb +14 -0
  32. data/app/components/ariadne/combobox_component.rb +76 -0
  33. data/app/components/ariadne/dropdown/menu_component.d.ts +1 -0
  34. data/app/components/ariadne/dropdown/menu_component.js +1 -0
  35. data/app/components/ariadne/events_controller/events_controller.d.ts +4 -0
  36. data/app/components/ariadne/events_controller/events_controller.js +6 -0
  37. data/app/components/ariadne/events_controller/events_controller.ts +7 -0
  38. data/app/components/ariadne/layout_component.html.erb +21 -0
  39. data/app/components/ariadne/layout_component.rb +69 -0
  40. data/app/components/ariadne/modal_component.html.erb +11 -0
  41. data/app/components/ariadne/modal_component.rb +88 -0
  42. data/app/components/ariadne/options_controller/options_controller.d.ts +40 -0
  43. data/app/components/ariadne/options_controller/options_controller.js +98 -0
  44. data/app/components/ariadne/options_controller/options_controller.ts +132 -0
  45. data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +42 -0
  46. data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.js +237 -0
  47. data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.ts +278 -0
  48. data/app/components/ariadne/popover_component.html.erb +10 -0
  49. data/app/components/ariadne/popover_component.rb +81 -0
  50. data/app/components/ariadne/progress_bar_component.html.erb +5 -0
  51. data/app/components/ariadne/progress_bar_component.rb +63 -0
  52. data/app/components/ariadne/relative_time_component.html.erb +3 -0
  53. data/app/components/ariadne/relative_time_component.rb +61 -0
  54. data/app/components/ariadne/show_more_button_component.html.erb +11 -0
  55. data/app/components/ariadne/show_more_button_component.rb +47 -0
  56. data/app/components/ariadne/spinner_component.html.erb +16 -0
  57. data/app/components/ariadne/spinner_component.rb +45 -0
  58. data/app/components/ariadne/string_match_controller/string_match_controller.d.ts +27 -0
  59. data/app/components/ariadne/string_match_controller/string_match_controller.js +51 -0
  60. data/app/components/ariadne/string_match_controller/string_match_controller.ts +64 -0
  61. data/app/components/ariadne/subheader_component.html.erb +11 -0
  62. data/app/components/ariadne/subheader_component.rb +65 -0
  63. data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +44 -0
  64. data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.js +153 -0
  65. data/app/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.ts +192 -0
  66. data/app/components/ariadne/toggle_component/toggle_component.html.erb +15 -0
  67. data/app/components/ariadne/toggle_component.rb +95 -0
  68. data/app/components/ariadne/toggleable_controller/toggleable_controller.d.ts +34 -0
  69. data/app/components/ariadne/toggleable_controller/toggleable_controller.js +54 -0
  70. data/app/components/ariadne/toggleable_controller/toggleable_controller.ts +77 -0
  71. data/lib/ariadne/view_components/version.rb +1 -1
  72. data/static/arguments.yml +50 -0
  73. data/static/audited_at.json +17 -0
  74. data/static/classes.yml +209 -173
  75. data/static/constants.json +356 -0
  76. data/static/statuses.json +17 -0
  77. data/tailwind.config.js +7 -7
  78. metadata +75 -12
  79. /data/app/assets/javascripts/{ariadne-form.d.ts → components/ariadne/ariadne-form.d.ts} +0 -0
  80. /data/app/assets/javascripts/{ariadne.d.ts → components/ariadne/ariadne.d.ts} +0 -0
  81. /data/app/assets/javascripts/{clipboard_copy_component → components/ariadne/clipboard_copy_component}/clipboard-copy-component.d.ts +0 -0
  82. /data/app/assets/javascripts/{rich_text_area_component → components/ariadne/rich_text_area_component}/rich-text-area-component.d.ts +0 -0
  83. /data/app/assets/javascripts/{slideover_component → components/ariadne/slideover_component}/slideover-component.d.ts +0 -0
  84. /data/app/assets/javascripts/{tab_container_component → components/ariadne/tab_container_component}/tab-container-component.d.ts +0 -0
  85. /data/app/assets/javascripts/{tab_nav_component → components/ariadne/tab_nav_component}/tab-nav-component.d.ts +0 -0
  86. /data/app/assets/javascripts/{time_ago_component → components/ariadne/time_ago_component}/time-ago-component.d.ts +0 -0
  87. /data/app/assets/javascripts/{tooltip_component → components/ariadne/tooltip_component}/tooltip-component.d.ts +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 413d699c7f4e99766cbf6f98b07b82a7289506d367f5167e27cc89b7cd37f264
4
- data.tar.gz: a9f6da5e48846e35ec6d2357ab5315bcfafc5baaae3b1a7a9f6982a92b35f744
3
+ metadata.gz: e7f20cb1b8df47521ded9e3e718286853422bdeb4ed4a70b9b9c2e4f29ffde6c
4
+ data.tar.gz: 65dfdda92b5d78abebed8812f4a237aaca591ef38bb1eec4d19951483cb200a8
5
5
  SHA512:
6
- metadata.gz: a1200a21fd8ce353c1a3f605d2be862074a13d0759262e63f1500b3e36e1f012d4cde7524da8e7b691ad1c091eda907b0d2c27ece04e3559592881293448f804
7
- data.tar.gz: 3385fc1d1c5f9ce433d9ecea7e367d6636428d29bcff5aae6c6f6f11d28203e2f91dc79fb2ae124ce15bf1e7d2e12f497cc1cb0026be2c9d4c9f52fd3abbcabc
6
+ metadata.gz: 14e31bcb0de84c1891e6183cea43c94ebb77154cfc57fc8a0deca2945d344ea9930beda4aa552d263a9abb8bb06e0b9a4a61890314bca5e63bdf499554447e60
7
+ data.tar.gz: 82b96287188b1dfc8696c57cd50e41d406d8e5ff3932f8ec8cfd92e68ef10c6da6021a6c2fdab8efc93b9b13af0687b74a1339a190d95a6e7452144da27f2ea3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.48](https://github.com/yettoapp/ariadne/compare/v0.0.47...v0.0.48) (2023-06-14)
4
+
5
+ ## [v0.0.47](https://github.com/yettoapp/ariadne/tree/v0.0.47) (2023-05-05)
6
+
7
+ [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.46...v0.0.47)
8
+
3
9
  ## [v0.0.46](https://github.com/yettoapp/ariadne/tree/v0.0.46) (2023-05-04)
4
10
 
5
11
  [Full Changelog](https://github.com/yettoapp/ariadne/compare/v0.0.45...v0.0.46)
@@ -70,9 +76,9 @@
70
76
  - build\(deps-dev\): bump @typescript-eslint/eslint-plugin from 5.40.0 to 5.59.1 [\#283](https://github.com/yettoapp/ariadne/pull/283) ([dependabot[bot]](https://github.com/apps/dependabot))
71
77
  - \[auto-browserslist\] update Browserslist db [\#282](https://github.com/yettoapp/ariadne/pull/282) ([sisyphusbot](https://github.com/sisyphusbot))
72
78
  - Attempt to use centralized GitHub Actions [\#266](https://github.com/yettoapp/ariadne/pull/266) ([gjtorikian](https://github.com/gjtorikian))
73
- - Revert "build\(deps\): update view\_component requirement from ~\> 2.0 to ~\> 3.0" [\#265](https://github.com/yettoapp/ariadne/pull/265) ([gjtorikian](https://github.com/gjtorikian))
79
+ - Revert "build\(deps\): update view_component requirement from ~\> 2.0 to ~\> 3.0" [\#265](https://github.com/yettoapp/ariadne/pull/265) ([gjtorikian](https://github.com/gjtorikian))
74
80
  - build\(deps\): bump @github/auto-complete-element from 3.4.0 to 3.5.0 [\#264](https://github.com/yettoapp/ariadne/pull/264) ([dependabot[bot]](https://github.com/apps/dependabot))
75
- - build\(deps\): update view\_component requirement from ~\> 2.0 to ~\> 3.0 [\#263](https://github.com/yettoapp/ariadne/pull/263) ([dependabot[bot]](https://github.com/apps/dependabot))
81
+ - build\(deps\): update view_component requirement from ~\> 2.0 to ~\> 3.0 [\#263](https://github.com/yettoapp/ariadne/pull/263) ([dependabot[bot]](https://github.com/apps/dependabot))
76
82
  - Update to Lookbook 2 and VC3 [\#262](https://github.com/yettoapp/ariadne/pull/262) ([gjtorikian](https://github.com/gjtorikian))
77
83
  - Lookbook/install [\#260](https://github.com/yettoapp/ariadne/pull/260) ([ajb85](https://github.com/ajb85))
78
84
  - build\(deps\): bump @tiptap/extension-document from 2.0.2 to 2.0.3 [\#259](https://github.com/yettoapp/ariadne/pull/259) ([dependabot[bot]](https://github.com/apps/dependabot))
@@ -278,33 +284,33 @@
278
284
  - Bump @rollup/plugin-replace from 4.0.0 to 5.0.1 [\#57](https://github.com/yettoapp/ariadne/pull/57) ([dependabot[bot]](https://github.com/apps/dependabot))
279
285
  - Hoist dir to the root [\#56](https://github.com/yettoapp/ariadne/pull/56) ([gjtorikian](https://github.com/gjtorikian))
280
286
  - Adjust paths and events for when CI runs [\#55](https://github.com/yettoapp/ariadne/pull/55) ([gjtorikian](https://github.com/gjtorikian))
281
- - Bump @tiptap/extension-hard-break from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne\_view\_components [\#54](https://github.com/yettoapp/ariadne/pull/54) ([dependabot[bot]](https://github.com/apps/dependabot))
282
- - Bump @tiptap/extension-text from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne\_view\_components [\#53](https://github.com/yettoapp/ariadne/pull/53) ([dependabot[bot]](https://github.com/apps/dependabot))
283
- - Bump @tiptap/extension-dropcursor from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne\_view\_components [\#52](https://github.com/yettoapp/ariadne/pull/52) ([dependabot[bot]](https://github.com/apps/dependabot))
284
- - Bump @tiptap/extension-paragraph from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne\_view\_components [\#51](https://github.com/yettoapp/ariadne/pull/51) ([dependabot[bot]](https://github.com/apps/dependabot))
285
- - Bump @tiptap/extension-document from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne\_view\_components [\#50](https://github.com/yettoapp/ariadne/pull/50) ([dependabot[bot]](https://github.com/apps/dependabot))
286
- - Bump @github/time-elements from 3.1.4 to 3.2.4 in /ruby/ariadne\_view\_components [\#49](https://github.com/yettoapp/ariadne/pull/49) ([dependabot[bot]](https://github.com/apps/dependabot))
287
- - Bump @tiptap/extension-history from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne\_view\_components [\#48](https://github.com/yettoapp/ariadne/pull/48) ([dependabot[bot]](https://github.com/apps/dependabot))
288
- - Bump @tiptap/core from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne\_view\_components [\#47](https://github.com/yettoapp/ariadne/pull/47) ([dependabot[bot]](https://github.com/apps/dependabot))
289
- - Bump @tiptap/extension-gapcursor from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne\_view\_components [\#46](https://github.com/yettoapp/ariadne/pull/46) ([dependabot[bot]](https://github.com/apps/dependabot))
287
+ - Bump @tiptap/extension-hard-break from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#54](https://github.com/yettoapp/ariadne/pull/54) ([dependabot[bot]](https://github.com/apps/dependabot))
288
+ - Bump @tiptap/extension-text from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#53](https://github.com/yettoapp/ariadne/pull/53) ([dependabot[bot]](https://github.com/apps/dependabot))
289
+ - Bump @tiptap/extension-dropcursor from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#52](https://github.com/yettoapp/ariadne/pull/52) ([dependabot[bot]](https://github.com/apps/dependabot))
290
+ - Bump @tiptap/extension-paragraph from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#51](https://github.com/yettoapp/ariadne/pull/51) ([dependabot[bot]](https://github.com/apps/dependabot))
291
+ - Bump @tiptap/extension-document from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#50](https://github.com/yettoapp/ariadne/pull/50) ([dependabot[bot]](https://github.com/apps/dependabot))
292
+ - Bump @github/time-elements from 3.1.4 to 3.2.4 in /ruby/ariadne_view_components [\#49](https://github.com/yettoapp/ariadne/pull/49) ([dependabot[bot]](https://github.com/apps/dependabot))
293
+ - Bump @tiptap/extension-history from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#48](https://github.com/yettoapp/ariadne/pull/48) ([dependabot[bot]](https://github.com/apps/dependabot))
294
+ - Bump @tiptap/core from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#47](https://github.com/yettoapp/ariadne/pull/47) ([dependabot[bot]](https://github.com/apps/dependabot))
295
+ - Bump @tiptap/extension-gapcursor from 2.0.0-beta.199 to 2.0.0-beta.202 in /ruby/ariadne_view_components [\#46](https://github.com/yettoapp/ariadne/pull/46) ([dependabot[bot]](https://github.com/apps/dependabot))
290
296
  - Correct tag, changelog, release logic [\#45](https://github.com/yettoapp/ariadne/pull/45) ([gjtorikian](https://github.com/gjtorikian))
291
297
  - Update outdated tasks [\#44](https://github.com/yettoapp/ariadne/pull/44) ([gjtorikian](https://github.com/gjtorikian))
292
- - Bump @hotwired/stimulus from 3.1.0 to 3.1.1 in /ruby/ariadne\_view\_components [\#43](https://github.com/yettoapp/ariadne/pull/43) ([dependabot[bot]](https://github.com/apps/dependabot))
298
+ - Bump @hotwired/stimulus from 3.1.0 to 3.1.1 in /ruby/ariadne_view_components [\#43](https://github.com/yettoapp/ariadne/pull/43) ([dependabot[bot]](https://github.com/apps/dependabot))
293
299
  - Bump actions/upload-artifact from 2 to 3 [\#42](https://github.com/yettoapp/ariadne/pull/42) ([dependabot[bot]](https://github.com/apps/dependabot))
294
- - Bump @github/details-menu-element from 1.0.12 to 1.0.13 in /ruby/ariadne\_view\_components [\#41](https://github.com/yettoapp/ariadne/pull/41) ([dependabot[bot]](https://github.com/apps/dependabot))
300
+ - Bump @github/details-menu-element from 1.0.12 to 1.0.13 in /ruby/ariadne_view_components [\#41](https://github.com/yettoapp/ariadne/pull/41) ([dependabot[bot]](https://github.com/apps/dependabot))
295
301
  - Add dependabot automerging [\#40](https://github.com/yettoapp/ariadne/pull/40) ([gjtorikian](https://github.com/gjtorikian))
296
302
  - Bump actions/download-artifact from 2 to 3 [\#38](https://github.com/yettoapp/ariadne/pull/38) ([dependabot[bot]](https://github.com/apps/dependabot))
297
- - Bump stimulus-use from 0.50.0 to 0.51.0 in /ruby/ariadne\_view\_components [\#37](https://github.com/yettoapp/ariadne/pull/37) ([dependabot[bot]](https://github.com/apps/dependabot))
298
- - Bump @primer/primitives from 7.9.0 to 7.10.0 in /ruby/ariadne\_view\_components [\#36](https://github.com/yettoapp/ariadne/pull/36) ([dependabot[bot]](https://github.com/apps/dependabot))
299
- - Bump @changesets/cli from 2.24.4 to 2.25.0 in /ruby/ariadne\_view\_components [\#35](https://github.com/yettoapp/ariadne/pull/35) ([dependabot[bot]](https://github.com/apps/dependabot))
300
- - Bump @primer/css from 20.4.7 to 20.4.8 in /ruby/ariadne\_view\_components [\#33](https://github.com/yettoapp/ariadne/pull/33) ([dependabot[bot]](https://github.com/apps/dependabot))
303
+ - Bump stimulus-use from 0.50.0 to 0.51.0 in /ruby/ariadne_view_components [\#37](https://github.com/yettoapp/ariadne/pull/37) ([dependabot[bot]](https://github.com/apps/dependabot))
304
+ - Bump @primer/primitives from 7.9.0 to 7.10.0 in /ruby/ariadne_view_components [\#36](https://github.com/yettoapp/ariadne/pull/36) ([dependabot[bot]](https://github.com/apps/dependabot))
305
+ - Bump @changesets/cli from 2.24.4 to 2.25.0 in /ruby/ariadne_view_components [\#35](https://github.com/yettoapp/ariadne/pull/35) ([dependabot[bot]](https://github.com/apps/dependabot))
306
+ - Bump @primer/css from 20.4.7 to 20.4.8 in /ruby/ariadne_view_components [\#33](https://github.com/yettoapp/ariadne/pull/33) ([dependabot[bot]](https://github.com/apps/dependabot))
301
307
  - Support color theme dropdown [\#32](https://github.com/yettoapp/ariadne/pull/32) ([gjtorikian](https://github.com/gjtorikian))
302
308
  - Update Ariadne to use Component Sidecar Directories [\#31](https://github.com/yettoapp/ariadne/pull/31) ([birdcar](https://github.com/birdcar))
303
- - Bump rollup from 2.79.0 to 2.79.1 in /ruby/ariadne\_view\_components [\#29](https://github.com/yettoapp/ariadne/pull/29) ([dependabot[bot]](https://github.com/apps/dependabot))
304
- - Bump lit-html from 2.3.1 to 2.4.0 in /ruby/ariadne\_view\_components [\#28](https://github.com/yettoapp/ariadne/pull/28) ([dependabot[bot]](https://github.com/apps/dependabot))
305
- - Bump @changesets/changelog-github from 0.4.6 to 0.4.7 in /ruby/ariadne\_view\_components [\#27](https://github.com/yettoapp/ariadne/pull/27) ([dependabot[bot]](https://github.com/apps/dependabot))
306
- - Bump @typescript-eslint/eslint-plugin from 5.36.1 to 5.40.0 in /ruby/ariadne\_view\_components [\#26](https://github.com/yettoapp/ariadne/pull/26) ([dependabot[bot]](https://github.com/apps/dependabot))
307
- - Bump @primer/css from 20.4.4 to 20.4.7 in /ruby/ariadne\_view\_components [\#25](https://github.com/yettoapp/ariadne/pull/25) ([dependabot[bot]](https://github.com/apps/dependabot))
309
+ - Bump rollup from 2.79.0 to 2.79.1 in /ruby/ariadne_view_components [\#29](https://github.com/yettoapp/ariadne/pull/29) ([dependabot[bot]](https://github.com/apps/dependabot))
310
+ - Bump lit-html from 2.3.1 to 2.4.0 in /ruby/ariadne_view_components [\#28](https://github.com/yettoapp/ariadne/pull/28) ([dependabot[bot]](https://github.com/apps/dependabot))
311
+ - Bump @changesets/changelog-github from 0.4.6 to 0.4.7 in /ruby/ariadne_view_components [\#27](https://github.com/yettoapp/ariadne/pull/27) ([dependabot[bot]](https://github.com/apps/dependabot))
312
+ - Bump @typescript-eslint/eslint-plugin from 5.36.1 to 5.40.0 in /ruby/ariadne_view_components [\#26](https://github.com/yettoapp/ariadne/pull/26) ([dependabot[bot]](https://github.com/apps/dependabot))
313
+ - Bump @primer/css from 20.4.4 to 20.4.7 in /ruby/ariadne_view_components [\#25](https://github.com/yettoapp/ariadne/pull/25) ([dependabot[bot]](https://github.com/apps/dependabot))
308
314
 
309
315
  ## [0.0.25](https://github.com/yettoapp/ariadne/tree/0.0.25) (2022-10-17)
310
316
 
@@ -444,6 +450,4 @@
444
450
  - Get app in a more stable state [\#3](https://github.com/yettoapp/ariadne/pull/3) ([gjtorikian](https://github.com/gjtorikian))
445
451
  - Lay a foundation for Ariadne view components [\#2](https://github.com/yettoapp/ariadne/pull/2) ([gjtorikian](https://github.com/gjtorikian))
446
452
 
447
-
448
-
449
- \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
453
+ \* _This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_