@selfcommunity/react-theme-default 0.2.0-live.92 → 0.2.0-live.94

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.
@@ -25,7 +25,7 @@ const Component = {
25
25
  width: '100%'
26
26
  },
27
27
  [`& .SCLiveStreamRoom-prejoin`]: {
28
- margin: theme.spacing(2),
28
+ margin: theme.spacing(),
29
29
  padding: theme.spacing(),
30
30
  display: 'grid',
31
31
  placeItems: 'center',
@@ -35,7 +35,7 @@ const Component = {
35
35
  optionCardRoot: ({ theme, selected }) => ({
36
36
  maxWidth: 300,
37
37
  height: 'auto',
38
- minHeight: 400,
38
+ minHeight: 425,
39
39
  padding: theme.spacing(3),
40
40
  margin: theme.spacing(0, 3),
41
41
  cursor: 'pointer',
@@ -0,0 +1,13 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {};
4
+ badgeRoot: ({ theme }: any) => {
5
+ background: string;
6
+ borderRadius: number;
7
+ padding: string;
8
+ height: string;
9
+ fontSize: number;
10
+ };
11
+ };
12
+ };
13
+ export default Component;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const Component = {
4
+ styleOverrides: {
5
+ root: ({ theme }) => ({}),
6
+ badgeRoot: ({ theme }) => ({
7
+ background: '#008080',
8
+ borderRadius: 3,
9
+ padding: '1px',
10
+ height: 'auto',
11
+ fontSize: 12
12
+ })
13
+ }
14
+ };
15
+ exports.default = Component;
@@ -2517,6 +2517,9 @@ declare const theme: {
2517
2517
  background: string;
2518
2518
  border: string;
2519
2519
  '& .SCEditor-root': {
2520
+ /**
2521
+ * Export default theme
2522
+ */
2520
2523
  '& .SCEditor-placeholder': {
2521
2524
  fontWeight: any;
2522
2525
  };
@@ -5504,9 +5507,6 @@ declare const theme: {
5504
5507
  };
5505
5508
  '& .SCOnBoardingWidget-profile-change-picture': {
5506
5509
  [x: number]: {
5507
- /**
5508
- * Style assets - Imports - Start
5509
- */
5510
5510
  top: number;
5511
5511
  left: number;
5512
5512
  };
@@ -8793,6 +8793,18 @@ declare const theme: {
8793
8793
  };
8794
8794
  };
8795
8795
  };
8796
+ SCUpScalingTierBadge: {
8797
+ styleOverrides: {
8798
+ root: ({ theme }: any) => {};
8799
+ badgeRoot: ({ theme }: any) => {
8800
+ background: string;
8801
+ borderRadius: number;
8802
+ padding: string;
8803
+ height: string;
8804
+ fontSize: number;
8805
+ };
8806
+ };
8807
+ };
8796
8808
  SCUserLiveStreamWidget: {
8797
8809
  styleOverrides: {
8798
8810
  root: ({ theme }: {
package/lib/cjs/index.js CHANGED
@@ -152,6 +152,7 @@ const SCLiveStreamFormSettings_1 = tslib_1.__importDefault(require("./components
152
152
  const SCLiveStreamRoom_1 = tslib_1.__importDefault(require("./components/SCLiveStreamRoom"));
153
153
  const SCLiveStreamVideoConference_1 = tslib_1.__importDefault(require("./components/SCLiveStreamVideoConference"));
154
154
  const SCLiveStreamInfoDetails_1 = tslib_1.__importDefault(require("./components/SCLiveStreamInfoDetails"));
155
+ const SCUpScalingTierBadge_1 = tslib_1.__importDefault(require("./components/SCUpScalingTierBadge"));
155
156
  const SCUserLiveStreamWidget_1 = tslib_1.__importDefault(require("./components/SCUserLiveStreamWidget"));
156
157
  const SCToastNotifications_1 = tslib_1.__importDefault(require("./components/SCToastNotifications"));
157
158
  const SCUser_1 = tslib_1.__importDefault(require("./components/SCUser"));
@@ -428,6 +429,7 @@ const theme = {
428
429
  SCWidget: SCWidget_1.default,
429
430
  SCLiveStream: SCLiveStream_1.default,
430
431
  SCLiveStreamInfoDetails: SCLiveStreamInfoDetails_1.default,
432
+ SCUpScalingTierBadge: SCUpScalingTierBadge_1.default,
431
433
  SCUserLiveStreamWidget: SCUserLiveStreamWidget_1.default,
432
434
  SCCreateLiveStreamDialog: SCLiveStreamDialog_1.default,
433
435
  SCLiveStreamSelector: SCLiveStreamSelector_1.default,
@@ -23,7 +23,7 @@ const Component = {
23
23
  width: '100%'
24
24
  },
25
25
  [`& .SCLiveStreamRoom-prejoin`]: {
26
- margin: theme.spacing(2),
26
+ margin: theme.spacing(),
27
27
  padding: theme.spacing(),
28
28
  display: 'grid',
29
29
  placeItems: 'center',
@@ -33,7 +33,7 @@ const Component = {
33
33
  optionCardRoot: ({ theme, selected }) => ({
34
34
  maxWidth: 300,
35
35
  height: 'auto',
36
- minHeight: 400,
36
+ minHeight: 425,
37
37
  padding: theme.spacing(3),
38
38
  margin: theme.spacing(0, 3),
39
39
  cursor: 'pointer',
@@ -0,0 +1,13 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {};
4
+ badgeRoot: ({ theme }: any) => {
5
+ background: string;
6
+ borderRadius: number;
7
+ padding: string;
8
+ height: string;
9
+ fontSize: number;
10
+ };
11
+ };
12
+ };
13
+ export default Component;
@@ -0,0 +1,13 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({}),
4
+ badgeRoot: ({ theme }) => ({
5
+ background: '#008080',
6
+ borderRadius: 3,
7
+ padding: '1px',
8
+ height: 'auto',
9
+ fontSize: 12
10
+ })
11
+ }
12
+ };
13
+ export default Component;
@@ -2517,6 +2517,9 @@ declare const theme: {
2517
2517
  background: string;
2518
2518
  border: string;
2519
2519
  '& .SCEditor-root': {
2520
+ /**
2521
+ * Export default theme
2522
+ */
2520
2523
  '& .SCEditor-placeholder': {
2521
2524
  fontWeight: any;
2522
2525
  };
@@ -5504,9 +5507,6 @@ declare const theme: {
5504
5507
  };
5505
5508
  '& .SCOnBoardingWidget-profile-change-picture': {
5506
5509
  [x: number]: {
5507
- /**
5508
- * Style assets - Imports - Start
5509
- */
5510
5510
  top: number;
5511
5511
  left: number;
5512
5512
  };
@@ -8793,6 +8793,18 @@ declare const theme: {
8793
8793
  };
8794
8794
  };
8795
8795
  };
8796
+ SCUpScalingTierBadge: {
8797
+ styleOverrides: {
8798
+ root: ({ theme }: any) => {};
8799
+ badgeRoot: ({ theme }: any) => {
8800
+ background: string;
8801
+ borderRadius: number;
8802
+ padding: string;
8803
+ height: string;
8804
+ fontSize: number;
8805
+ };
8806
+ };
8807
+ };
8796
8808
  SCUserLiveStreamWidget: {
8797
8809
  styleOverrides: {
8798
8810
  root: ({ theme }: {
package/lib/esm/index.js CHANGED
@@ -148,6 +148,7 @@ import SCLiveStreamFormSettings from './components/SCLiveStreamFormSettings';
148
148
  import SCLiveStreamRoom from './components/SCLiveStreamRoom';
149
149
  import SCLiveStreamVideoConference from './components/SCLiveStreamVideoConference';
150
150
  import SCLiveStreamInfoDetails from './components/SCLiveStreamInfoDetails';
151
+ import SCUpScalingTierBadge from './components/SCUpScalingTierBadge';
151
152
  import SCUserLiveStreamWidget from './components/SCUserLiveStreamWidget';
152
153
  import SCToastNotifications from './components/SCToastNotifications';
153
154
  import SCUser from './components/SCUser';
@@ -416,6 +417,7 @@ const theme = {
416
417
  SCWidget,
417
418
  SCLiveStream,
418
419
  SCLiveStreamInfoDetails,
420
+ SCUpScalingTierBadge,
419
421
  SCUserLiveStreamWidget,
420
422
  SCCreateLiveStreamDialog,
421
423
  SCLiveStreamSelector,