Skip to content

Commit

Permalink
Revert "chore: cleanup of legacy code"
Browse files Browse the repository at this point in the history
This reverts commit 95a9a9f.
  • Loading branch information
blackfalcon committed Apr 21, 2023
1 parent d2b00ee commit d2151d0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ Include the following example HTML code in the `<head>` element of your page.

Both [Unpkg](https://www.unpkg.com/) and [JSDelivr](https://www.jsdelivr.com/) are free open source options that you can use. These are 3rd party resources and Auro is not responsible for their uptime. **Use at your own risk.** These bundle resources are included with the npm package, you are free to use any CDN resource that fits your needs.

### IE11 Support

**Displaimer:** While these components are supported in IE, there may be issues with loading the [web components polyfill](https://www.webcomponents.org/polyfills). Please consult their documentation when supporting IE11.


## auro-icon use cases

The `<auro-icon>` element should be used in situations where users may:
Expand Down
4 changes: 2 additions & 2 deletions src/auro-alaska.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

// ---------------------------------------------------------------------

import { html, css } from "lit";
import { classMap } from 'lit/directives/class-map.js';
import { html, css } from "lit-element";
import { classMap } from 'lit-html/directives/class-map';
import BaseIcon from "./baseIcon";

import as400 from '@alaskaairux/icons/dist/restricted/AS-400_es6.js';
Expand Down
2 changes: 1 addition & 1 deletion src/auro-icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// ---------------------------------------------------------------------

import { html, css } from "lit";
import { classMap } from 'lit/directives/class-map.js';
import { classMap } from 'lit-html/directives/class-map';
import { ifDefined } from 'lit/directives/if-defined.js';
import BaseIcon from "./baseIcon";
import styleCss from "./iconStyle-css.js";
Expand Down
2 changes: 1 addition & 1 deletion src/baseIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// ---------------------------------------------------------------------

import { css } from "lit";
import { css } from "lit-element";
import AuroElement from '@alaskaairux/webcorestylesheets/dist/auroElement/auroElement';
import error from '@alaskaairux/icons/dist/icons/alert/error_es6.js';
import cacheFetch from './cacheFetch';
Expand Down

0 comments on commit d2151d0

Please sign in to comment.