-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
140 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,9 +32,9 @@ bun add @leafer-draw/miniapp | |
|
||
```sh | ||
|
||
https://unpkg.com/@leafer-draw/[email protected].9/dist/miniapp.module.js | ||
https://unpkg.com/@leafer-draw/[email protected].10/dist/miniapp.module.js | ||
|
||
https://unpkg.com/@leafer-draw/[email protected].9/dist/miniapp.module.min.js | ||
https://unpkg.com/@leafer-draw/[email protected].10/dist/miniapp.module.min.js | ||
|
||
|
||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,15 +32,15 @@ bun add leafer-draw | |
::: code-group | ||
|
||
```html [web.min] | ||
<script src="https://unpkg.com/[email protected].9/dist/web.min.js"></script> | ||
<script src="https://unpkg.com/[email protected].10/dist/web.min.js"></script> | ||
<script> | ||
const { Leafer } = LeaferUI | ||
// ... | ||
</script> | ||
``` | ||
|
||
```html [web] | ||
<script src="https://unpkg.com/[email protected].9/dist/web.js"></script> | ||
<script src="https://unpkg.com/[email protected].10/dist/web.js"></script> | ||
<script> | ||
const { Leafer } = LeaferUI | ||
// ... | ||
|
@@ -49,14 +49,14 @@ bun add leafer-draw | |
|
||
```html [module.min] | ||
<script type="module"> | ||
import { Leafer } from 'https://unpkg.com/[email protected].9/dist/web.module.min.js' | ||
import { Leafer } from 'https://unpkg.com/[email protected].10/dist/web.module.min.js' | ||
// ... | ||
</script> | ||
``` | ||
|
||
```html [module] | ||
<script type="module"> | ||
import { Leafer } from 'https://unpkg.com/[email protected].9/dist/web.module.js' | ||
import { Leafer } from 'https://unpkg.com/[email protected].10/dist/web.module.js' | ||
// ... | ||
</script> | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,11 +33,11 @@ bun add @leafer-draw/worker | |
::: code-group | ||
|
||
```js [worker.min.js] | ||
importScripts('https://unpkg.com/@leafer-draw/[email protected].9/dist/worker.min.js') | ||
importScripts('https://unpkg.com/@leafer-draw/[email protected].10/dist/worker.min.js') | ||
``` | ||
|
||
```js [worker.js] | ||
importScripts('https://unpkg.com/@leafer-draw/[email protected].9/dist/worker.js') | ||
importScripts('https://unpkg.com/@leafer-draw/[email protected].10/dist/worker.js') | ||
``` | ||
|
||
::: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,9 +32,9 @@ bun add @leafer-editor/miniapp | |
|
||
```sh | ||
|
||
https://unpkg.com/@leafer-editor/[email protected].9/dist/miniapp.module.js | ||
https://unpkg.com/@leafer-editor/[email protected].10/dist/miniapp.module.js | ||
|
||
https://unpkg.com/@leafer-editor/[email protected].9/dist/miniapp.module.min.js | ||
https://unpkg.com/@leafer-editor/[email protected].10/dist/miniapp.module.min.js | ||
|
||
|
||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,15 +37,15 @@ bun add leafer-editor | |
::: code-group | ||
|
||
```html [web.min] | ||
<script src="https://unpkg.com/[email protected].9/dist/web.min.js"></script> | ||
<script src="https://unpkg.com/[email protected].10/dist/web.min.js"></script> | ||
<script> | ||
const { Leafer, Editor, Arrow } = LeaferUI | ||
// ... | ||
</script> | ||
``` | ||
|
||
```html [web] | ||
<script src="https://unpkg.com/[email protected].9/dist/web.js"></script> | ||
<script src="https://unpkg.com/[email protected].10/dist/web.js"></script> | ||
<script> | ||
const { Leafer, Editor, Arrow } = LeaferUI | ||
// ... | ||
|
@@ -58,7 +58,7 @@ bun add leafer-editor | |
Leafer, | ||
Editor, | ||
Arrow, | ||
} from 'https://unpkg.com/[email protected].9/dist/web.module.min.js' | ||
} from 'https://unpkg.com/[email protected].10/dist/web.module.min.js' | ||
// ... | ||
</script> | ||
``` | ||
|
@@ -69,7 +69,7 @@ bun add leafer-editor | |
Leafer, | ||
Editor, | ||
Arrow, | ||
} from 'https://unpkg.com/[email protected].9/dist/web.module.js' | ||
} from 'https://unpkg.com/[email protected].10/dist/web.module.js' | ||
// ... | ||
</script> | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,12 +34,12 @@ bun add @leafer-editor/worker | |
|
||
```js [worker.min.js] | ||
importScripts( | ||
'https://unpkg.com/@leafer-editor/[email protected].9/dist/worker.min.js' | ||
'https://unpkg.com/@leafer-editor/[email protected].10/dist/worker.min.js' | ||
) | ||
``` | ||
|
||
```js [worker.js] | ||
importScripts('https://unpkg.com/@leafer-editor/[email protected].9/dist/worker.js') | ||
importScripts('https://unpkg.com/@leafer-editor/[email protected].10/dist/worker.js') | ||
``` | ||
|
||
::: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,9 +32,9 @@ bun add @leafer-game/miniapp | |
|
||
```sh | ||
|
||
https://unpkg.com/@leafer-game/[email protected].9/dist/miniapp.module.js | ||
https://unpkg.com/@leafer-game/[email protected].10/dist/miniapp.module.js | ||
|
||
https://unpkg.com/@leafer-game/[email protected].9/dist/miniapp.module.min.js | ||
https://unpkg.com/@leafer-game/[email protected].10/dist/miniapp.module.min.js | ||
|
||
|
||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,15 +37,15 @@ bun add leafer-game | |
::: code-group | ||
|
||
```html [web.min] | ||
<script src="https://unpkg.com/[email protected].9/dist/web.min.js"></script> | ||
<script src="https://unpkg.com/[email protected].10/dist/web.min.js"></script> | ||
<script> | ||
const { Leafer, Robot, Animate } = LeaferUI | ||
// ... | ||
</script> | ||
``` | ||
|
||
```html [web] | ||
<script src="https://unpkg.com/[email protected].9/dist/web.js"></script> | ||
<script src="https://unpkg.com/[email protected].10/dist/web.js"></script> | ||
<script> | ||
const { Leafer, Robot, Animate } = LeaferUI | ||
// ... | ||
|
@@ -58,7 +58,7 @@ bun add leafer-game | |
Leafer, | ||
Editor, | ||
Arrow, | ||
} from 'https://unpkg.com/[email protected].9/dist/web.module.min.js' | ||
} from 'https://unpkg.com/[email protected].10/dist/web.module.min.js' | ||
// ... | ||
</script> | ||
``` | ||
|
@@ -69,7 +69,7 @@ bun add leafer-game | |
Leafer, | ||
Editor, | ||
Arrow, | ||
} from 'https://unpkg.com/[email protected].9/dist/web.module.js' | ||
} from 'https://unpkg.com/[email protected].10/dist/web.module.js' | ||
// ... | ||
</script> | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,11 +33,11 @@ bun add @leafer-game/worker | |
::: code-group | ||
|
||
```js [worker.min.js] | ||
importScripts('https://unpkg.com/@leafer-game/[email protected].9/dist/worker.min.js') | ||
importScripts('https://unpkg.com/@leafer-game/[email protected].10/dist/worker.min.js') | ||
``` | ||
|
||
```js [worker.js] | ||
importScripts('https://unpkg.com/@leafer-game/[email protected].9/dist/worker.js') | ||
importScripts('https://unpkg.com/@leafer-game/[email protected].10/dist/worker.js') | ||
``` | ||
|
||
::: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,9 +46,9 @@ var __TEMP2__ =__TEMP__; Object.defineProperty(exports, k, { enumerable: true, c | |
```sh | ||
|
||
https://unpkg.com/@leafer-ui/[email protected].9/dist/miniapp.module.js | ||
https://unpkg.com/@leafer-ui/[email protected].10/dist/miniapp.module.js | ||
|
||
https://unpkg.com/@leafer-ui/[email protected].9/dist/miniapp.module.min.js | ||
https://unpkg.com/@leafer-ui/[email protected].10/dist/miniapp.module.min.js | ||
``` | ||
## 环境 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,7 +45,7 @@ bun add leafer-ui | |
::: code-group | ||
|
||
```html [web.min] | ||
<script src="https://unpkg.com/[email protected].9/dist/web.min.js"></script> | ||
<script src="https://unpkg.com/[email protected].10/dist/web.min.js"></script> | ||
<script> | ||
const { Leafer } = LeaferUI // 全局变量,包含 leafer-ui 的所有功能 | ||
|
@@ -57,7 +57,7 @@ bun add leafer-ui | |
``` | ||
|
||
```html [web] | ||
<script src="https://unpkg.com/[email protected].9/dist/web.js"></script> | ||
<script src="https://unpkg.com/[email protected].10/dist/web.js"></script> | ||
<script> | ||
const { Leafer } = LeaferUI // 全局变量,包含 leafer-ui的所有功能 | ||
|
@@ -70,14 +70,14 @@ bun add leafer-ui | |
|
||
```html [module.min] | ||
<script type="module"> | ||
import { Leafer } from 'https://unpkg.com/[email protected].9/dist/web.module.min.js' | ||
import { Leafer } from 'https://unpkg.com/[email protected].10/dist/web.module.min.js' | ||
// ... | ||
</script> | ||
``` | ||
|
||
```html [module] | ||
<script type="module"> | ||
import { Leafer } from 'https://unpkg.com/[email protected].9/dist/web.module.js' | ||
import { Leafer } from 'https://unpkg.com/[email protected].10/dist/web.module.js' | ||
// ... | ||
</script> | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,11 +33,11 @@ bun add @leafer-ui/worker | |
::: code-group | ||
|
||
```js [worker.min.js] | ||
importScripts('https://unpkg.com/@leafer-ui/[email protected].9/dist/worker.min.js') | ||
importScripts('https://unpkg.com/@leafer-ui/[email protected].10/dist/worker.min.js') | ||
``` | ||
|
||
```js [worker.js] | ||
importScripts('https://unpkg.com/@leafer-ui/[email protected].9/dist/worker.js') | ||
importScripts('https://unpkg.com/@leafer-ui/[email protected].10/dist/worker.js') | ||
``` | ||
|
||
::: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,14 +42,14 @@ bun add @leafer-in/animate | |
::: code-group | ||
|
||
```html [animate.min] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/animate.min.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/animate.min.js"></script> | ||
<script> | ||
const { Animate } = LeaferIN.animate | ||
</script> | ||
``` | ||
|
||
```html [animate] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/animate.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/animate.js"></script> | ||
<script> | ||
const { Animate } = LeaferIN.animate | ||
</script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,14 +42,14 @@ bun add @leafer-in/arrow | |
::: code-group | ||
|
||
```html [arrow.min] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/arrow.min.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/arrow.min.js"></script> | ||
<script> | ||
const { Arrow } = LeaferIN.arrow | ||
</script> | ||
``` | ||
|
||
```html [arrow] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/arrow.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/arrow.js"></script> | ||
<script> | ||
const { Arrow } = LeaferIN.arrow | ||
</script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,11 +36,11 @@ bun add @leafer-in/resize | |
::: code-group | ||
|
||
```html [resize.min] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/resize.min.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/resize.min.js"></script> | ||
``` | ||
|
||
```html [resize] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/resize.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/resize.js"></script> | ||
``` | ||
|
||
https://unpkg.com 无法访问时,可替换为 https://cdn.jsdelivr.net/npm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,14 +42,14 @@ bun add @leafer-in/editor | |
::: code-group | ||
|
||
```html [editor.min] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/editor.min.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/editor.min.js"></script> | ||
<script> | ||
const { Editor } = LeaferIN.editor | ||
</script> | ||
``` | ||
|
||
```html [editor] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/editor.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/editor.js"></script> | ||
<script> | ||
const { Editor } = LeaferIN.editor | ||
</script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,14 +38,14 @@ bun add @leafer-in/flow | |
::: code-group | ||
|
||
```html [flow.min] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/flow.min.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/flow.min.js"></script> | ||
<script> | ||
const { Flow } = LeaferIN.flow | ||
</script> | ||
``` | ||
|
||
```html [flow] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/flow.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/flow.js"></script> | ||
<script> | ||
const { Flow } = LeaferIN.flow | ||
</script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,14 +42,14 @@ bun add @leafer-in/html | |
::: code-group | ||
|
||
```html [html.min] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/html.min.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/html.min.js"></script> | ||
<script> | ||
const { HTMLText } = LeaferIN.html | ||
</script> | ||
``` | ||
|
||
```html [html] | ||
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/html.js"></script> | ||
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/html.js"></script> | ||
<script> | ||
const { HTMLText } = LeaferIN.html | ||
</script> | ||
|
Oops, something went wrong.