Merge branch 'devel' into release-3.0.3

This commit is contained in:
Denilson
2024-09-11 13:03:29 -04:00
committed by GitHub
3 changed files with 7 additions and 3 deletions

View File

@@ -86,7 +86,7 @@ meteor
* Deploy on [Meteor Cloud](https://www.meteor.com/cloud)
* Discuss on [Forums](https://forums.meteor.com/)
* Join the Meteor community Slack by clicking this [invite link](https://join.slack.com/t/meteor-community/shared_invite/enQtODA0NTU2Nzk5MTA3LWY5NGMxMWRjZDgzYWMyMTEyYTQ3MTcwZmU2YjM5MTY3MjJkZjQ0NWRjOGZlYmIxZjFlYTA5Mjg4OTk3ODRiOTc).
* Join the Meteor Discord by clicking this [invite link](https://discord.gg/hZkTCaVjmT).
* Announcement list. Subscribe in the [footer](https://www.meteor.com/).

View File

@@ -67,7 +67,7 @@ const sourceCode = `https://github.com/meteor/meteor/blob/devel/packages/${props
<td>{{ showTypes(param.type.names) }}</td>
<template v-if="param.name === 'options'">
<td>
<span v-html="param.description"></span>
<span v-if="param.description" v-html="param.description"></span>
<button v-if="(props.options?.length || -1) > 0" type="button" @click="toggleOptionsTable">
{{ isOptionsTableOpen ? "Close" : "Open" }} options table
<Caret :is-open="isOptionsTableOpen" />
@@ -110,6 +110,9 @@ const sourceCode = `https://github.com/meteor/meteor/blob/devel/packages/${props
table {
text-align: center;
}
table td {
padding: 6px 12px;
}
.options-table {
--easing-dur: calc(var(--vc-auto-duration) * 1.5) cubic-bezier(0.33, 1, 0.68, 1);

View File

@@ -131,8 +131,9 @@ export function filterMap(filter, apiList) {
for (const key in apiList[api]) {
const links = apiList[api][key];
// We get the shouldGoTo link here as well.
// In this case we just skip it
// In this case we just added it and continue
if (!Array.isArray(links)) {
newLinks[key] = links;
continue;
}
const newLinksArray = links.filter((link) => {