Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webdev 6678 update dependencies #76

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
},
"dependencies": {
"@internetarchive/ia-activity-indicator": "^0.0.4",
"@internetarchive/icon-close": "^1.3.2",
"@internetarchive/icon-ia-logo": "^1.3.2",
"@internetarchive/icon-user": "^1.3.2",
"lit": "^2.8.0",
Expand Down
19 changes: 19 additions & 0 deletions src/assets/icons/close-icon.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/**
* @file Close Icon
* @requires lit
* @exports TemplateResult
* Path: src/assets/icons/close-icon.ts
*/
import { svg } from 'lit';

export default svg`
<svg
mc2 marked this conversation as resolved.
Show resolved Hide resolved
viewBox="0 0 40 40"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
aria-labelledby="closeTitleID closeDescID"
>
<title id="closeTitleID">Close icon</title>
<desc id="closeDescID">A line drawing of an X</desc>
<path d="m29.1923882 10.8076118c.5857864.5857865.5857864 1.535534 0 2.1213204l-7.0711162 7.0703398 7.0711162 7.0717958c.5857864.5857864.5857864 1.5355339 0 2.1213204-.5857865.5857864-1.535534.5857864-2.1213204 0l-7.0717958-7.0711162-7.0703398 7.0711162c-.5857864.5857864-1.5355339.5857864-2.1213204 0-.5857864-.5857865-.5857864-1.535534 0-2.1213204l7.0706602-7.0717958-7.0706602-7.0703398c-.5857864-.5857864-.5857864-1.5355339 0-2.1213204.5857865-.5857864 1.535534-.5857864 2.1213204 0l7.0703398 7.0706602 7.0717958-7.0706602c.5857864-.5857864 1.5355339-.5857864 2.1213204 0z" class="fill-color" fill-rule="evenodd"/>
</svg>`;
3 changes: 2 additions & 1 deletion src/modal-template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { LitElement, html, css, CSSResult, TemplateResult, nothing } from 'lit';
import { property, customElement } from 'lit/decorators.js';

import '@internetarchive/ia-activity-indicator/ia-activity-indicator';
import closeIcon from '@internetarchive/icon-close/index.js';
// import closeIcon from '@internetarchive/icon-close/index.js';
import closeIcon from './assets/icons/close-icon';
import iaIcon from '@internetarchive/icon-ia-logo/index.js';

import { ModalConfig } from './modal-config';
Expand Down
Loading