mirror of
https://github.com/penpot/penpot.git
synced 2025-08-03 14:08:32 +02:00
🎉 Add assets exportation in bulk (multiple)
And adapt to the websocket changes on backend and exporter.
This commit is contained in:
parent
f60d8c6c96
commit
0e0fb68c38
39 changed files with 1497 additions and 411 deletions
|
@ -10,10 +10,13 @@
|
|||
(def black "#000000")
|
||||
(def canvas "#E8E9EA")
|
||||
(def default-layout "#DE4762")
|
||||
(def gray-10 "#E3E3E3")
|
||||
(def gray-20 "#B1B2B5")
|
||||
(def gray-30 "#7B7D85")
|
||||
(def gray-40 "#64666A")
|
||||
(def info "#59B9E2")
|
||||
(def test "#fabada")
|
||||
(def white "#FFFFFF")
|
||||
(def primary "#31EFB8")
|
||||
|
||||
(def danger "#E65244")
|
||||
(def warning "#FC8802")
|
||||
|
|
|
@ -65,7 +65,8 @@
|
|||
:masked-group? :mask-group
|
||||
:constraints-h :constraints-group
|
||||
:constraints-v :constraints-group
|
||||
:fixed-scroll :constraints-group})
|
||||
:fixed-scroll :constraints-group
|
||||
:exports :exports-group})
|
||||
|
||||
;; Attributes that may directly be edited by the user with forms
|
||||
(def editable-attrs
|
||||
|
@ -99,7 +100,9 @@
|
|||
:stroke-opacity
|
||||
:stroke-color-gradient
|
||||
:stroke-cap-start
|
||||
:stroke-cap-end}
|
||||
:stroke-cap-end
|
||||
|
||||
:exports}
|
||||
|
||||
:group #{:proportion-lock
|
||||
:width :height
|
||||
|
@ -120,7 +123,9 @@
|
|||
|
||||
:shadow
|
||||
|
||||
:blur}
|
||||
:blur
|
||||
|
||||
:exports}
|
||||
|
||||
:rect #{:proportion-lock
|
||||
:width :height
|
||||
|
@ -147,7 +152,7 @@
|
|||
:fill-color-ref-id
|
||||
:fill-color-ref-file
|
||||
:fill-color-gradient
|
||||
|
||||
|
||||
:strokes
|
||||
:stroke-style
|
||||
:stroke-alignment
|
||||
|
@ -162,7 +167,9 @@
|
|||
|
||||
:shadow
|
||||
|
||||
:blur}
|
||||
:blur
|
||||
|
||||
:exports}
|
||||
|
||||
:circle #{:proportion-lock
|
||||
:width :height
|
||||
|
@ -202,7 +209,9 @@
|
|||
|
||||
:shadow
|
||||
|
||||
:blur}
|
||||
:blur
|
||||
|
||||
:exports}
|
||||
|
||||
:path #{:proportion-lock
|
||||
:width :height
|
||||
|
@ -242,7 +251,9 @@
|
|||
|
||||
:shadow
|
||||
|
||||
:blur}
|
||||
:blur
|
||||
|
||||
:exports}
|
||||
|
||||
:text #{:proportion-lock
|
||||
:width :height
|
||||
|
@ -305,7 +316,9 @@
|
|||
|
||||
:text-transform
|
||||
|
||||
:grow-type}
|
||||
:grow-type
|
||||
|
||||
:exports}
|
||||
|
||||
:image #{:proportion-lock
|
||||
:width :height
|
||||
|
@ -328,7 +341,9 @@
|
|||
|
||||
:shadow
|
||||
|
||||
:blur}
|
||||
:blur
|
||||
|
||||
:exports}
|
||||
|
||||
:svg-raw #{:proportion-lock
|
||||
:width :height
|
||||
|
@ -370,7 +385,9 @@
|
|||
|
||||
:shadow
|
||||
|
||||
:blur}
|
||||
:blur
|
||||
|
||||
:exports}
|
||||
|
||||
:bool #{:proportion-lock
|
||||
:width :height
|
||||
|
@ -410,5 +427,7 @@
|
|||
|
||||
:shadow
|
||||
|
||||
:blur}})
|
||||
:blur
|
||||
|
||||
:exports}})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue