Skip to content

Commit

Permalink
Merge branch 'master' into pr-puml
Browse files Browse the repository at this point in the history
  • Loading branch information
SPWwj authored Aug 25, 2023
2 parents e7d5a9e + cd5ba3d commit a46f136
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 24 deletions.
10 changes: 10 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,16 @@
"doc",
"code"
]
},
{
"login": "jmestxr",
"name": "James",
"avatar_url": "https://avatars.githubusercontent.com/u/87931905?v=4",
"profile": "https://jmestxr.github.io/my-portfolio/",
"contributions": [
"code",
"doc"
]
}
],
"contributorsPerLine": 7,
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/SPWwj"><img src="https://avatars.githubusercontent.com/u/30100720?v=4?s=100" width="100px;" alt="SPWwj"/><br /><sub><b>SPWwj</b></sub></a><br /><a href="https://github.com/MarkBind/markbind/commits?author=SPWwj" title="Documentation">📖</a> <a href="https://github.com/MarkBind/markbind/commits?author=SPWwj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jmestxr.github.io/my-portfolio/"><img src="https://avatars.githubusercontent.com/u/87931905?v=4?s=100" width="100px;" alt="James"/><br /><sub><b>James</b></sub></a><br /><a href="https://github.com/MarkBind/markbind/commits?author=jmestxr" title="Code">💻</a> <a href="https://github.com/MarkBind/markbind/commits?author=jmestxr" title="Documentation">📖</a></td>
</tr>
</tbody>
</table>
Expand Down
1 change: 1 addition & 0 deletions docs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/SPWwj"><img src="https://avatars.githubusercontent.com/u/30100720?v=4?s=100" width="100px;" alt="SPWwj"/><br /><sub><b>SPWwj</b></sub></a><br /><a href="https://github.com/MarkBind/markbind/commits?author=SPWwj" title="Documentation">📖</a> <a href="https://github.com/MarkBind/markbind/commits?author=SPWwj" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://jmestxr.github.io/my-portfolio/"><img src="https://avatars.githubusercontent.com/u/87931905?v=4?s=100" width="100px;" alt="James"/><br /><sub><b>James</b></sub></a><br /><a href="https://github.com/MarkBind/markbind/commits?author=jmestxr" title="Code">💻</a> <a href="https://github.com/MarkBind/markbind/commits?author=jmestxr" title="Documentation">📖</a></td>
</tr>
</tbody>
</table>
Expand Down
6 changes: 5 additions & 1 deletion docs/devGuide/development/workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,5 +385,9 @@ To update PlantUML to a newer version:
1. Right-click on each image and save the image in `docs/userGuide/diagrams`.
</box>

### Updating Bootstrap and Bootswatch

As Bootswatch is built on Bootstrap, ensure that the versions of both are in sync to avoid unexpected differences in styling behavior between default and other themes. Both are currently using version 5.1.3.

{% from "njk/common.njk" import previous_next %}
{{ previous_next('settingUp', 'writingComponents') }}
{{ previous_next('settingUp', 'writingComponents') }}
24 changes: 12 additions & 12 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@sindresorhus/slugify": "^0.9.1",
"@tlylt/markdown-it-imsize": "^3.0.0",
"bluebird": "^3.7.2",
"bootswatch": "^5.1.3",
"bootswatch": "5.1.3",
"cheerio": "^0.22.0",
"crypto-js": "^4.0.0",
"csv-parse": "^4.14.2",
Expand Down
5 changes: 5 additions & 0 deletions packages/vue-components/src/Modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
v-model="show"
ssr
:name="id"
:classes="['modal']"
:content-class="['modal-dialog', optionalModalSize, optionalCentering]"
overlay-transition="none"
:transition="effectClass"
Expand Down Expand Up @@ -126,6 +127,10 @@ export default {
};
</script>
<style>
.modal {
display: block; /* to disable the display toggling provided by bootstrap. */
}
.modal-dialog {
inset: 0;
position: absolute;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exports[`Modal can be centered 1`] = `
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down Expand Up @@ -99,7 +99,7 @@ exports[`Modal can be large 1`] = `
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down Expand Up @@ -171,7 +171,7 @@ exports[`Modal can be small 1`] = `
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down Expand Up @@ -243,7 +243,7 @@ exports[`Modal should be closable by clicking the backdrop by default 1`] = `
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down Expand Up @@ -315,7 +315,7 @@ exports[`Modal should be closable using the ok-text button 1`] = `
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down Expand Up @@ -383,7 +383,7 @@ exports[`Modal should not be closable by clicking the backdrop if backdrop is se
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down Expand Up @@ -455,7 +455,7 @@ exports[`Modal should not show footer when no footer is given 1`] = `
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down Expand Up @@ -527,7 +527,7 @@ exports[`Modal should not show header when no header is given 1`] = `
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down Expand Up @@ -589,7 +589,7 @@ exports[`Modal should show footer when both footer and ok-text are given 1`] = `
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down Expand Up @@ -649,7 +649,7 @@ exports[`Modal supports fade effect 1`] = `
<div
aria-expanded="false"
aria-modal="true"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none"
class="vfm__container vfm--absolute vfm--inset vfm--outline-none modal"
data-v-1cd72822=""
role="dialog"
style="display: none;"
Expand Down

0 comments on commit a46f136

Please sign in to comment.