@govtechsg/sgds-web-component 0.0.5 → 0.0.6
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/Mainnav/index.js +13 -1
- package/Mainnav/index.js.map +1 -1
- package/index.js +13 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/umd/index.js +13 -1
- package/umd/index.js.map +1 -1
package/Mainnav/index.js
CHANGED
|
@@ -13613,7 +13613,19 @@ let SgdsMainnav = class SgdsMainnav extends SgdsElement {
|
|
|
13613
13613
|
aria-expanded="${this.expanded}"
|
|
13614
13614
|
aria-label="Toggle navigation"
|
|
13615
13615
|
>
|
|
13616
|
-
<
|
|
13616
|
+
<svg
|
|
13617
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13618
|
+
width="30"
|
|
13619
|
+
height="30"
|
|
13620
|
+
fill="currentColor"
|
|
13621
|
+
class="bi bi-list"
|
|
13622
|
+
viewBox="0 0 16 16"
|
|
13623
|
+
>
|
|
13624
|
+
<path
|
|
13625
|
+
fill-rule="evenodd"
|
|
13626
|
+
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"
|
|
13627
|
+
/>
|
|
13628
|
+
</svg>
|
|
13617
13629
|
</button>
|
|
13618
13630
|
<div
|
|
13619
13631
|
class=${this.mode === "default" ? collapseClass : offcanvasClass}
|