@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/index.js
CHANGED
|
@@ -34220,7 +34220,19 @@ let SgdsMainnav = class SgdsMainnav extends SgdsElement {
|
|
|
34220
34220
|
aria-expanded="${this.expanded}"
|
|
34221
34221
|
aria-label="Toggle navigation"
|
|
34222
34222
|
>
|
|
34223
|
-
<
|
|
34223
|
+
<svg
|
|
34224
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
34225
|
+
width="30"
|
|
34226
|
+
height="30"
|
|
34227
|
+
fill="currentColor"
|
|
34228
|
+
class="bi bi-list"
|
|
34229
|
+
viewBox="0 0 16 16"
|
|
34230
|
+
>
|
|
34231
|
+
<path
|
|
34232
|
+
fill-rule="evenodd"
|
|
34233
|
+
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"
|
|
34234
|
+
/>
|
|
34235
|
+
</svg>
|
|
34224
34236
|
</button>
|
|
34225
34237
|
<div
|
|
34226
34238
|
class=${this.mode === "default" ? collapseClass : offcanvasClass}
|