mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Merge branch 'devel' into release-3.0.3
This commit is contained in:
@@ -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/).
|
||||
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user