@astral/ui 4.17.2 → 4.17.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/SideDialogActions/styles.js +1 -1
- package/components/SideDialogContent/styles.js +1 -2
- package/components/fileUploading/FileUploaderDropzone/DropzoneWrapper/styles.js +3 -3
- package/node/components/SideDialogActions/styles.js +1 -1
- package/node/components/SideDialogContent/styles.js +1 -2
- package/node/components/fileUploading/FileUploaderDropzone/DropzoneWrapper/styles.js +3 -3
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { styled } from '../styles';
|
|
|
3
3
|
export const StyledDialogActions = styled(DialogActions) `
|
|
4
4
|
position: relative;
|
|
5
5
|
|
|
6
|
-
padding
|
|
6
|
+
padding: ${({ theme }) => theme.spacing(4, 6)};
|
|
7
7
|
|
|
8
8
|
/* Декоративный разделитель между действиями и контентной частью SideDialog */
|
|
9
9
|
&::after {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { DialogContent } from '../DialogContent';
|
|
2
2
|
import { styled } from '../styles';
|
|
3
3
|
export const StyledDialogContent = styled(DialogContent) `
|
|
4
|
-
padding
|
|
5
|
-
padding-bottom: 0;
|
|
4
|
+
padding: ${({ theme }) => theme.spacing(4, 6)};
|
|
6
5
|
`;
|
|
@@ -15,10 +15,10 @@ export const Wrapper = styled.div `
|
|
|
15
15
|
|
|
16
16
|
min-height: 88px;
|
|
17
17
|
padding: ${({ theme }) => theme.spacing(4)};
|
|
18
|
-
|
|
19
|
-
border
|
|
20
|
-
outline: 1px dashed
|
|
18
|
+
|
|
19
|
+
border: 1px dashed
|
|
21
20
|
${({ theme, $isActive, $isError }) => getBorderColor(theme, $isActive, $isError)};
|
|
21
|
+
border-radius: ${({ theme }) => theme.shape.medium};
|
|
22
22
|
|
|
23
23
|
transition: ${({ theme }) => theme.transitions.create(['background', 'border'], {
|
|
24
24
|
duration: theme.transitions.duration.short,
|
|
@@ -6,7 +6,7 @@ const styles_1 = require("../styles");
|
|
|
6
6
|
exports.StyledDialogActions = (0, styles_1.styled)(DialogActions_1.DialogActions) `
|
|
7
7
|
position: relative;
|
|
8
8
|
|
|
9
|
-
padding
|
|
9
|
+
padding: ${({ theme }) => theme.spacing(4, 6)};
|
|
10
10
|
|
|
11
11
|
/* Декоративный разделитель между действиями и контентной частью SideDialog */
|
|
12
12
|
&::after {
|
|
@@ -4,6 +4,5 @@ exports.StyledDialogContent = void 0;
|
|
|
4
4
|
const DialogContent_1 = require("../DialogContent");
|
|
5
5
|
const styles_1 = require("../styles");
|
|
6
6
|
exports.StyledDialogContent = (0, styles_1.styled)(DialogContent_1.DialogContent) `
|
|
7
|
-
padding
|
|
8
|
-
padding-bottom: 0;
|
|
7
|
+
padding: ${({ theme }) => theme.spacing(4, 6)};
|
|
9
8
|
`;
|
|
@@ -18,10 +18,10 @@ exports.Wrapper = styles_1.styled.div `
|
|
|
18
18
|
|
|
19
19
|
min-height: 88px;
|
|
20
20
|
padding: ${({ theme }) => theme.spacing(4)};
|
|
21
|
-
|
|
22
|
-
border
|
|
23
|
-
outline: 1px dashed
|
|
21
|
+
|
|
22
|
+
border: 1px dashed
|
|
24
23
|
${({ theme, $isActive, $isError }) => getBorderColor(theme, $isActive, $isError)};
|
|
24
|
+
border-radius: ${({ theme }) => theme.shape.medium};
|
|
25
25
|
|
|
26
26
|
transition: ${({ theme }) => theme.transitions.create(['background', 'border'], {
|
|
27
27
|
duration: theme.transitions.duration.short,
|