Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PLASMA-4356: make placement optional for DropdownItem [master] #1722

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type Items = Array<{
/**
* Сторона открытия вложенного дропдауна относительно текущего элемента;
*/
placement: DropdownPlacement;
placement?: DropdownPlacement;
/**
* Список дочерних items.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type DropdownItemOption = {
/**
* Сторона открытия вложенного дропдауна относительно текущего элемента
*/
placement: DropdownPlacement;
placement?: DropdownPlacement;
Yakutoc marked this conversation as resolved.
Show resolved Hide resolved
/**
* Список дочерних items
*/
Expand Down
2 changes: 1 addition & 1 deletion website/plasma-b2c-docs/docs/components/Dropdown.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type Items = Array<{
/**
* Сторона открытия вложенного дропдауна относительно текущего элемента;
*/
placement: DropdownPlacement;
placement?: DropdownPlacement;
/**
* Список дочерних items.
*/
Expand Down
2 changes: 1 addition & 1 deletion website/plasma-giga-docs/docs/components/Dropdown.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type Items = Array<{
/**
* Сторона открытия вложенного дропдауна относительно текущего элемента;
*/
placement: DropdownPlacement;
placement?: DropdownPlacement;
/**
* Список дочерних items.
*/
Expand Down
2 changes: 1 addition & 1 deletion website/plasma-web-docs/docs/components/Dropdown.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type Items = Array<{
/**
* Сторона открытия вложенного дропдауна относительно текущего элемента;
*/
placement: DropdownPlacement;
placement?: DropdownPlacement;
/**
* Список дочерних items.
*/
Expand Down
2 changes: 1 addition & 1 deletion website/sdds-cs-docs/docs/components/Dropdown.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type Items = Array<{
/**
* Сторона открытия вложенного дропдауна относительно текущего элемента;
*/
placement: DropdownPlacement;
placement?: DropdownPlacement;
/**
* Список дочерних items.
*/
Expand Down
2 changes: 1 addition & 1 deletion website/sdds-dfa-docs/docs/components/Dropdown.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type Items = Array<{
/**
* Сторона открытия вложенного дропдауна относительно текущего элемента;
*/
placement: DropdownPlacement;
placement?: DropdownPlacement;
/**
* Список дочерних items.
*/
Expand Down
2 changes: 1 addition & 1 deletion website/sdds-insol-docs/docs/components/Dropdown.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type Items = Array<{
/**
* Сторона открытия вложенного дропдауна относительно текущего элемента;
*/
placement: DropdownPlacement;
placement?: DropdownPlacement;
/**
* Список дочерних items.
*/
Expand Down
2 changes: 1 addition & 1 deletion website/sdds-serv-docs/docs/components/Dropdown.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type Items = Array<{
/**
* Сторона открытия вложенного дропдауна относительно текущего элемента;
*/
placement: DropdownPlacement;
placement?: DropdownPlacement;
/**
* Список дочерних items.
*/
Expand Down
Loading