Skip to content

Commit

Permalink
Merge f0c427a into 413a6ac
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladay committed Nov 17, 2021
2 parents 413a6ac + f0c427a commit 11ef012
Show file tree
Hide file tree
Showing 15 changed files with 63 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,6 @@ src/config.json
src/config-template.json
src/assets/icons/*
!src/assets/icons/tl
!src/assets/icons/bootstrap

.wvr-ud/static-assets/styles.css
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.12.1] - 11-17-21
### Resolves

- The mobile menu slide out tray continues to allow links to be clicked on when closed. by @kaladay in (#405)
- Verify that TAMU Library Components is showing icons in the mobile menu. by @kaladay in (#404)
- Tl header top nav dropdown menu position by @rmathew1011 in (#408)

## [1.12.0] - 11-02-21
### Resolves

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "git",
"url": "git+https://github.com/TAMULib/tamu-library-components.git"
},
"version": "1.12.0",
"version": "1.12.1-rc.1",
"private": false,
"license": "MIT",
"config": {
Expand All @@ -23,6 +23,7 @@
"build:docs-setup": "node scripts/build-tl-components-docs.js",
"build:docs-usage": "wvr-ud",
"build:docker": "node scripts/build-docker.js",
"build:npm-local": "node scripts/npm-local.js",
"build:static": "npm run build:static-docs && npm run build:static-reports",
"build:static-setup": "node scripts/build-tl-components-static.js",
"build:static-docs": "npm run test:audit && npm run build:static-setup && npm run build:docs-setup && npm run build:docs-development && npm run build:docs-usage",
Expand Down
2 changes: 1 addition & 1 deletion projects/tl-elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wvr/tl-elements",
"version": "1.12.0",
"version": "1.12.1-rc.1",
"description": "Collection of angular components for TAMU's Custom Web Component UI",
"author": "Texas A&M University Libraries",
"private": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
[textDecoration]="btnTextDecoration"
[textDecorationActive]="btnTextDecorationActive"
[textDecorationFocus]="btnTextDecorationFocus"
[dropdownMenuDisplay]="'static'"
ngbDropdownAnchor
>
<wvre-dropdown-btn>
Expand Down
15 changes: 9 additions & 6 deletions projects/tl-elements/src/lib/tl-header/tl-header.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
[btnHref]="'https://library.tamu.edu/about/index.html'"
[toggleOn]="'mouseover'"
[menuXOffset]="'-65px'"
[menuYOffset]="'-2px'"
[btnFontFamily]="'var(--tl-font-family-sans-serif)'">
[menuYOffset]="'45px'"
[btnFontFamily]="'var(--tl-font-family-sans-serif)'"
[dropdownMenuDisplay]="'static'">
<wvre-dropdown-btn>
<wvr-text-component value="Libraries"></wvr-text-component>
</wvre-dropdown-btn>
Expand Down Expand Up @@ -102,8 +103,9 @@
[btnHref]="'https://library.tamu.edu'"
[toggleOn]="'mouseover'"
[menuXOffset]="'-150px'"
[menuYOffset]="'-2px'"
[btnFontFamily]="'var(--tl-font-family-sans-serif)'">
[menuYOffset]="'45px'"
[btnFontFamily]="'var(--tl-font-family-sans-serif)'"
[dropdownMenuDisplay]="'static'">
<wvre-dropdown-btn>
<wvr-text-component value="Information for"></wvr-text-component>
</wvre-dropdown-btn>
Expand Down Expand Up @@ -159,8 +161,9 @@
[btnHref]="'http://askus.library.tamu.edu/'"
[toggleOn]="'mouseover'"
[menuXOffset]="'-365px'"
[menuYOffset]="'-2px'"
[btnFontFamily]="'var(--tl-font-family-sans-serif)'">
[menuYOffset]="'45px'"
[btnFontFamily]="'var(--tl-font-family-sans-serif)'"
[dropdownMenuDisplay]="'static'">
<wvre-dropdown-btn>
<wvr-text-component value="Help"></wvr-text-component>
</wvre-dropdown-btn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
margin-left: -20px;
padding: 0px 15px;
}

}

.information-for {
Expand Down Expand Up @@ -180,6 +181,7 @@
border-bottom: 0px;
}
}

}

wvr-nav-list-component[bottom-navigation]
Expand Down Expand Up @@ -452,6 +454,7 @@
.mobile-menu.closed {
width: 0px;
opacity: 0;
overflow: hidden;
}
}
}
Expand Down
16 changes: 16 additions & 0 deletions scripts/npm-local.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env node

const fs = require('fs-extra');
const shell = require('shelljs')
const angularCli = require('@angular/cli');
const elementsPath = 'dist/tl-elements';

shell.exec('npm --registry http://localhost:4873 install --no-save @wvr/elements');

angularCli.default({
cliArgs: ['b'],
inputStream: process.stdin,
outputStream: process.stdout
}).then(c => {
shell.exit();
});
5 changes: 5 additions & 0 deletions src/assets/icons/bootstrap/arrow-right-circle.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/bootstrap/caret-down-fill.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/bootstrap/caret-right-fill.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/bootstrap/chevron-down.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/bootstrap/chevron-right.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/bootstrap/gift-fill.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icons/bootstrap/plus.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 11ef012

Please sign in to comment.