Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 6.3k
chore: prepare docs for Docusaurus v3 upgrade - 1st iteration#3807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
917cfbfe23a5563630b24589fc5fd762c97e76988b4b13f2231d228eda5b845593b0d1a96910d6bcdb4df86ef831ed6b184688149490ad511bf5b58866e65157f7b912119349ee0fb64c10292037a9d7a9d7ead85f18f2310358879bae1ca61ab5aa1267a3a7941e7f16d2049bf4e31bc014092ef20fa8b23022c76f01321fe136408bcb5e6cbc79faa0044d679b311c2660febd4e036dd3e2a6File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -463,9 +463,9 @@ Animations are started by calling start() on your animation. start() takes a com | ||
| **Parameters:** | ||
| | Name | Type | Required | Description | | ||
| | -------- | ------------------------------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| | callback | (result: {finished: boolean}) => void | No | Function that will be called after the animation finished running normally or when the animation is done because stop() was called on it before it could finish | | ||
| | Name | Type | Required | Description | | ||
| | -------- | --------------------------------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| | callback | `(result: {finished: boolean}) => void` | No | Function that will be called after the animation finished running normally or when the animation is done because stop() was called on it before it could finish | | ||
Simek marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| Start example with callback: | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -120,9 +120,9 @@ export default App; | ||
| Handler to be called when the user taps the button. | ||
| | Type | | ||
| | ----------------------------------------- | | ||
| | ({nativeEvent: [PressEvent](pressevent)}) | | ||
| | Type | | ||
| | ---------------------------------------------- | | ||
| | `md ({nativeEvent: [PressEvent](pressevent)})` | | ||
ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This new inline code syntax Turns on a basic support for Markdown links inside Can you validate this idea? IMHO this is an UX improvement, considering it's code it should be an inline code block. The non-usage of links before was probably a technical limitation that this new solution enables. But this requires to teach technical writers to use the Review links: Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like it. I don't think that it will be an issue: if a technical writer wants to achieve the same result in these pages, it will likely go here and see how that was achieved and then it will copy the syntax! | ||
| --- | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -84,25 +84,25 @@ Many standard functions are also available on all the supported JavaScript runti | ||
| #### Browser | ||
| - [CommonJS require](https://nodejs.org/docs/latest/api/modules.html) | ||
| - [console.{log, warn, error, info, trace, table, group, groupEnd}](https://developer.chrome.com/devtools/docs/console-api) | ||
| - [XMLHttpRequest, fetch](network.md#content) | ||
| - [{set, clear}{Timeout, Interval, Immediate}, {request, cancel}AnimationFrame](timers.md#content) | ||
| - [CommonJS `require`](https://nodejs.org/docs/latest/api/modules.html) | ||
| - `md [console.{log, warn, error, info, trace, table, group, groupEnd}](https://developer.chrome.com/devtools/docs/console-api)` | ||
| - [`XMLHttpRequest`, `fetch`](network.md#content) | ||
| - [`{set, clear}{Timeout, Interval, Immediate}, {request, cancel}AnimationFrame`](timers.md#content) | ||
| #### ECMAScript 2015 (ES6) | ||
| - [Array.from](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from) | ||
| - Array.prototype.{[find](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find), [findIndex](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex)} | ||
| - [Object.assign](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) | ||
| - String.prototype.{[startsWith](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith), [endsWith](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith), [repeat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat), [includes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes)} | ||
| - [`Array.from`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from) | ||
| - `md Array.prototype.{[find](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find), [findIndex](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex)}` | ||
| - [`Object.assign`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) | ||
| - `md String.prototype.{[startsWith](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith), [endsWith](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith), [repeat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat), [includes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes)}` | ||
| #### ECMAScript 2016 (ES7) | ||
| - Array.prototype.[includes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes) | ||
| - `md Array.prototype.[includes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes)` | ||
| #### ECMAScript 2017 (ES8) | ||
| - Object.{[entries](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries), [values](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/values)} | ||
| - `md Object.{[entries](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries), [values](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/values)}` | ||
Comment on lines
-87
to
+105
| ||
| #### Specific | ||
Uh oh!
There was an error while loading. Please reload this page.



Uh oh!
There was an error while loading. Please reload this page.