Merge remote-tracking branch 'origin/main' into develop

This commit is contained in:
Alejandro Alonso 2022-09-28 14:30:28 +02:00
commit 43ceb6bb44
8 changed files with 21 additions and 12 deletions

View file

@ -83,7 +83,10 @@
- Fix Export bounding box mask [Taiga #950](https://tree.taiga.io/project/penpot/issue/950) - Fix Export bounding box mask [Taiga #950](https://tree.taiga.io/project/penpot/issue/950)
- Fix delete layers in bulk [Taiga #4160](https://tree.taiga.io/project/penpot/issue/4160) - Fix delete layers in bulk [Taiga #4160](https://tree.taiga.io/project/penpot/issue/4160)
- Fix Cannot take out an element from a group at layers panel by drag [Taiga #4209](https://tree.taiga.io/project/penpot/issue/4209) - Fix Cannot take out an element from a group at layers panel by drag [Taiga #4209](https://tree.taiga.io/project/penpot/issue/4209)
- Fix Internal error when resending invitation email [Taiga #4212](https://tree.taiga.io/project/penpot/issue/4212)
- Fix PDF exportation order [Taiga #4216](https://tree.taiga.io/project/penpot/issue/4216)
- Fix some typos [Taiga #4215](https://tree.taiga.io/project/penpot/issue/4215)
- Fix "no boards" message in viewer [Taiga #4243](https://tree.taiga.io/project/penpot/issue/4243)
## 1.15.3-beta ## 1.15.3-beta

View file

@ -157,11 +157,6 @@
align-items: center; align-items: center;
overflow: hidden; overflow: hidden;
.empty-state {
justify-content: center;
align-items: center;
}
svg { svg {
transform-origin: center; transform-origin: center;
} }
@ -184,6 +179,13 @@
height: 100%; height: 100%;
z-index: 10; z-index: 10;
} }
.empty-state {
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
} }
.viewport-container { .viewport-container {

View file

@ -501,7 +501,7 @@
resend-invitation resend-invitation
(fn [] (fn []
(let [params {:email email (let [params {:emails [email]
:team-id (:id team) :team-id (:id team)
:resend? true :resend? true
:role invitation-role} :role invitation-role}

View file

@ -77,7 +77,7 @@
[:img {:src "images/features/1.15-comments.gif" :border "0" :alt "Comments positioning"}]] [:img {:src "images/features/1.15-comments.gif" :border "0" :alt "Comments positioning"}]]
[:div.modal-right [:div.modal-right
[:div.modal-title [:div.modal-title
[:h2 "Comments poitioning"]] [:h2 "Comments positioning"]]
[:div.modal-content [:div.modal-content
[:p "They live! Now you can move existing comments wherever you want by dragging them."] [:p "They live! Now you can move existing comments wherever you want by dragging them."]
[:p "Also, comments inside boards will be associated with it, so that if you move a board its comments will maintain its place inside it."]] [:p "Also, comments inside boards will be associated with it, so that if you move a board its comments will maintain its place inside it."]]

View file

@ -6,6 +6,8 @@
(ns app.main.ui.workspace.header (ns app.main.ui.workspace.header
(:require (:require
[app.common.pages.helpers :as cph]
[app.common.uuid :as uuid]
[app.config :as cf] [app.config :as cf]
[app.main.data.events :as ev] [app.main.data.events :as ev]
[app.main.data.exports :as de] [app.main.data.exports :as de]
@ -107,7 +109,9 @@
show-sub-menu? (mf/use-state false) show-sub-menu? (mf/use-state false)
editing? (mf/use-state false) editing? (mf/use-state false)
edit-input-ref (mf/use-ref nil) edit-input-ref (mf/use-ref nil)
frames (mf/deref refs/workspace-frames) objects (mf/deref refs/workspace-page-objects)
frames (->> (cph/get-immediate-children objects uuid/zero)
(filterv cph/frame-shape?))
add-shared-fn add-shared-fn
#(st/emit! (dwl/set-file-shared (:id file) true)) #(st/emit! (dwl/set-file-shared (:id file) true))