@selfcommunity/react-theme-default 0.5.0-alpha.14 → 0.5.0-alpha.15
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/SCComposer.d.ts +5 -1
- package/lib/cjs/components/SCComposer.js +5 -1
- package/lib/cjs/index.d.ts +5 -1
- package/lib/esm/components/SCComposer.d.ts +5 -1
- package/lib/esm/components/SCComposer.js +5 -1
- package/lib/esm/index.d.ts +5 -1
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
|
@@ -105,7 +105,11 @@ declare const Component: {
|
|
|
105
105
|
};
|
|
106
106
|
};
|
|
107
107
|
};
|
|
108
|
-
attributesRoot: () => {
|
|
108
|
+
attributesRoot: ({ theme }: any) => {
|
|
109
|
+
'& .MuiChip-root': {
|
|
110
|
+
marginRight: any;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
109
113
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
110
114
|
'& .SCComposer-content-discussion-title': {
|
|
111
115
|
'& .MuiInputBase-root': {
|
|
@@ -111,7 +111,11 @@ const Component = {
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
}),
|
|
114
|
-
attributesRoot: () => ({
|
|
114
|
+
attributesRoot: ({ theme }) => ({
|
|
115
|
+
'& .MuiChip-root': {
|
|
116
|
+
marginRight: theme.spacing(0.5)
|
|
117
|
+
}
|
|
118
|
+
}),
|
|
115
119
|
contentDiscussionRoot: ({ theme }) => ({
|
|
116
120
|
'& .SCComposer-content-discussion-title': {
|
|
117
121
|
'& .MuiInputBase-root': {
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1430,7 +1430,11 @@ declare const theme: {
|
|
|
1430
1430
|
};
|
|
1431
1431
|
};
|
|
1432
1432
|
};
|
|
1433
|
-
attributesRoot: () => {
|
|
1433
|
+
attributesRoot: ({ theme }: any) => {
|
|
1434
|
+
'& .MuiChip-root': {
|
|
1435
|
+
marginRight: any;
|
|
1436
|
+
};
|
|
1437
|
+
};
|
|
1434
1438
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
1435
1439
|
'& .SCComposer-content-discussion-title': {
|
|
1436
1440
|
'& .MuiInputBase-root': {
|
|
@@ -105,7 +105,11 @@ declare const Component: {
|
|
|
105
105
|
};
|
|
106
106
|
};
|
|
107
107
|
};
|
|
108
|
-
attributesRoot: () => {
|
|
108
|
+
attributesRoot: ({ theme }: any) => {
|
|
109
|
+
'& .MuiChip-root': {
|
|
110
|
+
marginRight: any;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
109
113
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
110
114
|
'& .SCComposer-content-discussion-title': {
|
|
111
115
|
'& .MuiInputBase-root': {
|
|
@@ -109,7 +109,11 @@ const Component = {
|
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
}),
|
|
112
|
-
attributesRoot: () => ({
|
|
112
|
+
attributesRoot: ({ theme }) => ({
|
|
113
|
+
'& .MuiChip-root': {
|
|
114
|
+
marginRight: theme.spacing(0.5)
|
|
115
|
+
}
|
|
116
|
+
}),
|
|
113
117
|
contentDiscussionRoot: ({ theme }) => ({
|
|
114
118
|
'& .SCComposer-content-discussion-title': {
|
|
115
119
|
'& .MuiInputBase-root': {
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1430,7 +1430,11 @@ declare const theme: {
|
|
|
1430
1430
|
};
|
|
1431
1431
|
};
|
|
1432
1432
|
};
|
|
1433
|
-
attributesRoot: () => {
|
|
1433
|
+
attributesRoot: ({ theme }: any) => {
|
|
1434
|
+
'& .MuiChip-root': {
|
|
1435
|
+
marginRight: any;
|
|
1436
|
+
};
|
|
1437
|
+
};
|
|
1434
1438
|
contentDiscussionRoot: ({ theme }: any) => {
|
|
1435
1439
|
'& .SCComposer-content-discussion-title': {
|
|
1436
1440
|
'& .MuiInputBase-root': {
|