mirror of
https://github.com/penpot/penpot.git
synced 2026-09-10 14:09:17 +00:00
🐛 Set correct name to tokens lib data reader
This commit is contained in:
parent
3122917872
commit
d3e28a8307
@ -4,7 +4,7 @@
|
|||||||
penpot/path-data app.common.types.path/from-string
|
penpot/path-data app.common.types.path/from-string
|
||||||
penpot/matrix app.common.geom.matrix/decode-matrix
|
penpot/matrix app.common.geom.matrix/decode-matrix
|
||||||
penpot/point app.common.geom.point/decode-point
|
penpot/point app.common.geom.point/decode-point
|
||||||
penpot/token-lib app.common.types.tokens-lib/parse-multi-set-dtcg-json
|
penpot/tokens-lib app.common.types.tokens-lib/parse-multi-set-dtcg-json
|
||||||
penpot/token-set app.common.types.tokens-lib/make-token-set
|
penpot/token-set app.common.types.tokens-lib/make-token-set
|
||||||
penpot/token-theme app.common.types.tokens-lib/make-token-theme
|
penpot/token-theme app.common.types.tokens-lib/make-token-theme
|
||||||
penpot/token app.common.types.tokens-lib/make-token}
|
penpot/token app.common.types.tokens-lib/make-token}
|
||||||
|
|||||||
@ -1320,7 +1320,7 @@ Will return a value that matches this schema:
|
|||||||
|
|
||||||
(defmethod pp/simple-dispatch TokensLib
|
(defmethod pp/simple-dispatch TokensLib
|
||||||
[^TokensLib obj]
|
[^TokensLib obj]
|
||||||
(.write *out* "#penpot/token-lib ")
|
(.write *out* "#penpot/tokens-lib ")
|
||||||
(pp/pprint-newline :miser)
|
(pp/pprint-newline :miser)
|
||||||
(pp/pprint (export-dtcg-json obj)))
|
(pp/pprint (export-dtcg-json obj)))
|
||||||
|
|
||||||
@ -1328,7 +1328,7 @@ Will return a value that matches this schema:
|
|||||||
(do
|
(do
|
||||||
(defmethod print-method TokensLib
|
(defmethod print-method TokensLib
|
||||||
[^TokensLib obj ^java.io.Writer w]
|
[^TokensLib obj ^java.io.Writer w]
|
||||||
(.write w "#penpot/token-lib ")
|
(.write w "#penpot/tokens-lib ")
|
||||||
(print-method (export-dtcg-json obj) w))
|
(print-method (export-dtcg-json obj) w))
|
||||||
|
|
||||||
(defmethod print-dup TokensLib
|
(defmethod print-dup TokensLib
|
||||||
@ -1339,7 +1339,7 @@ Will return a value that matches this schema:
|
|||||||
(extend-type TokensLib
|
(extend-type TokensLib
|
||||||
cljs.core/IPrintWithWriter
|
cljs.core/IPrintWithWriter
|
||||||
(-pr-writer [this writer opts]
|
(-pr-writer [this writer opts]
|
||||||
(-write writer "#penpot/token-lib ")
|
(-write writer "#penpot/tokens-lib ")
|
||||||
(-pr-writer (export-dtcg-json this) writer opts))
|
(-pr-writer (export-dtcg-json this) writer opts))
|
||||||
|
|
||||||
cljs.core/IEncodeJS
|
cljs.core/IEncodeJS
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user