nodebb-theme-harmony 2.0.0-pre.8 → 2.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 (94) hide show
  1. package/README.md +3 -0
  2. package/library.js +1 -7
  3. package/package-lock.json +372 -402
  4. package/package.json +2 -2
  5. package/plugin.json +1 -2
  6. package/public/harmony.js +15 -15
  7. package/scss/common.scss +2 -8
  8. package/scss/harmony.scss +0 -1
  9. package/scss/header.scss +1 -1
  10. package/scss/mixins.scss +12 -5
  11. package/scss/modules/cover.scss +2 -4
  12. package/scss/modules/topics-list.scss +1 -1
  13. package/scss/overrides.scss +4 -0
  14. package/scss/sidebar.scss +18 -19
  15. package/scss/skins.scss +9 -0
  16. package/scss/topic.scss +4 -12
  17. package/templates/account/blocks.tpl +18 -7
  18. package/templates/account/categories.tpl +1 -1
  19. package/templates/account/consent.tpl +2 -2
  20. package/templates/account/edit/password.tpl +8 -8
  21. package/templates/account/edit/username.tpl +2 -3
  22. package/templates/account/edit.tpl +30 -15
  23. package/templates/account/info.tpl +142 -73
  24. package/templates/account/posts.tpl +7 -7
  25. package/templates/account/profile.tpl +19 -22
  26. package/templates/account/read.tpl +1 -0
  27. package/templates/account/settings.tpl +5 -5
  28. package/templates/account/shares.tpl +20 -0
  29. package/templates/account/topics.tpl +6 -5
  30. package/templates/admin/plugins/harmony.tpl +1 -0
  31. package/templates/footer.tpl +1 -1
  32. package/templates/groups/list.tpl +9 -7
  33. package/templates/notifications.tpl +1 -1
  34. package/templates/partials/account/header.tpl +15 -15
  35. package/templates/partials/account/sidebar-left.tpl +30 -16
  36. package/templates/partials/breadcrumbs-json-ld.tpl +15 -25
  37. package/templates/partials/categories/item.tpl +8 -8
  38. package/templates/partials/categories/lastpost.tpl +1 -1
  39. package/templates/partials/category/subcategory.tpl +1 -1
  40. package/templates/partials/groups/list.tpl +1 -1
  41. package/templates/partials/groups/memberlist.tpl +1 -1
  42. package/templates/partials/groups/sidebar-left.tpl +8 -8
  43. package/templates/partials/header/brand.tpl +3 -1
  44. package/templates/partials/mobile-footer.tpl +3 -6
  45. package/templates/partials/notifications_list.tpl +2 -2
  46. package/templates/partials/post_bar.tpl +3 -5
  47. package/templates/partials/posts_list_item.tpl +1 -1
  48. package/templates/partials/quick-search-results.tpl +5 -5
  49. package/templates/partials/search-filters.tpl +1 -1
  50. package/templates/partials/search-results.tpl +1 -1
  51. package/templates/partials/sidebar/chats.tpl +1 -1
  52. package/templates/partials/sidebar/notifications.tpl +1 -1
  53. package/templates/partials/sidebar/search.tpl +2 -2
  54. package/templates/partials/sidebar-left.tpl +2 -5
  55. package/templates/partials/tags_list.tpl +6 -4
  56. package/templates/partials/topic/event.tpl +1 -1
  57. package/templates/partials/topic/navigator.tpl +2 -2
  58. package/templates/partials/topic/post-menu-list.tpl +25 -1
  59. package/templates/partials/topic/post-menu.tpl +3 -29
  60. package/templates/partials/topic/post.tpl +108 -101
  61. package/templates/partials/topic/quickreply.tpl +2 -2
  62. package/templates/partials/topic/reply-button.tpl +4 -2
  63. package/templates/partials/topic/sort.tpl +1 -1
  64. package/templates/partials/topic/thumbs.tpl +1 -1
  65. package/templates/partials/topic/tools.tpl +2 -6
  66. package/templates/partials/topic/watch.tpl +1 -1
  67. package/templates/partials/topic-filters.tpl +1 -1
  68. package/templates/partials/topic-list-bar.tpl +6 -6
  69. package/templates/partials/topic-terms.tpl +1 -1
  70. package/templates/partials/topics_list.tpl +12 -4
  71. package/templates/partials/users/item.tpl +33 -31
  72. package/templates/partials/users_list_menu.tpl +5 -5
  73. package/templates/post-queue.tpl +6 -2
  74. package/templates/recent.tpl +7 -0
  75. package/templates/topic.tpl +81 -88
  76. package/templates/users.tpl +2 -2
  77. package/templates/world.tpl +32 -1
  78. package/scss/modules/bottom-sheet.scss +0 -52
  79. package/templates/flags/detail.tpl +0 -179
  80. package/templates/flags/list.tpl +0 -6
  81. package/templates/login.tpl +0 -102
  82. package/templates/partials/category/filter-dropdown-content.tpl +0 -41
  83. package/templates/partials/category/selector-dropdown-content.tpl +0 -39
  84. package/templates/partials/category/sort.tpl +0 -39
  85. package/templates/partials/category/tools.tpl +0 -89
  86. package/templates/partials/category/watch.tpl +0 -67
  87. package/templates/partials/flags/bulk-actions.tpl +0 -9
  88. package/templates/partials/flags/filters.tpl +0 -189
  89. package/templates/partials/flags/results.tpl +0 -38
  90. package/templates/partials/groups/filter-dropdown-content.tpl +0 -25
  91. package/templates/partials/tags/filter-dropdown-content.tpl +0 -38
  92. package/templates/partials/tags/watch.tpl +0 -42
  93. package/templates/partials/users/filter-dropdown-content.tpl +0 -23
  94. package/templates/register.tpl +0 -104
package/README.md CHANGED
@@ -10,6 +10,9 @@ Issues are tracked in [the main project issue tracker](https://github.com/NodeBB
10
10
  ## Screenshots
11
11
 
12
12
  ### Categories
13
+
14
+ _The cards in the header are added by the recent cards plugin. https://github.com/NodeBB-Community/nodebb-plugin-recent-cards_
15
+
13
16
  <img height="450" src="screenshots/categories.png">
14
17
 
15
18
  ### Recent
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
+ };