myuw-drawer and myuw-drawer-link
is not currently maintained.
A three-part slide out navigation drawer for use with the MyUW App Bar. Includes drawer, links, and optional subheaders with dividers.
Add the following imports to your page:
<!-- import the module -->
<script type="module" src="https://cdn.my.wisc.edu/@myuw-web-components/myuw-drawer@latest/myuw-drawer.min.mjs"></script>
<!-- fallback for browsers without ES2015 module support -->
<script nomodule src="https://cdn.my.wisc.edu/@myuw-web-components/myuw-drawer@latest/myuw-drawer.min.js"></script>
<myuw-drawer>
<myuw-drawer-link
slot="myuw-drawer-links"
name="MyUW home"
icon="mail"
href="http://google.com"
></myuw-drawer-link>
<myuw-drawer-subheader
slot="myuw-drawer-links"
name="Subheader"
divider
></myuw-drawer-subheader>
<myuw-drawer-link
slot="myuw-drawer-links"
name="Browse apps"
icon="explore"
href="http://google.com"
></myuw-drawer-link>
</myuw-drawer>
Note: The evergreen "latest" version can be used for convenience, but in production settings it is recommended to use the latest release version specifically, and upgrade only after testing!
Use the named <slot>
tags to include child components of the myuw-drawer:
Available slots:
- myuw-drawer-links: Insert the
<myuw-drawer-link>
or<myuw-drawer-subheader>
component
- name: Set the text of the link component
- icon: The name of a Material icon to appear next to the link
- href: The the URL of the link
- name: Set the text of the subheader
- divider: Display a dividing line above the subheader (will display if attribute is present, no value required)
To run the demo app locally and test the component, run the following commands:
$ npm install
$ npm start