@selfcommunity/react-theme-default 0.2.0-alpha.21 → 0.2.0-alpha.23
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/SCFeed.d.ts +8 -0
- package/lib/cjs/components/SCFeed.js +8 -0
- package/lib/cjs/components/SCNavigationMenuDrawer.d.ts +42 -0
- package/lib/cjs/components/SCNavigationMenuDrawer.js +45 -0
- package/lib/cjs/components/SCNavigationMenuIconButton.d.ts +0 -37
- package/lib/cjs/components/SCNavigationMenuIconButton.js +1 -39
- package/lib/cjs/components/SCOnBoardingWidget.d.ts +12 -2
- package/lib/cjs/components/SCOnBoardingWidget.js +12 -2
- package/lib/cjs/index.d.ts +29 -7
- package/lib/cjs/index.js +2 -0
- package/lib/esm/components/SCFeed.d.ts +8 -0
- package/lib/esm/components/SCFeed.js +8 -0
- package/lib/esm/components/SCNavigationMenuDrawer.d.ts +42 -0
- package/lib/esm/components/SCNavigationMenuDrawer.js +43 -0
- package/lib/esm/components/SCNavigationMenuIconButton.d.ts +0 -37
- package/lib/esm/components/SCNavigationMenuIconButton.js +1 -39
- package/lib/esm/components/SCOnBoardingWidget.d.ts +12 -2
- package/lib/esm/components/SCOnBoardingWidget.js +12 -2
- package/lib/esm/index.d.ts +29 -7
- package/lib/esm/index.js +2 -0
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
package/lib/esm/index.d.ts
CHANGED
|
@@ -2029,6 +2029,14 @@ declare const theme: {
|
|
|
2029
2029
|
padding: number;
|
|
2030
2030
|
marginBottom: any;
|
|
2031
2031
|
};
|
|
2032
|
+
'& .SCFeed-header-item': {
|
|
2033
|
+
animation: string;
|
|
2034
|
+
'@keyframes pulse-animation': {
|
|
2035
|
+
'0%': {
|
|
2036
|
+
opacity: number;
|
|
2037
|
+
};
|
|
2038
|
+
};
|
|
2039
|
+
};
|
|
2032
2040
|
};
|
|
2033
2041
|
'& .SCFeed-end': {
|
|
2034
2042
|
'& > .SCWidget-root': {
|
|
@@ -4311,14 +4319,18 @@ declare const theme: {
|
|
|
4311
4319
|
SCNavigationMenuIconButton: {
|
|
4312
4320
|
styleOverrides: {
|
|
4313
4321
|
root: ({ theme }: any) => {};
|
|
4314
|
-
|
|
4322
|
+
};
|
|
4323
|
+
};
|
|
4324
|
+
SCNavigationMenuDrawer: {
|
|
4325
|
+
styleOverrides: {
|
|
4326
|
+
root: ({ theme }: any) => {
|
|
4315
4327
|
'& .MuiDrawer-paper': {
|
|
4316
4328
|
[x: number]: {
|
|
4317
4329
|
width: any;
|
|
4318
4330
|
};
|
|
4319
4331
|
width: string;
|
|
4320
4332
|
};
|
|
4321
|
-
'& .
|
|
4333
|
+
'& .SCNavigationMenuDrawer-drawer-header': {
|
|
4322
4334
|
minHeight: any;
|
|
4323
4335
|
padding: string;
|
|
4324
4336
|
display: string;
|
|
@@ -4867,6 +4879,9 @@ declare const theme: {
|
|
|
4867
4879
|
width: string;
|
|
4868
4880
|
'& .SCNotification-username': {
|
|
4869
4881
|
fontWeight: number;
|
|
4882
|
+
/**
|
|
4883
|
+
* Export default theme
|
|
4884
|
+
*/
|
|
4870
4885
|
'&:hover': {
|
|
4871
4886
|
textDecoration: string;
|
|
4872
4887
|
};
|
|
@@ -5226,8 +5241,18 @@ declare const theme: {
|
|
|
5226
5241
|
display: string;
|
|
5227
5242
|
flexDirection: string;
|
|
5228
5243
|
};
|
|
5229
|
-
'& .SCOnBoardingWidget-appearance-color': {
|
|
5230
|
-
|
|
5244
|
+
'& .SCOnBoardingWidget-appearance-color-container': {
|
|
5245
|
+
position: string;
|
|
5246
|
+
display: string;
|
|
5247
|
+
'& .SCOnBoardingWidget-appearance-color': {
|
|
5248
|
+
margin: any;
|
|
5249
|
+
};
|
|
5250
|
+
'& .SCOnBoardingWidget-appearance-color-progress': {
|
|
5251
|
+
position: string;
|
|
5252
|
+
top: string;
|
|
5253
|
+
marginTop: any;
|
|
5254
|
+
marginLeft: any;
|
|
5255
|
+
};
|
|
5231
5256
|
};
|
|
5232
5257
|
'& .SCOnBoardingWidget-appearance-logo-container': {
|
|
5233
5258
|
position: string;
|
|
@@ -5304,9 +5329,6 @@ declare const theme: {
|
|
|
5304
5329
|
'& .MuiBadge-badge': {
|
|
5305
5330
|
right: any;
|
|
5306
5331
|
top: any;
|
|
5307
|
-
/**
|
|
5308
|
-
* Export default theme
|
|
5309
|
-
*/
|
|
5310
5332
|
'& .SCUserAvatar-badge-content': {
|
|
5311
5333
|
width: number;
|
|
5312
5334
|
height: number;
|
package/lib/esm/index.js
CHANGED
|
@@ -110,6 +110,7 @@ import SCMediaLink from './components/SCMediaLink';
|
|
|
110
110
|
import SCMediaShare from './components/SCMediaShare';
|
|
111
111
|
import SCMyEventsWidget from './components/SCMyEventsWidget';
|
|
112
112
|
import SCNavigationMenuIconButton from './components/SCNavigationMenuIconButton';
|
|
113
|
+
import SCNavigationMenuDrawer from './components/SCNavigationMenuDrawer';
|
|
113
114
|
import SCNavigationSettingsIconButton from './components/SCNavigationSettingsIconButton';
|
|
114
115
|
import SCNavigationToolbar from './components/SCNavigationToolbar';
|
|
115
116
|
import SCNavigationToolbarMobile from './components/SCNavigationToolbarMobile';
|
|
@@ -319,6 +320,7 @@ const theme = {
|
|
|
319
320
|
SCMediaLink,
|
|
320
321
|
SCMediaShare,
|
|
321
322
|
SCNavigationMenuIconButton,
|
|
323
|
+
SCNavigationMenuDrawer,
|
|
322
324
|
SCNavigationSettingsIconButton,
|
|
323
325
|
SCNavigationToolbar,
|
|
324
326
|
SCNavigationToolbarMobile,
|