@selfcommunity/react-theme-default 1.0.3 → 1.1.0-alpha.0
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/lib/cjs/components/SCCategoryHeader.d.ts +9 -0
- package/lib/cjs/components/SCCategoryHeader.js +9 -0
- package/lib/cjs/index.d.ts +9 -0
- package/lib/esm/components/SCCategoryHeader.d.ts +9 -0
- package/lib/esm/components/SCCategoryHeader.js +9 -0
- package/lib/esm/index.d.ts +9 -0
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -10,6 +10,7 @@ declare const Component: {
|
|
|
10
10
|
[x: number]: {
|
|
11
11
|
borderRadius: any;
|
|
12
12
|
};
|
|
13
|
+
position: string;
|
|
13
14
|
display: string;
|
|
14
15
|
flexDirection: string;
|
|
15
16
|
justifyContent: string;
|
|
@@ -19,6 +20,14 @@ declare const Component: {
|
|
|
19
20
|
background: string;
|
|
20
21
|
height: number;
|
|
21
22
|
borderRadius: number;
|
|
23
|
+
'& .MuiButtonBase-root': {
|
|
24
|
+
position: string;
|
|
25
|
+
right: string;
|
|
26
|
+
bottom: string;
|
|
27
|
+
padding: number;
|
|
28
|
+
borderRadius: number;
|
|
29
|
+
minWidth: string;
|
|
30
|
+
};
|
|
22
31
|
};
|
|
23
32
|
'& .SCCategoryHeader-info': {
|
|
24
33
|
paddingLeft: any;
|
|
@@ -9,6 +9,7 @@ const Component = {
|
|
|
9
9
|
styleOverrides: {
|
|
10
10
|
root: ({ theme }) => ({
|
|
11
11
|
'& .SCCategoryHeader-cover': {
|
|
12
|
+
position: 'relative',
|
|
12
13
|
display: 'flex',
|
|
13
14
|
flexDirection: 'column',
|
|
14
15
|
justifyContent: 'center',
|
|
@@ -20,6 +21,14 @@ const Component = {
|
|
|
20
21
|
borderRadius: 0,
|
|
21
22
|
[theme.breakpoints.up('md')]: {
|
|
22
23
|
borderRadius: theme.spacing(0, 0, 2.5, 2.5)
|
|
24
|
+
},
|
|
25
|
+
'& .MuiButtonBase-root': {
|
|
26
|
+
position: 'absolute',
|
|
27
|
+
right: '10px',
|
|
28
|
+
bottom: '10px',
|
|
29
|
+
padding: 6,
|
|
30
|
+
borderRadius: 50,
|
|
31
|
+
minWidth: 'auto'
|
|
23
32
|
}
|
|
24
33
|
},
|
|
25
34
|
'& .SCCategoryHeader-info': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -873,6 +873,7 @@ declare const theme: {
|
|
|
873
873
|
[x: number]: {
|
|
874
874
|
borderRadius: any;
|
|
875
875
|
};
|
|
876
|
+
position: string;
|
|
876
877
|
display: string;
|
|
877
878
|
flexDirection: string;
|
|
878
879
|
justifyContent: string;
|
|
@@ -882,6 +883,14 @@ declare const theme: {
|
|
|
882
883
|
background: string;
|
|
883
884
|
height: number;
|
|
884
885
|
borderRadius: number;
|
|
886
|
+
'& .MuiButtonBase-root': {
|
|
887
|
+
position: string;
|
|
888
|
+
right: string;
|
|
889
|
+
bottom: string;
|
|
890
|
+
padding: number;
|
|
891
|
+
borderRadius: number;
|
|
892
|
+
minWidth: string;
|
|
893
|
+
};
|
|
885
894
|
};
|
|
886
895
|
'& .SCCategoryHeader-info': {
|
|
887
896
|
paddingLeft: any;
|
|
@@ -10,6 +10,7 @@ declare const Component: {
|
|
|
10
10
|
[x: number]: {
|
|
11
11
|
borderRadius: any;
|
|
12
12
|
};
|
|
13
|
+
position: string;
|
|
13
14
|
display: string;
|
|
14
15
|
flexDirection: string;
|
|
15
16
|
justifyContent: string;
|
|
@@ -19,6 +20,14 @@ declare const Component: {
|
|
|
19
20
|
background: string;
|
|
20
21
|
height: number;
|
|
21
22
|
borderRadius: number;
|
|
23
|
+
'& .MuiButtonBase-root': {
|
|
24
|
+
position: string;
|
|
25
|
+
right: string;
|
|
26
|
+
bottom: string;
|
|
27
|
+
padding: number;
|
|
28
|
+
borderRadius: number;
|
|
29
|
+
minWidth: string;
|
|
30
|
+
};
|
|
22
31
|
};
|
|
23
32
|
'& .SCCategoryHeader-info': {
|
|
24
33
|
paddingLeft: any;
|
|
@@ -7,6 +7,7 @@ const Component = {
|
|
|
7
7
|
styleOverrides: {
|
|
8
8
|
root: ({ theme }) => ({
|
|
9
9
|
'& .SCCategoryHeader-cover': {
|
|
10
|
+
position: 'relative',
|
|
10
11
|
display: 'flex',
|
|
11
12
|
flexDirection: 'column',
|
|
12
13
|
justifyContent: 'center',
|
|
@@ -18,6 +19,14 @@ const Component = {
|
|
|
18
19
|
borderRadius: 0,
|
|
19
20
|
[theme.breakpoints.up('md')]: {
|
|
20
21
|
borderRadius: theme.spacing(0, 0, 2.5, 2.5)
|
|
22
|
+
},
|
|
23
|
+
'& .MuiButtonBase-root': {
|
|
24
|
+
position: 'absolute',
|
|
25
|
+
right: '10px',
|
|
26
|
+
bottom: '10px',
|
|
27
|
+
padding: 6,
|
|
28
|
+
borderRadius: 50,
|
|
29
|
+
minWidth: 'auto'
|
|
21
30
|
}
|
|
22
31
|
},
|
|
23
32
|
'& .SCCategoryHeader-info': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -873,6 +873,7 @@ declare const theme: {
|
|
|
873
873
|
[x: number]: {
|
|
874
874
|
borderRadius: any;
|
|
875
875
|
};
|
|
876
|
+
position: string;
|
|
876
877
|
display: string;
|
|
877
878
|
flexDirection: string;
|
|
878
879
|
justifyContent: string;
|
|
@@ -882,6 +883,14 @@ declare const theme: {
|
|
|
882
883
|
background: string;
|
|
883
884
|
height: number;
|
|
884
885
|
borderRadius: number;
|
|
886
|
+
'& .MuiButtonBase-root': {
|
|
887
|
+
position: string;
|
|
888
|
+
right: string;
|
|
889
|
+
bottom: string;
|
|
890
|
+
padding: number;
|
|
891
|
+
borderRadius: number;
|
|
892
|
+
minWidth: string;
|
|
893
|
+
};
|
|
885
894
|
};
|
|
886
895
|
'& .SCCategoryHeader-info': {
|
|
887
896
|
paddingLeft: any;
|