Skip to content

Commit

Permalink
Revert "Release 1.7.0 (#379)" (#380)
Browse files Browse the repository at this point in the history
This reverts commit cdada51.
  • Loading branch information
adamjmcgrath authored Mar 18, 2020
1 parent cdada51 commit 9dad76d
Show file tree
Hide file tree
Showing 21 changed files with 1,080 additions and 988 deletions.
21 changes: 0 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,5 @@
# Change Log

## [v1.7.0](https://github.com/auth0/auth0-spa-js/tree/v1.7.0) (2020-03-17)

[Full Changelog](https://github.com/auth0/auth0-spa-js/compare/v1.6.4...v1.7.0)

**Added**

- [SDK-1379] Export constructor [\#377](https://github.com/auth0/auth0-spa-js/pull/377) ([adamjmcgrath](https://github.com/adamjmcgrath))
- [SDK-1395] Refactor loginWithPopup to optionally accept an existing popup window [\#368](https://github.com/auth0/auth0-spa-js/pull/368) ([stevehobbsdev](https://github.com/stevehobbsdev))
- [SDK-1099] Add `localOnly` logout option [\#362](https://github.com/auth0/auth0-spa-js/pull/362) ([adamjmcgrath](https://github.com/adamjmcgrath))

**Changed**

- handleRedirectCallback wont pass redirect_uri undefined if not set in transaction [\#374](https://github.com/auth0/auth0-spa-js/pull/374) ([albertlockett](https://github.com/albertlockett))
- Update dependencies within semver ranges [\#371](https://github.com/auth0/auth0-spa-js/pull/371) ([stevehobbsdev](https://github.com/stevehobbsdev))
- center popup over owner window [\#356](https://github.com/auth0/auth0-spa-js/pull/356) ([ggascoigne](https://github.com/ggascoigne))

**Fixed**

- [SDK-1127] Delay removal of iframe to prevent Chrome hanging status bug #240 [\#376](https://github.com/auth0/auth0-spa-js/pull/376) ([adamjmcgrath](https://github.com/adamjmcgrath))
- [SDK-1125] createAuth0Client now throws errors that are not login_required [\#369](https://github.com/auth0/auth0-spa-js/pull/369) ([stevehobbsdev](https://github.com/stevehobbsdev))

## [v1.6.4](https://github.com/auth0/auth0-spa-js/tree/v1.6.4) (2020-02-10)

[Full Changelog](https://github.com/auth0/auth0-spa-js/compare/v1.6.3...v1.6.4)
Expand Down
104 changes: 58 additions & 46 deletions docs/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -492,8 +492,6 @@ ul.tsd-descriptions > li > :last-child > :last-child > :last-child {
padding-bottom: 200px; }

.row {
display: -ms-flexbox;
display: flex;
position: relative;
margin: 0 -10px; }
.row:after {
Expand Down Expand Up @@ -587,7 +585,7 @@ ul.tsd-descriptions > li > :last-child > :last-child > :last-child {
height: 17px;
margin: 0 3px 2px 0;
background-image: url(../images/icons.png); }
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
@media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
.tsd-kind-icon:before {
background-image: url(../images/icons@2x.png);
background-size: 238px 204px; } }
Expand Down Expand Up @@ -1558,6 +1556,7 @@ pre {
position: fixed !important;
overflow: auto;
-webkit-overflow-scrolling: touch;
overflow-scrolling: touch;
z-index: 1024;
top: 0 !important;
bottom: 0 !important;
Expand Down Expand Up @@ -1646,6 +1645,7 @@ html.minimal .tsd-navigation {
position: fixed !important;
overflow: auto;
-webkit-overflow-scrolling: touch;
overflow-scrolling: touch;
box-sizing: border-box;
z-index: 1;
left: 0;
Expand Down Expand Up @@ -1823,6 +1823,11 @@ footer {
-o-column-count: 2;
column-count: 2; } }
.tsd-index-panel ul.tsd-index-list li {
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
-ms-column-break-inside: avoid;
-o-column-break-inside: avoid;
column-break-inside: avoid;
-webkit-page-break-inside: avoid;
-moz-page-break-inside: avoid;
-ms-page-break-inside: avoid;
Expand Down Expand Up @@ -1879,7 +1884,7 @@ footer {
border-bottom: none; }

.tsd-navigation {
margin: 0 0 0 40px; }
padding: 0 0 0 40px; }
.tsd-navigation a {
display: block;
padding-top: 2px;
Expand Down Expand Up @@ -1929,45 +1934,56 @@ footer {
.tsd-navigation.primary li.globals + li > a {
padding-top: 20px; }

.tsd-navigation.secondary {
max-height: calc(100vh - 1rem - 40px);
overflow: auto;
position: -webkit-sticky;
position: sticky;
top: calc(.5rem + 40px);
transition: .3s; }
.tsd-navigation.secondary.tsd-navigation--toolbar-hide {
max-height: calc(100vh - 1rem);
top: .5rem; }
.tsd-navigation.secondary ul {
transition: opacity 0.2s; }
.tsd-navigation.secondary ul li a {
padding-left: 25px; }
.tsd-navigation.secondary ul li li a {
padding-left: 45px; }
.tsd-navigation.secondary ul li li li a {
padding-left: 65px; }
.tsd-navigation.secondary ul li li li li a {
padding-left: 85px; }
.tsd-navigation.secondary ul li li li li li a {
padding-left: 105px; }
.tsd-navigation.secondary ul li li li li li li a {
padding-left: 125px; }
.tsd-navigation.secondary ul.current a {
border-left-color: #eee; }
.tsd-navigation.secondary li.focus > a,
.tsd-navigation.secondary ul.current li.focus > a {
border-left-color: #000; }
.tsd-navigation.secondary li.current {
margin-top: 20px;
margin-bottom: 20px;
.tsd-navigation.secondary ul {
transition: opacity 0.2s; }
.tsd-navigation.secondary ul li a {
padding-left: 25px; }
.tsd-navigation.secondary ul li li a {
padding-left: 45px; }
.tsd-navigation.secondary ul li li li a {
padding-left: 65px; }
.tsd-navigation.secondary ul li li li li a {
padding-left: 85px; }
.tsd-navigation.secondary ul li li li li li a {
padding-left: 105px; }
.tsd-navigation.secondary ul li li li li li li a {
padding-left: 125px; }
.tsd-navigation.secondary ul.current a {
border-left-color: #eee; }
.tsd-navigation.secondary li.current > a {
font-weight: bold; }

.tsd-navigation.secondary li.focus > a,
.tsd-navigation.secondary ul.current li.focus > a {
border-left-color: #000; }

.tsd-navigation.secondary li.current {
margin-top: 20px;
margin-bottom: 20px;
border-left-color: #eee; }
.tsd-navigation.secondary li.current > a {
font-weight: bold; }

@media (min-width: 901px) {
.menu-sticky-wrap {
position: static; } }
position: static; }
.no-csspositionsticky .menu-sticky-wrap.sticky {
position: fixed; }
.no-csspositionsticky .menu-sticky-wrap.sticky-current {
position: fixed; }
.no-csspositionsticky .menu-sticky-wrap.sticky-current ul.before-current,
.no-csspositionsticky .menu-sticky-wrap.sticky-current ul.after-current {
opacity: 0; }
.no-csspositionsticky .menu-sticky-wrap.sticky-bottom {
position: absolute;
top: auto !important;
left: auto !important;
bottom: 0;
right: 0; }
.csspositionsticky .menu-sticky-wrap.sticky {
position: -webkit-sticky;
position: sticky; }
.csspositionsticky .menu-sticky-wrap.sticky-current {
position: -webkit-sticky;
position: sticky; } }

.tsd-panel {
margin: 20px 0;
Expand Down Expand Up @@ -2188,16 +2204,15 @@ ul.tsd-type-parameters {
padding: 0; }

.tsd-page-toolbar {
position: fixed;
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 40px;
color: #333;
background: #fff;
border-bottom: 1px solid #eee;
transition: transform .3s linear; }
border-bottom: 1px solid #eee; }
.tsd-page-toolbar a {
color: #333;
text-decoration: none; }
Expand All @@ -2217,9 +2232,6 @@ ul.tsd-type-parameters {
.tsd-page-toolbar .table-cell:first-child {
width: 100%; }

.tsd-page-toolbar--hide {
transform: translateY(-100%); }

.tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before {
content: '';
display: inline-block;
Expand All @@ -2230,7 +2242,7 @@ ul.tsd-type-parameters {
background-repeat: no-repeat;
text-indent: -1024px;
vertical-align: bottom; }
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
@media (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
.tsd-widget:before, .tsd-select .tsd-select-label:before, .tsd-select .tsd-select-list li:before {
background-image: url(../images/widgets@2x.png);
background-size: 320px 40px; } }
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/js/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/js/search.js

Large diffs are not rendered by default.

Loading

0 comments on commit 9dad76d

Please sign in to comment.