nodebb-plugin-composer-default 11.0.3 → 11.0.4
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.
package/package.json
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
{{{ else }}}
|
|
7
7
|
{{{ if ((isTopicOrMain && ./visibility.main) || (!isTopicOrMain && ./visibility.reply)) }}}
|
|
8
8
|
{{{ if ./dropdownItems.length }}}
|
|
9
|
-
<li class="dropdown dropdown-left bottom-sheet {./visibility.class}" title="{tx(./title)}">
|
|
10
|
-
<button class="btn btn-sm btn-link text-reset" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" aria-label="{./title}">
|
|
9
|
+
<li class="dropdown dropdown-left bottom-sheet {./visibility.class}" title="{{tx(./title)}}">
|
|
10
|
+
<button class="btn btn-sm btn-link text-reset" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" aria-label="{{tx(./title)}}">
|
|
11
11
|
<i class="{./className}"></i>
|
|
12
12
|
</button>
|
|
13
13
|
<ul class="dropdown-menu p-1" role="menu">
|
|
14
14
|
{{{ each ./dropdownItems }}}
|
|
15
15
|
<li>
|
|
16
16
|
<a href="#" data-format="{./name}" class="dropdown-item rounded-1 position-relative" role="menuitem">
|
|
17
|
-
<i class="{./className} text-secondary"></i> {tx(./text)}
|
|
17
|
+
<i class="{./className} text-secondary"></i> {{tx(./text)}}
|
|
18
18
|
{{{ if ./badge }}}
|
|
19
19
|
<span class="px-1 position-absolute top-0 start-100 translate-middle-x badge rounded text-bg-info"></span>
|
|
20
20
|
{{{ end }}}
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
</ul>
|
|
25
25
|
</li>
|
|
26
26
|
{{{ else }}}
|
|
27
|
-
<li title="{tx(./title)}" class="{./visibility.class}">
|
|
28
|
-
<button data-format="{./name}" class="btn btn-sm btn-link text-reset position-relative" aria-label="{tx(./title)}">
|
|
27
|
+
<li title="{{tx(./title)}}" class="{./visibility.class}">
|
|
28
|
+
<button data-format="{./name}" class="btn btn-sm btn-link text-reset position-relative" aria-label="{{tx(./title)}}">
|
|
29
29
|
<i class="{./className}"></i>
|
|
30
30
|
{{{ if ./badge }}}
|
|
31
31
|
<span class="px-1 position-absolute top-0 start-100 translate-middle-x badge rounded text-bg-info"></span>
|