@selfcommunity/react-theme-default 0.4.5-alpha.4 → 0.4.5-alpha.6

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.
@@ -0,0 +1,12 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .MuiButton-startIcon': {
5
+ '& .MuiIcon-root': {
6
+ fontSize: string;
7
+ };
8
+ };
9
+ };
10
+ };
11
+ };
12
+ export default Component;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({
6
+ '& .MuiButton-startIcon': {
7
+ '& .MuiIcon-root': {
8
+ fontSize: '1.2rem'
9
+ }
10
+ }
11
+ })
12
+ }
13
+ };
14
+ exports.default = Component;
@@ -12,10 +12,12 @@ declare const Component: {
12
12
  alignItems: string;
13
13
  alignContent: string;
14
14
  flexDirection: string;
15
+ textAlign: string;
15
16
  "& .SCLiveStreamVideoConference-logo": {
16
17
  img: {
17
18
  maxHeight: string;
18
19
  };
20
+ marginBottom: any;
19
21
  };
20
22
  "& .SCLiveStreamVideoConference-btn-back-home": {
21
23
  marginTop: any;
@@ -14,10 +14,12 @@ const Component = {
14
14
  alignItems: 'center',
15
15
  alignContent: 'center',
16
16
  flexDirection: 'column',
17
+ textAlign: 'center',
17
18
  [`& .SCLiveStreamVideoConference-logo`]: {
18
19
  img: {
19
20
  maxHeight: '100px'
20
- }
21
+ },
22
+ marginBottom: theme.spacing(2)
21
23
  },
22
24
  [`& .SCLiveStreamVideoConference-btn-back-home`]: {
23
25
  marginTop: theme.spacing(2)
@@ -8917,6 +8917,17 @@ declare const theme: {
8917
8917
  };
8918
8918
  };
8919
8919
  };
8920
+ SCCreateLiveStreamButton: {
8921
+ styleOverrides: {
8922
+ root: ({ theme }: any) => {
8923
+ '& .MuiButton-startIcon': {
8924
+ '& .MuiIcon-root': {
8925
+ fontSize: string;
8926
+ };
8927
+ };
8928
+ };
8929
+ };
8930
+ };
8920
8931
  SCCreateLiveStreamDialog: {
8921
8932
  styleOverrides: {
8922
8933
  root: ({ theme }: any) => {
@@ -9168,10 +9179,12 @@ declare const theme: {
9168
9179
  alignItems: string;
9169
9180
  alignContent: string;
9170
9181
  flexDirection: string;
9182
+ textAlign: string;
9171
9183
  "& .SCLiveStreamVideoConference-logo": {
9172
9184
  img: {
9173
9185
  maxHeight: string;
9174
9186
  };
9187
+ marginBottom: any;
9175
9188
  };
9176
9189
  "& .SCLiveStreamVideoConference-btn-back-home": {
9177
9190
  marginTop: any;
package/lib/cjs/index.js CHANGED
@@ -145,6 +145,7 @@ const SCSearchAutocomplete_1 = tslib_1.__importDefault(require("./components/SCS
145
145
  const SCSnippetNotifications_1 = tslib_1.__importDefault(require("./components/SCSnippetNotifications"));
146
146
  const SCSuggestedEventsWidget_1 = tslib_1.__importDefault(require("./components/SCSuggestedEventsWidget"));
147
147
  const SCLiveStream_1 = tslib_1.__importDefault(require("./components/SCLiveStream"));
148
+ const SCCreateLiveStreamButton_1 = tslib_1.__importDefault(require("./components/SCCreateLiveStreamButton"));
148
149
  const SCLiveStreamDialog_1 = tslib_1.__importDefault(require("./components/SCLiveStreamDialog"));
149
150
  const SCLiveStreamSelector_1 = tslib_1.__importDefault(require("./components/SCLiveStreamSelector"));
150
151
  const SCLiveStreamForm_1 = tslib_1.__importDefault(require("./components/SCLiveStreamForm"));
@@ -431,6 +432,7 @@ const theme = {
431
432
  SCLiveStreamInfoDetails: SCLiveStreamInfoDetails_1.default,
432
433
  SCUpScalingTierBadge: SCUpScalingTierBadge_1.default,
433
434
  SCUserLiveStreamWidget: SCUserLiveStreamWidget_1.default,
435
+ SCCreateLiveStreamButton: SCCreateLiveStreamButton_1.default,
434
436
  SCCreateLiveStreamDialog: SCLiveStreamDialog_1.default,
435
437
  SCLiveStreamSelector: SCLiveStreamSelector_1.default,
436
438
  SCLiveStreamForm: SCLiveStreamForm_1.default,
@@ -0,0 +1,12 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .MuiButton-startIcon': {
5
+ '& .MuiIcon-root': {
6
+ fontSize: string;
7
+ };
8
+ };
9
+ };
10
+ };
11
+ };
12
+ export default Component;
@@ -0,0 +1,12 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ '& .MuiButton-startIcon': {
5
+ '& .MuiIcon-root': {
6
+ fontSize: '1.2rem'
7
+ }
8
+ }
9
+ })
10
+ }
11
+ };
12
+ export default Component;
@@ -12,10 +12,12 @@ declare const Component: {
12
12
  alignItems: string;
13
13
  alignContent: string;
14
14
  flexDirection: string;
15
+ textAlign: string;
15
16
  "& .SCLiveStreamVideoConference-logo": {
16
17
  img: {
17
18
  maxHeight: string;
18
19
  };
20
+ marginBottom: any;
19
21
  };
20
22
  "& .SCLiveStreamVideoConference-btn-back-home": {
21
23
  marginTop: any;
@@ -12,10 +12,12 @@ const Component = {
12
12
  alignItems: 'center',
13
13
  alignContent: 'center',
14
14
  flexDirection: 'column',
15
+ textAlign: 'center',
15
16
  [`& .SCLiveStreamVideoConference-logo`]: {
16
17
  img: {
17
18
  maxHeight: '100px'
18
- }
19
+ },
20
+ marginBottom: theme.spacing(2)
19
21
  },
20
22
  [`& .SCLiveStreamVideoConference-btn-back-home`]: {
21
23
  marginTop: theme.spacing(2)
@@ -8917,6 +8917,17 @@ declare const theme: {
8917
8917
  };
8918
8918
  };
8919
8919
  };
8920
+ SCCreateLiveStreamButton: {
8921
+ styleOverrides: {
8922
+ root: ({ theme }: any) => {
8923
+ '& .MuiButton-startIcon': {
8924
+ '& .MuiIcon-root': {
8925
+ fontSize: string;
8926
+ };
8927
+ };
8928
+ };
8929
+ };
8930
+ };
8920
8931
  SCCreateLiveStreamDialog: {
8921
8932
  styleOverrides: {
8922
8933
  root: ({ theme }: any) => {
@@ -9168,10 +9179,12 @@ declare const theme: {
9168
9179
  alignItems: string;
9169
9180
  alignContent: string;
9170
9181
  flexDirection: string;
9182
+ textAlign: string;
9171
9183
  "& .SCLiveStreamVideoConference-logo": {
9172
9184
  img: {
9173
9185
  maxHeight: string;
9174
9186
  };
9187
+ marginBottom: any;
9175
9188
  };
9176
9189
  "& .SCLiveStreamVideoConference-btn-back-home": {
9177
9190
  marginTop: any;
package/lib/esm/index.js CHANGED
@@ -141,6 +141,7 @@ import SCSearchAutocomplete from './components/SCSearchAutocomplete';
141
141
  import SCSnippetNotifications from './components/SCSnippetNotifications';
142
142
  import SCSuggestedEventsWidget from './components/SCSuggestedEventsWidget';
143
143
  import SCLiveStream from './components/SCLiveStream';
144
+ import SCCreateLiveStreamButton from './components/SCCreateLiveStreamButton';
144
145
  import SCCreateLiveStreamDialog from './components/SCLiveStreamDialog';
145
146
  import SCLiveStreamSelector from './components/SCLiveStreamSelector';
146
147
  import SCLiveStreamForm from './components/SCLiveStreamForm';
@@ -419,6 +420,7 @@ const theme = {
419
420
  SCLiveStreamInfoDetails,
420
421
  SCUpScalingTierBadge,
421
422
  SCUserLiveStreamWidget,
423
+ SCCreateLiveStreamButton,
422
424
  SCCreateLiveStreamDialog,
423
425
  SCLiveStreamSelector,
424
426
  SCLiveStreamForm,