nodebb-theme-harmony 2.0.0-pre.4 → 2.0.0-pre.40

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 (79) hide show
  1. package/library.js +1 -7
  2. package/package-lock.json +2325 -0
  3. package/package.json +2 -2
  4. package/plugin.json +1 -2
  5. package/public/harmony.js +8 -9
  6. package/scss/common.scss +2 -8
  7. package/scss/header.scss +1 -1
  8. package/scss/mixins.scss +12 -5
  9. package/scss/overrides.scss +2 -0
  10. package/templates/account/blocks.tpl +18 -7
  11. package/templates/account/categories.tpl +1 -1
  12. package/templates/account/consent.tpl +2 -2
  13. package/templates/account/edit/password.tpl +8 -8
  14. package/templates/account/edit/username.tpl +2 -3
  15. package/templates/account/edit.tpl +4 -4
  16. package/templates/account/info.tpl +142 -73
  17. package/templates/account/posts.tpl +7 -7
  18. package/templates/account/read.tpl +1 -0
  19. package/templates/account/settings.tpl +5 -5
  20. package/templates/account/topics.tpl +6 -5
  21. package/templates/admin/plugins/harmony.tpl +1 -0
  22. package/templates/flags/detail.tpl +4 -4
  23. package/templates/footer.tpl +1 -1
  24. package/templates/groups/list.tpl +6 -6
  25. package/templates/notifications.tpl +1 -1
  26. package/templates/partials/account/header.tpl +6 -6
  27. package/templates/partials/account/sidebar-left.tpl +21 -16
  28. package/templates/partials/breadcrumbs-json-ld.tpl +15 -25
  29. package/templates/partials/buttons/newTopic.tpl +1 -1
  30. package/templates/partials/categories/item.tpl +2 -2
  31. package/templates/partials/category/subcategory.tpl +1 -1
  32. package/templates/partials/flags/bulk-actions.tpl +1 -0
  33. package/templates/partials/flags/filters.tpl +21 -18
  34. package/templates/partials/groups/memberlist.tpl +1 -1
  35. package/templates/partials/groups/sidebar-left.tpl +5 -5
  36. package/templates/partials/mobile-footer.tpl +3 -6
  37. package/templates/partials/notifications_list.tpl +2 -2
  38. package/templates/partials/post_bar.tpl +3 -5
  39. package/templates/partials/posts_list_item.tpl +1 -1
  40. package/templates/partials/quick-search-results.tpl +4 -4
  41. package/templates/partials/search-filters.tpl +2 -2
  42. package/templates/partials/search-results.tpl +1 -1
  43. package/templates/partials/sidebar/chats.tpl +2 -2
  44. package/templates/partials/sidebar/drafts.tpl +1 -1
  45. package/templates/partials/sidebar/notifications.tpl +2 -2
  46. package/templates/partials/sidebar/search.tpl +2 -2
  47. package/templates/partials/sidebar-left.tpl +2 -5
  48. package/templates/partials/tags_list.tpl +3 -3
  49. package/templates/partials/topic/event.tpl +1 -1
  50. package/templates/partials/topic/navigator.tpl +2 -2
  51. package/templates/partials/topic/post-menu-list.tpl +15 -1
  52. package/templates/partials/topic/post-menu.tpl +3 -29
  53. package/templates/partials/topic/post.tpl +37 -32
  54. package/templates/partials/topic/quickreply.tpl +2 -2
  55. package/templates/partials/topic/reply-button.tpl +4 -2
  56. package/templates/partials/topic/sort.tpl +1 -1
  57. package/templates/partials/topic/tools.tpl +2 -6
  58. package/templates/partials/topic/watch.tpl +1 -1
  59. package/templates/partials/topic-filters.tpl +1 -1
  60. package/templates/partials/topic-list-bar.tpl +6 -6
  61. package/templates/partials/topic-terms.tpl +1 -1
  62. package/templates/partials/topics_list.tpl +10 -2
  63. package/templates/partials/users/item.tpl +2 -2
  64. package/templates/partials/users_list_menu.tpl +5 -5
  65. package/templates/post-queue.tpl +6 -2
  66. package/templates/topic.tpl +81 -88
  67. package/templates/users.tpl +1 -1
  68. package/templates/world.tpl +21 -0
  69. package/templates/login.tpl +0 -102
  70. package/templates/partials/category/filter-dropdown-content.tpl +0 -37
  71. package/templates/partials/category/selector-dropdown-content.tpl +0 -35
  72. package/templates/partials/category/sort.tpl +0 -39
  73. package/templates/partials/category/tools.tpl +0 -89
  74. package/templates/partials/category/watch.tpl +0 -67
  75. package/templates/partials/groups/filter-dropdown-content.tpl +0 -25
  76. package/templates/partials/tags/filter-dropdown-content.tpl +0 -34
  77. package/templates/partials/tags/watch.tpl +0 -42
  78. package/templates/partials/users/filter-dropdown-content.tpl +0 -23
  79. package/templates/register.tpl +0 -104
package/library.js CHANGED
@@ -181,10 +181,4 @@ library.saveUserSettings = async function (hookData) {
181
181
  library.filterMiddlewareRenderHeader = async function (hookData) {
182
182
  hookData.templateData.bootswatchSkinOptions = await meta.css.getSkinSwitcherOptions(hookData.req.uid);
183
183
  return hookData;
184
- };
185
-
186
- library.filterTeasersConfigureStripTags = function (hookData) {
187
- // teasers have a stretched-link to go to last post, the anchors in them are not clickable
188
- hookData.tags.push('a');
189
- return hookData;
190
- };
184
+ };