Skip to content

Commit 89c4fc3

Browse files
author
Steve Kwak
committed
file size limit and fixed positioning warning added and migration guided moved
1 parent 778582d commit 89c4fc3

File tree

5 files changed

+5
-454
lines changed

5 files changed

+5
-454
lines changed

SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,5 @@
162162
* [How to contribute](./CONTRIBUTING.md)
163163
* [Migrations](./migrations.md)
164164
* [UXP 2 to 3](./migrations/uxp-2-to-3.md)
165-
* [Porting Modals to Panels](./tutorials/how-to-migrate-from-modal-to-panel/index.md)
165+
* [Porting Modals to Panels](./migrations/how-to-migrate-from-modal-to-panel.md)
166166
* [Plugin API roadmap](./plugin-api-roadmap.md)

distribution/packaging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Select all files within your plugin's parent folder. On both macOS and Windows y
2020
| macOS | _Right-click > Compress # items_ |
2121
| Windows | _Right-click > Send to > Compressed (zipped) folder_ |
2222

23-
If you plan to distribute via the XD plugin manager, your .ZIP file **must be less than 25MB in size**. You'll only be able to submit for review if your file is under the size limit.
23+
If you plan to distribute via the XD plugin manager, your .ZIP file **must be less than 25MB in size and contain fewer than 3,000 files**. You'll only be able to submit for review if your file is under these limits.
2424

2525
> **Danger**
2626
>

migrations/uxp-2-to-3.md

Lines changed: 0 additions & 58 deletions
This file was deleted.

reference/ui/layout/positioning.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
> **warning**
2+
> Please refrain from using `position: fixed` if you are building a [panel](/reference/ui/panels/index.md) plugin. Currently, there is a bug that allows panels to put elements outside the panel boundaries. This will break your panel plugin in a future release when the bug is fixed.
3+
14
# Relative and Absolute Positioning
25

36
You can use relative and absolute positioning to indicate _exactly_ where elements are to be positioned. Relative positioning allows you to shift an element from its originally calculated position whereas absolute positioning takes the element out of the layout flow entirely, and allows you to position the element anywhere.

0 commit comments

Comments
 (0)