Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
leaferjs committed Oct 20, 2024
1 parent 248578e commit 0531025
Show file tree
Hide file tree
Showing 28 changed files with 100 additions and 56 deletions.
2 changes: 2 additions & 0 deletions src/contribute/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@

## Demo

[扫雷小游戏](https://github.com/yh4922/leaferjs-minesweeper) [@xjq7](https://github.com/xjq7)

[Minesweeper](https://github.com/yh4922/leaferjs-minesweeper) <badge>扫雷小游戏</badge> @杨 🐑🐑

[FlyCut](https://github.com/x007xyz/fly-cut) <badge>在线视频剪辑工具</badge> @x007xyz
Expand Down
4 changes: 2 additions & 2 deletions src/create/leafer.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ npm create leafer@latest update
<span style="color:#5e9177;font-weight: 600;">Fetching Leafer version...</span>
<span style="color:var(--vt-c-green);">✔</span> <span style="color:#888;font-weight: 600;">The following Leafer dependencies can be updated:</span>
<span style="color:#89DDFF;">{
"leafer-editor": "^1.0.5",
"@leafer-in/animate": "^1.0.5"
"leafer-editor": "^1.0.6",
"@leafer-in/animate": "^1.0.6"
}</span>
<span style="color:#888;font-weight: 600;">Do you want to update them? <span style="color:#888;">… <span style="color:#89DDFF;text-decoration:underline;">yes</span></span></span>
<span style="color:var(--vt-c-green);">✔</span> <span style="color:#888;font-weight: 600;">Dependencies updated successfully! Please run <span style="color:#5e9177;font-weight: 600;">npm install</span> to install the latest versions.</span>
Expand Down
2 changes: 1 addition & 1 deletion src/guide/basic/remove.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Case from '/component/Case.vue'

## 条件移除

支持所有 [find()](/reference/property/find.md) 条件参数
[find()](/reference/property/find.md) 方法的参数一致,内部会先 find() 再批量移除

<<< @/code/basic/display/remove-tag.ts

Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/draw/miniapp/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ bun add @leafer-draw/miniapp

```sh

https://unpkg.com/@leafer-draw/[email protected].5/dist/miniapp.module.js
https://unpkg.com/@leafer-draw/[email protected].6/dist/miniapp.module.js

https://unpkg.com/@leafer-draw/[email protected].5/dist/miniapp.module.min.js
https://unpkg.com/@leafer-draw/[email protected].6/dist/miniapp.module.min.js


```
Expand Down
8 changes: 4 additions & 4 deletions src/guide/install/draw/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ bun add leafer-draw
::: code-group

```html [web.min]
<script src="https://unpkg.com/[email protected].5/dist/web.min.js"></script>
<script src="https://unpkg.com/[email protected].6/dist/web.min.js"></script>
<script>
const { Leafer } = LeaferUI
// ...
</script>
```

```html [web]
<script src="https://unpkg.com/[email protected].5/dist/web.js"></script>
<script src="https://unpkg.com/[email protected].6/dist/web.js"></script>
<script>
const { Leafer } = LeaferUI
// ...
Expand All @@ -49,14 +49,14 @@ bun add leafer-draw

```html [module.min]
<script type="module">
import { Leafer } from 'https://unpkg.com/[email protected].5/dist/web.module.min.js'
import { Leafer } from 'https://unpkg.com/[email protected].6/dist/web.module.min.js'
// ...
</script>
```

```html [module]
<script type="module">
import { Leafer } from 'https://unpkg.com/[email protected].5/dist/web.module.js'
import { Leafer } from 'https://unpkg.com/[email protected].6/dist/web.module.js'
// ...
</script>
```
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/draw/worker/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ bun add @leafer-draw/worker
::: code-group

```js [worker.min.js]
importScripts('https://unpkg.com/@leafer-draw/[email protected].5/dist/worker.min.js')
importScripts('https://unpkg.com/@leafer-draw/[email protected].6/dist/worker.min.js')
```

```js [worker.js]
importScripts('https://unpkg.com/@leafer-draw/[email protected].5/dist/worker.js')
importScripts('https://unpkg.com/@leafer-draw/[email protected].6/dist/worker.js')
```

:::
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/editor/miniapp/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ bun add @leafer-editor/miniapp

```sh

https://unpkg.com/@leafer-editor/[email protected].5/dist/miniapp.module.js
https://unpkg.com/@leafer-editor/[email protected].6/dist/miniapp.module.js

https://unpkg.com/@leafer-editor/[email protected].5/dist/miniapp.module.min.js
https://unpkg.com/@leafer-editor/[email protected].6/dist/miniapp.module.min.js


```
Expand Down
8 changes: 4 additions & 4 deletions src/guide/install/editor/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ bun add leafer-editor
::: code-group

```html [web.min]
<script src="https://unpkg.com/[email protected].5/dist/web.min.js"></script>
<script src="https://unpkg.com/[email protected].6/dist/web.min.js"></script>
<script>
const { Leafer, Editor, Arrow } = LeaferUI
// ...
</script>
```

```html [web]
<script src="https://unpkg.com/[email protected].5/dist/web.js"></script>
<script src="https://unpkg.com/[email protected].6/dist/web.js"></script>
<script>
const { Leafer, Editor, Arrow } = LeaferUI
// ...
Expand All @@ -58,7 +58,7 @@ bun add leafer-editor
Leafer,
Editor,
Arrow,
} from 'https://unpkg.com/[email protected].5/dist/web.module.min.js'
} from 'https://unpkg.com/[email protected].6/dist/web.module.min.js'
// ...
</script>
```
Expand All @@ -69,7 +69,7 @@ bun add leafer-editor
Leafer,
Editor,
Arrow,
} from 'https://unpkg.com/[email protected].5/dist/web.module.js'
} from 'https://unpkg.com/[email protected].6/dist/web.module.js'
// ...
</script>
```
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/editor/worker/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ bun add @leafer-editor/worker

```js [worker.min.js]
importScripts(
'https://unpkg.com/@leafer-editor/[email protected].5/dist/worker.min.js'
'https://unpkg.com/@leafer-editor/[email protected].6/dist/worker.min.js'
)
```

```js [worker.js]
importScripts('https://unpkg.com/@leafer-editor/[email protected].5/dist/worker.js')
importScripts('https://unpkg.com/@leafer-editor/[email protected].6/dist/worker.js')
```

:::
Expand Down
10 changes: 6 additions & 4 deletions src/guide/install/ui/miniapp/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ var __TEMP2__ =__TEMP__; Object.defineProperty(exports, k, { enumerable: true, c
```sh

https://unpkg.com/@leafer-ui/[email protected].5/dist/miniapp.module.js
https://unpkg.com/@leafer-ui/[email protected].6/dist/miniapp.module.js

https://unpkg.com/@leafer-ui/[email protected].5/dist/miniapp.module.min.js
https://unpkg.com/@leafer-ui/[email protected].6/dist/miniapp.module.min.js
```
## 环境
Expand All @@ -59,9 +59,11 @@ https://unpkg.com/@leafer-ui/[email protected]/dist/miniapp.module.min.js
## 注意
微信小程序自身加载 svg 图片有问题。
1. 微信小程序自身加载 svg 图片有问题。
阴影、遮罩(iOS 端 path 类型可用)等正在适配兼容性。
2. 阴影、遮罩(iOS 端 path 类型可用)等正在适配兼容性。
3. 在 [web-view](https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html) 组件中使用时,微信 JS-SDK 上传 PNG 图片会变成 JPG 格式,请使用 HTML5 原生的 input 框上传。
::: warning 温馨提示
微信小程序 iOS 端 3.0.0 之后 view 中的 canvas drawImage 无法绘制离屏画布,已找到办法绕过此限制,但仍有部分高级功能用不了(后续会继续适配)。
Expand Down
8 changes: 4 additions & 4 deletions src/guide/install/ui/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ bun add leafer-ui
::: code-group

```html [web.min]
<script src="https://unpkg.com/[email protected].5/dist/web.min.js"></script>
<script src="https://unpkg.com/[email protected].6/dist/web.min.js"></script>
<script>
const { Leafer } = LeaferUI // 全局变量,包含 leafer-ui 的所有功能
Expand All @@ -57,7 +57,7 @@ bun add leafer-ui
```

```html [web]
<script src="https://unpkg.com/[email protected].5/dist/web.js"></script>
<script src="https://unpkg.com/[email protected].6/dist/web.js"></script>
<script>
const { Leafer } = LeaferUI // 全局变量,包含 leafer-ui的所有功能
Expand All @@ -70,14 +70,14 @@ bun add leafer-ui

```html [module.min]
<script type="module">
import { Leafer } from 'https://unpkg.com/[email protected].5/dist/web.module.min.js'
import { Leafer } from 'https://unpkg.com/[email protected].6/dist/web.module.min.js'
// ...
</script>
```

```html [module]
<script type="module">
import { Leafer } from 'https://unpkg.com/[email protected].5/dist/web.module.js'
import { Leafer } from 'https://unpkg.com/[email protected].6/dist/web.module.js'
// ...
</script>
```
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/ui/worker/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ bun add @leafer-ui/worker
::: code-group

```js [worker.min.js]
importScripts('https://unpkg.com/@leafer-ui/[email protected].5/dist/worker.min.js')
importScripts('https://unpkg.com/@leafer-ui/[email protected].6/dist/worker.min.js')
```

```js [worker.js]
importScripts('https://unpkg.com/@leafer-ui/[email protected].5/dist/worker.js')
importScripts('https://unpkg.com/@leafer-ui/[email protected].6/dist/worker.js')
```

:::
Expand Down
4 changes: 4 additions & 0 deletions src/guide/problem/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@ https://nextjs.org/docs/pages/building-your-application/optimizing/lazy-loading#
### 画布不断自动扩大导致的卡顿问题

自动布局时,当父容器的宽度或高度为 100%,同时设置 padding 或 border, 会导致画布不断 resize 扩大。

### 微信 JS-SDK 上传 PNG 图片会变成 JPG 格式

请使用 HTML5 原生的 input 框上传。
4 changes: 2 additions & 2 deletions src/plugin/in/animate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ bun add @leafer-in/animate
::: code-group

```html [animate.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/animate.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/animate.min.js"></script>
<script>
const { Animate } = LeaferIN.animate
</script>
```

```html [animate]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/animate.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/animate.js"></script>
<script>
const { Animate } = LeaferIN.animate
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/arrow/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ bun add @leafer-in/arrow
::: code-group

```html [arrow.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/arrow.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/arrow.min.js"></script>
<script>
const { Arrow } = LeaferIN.arrow
</script>
```

```html [arrow]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/arrow.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/arrow.js"></script>
<script>
const { Arrow } = LeaferIN.arrow
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/color/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ bun add @leafer-in/resize
::: code-group

```html [resize.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/resize.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/resize.min.js"></script>
```

```html [resize]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/resize.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/resize.js"></script>
```

https://unpkg.com 无法访问时,可替换为 https://cdn.jsdelivr.net/npm
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/editor/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ bun add @leafer-in/editor
::: code-group

```html [editor.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/editor.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/editor.min.js"></script>
<script>
const { Editor } = LeaferIN.editor
</script>
```

```html [editor]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/editor.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/editor.js"></script>
<script>
const { Editor } = LeaferIN.editor
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/flow/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ bun add @leafer-in/flow
::: code-group

```html [flow.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/flow.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/flow.min.js"></script>
<script>
const { Flow } = LeaferIN.flow
</script>
```

```html [flow]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/flow.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/flow.js"></script>
<script>
const { Flow } = LeaferIN.flow
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/html/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ bun add @leafer-in/html
::: code-group

```html [html.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/html.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/html.min.js"></script>
<script>
const { HTMLText } = LeaferIN.html
</script>
```

```html [html]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/html.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/html.js"></script>
<script>
const { HTMLText } = LeaferIN.html
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/path/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ bun add @leafer-in/resize
::: code-group

```html [resize.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/resize.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/resize.min.js"></script>
```

```html [resize]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/resize.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/resize.js"></script>
```

https://unpkg.com 无法访问时,可替换为 https://cdn.jsdelivr.net/npm
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/resize/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ bun add @leafer-in/resize
::: code-group

```html [resize.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/resize.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/resize.min.js"></script>
```

```html [resize]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/resize.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/resize.js"></script>
```

https://unpkg.com 无法访问时,可替换为 https://cdn.jsdelivr.net/npm
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/robot/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ bun add @leafer-in/robot
::: code-group

```html [robot.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/robot.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/robot.min.js"></script>
<script>
const { Robot } = LeaferIN.robot
</script>
```

```html [robot]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/robot.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/robot.js"></script>
<script>
const { Robot } = LeaferIN.robot
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/scroll/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ bun add @leafer-in/scroll
::: code-group

```html [scroll.min]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/scroll.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/scroll.min.js"></script>
<script>
const { ScrollBar } = LeaferIN.scroll
</script>
```

```html [scroll]
<script src="https://unpkg.com/@leafer-in/[email protected].5/dist/scroll.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].6/dist/scroll.js"></script>
<script>
const { ScrollBar } = LeaferIN.scroll
</script>
Expand Down
Loading

0 comments on commit 0531025

Please sign in to comment.