Skip to content

Commit f54571c

Browse files
committed
fix only and uncover for cetz
1 parent 0acda6d commit f54571c

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

docs/dynamic/other.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ In fact, we can also use `only` and `uncover` within cetz, just requiring a bit
8080
8181
#cetz.canvas({
8282
import cetz.draw: *
83-
let self = (self.methods.update-cover)(self: self, hide.with(bounds: true))
83+
let self = utils.merge-dicts(
84+
self,
85+
config-methods(cover: utils.method-wrapper(hide.with(bounds: true))),
86+
)
8487
let (uncover,) = utils.methods(self)
8588
8689
rect((0,0), (5,5))

i18n/zh/docusaurus-plugin-content-docs/current/dynamic/other.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ Touying 还提供了 `touying-reducer`,它能为 cetz 与 fletcher 加入 `pau
8080
8181
#cetz.canvas({
8282
import cetz.draw: *
83-
let self = (self.methods.update-cover)(self: self, hide.with(bounds: true))
83+
let self = utils.merge-dicts(
84+
self,
85+
config-methods(cover: utils.method-wrapper(hide.with(bounds: true))),
86+
)
8487
let (uncover,) = utils.methods(self)
8588
8689
rect((0,0), (5,5))

i18n/zh/docusaurus-plugin-content-docs/version-0.5.x/dynamic/other.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ Touying 还提供了 `touying-reducer`,它能为 cetz 与 fletcher 加入 `pau
8080
8181
#cetz.canvas({
8282
import cetz.draw: *
83-
let self = (self.methods.update-cover)(self: self, hide.with(bounds: true))
83+
let self = utils.merge-dicts(
84+
self,
85+
config-methods(cover: utils.method-wrapper(hide.with(bounds: true))),
86+
)
8487
let (uncover,) = utils.methods(self)
8588
8689
rect((0,0), (5,5))

versioned_docs/version-0.5.x/dynamic/other.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ In fact, we can also use `only` and `uncover` within cetz, just requiring a bit
8080
8181
#cetz.canvas({
8282
import cetz.draw: *
83-
let self = (self.methods.update-cover)(self: self, hide.with(bounds: true))
83+
let self = utils.merge-dicts(
84+
self,
85+
config-methods(cover: utils.method-wrapper(hide.with(bounds: true))),
86+
)
8487
let (uncover,) = utils.methods(self)
8588
8689
rect((0,0), (5,5))

0 commit comments

Comments
 (0)