@selfcommunity/react-theme-default 0.5.0-alpha.6 → 0.5.0-alpha.7
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/SCCourse.d.ts +1 -1
- package/lib/cjs/components/SCCourse.js +1 -1
- package/lib/cjs/components/SCEvent.d.ts +1 -1
- package/lib/cjs/components/SCEvent.js +1 -1
- package/lib/cjs/index.d.ts +2 -2
- package/lib/esm/components/SCCourse.d.ts +1 -1
- package/lib/esm/components/SCCourse.js +1 -1
- package/lib/esm/components/SCEvent.d.ts +1 -1
- package/lib/esm/components/SCEvent.js +1 -1
- package/lib/esm/index.d.ts +2 -2
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -1799,7 +1799,7 @@ declare const theme: {
|
|
|
1799
1799
|
};
|
|
1800
1800
|
SCCourse: {
|
|
1801
1801
|
styleOverrides: {
|
|
1802
|
-
root: () => {
|
|
1802
|
+
root: ({ theme }: any) => {
|
|
1803
1803
|
width: string;
|
|
1804
1804
|
};
|
|
1805
1805
|
snippetRoot: ({ theme }: any) => {
|
|
@@ -9602,7 +9602,7 @@ declare const theme: {
|
|
|
9602
9602
|
};
|
|
9603
9603
|
SCEvent: {
|
|
9604
9604
|
styleOverrides: {
|
|
9605
|
-
root: () => {};
|
|
9605
|
+
root: ({ theme }: any) => {};
|
|
9606
9606
|
detailRoot: ({ theme }: any) => {
|
|
9607
9607
|
'& .SCEvent-detail-image-wrapper': {
|
|
9608
9608
|
position: string;
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -1799,7 +1799,7 @@ declare const theme: {
|
|
|
1799
1799
|
};
|
|
1800
1800
|
SCCourse: {
|
|
1801
1801
|
styleOverrides: {
|
|
1802
|
-
root: () => {
|
|
1802
|
+
root: ({ theme }: any) => {
|
|
1803
1803
|
width: string;
|
|
1804
1804
|
};
|
|
1805
1805
|
snippetRoot: ({ theme }: any) => {
|
|
@@ -9602,7 +9602,7 @@ declare const theme: {
|
|
|
9602
9602
|
};
|
|
9603
9603
|
SCEvent: {
|
|
9604
9604
|
styleOverrides: {
|
|
9605
|
-
root: () => {};
|
|
9605
|
+
root: ({ theme }: any) => {};
|
|
9606
9606
|
detailRoot: ({ theme }: any) => {
|
|
9607
9607
|
'& .SCEvent-detail-image-wrapper': {
|
|
9608
9608
|
position: string;
|