@selfcommunity/react-theme-default 0.2.0-live.65 → 0.2.0-live.67

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.
@@ -5381,7 +5381,9 @@ declare const theme: {
5381
5381
  objectFit: string;
5382
5382
  };
5383
5383
  '& .MuiBadge-badge': {
5384
- right: any;
5384
+ right: any; /**
5385
+ * Style fragments - Imports - End
5386
+ */
5385
5387
  top: any;
5386
5388
  '& .SCUserAvatar-badge-content': {
5387
5389
  width: number;
@@ -8649,6 +8651,71 @@ declare const theme: {
8649
8651
  };
8650
8652
  };
8651
8653
  };
8654
+ SCLiveStreamSelector: {
8655
+ styleOverrides: {
8656
+ root: ({ theme }: any) => {
8657
+ '& .SCLiveStreamSelector-warning': {
8658
+ margin: any;
8659
+ };
8660
+ '& .SCLiveStreamSelector-options': {
8661
+ [x: number]: {
8662
+ display: string;
8663
+ };
8664
+ display: string;
8665
+ justifyContent: string;
8666
+ alignItems: string;
8667
+ '& > div': {
8668
+ [x: number]: {
8669
+ margin: string;
8670
+ marginBottom: any;
8671
+ };
8672
+ width: string;
8673
+ };
8674
+ };
8675
+ '& .SCLiveStreamSelector-actions': {
8676
+ display: string;
8677
+ justifyContent: string;
8678
+ alignItems: string;
8679
+ marginTop: any;
8680
+ };
8681
+ };
8682
+ optionCardRoot: ({ theme, selected }: any) => {
8683
+ maxWidth: number;
8684
+ height: number;
8685
+ padding: any;
8686
+ margin: any;
8687
+ cursor: string;
8688
+ transition: any;
8689
+ backgroundColor: any;
8690
+ '&:hover': {
8691
+ backgroundColor: any;
8692
+ boxShadow: any;
8693
+ };
8694
+ border: string;
8695
+ "& > div": {
8696
+ display: string;
8697
+ justifyContent: string;
8698
+ alignItems: string;
8699
+ marginBottom: number;
8700
+ maxWidth: string;
8701
+ };
8702
+ "& ul": {
8703
+ marginTop: any;
8704
+ padding: number;
8705
+ listStyle: string;
8706
+ };
8707
+ };
8708
+ featureItemRoot: ({ theme, selected }: any) => {
8709
+ display: string;
8710
+ alignItems: string;
8711
+ gap: any;
8712
+ marginBottom: any;
8713
+ '&:last-child': {
8714
+ marginBottom: number;
8715
+ };
8716
+ };
8717
+ };
8718
+ };
8652
8719
  SCLiveStreamForm: {
8653
8720
  styleOverrides: {
8654
8721
  root: ({ theme }: any) => {
@@ -8699,16 +8766,6 @@ declare const theme: {
8699
8766
  "& .SCLiveStreamRoom-content": {
8700
8767
  width: string;
8701
8768
  };
8702
- "& .SCLiveStreamRoom-end-conference-wrap": {
8703
- display: string;
8704
- justifyContent: string;
8705
- alignItems: string;
8706
- alignContent: string;
8707
- flexDirection: string;
8708
- "& .SCLiveStreamRoom-btn-back-home": {
8709
- marginTop: any;
8710
- };
8711
- };
8712
8769
  "& .SCLiveStreamRoom-prejoin": {
8713
8770
  padding: any;
8714
8771
  display: string;
@@ -8761,6 +8818,18 @@ declare const theme: {
8761
8818
  };
8762
8819
  };
8763
8820
  };
8821
+ dialogRoot: ({ theme }: any) => {
8822
+ "& .SCLiveStreamRoom-end-conference-wrap": {
8823
+ display: string;
8824
+ justifyContent: string;
8825
+ alignItems: string;
8826
+ alignContent: string;
8827
+ flexDirection: string;
8828
+ "& .SCLiveStreamVideoConference-btn-back-home": {
8829
+ marginTop: any;
8830
+ };
8831
+ };
8832
+ };
8764
8833
  };
8765
8834
  };
8766
8835
  SCLiveStreamVideoConference: {
@@ -8769,6 +8838,8 @@ declare const theme: {
8769
8838
  height: string;
8770
8839
  width: string;
8771
8840
  overflowY: string;
8841
+ };
8842
+ dialogRoot: ({ theme }: any) => {
8772
8843
  "& .SCLiveStreamVideoConference-end-conference-wrap": {
8773
8844
  display: string;
8774
8845
  justifyContent: string;
package/lib/esm/index.js CHANGED
@@ -141,6 +141,7 @@ import SCSnippetNotifications from './components/SCSnippetNotifications';
141
141
  import SCSuggestedEventsWidget from './components/SCSuggestedEventsWidget';
142
142
  import SCLiveStream from './components/SCLiveStream';
143
143
  import SCCreateLiveStreamDialog from './components/SCLiveStreamDialog';
144
+ import SCLiveStreamSelector from './components/SCLiveStreamSelector';
144
145
  import SCLiveStreamForm from './components/SCLiveStreamForm';
145
146
  import SCLiveStreamFormSettings from './components/SCLiveStreamFormSettings';
146
147
  import SCLiveStreamRoom from './components/SCLiveStreamRoom';
@@ -399,6 +400,7 @@ const theme = {
399
400
  SCLiveStream,
400
401
  SCLiveStreamInfoDetails,
401
402
  SCCreateLiveStreamDialog,
403
+ SCLiveStreamSelector,
402
404
  SCLiveStreamForm,
403
405
  SCLiveStreamFormSettings,
404
406
  SCLiveStreamRoom,