Merge branch 'hotfix/v2.6.1' of github.com:ONLYOFFICE/DocSpace-client into hotfix/v2.6.1

This commit is contained in:
Elyor Djalilov 2024-08-13 16:02:10 +05:00
commit 9ff85666fa
18 changed files with 20 additions and 20 deletions

View File

@ -146,7 +146,7 @@ const AccessSelector: React.FC<AccessSelectorProps> = ({
directionX="right"
directionY="top"
fixedDirection
manualWidth="fit-content"
manualWidth="auto"
isDefaultMode
isAside={isMobileView}
setIsOpenItemAccess={setIsOpenItemAccess}

View File

@ -218,7 +218,7 @@ const QuotaForm = ({
size="content"
onSelect={onSelectComboBox}
showDisabledItems
manualWidth={"fit-content"}
manualWidth="auto"
directionY="both"
/>
</div>

View File

@ -196,7 +196,7 @@ const SpaceQuota = (props) => {
size="content"
modernView
isLoading={isLoading}
manualWidth="fit-content"
manualWidth="auto"
directionY="both"
/>
</StyledBody>

View File

@ -239,7 +239,7 @@ const ThirdPartyComboBox = ({
scaled
withBackdrop={isMobile}
size="content"
manualWidth={"fit-content"}
manualWidth={"auto"}
isMobileView={isMobileOnly}
directionY="both"
displaySelectedOption

View File

@ -174,7 +174,7 @@ const GroupMember = ({ member, infoPanelSelection }: GroupMemberProps) => {
size="content"
modernView
title={t("Common:Role")}
manualWidth={"fit-content"}
manualWidth="auto"
isMobileView={isMobileOnly}
directionY="both"
displaySelectedOption

View File

@ -176,7 +176,7 @@ const Accounts = (props) => {
size="content"
displaySelectedOption
modernView
manualWidth={"fit-content"}
manualWidth="auto"
isLoading={isLoading}
/>
);

View File

@ -378,7 +378,7 @@ const User = ({
size="content"
modernView
title={t("Common:Role")}
manualWidth={"fit-content"}
manualWidth="auto"
isLoading={isLoading}
isMobileView={isMobileOnly}
directionY="both"

View File

@ -399,7 +399,7 @@ const InsideGroupTableRow = (props) => {
directionY="both"
size="content"
modernView
manualWidth={"fit-content"}
manualWidth="auto"
isLoading={isLoading}
optionStyle={{ maxWidth: "400px" }}
textOverflow
@ -442,7 +442,7 @@ const InsideGroupTableRow = (props) => {
size="content"
displaySelectedOption
modernView
manualWidth={"fit-content"}
manualWidth="auto"
isLoading={isLoading}
/>
);

View File

@ -438,7 +438,7 @@ const PeopleTableRow = (props) => {
size="content"
displaySelectedOption
modernView
manualWidth={"fit-content"}
manualWidth={"auto"}
isLoading={isLoading}
/>
);

View File

@ -131,7 +131,7 @@ const UsersRowContent = ({
size="content"
displaySelectedOption
modernView
manualWidth="fit-content"
manualWidth="auto"
/>
</div>
</Box>,

View File

@ -126,7 +126,7 @@ const UsersTypeTableRow = ({
size="content"
displaySelectedOption
modernView
manualWidth="fit-content"
manualWidth="auto"
/>
</div>
</TableCell>

View File

@ -132,7 +132,7 @@ const UsersRowContent = ({
size="content"
displaySelectedOption
modernView
manualWidth="fit-content"
manualWidth="auto"
/>
</div>
</Box>,

View File

@ -126,7 +126,7 @@ const UsersTypeTableRow = ({
size="content"
displaySelectedOption
modernView
manualWidth="fit-content"
manualWidth="auto"
/>
</div>
</TableCell>

View File

@ -132,7 +132,7 @@ const UsersRowContent = ({
size="content"
displaySelectedOption
modernView
manualWidth="fit-content"
manualWidth="auto"
/>
</div>
</Box>,

View File

@ -126,7 +126,7 @@ const UsersTypeTableRow = ({
size="content"
displaySelectedOption
modernView
manualWidth="fit-content"
manualWidth="auto"
/>
</div>
</TableCell>

View File

@ -106,7 +106,7 @@ const StyledDropdown = styled.div<{
border: ${(props) => props.theme.dropDown.border};
border-radius: ${(props) => props.theme.dropDown.borderRadius};
-moz-border-radius: ${(props) => props.theme.dropDown.borderRadius};
-webkit-border-radius: ${(props) => props.theme.dropDown.borderRadius};dropDownMaxHeight
-webkit-border-radius: ${(props) => props.theme.dropDown.borderRadius};
box-shadow: ${(props) => props.theme.dropDown.boxShadow};
-moz-box-shadow: ${(props) => props.theme.dropDown.boxShadow};
-webkit-box-shadow: ${(props) => props.theme.dropDown.boxShadow};

View File

@ -63,7 +63,7 @@ const AccessSelector = (props: AccessSelectorProps) => {
options={accessRights as TOption[]}
size={ComboBoxSize.content}
scaled={false}
manualWidth="fit-content"
manualWidth="auto"
selectedOption={selectedAccessRight as TOption}
showDisabledItems
directionX="right"
@ -81,7 +81,7 @@ const AccessSelector = (props: AccessSelectorProps) => {
directionX="right"
directionY="top"
fixedDirection={isMobileView}
manualWidth={isMobileView ? "fit-content" : `${width}px`}
manualWidth={isMobileView ? "auto" : `${width}px`}
isAside={isMobileView}
manualY={isMobileView ? "0px" : undefined}
withoutBackground={isMobileView}

View File

@ -153,7 +153,7 @@ const LinkRow = ({
modernView
type="onlyIcon"
isDisabled={isExpiredLink || isLoaded}
manualWidth="fit-content"
manualWidth="auto"
withBackdrop={false}
/>
</div>