Skip to content

Commit

Permalink
Release 11.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbieTheWagner committed Apr 3, 2023
1 parent 4d3bebd commit cacae74
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 82 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Expand Up @@ -13,6 +13,28 @@ https://github.com/highlightjs/highlight.js/issues/2877




## v11.1.0 (2023-04-03)

#### :rocket: Enhancement
* [#2168](https://github.com/shipshapecode/shepherd/pull/2168) add funtion support for confirmCancel ([@taozhiyu](https://github.com/taozhiyu))

#### :bug: Bug Fix
* [#2204](https://github.com/shipshapecode/shepherd/pull/2204) Bugfix: prevent to show spurious warnings in dev panel console ([@SamyCookie](https://github.com/SamyCookie))

#### :memo: Documentation
* [#2251](https://github.com/shipshapecode/shepherd/pull/2251) Use a valid event on code example ([@didaquis](https://github.com/didaquis))
* [#2224](https://github.com/shipshapecode/shepherd/pull/2224) Remove mention to Popper on docs ([@didaquis](https://github.com/didaquis))
* [#2205](https://github.com/shipshapecode/shepherd/pull/2205) Fix the typo in docs ([@de-don](https://github.com/de-don))
* [#2174](https://github.com/shipshapecode/shepherd/pull/2174) Adding an example use case of shepherd to Read Me ([@JayP718](https://github.com/JayP718))

#### Committers: 5
- Denis ([@de-don](https://github.com/de-don))
- Dídac García ([@didaquis](https://github.com/didaquis))
- [@JayP718](https://github.com/JayP718)
- [@SamyCookie](https://github.com/SamyCookie)
- 涛之雨 ([@taozhiyu](https://github.com/taozhiyu))

## v11.0.1 (2022-12-12)

#### :bug: Bug Fix
Expand Down
165 changes: 84 additions & 81 deletions landing/css/welcome.css
@@ -1,5 +1,5 @@
/*
! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
! tailwindcss v3.3.1 | MIT License | https://tailwindcss.com
*/

/*
Expand Down Expand Up @@ -31,6 +31,7 @@
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
Expand All @@ -45,6 +46,8 @@ html {
/* 4 */
font-feature-settings: normal;
/* 5 */
font-variation-settings: normal;
/* 6 */
}

/*
Expand Down Expand Up @@ -523,68 +526,68 @@ video {
top: 0;
}

.z-20 {
z-index: 20;
.z-0 {
z-index: 0;
}

.z-10 {
z-index: 10;
}

.z-0 {
z-index: 0;
.z-20 {
z-index: 20;
}

.m-4 {
margin: 1rem;
}

.mt-4 {
margin-top: 1rem;
.-ml-3 {
margin-left: -0.75rem;
}

.ml-2 {
margin-left: 0.5rem;
.mb-12 {
margin-bottom: 3rem;
}

.mt-40 {
margin-top: 10rem;
.mb-4 {
margin-bottom: 1rem;
}

.-ml-3 {
margin-left: -0.75rem;
.ml-2 {
margin-left: 0.5rem;
}

.mt-3 {
margin-top: 0.75rem;
.mr-2 {
margin-right: 0.5rem;
}

.mt-8 {
margin-top: 2rem;
.mr-4 {
margin-right: 1rem;
}

.mb-12 {
margin-bottom: 3rem;
.mt-10 {
margin-top: 2.5rem;
}

.mt-12 {
margin-top: 3rem;
}

.mb-4 {
margin-bottom: 1rem;
.mt-3 {
margin-top: 0.75rem;
}

.mt-10 {
margin-top: 2.5rem;
.mt-4 {
margin-top: 1rem;
}

.mr-2 {
margin-right: 0.5rem;
.mt-40 {
margin-top: 10rem;
}

.mr-4 {
margin-right: 1rem;
.mt-8 {
margin-top: 2rem;
}

.block {
Expand All @@ -603,6 +606,10 @@ video {
display: flex;
}

.h-32 {
height: 8rem;
}

.h-40 {
height: 10rem;
}
Expand All @@ -611,24 +618,12 @@ video {
height: 18rem;
}

.h-full {
height: 100%;
}

.h-32 {
height: 8rem;
}

.h-auto {
height: auto;
}

.w-full {
width: 100%;
}

.w-56 {
width: 14rem;
.h-full {
height: 100%;
}

.w-32 {
Expand All @@ -639,26 +634,34 @@ video {
width: 12rem;
}

.w-8 {
width: 2rem;
.w-56 {
width: 14rem;
}

.w-6 {
width: 1.5rem;
}

.max-w-8xl {
max-width: 90rem;
.w-8 {
width: 2rem;
}

.max-w-6xl {
max-width: 72rem;
.w-full {
width: 100%;
}

.max-w-3xl {
max-width: 48rem;
}

.max-w-6xl {
max-width: 72rem;
}

.max-w-8xl {
max-width: 90rem;
}

.flex-col {
flex-direction: column;
}
Expand All @@ -679,14 +682,14 @@ video {
white-space: nowrap;
}

.border-4 {
border-width: 4px;
}

.border-2 {
border-width: 2px;
}

.border-4 {
border-width: 4px;
}

.border-b-4 {
border-bottom-width: 4px;
}
Expand All @@ -696,9 +699,9 @@ video {
border-color: rgb(22 32 45 / var(--tw-border-opacity));
}

.bg-white {
.bg-grey {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
background-color: rgb(243 245 245 / var(--tw-bg-opacity));
}

.bg-grey-light {
Expand All @@ -711,19 +714,19 @@ video {
background-color: rgb(22 32 45 / var(--tw-bg-opacity));
}

.bg-grey {
.bg-white {
--tw-bg-opacity: 1;
background-color: rgb(243 245 245 / var(--tw-bg-opacity));
}

.p-4 {
padding: 1rem;
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.p-2 {
padding: 0.5rem;
}

.p-4 {
padding: 1rem;
}

.p-6 {
padding: 1.5rem;
}
Expand Down Expand Up @@ -752,10 +755,6 @@ video {
font-family: GT Pressura, sans-serif;
}

.text-xl {
font-size: 1.25rem;
}

.text-2xl {
font-size: 1.5rem;
}
Expand All @@ -764,6 +763,10 @@ video {
font-size: 4rem;
}

.text-xl {
font-size: 1.25rem;
}

.uppercase {
text-transform: uppercase;
}
Expand Down Expand Up @@ -1047,34 +1050,30 @@ pre {
}

@media (min-width: 1024px) {
.lg\:mt-0 {
margin-top: 0;
.lg\:mb-24 {
margin-bottom: 6rem;
}

.lg\:mt-4 {
margin-top: 1rem;
.lg\:mr-4 {
margin-right: 1rem;
}

.lg\:mb-24 {
margin-bottom: 6rem;
.lg\:mt-0 {
margin-top: 0;
}

.lg\:mt-24 {
margin-top: 6rem;
}

.lg\:mr-4 {
margin-right: 1rem;
.lg\:mt-4 {
margin-top: 1rem;
}

.lg\:h-56 {
height: 14rem;
}

.lg\:w-auto {
width: auto;
}

.lg\:w-1\/3 {
width: 33.333333%;
}
Expand All @@ -1083,6 +1082,10 @@ pre {
width: 14rem;
}

.lg\:w-auto {
width: auto;
}

.lg\:flex-nowrap {
flex-wrap: nowrap;
}
Expand All @@ -1091,19 +1094,19 @@ pre {
justify-content: space-between;
}

.lg\:p-12 {
padding: 3rem;
}

.lg\:p-0 {
padding: 0;
}

.lg\:pr-10 {
padding-right: 2.5rem;
.lg\:p-12 {
padding: 3rem;
}

.lg\:pr-0 {
padding-right: 0;
}

.lg\:pr-10 {
padding-right: 2.5rem;
}
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "shepherd.js",
"version": "11.0.1",
"version": "11.1.0",
"description": "Guide your users through a tour of your app.",
"keywords": [
"site tour",
Expand Down

0 comments on commit cacae74

Please sign in to comment.