@selfcommunity/react-theme-default 0.1.9-alpha.0 → 0.1.9-alpha.2

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.
Files changed (75) hide show
  1. package/lib/cjs/components/SCChangeGroupCoverButton.d.ts +9 -0
  2. package/lib/cjs/components/SCChangeGroupCoverButton.js +11 -0
  3. package/lib/cjs/components/SCChangeGroupPictureButton.d.ts +9 -0
  4. package/lib/cjs/components/SCChangeGroupPictureButton.js +11 -0
  5. package/lib/cjs/components/SCCreateGroup.d.ts +85 -0
  6. package/lib/cjs/components/SCCreateGroup.js +88 -0
  7. package/lib/cjs/components/SCCreateGroupButton.d.ts +10 -0
  8. package/lib/cjs/components/SCCreateGroupButton.js +12 -0
  9. package/lib/cjs/components/SCGroup.d.ts +36 -0
  10. package/lib/cjs/components/SCGroup.js +38 -0
  11. package/lib/cjs/components/SCGroupFeedTemplate.d.ts +36 -0
  12. package/lib/cjs/components/SCGroupFeedTemplate.js +38 -0
  13. package/lib/cjs/components/SCGroupHeader.d.ts +120 -0
  14. package/lib/cjs/components/SCGroupHeader.js +121 -0
  15. package/lib/cjs/components/SCGroupInfoWidget.d.ts +32 -0
  16. package/lib/cjs/components/SCGroupInfoWidget.js +34 -0
  17. package/lib/cjs/components/SCGroupInviteButton.d.ts +48 -0
  18. package/lib/cjs/components/SCGroupInviteButton.js +51 -0
  19. package/lib/cjs/components/SCGroupMembersButton.d.ts +22 -0
  20. package/lib/cjs/components/SCGroupMembersButton.js +24 -0
  21. package/lib/cjs/components/SCGroupMembersWidget.d.ts +8 -0
  22. package/lib/cjs/components/SCGroupMembersWidget.js +10 -0
  23. package/lib/cjs/components/SCGroupRequestsWidget.d.ts +8 -0
  24. package/lib/cjs/components/SCGroupRequestsWidget.js +10 -0
  25. package/lib/cjs/components/SCGroupTemplate.d.ts +17 -0
  26. package/lib/cjs/components/SCGroupTemplate.js +19 -0
  27. package/lib/cjs/fonts/community/icons.eot +0 -0
  28. package/lib/cjs/fonts/community/icons.svg +7 -3
  29. package/lib/cjs/fonts/community/icons.ttf +0 -0
  30. package/lib/cjs/fonts/community/icons.woff +0 -0
  31. package/lib/cjs/fonts/community/icons.woff2 +0 -0
  32. package/lib/cjs/fonts/community-icons.css +12 -6
  33. package/lib/cjs/index.d.ts +436 -0
  34. package/lib/cjs/index.js +37 -2
  35. package/lib/esm/components/SCChangeGroupCoverButton.d.ts +9 -0
  36. package/lib/esm/components/SCChangeGroupCoverButton.js +9 -0
  37. package/lib/esm/components/SCChangeGroupPictureButton.d.ts +9 -0
  38. package/lib/esm/components/SCChangeGroupPictureButton.js +9 -0
  39. package/lib/esm/components/SCCreateGroup.d.ts +85 -0
  40. package/lib/esm/components/SCCreateGroup.js +86 -0
  41. package/lib/esm/components/SCCreateGroupButton.d.ts +10 -0
  42. package/lib/esm/components/SCCreateGroupButton.js +10 -0
  43. package/lib/esm/components/SCGroup.d.ts +36 -0
  44. package/lib/esm/components/SCGroup.js +36 -0
  45. package/lib/esm/components/SCGroupFeedTemplate.d.ts +36 -0
  46. package/lib/esm/components/SCGroupFeedTemplate.js +36 -0
  47. package/lib/esm/components/SCGroupHeader.d.ts +120 -0
  48. package/lib/esm/components/SCGroupHeader.js +119 -0
  49. package/lib/esm/components/SCGroupInfoWidget.d.ts +32 -0
  50. package/lib/esm/components/SCGroupInfoWidget.js +32 -0
  51. package/lib/esm/components/SCGroupInviteButton.d.ts +48 -0
  52. package/lib/esm/components/SCGroupInviteButton.js +49 -0
  53. package/lib/esm/components/SCGroupMembersButton.d.ts +22 -0
  54. package/lib/esm/components/SCGroupMembersButton.js +22 -0
  55. package/lib/esm/components/SCGroupMembersWidget.d.ts +8 -0
  56. package/lib/esm/components/SCGroupMembersWidget.js +8 -0
  57. package/lib/esm/components/SCGroupRequestsWidget.d.ts +8 -0
  58. package/lib/esm/components/SCGroupRequestsWidget.js +8 -0
  59. package/lib/esm/components/SCGroupTemplate.d.ts +17 -0
  60. package/lib/esm/components/SCGroupTemplate.js +17 -0
  61. package/lib/esm/fonts/community/icons.eot +0 -0
  62. package/lib/esm/fonts/community/icons.svg +7 -3
  63. package/lib/esm/fonts/community/icons.ttf +0 -0
  64. package/lib/esm/fonts/community/icons.woff +0 -0
  65. package/lib/esm/fonts/community/icons.woff2 +0 -0
  66. package/lib/esm/fonts/community-icons.css +12 -6
  67. package/lib/esm/index.d.ts +436 -0
  68. package/lib/esm/index.js +37 -2
  69. package/lib/umd/community/icons.eot +0 -0
  70. package/lib/umd/community/icons.svg +7 -3
  71. package/lib/umd/community/icons.ttf +0 -0
  72. package/lib/umd/community/icons.woff +0 -0
  73. package/lib/umd/community/icons.woff2 +0 -0
  74. package/lib/umd/react-theme-default.js +2 -2
  75. package/package.json +4 -4
@@ -36,6 +36,7 @@ declare const theme: {
36
36
  };
37
37
  shape: {
38
38
  borderRadius: number;
39
+ borderRadiusSm: number;
39
40
  };
40
41
  spacing: number;
41
42
  mixins: {
@@ -5536,6 +5537,433 @@ declare const theme: {
5536
5537
  };
5537
5538
  };
5538
5539
  };
5540
+ SCGroupHeader: {
5541
+ styleOverrides: {
5542
+ root: ({ theme }: any) => {
5543
+ '& .SCGroupHeader-cover': {
5544
+ [x: number]: {
5545
+ borderRadius: any;
5546
+ margin?: undefined;
5547
+ } | {
5548
+ margin: any;
5549
+ borderRadius?: undefined;
5550
+ };
5551
+ position: string;
5552
+ height: number;
5553
+ minHeight: number;
5554
+ borderRadius: number;
5555
+ background: string;
5556
+ boxShadow: string;
5557
+ };
5558
+ '& .SCGroupHeader-info': {
5559
+ display: string;
5560
+ flexDirection: string;
5561
+ justifyContent: string;
5562
+ alignItems: string;
5563
+ '& .SCGroupHeader-members': {
5564
+ marginBottom: string;
5565
+ '& .SCGroupHeader-members-counter': {
5566
+ fontSize: string;
5567
+ fontWeight: any;
5568
+ display: string;
5569
+ };
5570
+ };
5571
+ '& .SCGroupHeader-visibility': {
5572
+ display: string;
5573
+ justifyContent: string;
5574
+ alignItems: string;
5575
+ gap: any;
5576
+ '& .SCGroupHeader-visibility-item': {
5577
+ fontSize: any;
5578
+ fontWeight: any;
5579
+ display: string;
5580
+ justifyContent: string;
5581
+ alignItems: string;
5582
+ gap: any;
5583
+ };
5584
+ };
5585
+ };
5586
+ '& .SCGroupHeader-avatar': {
5587
+ top: number;
5588
+ display: string;
5589
+ position: string;
5590
+ transform: string;
5591
+ left: string;
5592
+ '& .MuiAvatar-root': {
5593
+ height: any;
5594
+ width: any;
5595
+ borderRadius: string;
5596
+ border: string;
5597
+ objectFit: string;
5598
+ };
5599
+ };
5600
+ '& .SCGroupHeader-change-picture': {
5601
+ top: number;
5602
+ left: string;
5603
+ transform: string;
5604
+ position: string;
5605
+ display: string;
5606
+ };
5607
+ '& .SCGroupHeader-name': {
5608
+ marginTop: number;
5609
+ marginBottom: any;
5610
+ fontWeight: any;
5611
+ fontSize: string;
5612
+ textAlign: string;
5613
+ };
5614
+ '& .SCGroupHeader-change-cover': {
5615
+ position: string;
5616
+ right: any;
5617
+ bottom: any;
5618
+ };
5619
+ };
5620
+ skeletonRoot: ({ theme }: any) => {
5621
+ position: string;
5622
+ '& .SCGroupHeader-cover': {
5623
+ [x: number]: {
5624
+ margin: any;
5625
+ };
5626
+ height: number;
5627
+ };
5628
+ '& .SCGroupHeader-avatar': {
5629
+ top: number;
5630
+ display: string;
5631
+ position: string;
5632
+ transform: string;
5633
+ left: string;
5634
+ "& .MuiSkeleton-root": {
5635
+ border: string;
5636
+ };
5637
+ };
5638
+ '& .SCGroupHeader-section': {
5639
+ display: string;
5640
+ justifyContent: string;
5641
+ '& .SCGroupHeader-name': {
5642
+ marginTop: number;
5643
+ textAlign: string;
5644
+ "& .MuiSkeleton-root": {
5645
+ justifyContent: string;
5646
+ };
5647
+ };
5648
+ '& .SCGroupHeader-actions': {
5649
+ [x: number]: {
5650
+ margin: any;
5651
+ };
5652
+ height: string;
5653
+ marginTop: any;
5654
+ };
5655
+ };
5656
+ };
5657
+ };
5658
+ };
5659
+ SCChangeGroupCoverButton: {
5660
+ styleOverrides: {
5661
+ root: ({ theme }: any) => {
5662
+ padding: any;
5663
+ minWidth: string;
5664
+ };
5665
+ };
5666
+ };
5667
+ SCChangeGroupPictureButton: {
5668
+ styleOverrides: {
5669
+ root: ({ theme }: any) => {
5670
+ padding: any;
5671
+ minWidth: string;
5672
+ };
5673
+ };
5674
+ };
5675
+ SCGroupMembersButton: {
5676
+ styleOverrides: {
5677
+ root: ({ theme }: any) => {
5678
+ padding: any;
5679
+ '& .MuiAvatarGroup-root .MuiAvatar-root': {
5680
+ width: any;
5681
+ height: any;
5682
+ border: string;
5683
+ fontSize: string;
5684
+ '&.MuiAvatar-colorDefault': {
5685
+ marginLeft: number;
5686
+ backgroundColor: string;
5687
+ color: any;
5688
+ border: string;
5689
+ borderRadius: number;
5690
+ padding: number;
5691
+ };
5692
+ };
5693
+ };
5694
+ };
5695
+ };
5696
+ SCCreateGroupButton: {
5697
+ styleOverrides: {
5698
+ root: ({ theme }: any) => {
5699
+ '& .MuiIcon-root': {
5700
+ fontSize: string;
5701
+ };
5702
+ };
5703
+ };
5704
+ };
5705
+ SCCreateGroup: {
5706
+ styleOverrides: {
5707
+ root: ({ theme }: any) => {
5708
+ '& .SCCreateGroup-cover': {
5709
+ position: string;
5710
+ height: number;
5711
+ minHeight: number;
5712
+ '& .SCCreateGroup-avatar': {
5713
+ top: number;
5714
+ display: string;
5715
+ position: string;
5716
+ transform: string;
5717
+ left: string;
5718
+ '& .MuiAvatar-root': {
5719
+ height: any;
5720
+ width: any;
5721
+ borderRadius: string;
5722
+ border: string;
5723
+ objectFit: string;
5724
+ '& img': {
5725
+ height: any;
5726
+ width: any;
5727
+ };
5728
+ };
5729
+ };
5730
+ '& .SCChangeGroupPictureButton-root': {
5731
+ top: number;
5732
+ left: string;
5733
+ transform: string;
5734
+ position: string;
5735
+ display: string;
5736
+ };
5737
+ '& .SCChangeGroupCoverButton-root': {
5738
+ position: string;
5739
+ right: any;
5740
+ bottom: any;
5741
+ };
5742
+ };
5743
+ '& .SCCreateGroup-header': {
5744
+ marginTop: any;
5745
+ color: any;
5746
+ };
5747
+ '& .SCCreateGroup-switch': {
5748
+ '& .MuiButtonBase-root': {
5749
+ '&.Mui-checked': {
5750
+ color: any;
5751
+ '& + .MuiSwitch-track': {
5752
+ backgroundColor: any;
5753
+ };
5754
+ };
5755
+ };
5756
+ };
5757
+ '& .SCCreateGroup-switch-label': {
5758
+ fontWeight: any;
5759
+ display: string;
5760
+ alignItems: string;
5761
+ justifyContent: string;
5762
+ gap: any;
5763
+ };
5764
+ '& .SCCreateGroup-active': {
5765
+ color: any;
5766
+ };
5767
+ '& .SCCreateGroup-privacy-section': {
5768
+ marginTop: any;
5769
+ '& .SCCreateGroup-privacy-section-info': {
5770
+ marginBottom: any;
5771
+ };
5772
+ };
5773
+ '& .SCCreateGroup-visibility-section-info': {
5774
+ marginTop: any;
5775
+ };
5776
+ '& .MuiDivider-root': {
5777
+ marginTop: any;
5778
+ border: string;
5779
+ };
5780
+ '& .SCCreateGroup-invite-section': {
5781
+ marginTop: any;
5782
+ display: string;
5783
+ justifyContent: string;
5784
+ alignItems: string;
5785
+ };
5786
+ };
5787
+ };
5788
+ };
5789
+ SCGroupInviteButton: {
5790
+ styleOverrides: {
5791
+ root: ({ theme }: any) => {
5792
+ '& .MuiIcon-root': {
5793
+ fontSize: string;
5794
+ };
5795
+ };
5796
+ dialogRoot: ({ theme }: any) => {
5797
+ '& .SCBaseDialog-title-root span ': {
5798
+ width: string;
5799
+ display: string;
5800
+ alignItems: string;
5801
+ justifyContent: string;
5802
+ '& .SCGroupInviteButton-dialog-title': {
5803
+ fontWeight: any;
5804
+ fontSize: any;
5805
+ };
5806
+ };
5807
+ '& .SCGroupInviteButton-input': {
5808
+ backgroundColor: string;
5809
+ borderRadius: any;
5810
+ height: any;
5811
+ padding: any;
5812
+ '& .SCGroupInviteButton-icon ': {
5813
+ marginLeft: any;
5814
+ };
5815
+ '&.Mui-focused .MuiOutlinedInput-notchedOutline': {
5816
+ border: string;
5817
+ };
5818
+ };
5819
+ '& .SCGroupInviteButton-invited-box': {
5820
+ marginTop: any;
5821
+ marginBottom: any;
5822
+ };
5823
+ '& .SCGroupInviteButton-suggested': {
5824
+ '& h4': {
5825
+ marginBottom: any;
5826
+ };
5827
+ '& .SCUser-root': {
5828
+ '&:hover': {
5829
+ backgroundColor: string;
5830
+ };
5831
+ };
5832
+ };
5833
+ };
5834
+ };
5835
+ };
5836
+ SCGroupInfoWidget: {
5837
+ styleOverrides: {
5838
+ root: ({ theme }: any) => {
5839
+ '& .SCGroupInfoWidget-title': {
5840
+ fontWeight: any;
5841
+ marginBottom: any;
5842
+ };
5843
+ '& .SCGroupInfoWidget-description': {
5844
+ marginBottom: any;
5845
+ };
5846
+ '& .SCGroupInfoWidget-privacy': {
5847
+ marginBottom: any;
5848
+ '& .SCGroupInfoWidget-privacy-title': {
5849
+ color: any;
5850
+ fontWeight: any;
5851
+ display: string;
5852
+ alignItems: string;
5853
+ gap: any;
5854
+ };
5855
+ };
5856
+ '& .SCGroupInfoWidget-visibility-title': {
5857
+ color: any;
5858
+ fontWeight: any;
5859
+ display: string;
5860
+ alignItems: string;
5861
+ gap: any;
5862
+ };
5863
+ };
5864
+ skeletonRoot: ({ theme }: any) => {};
5865
+ };
5866
+ };
5867
+ SCGroup: {
5868
+ styleOverrides: {
5869
+ root: ({ theme }: any) => {
5870
+ [x: number]: {
5871
+ borderRadius: any;
5872
+ };
5873
+ borderRadius: number;
5874
+ paddingBottom: number;
5875
+ overflow: string;
5876
+ '& .SCBaseItemButton-image': {
5877
+ marginRight: any;
5878
+ '& .MuiAvatar-root': {
5879
+ width: any;
5880
+ height: any;
5881
+ '& img': {
5882
+ borderRadius: number;
5883
+ };
5884
+ };
5885
+ };
5886
+ '& .SCBaseItemButton-primary': {
5887
+ fontWeight: any;
5888
+ };
5889
+ '& .SCBaseItemButton-secondary': {
5890
+ fontSize: string;
5891
+ };
5892
+ '& .SCGroup-actions': {
5893
+ '& .MuiIcon-root': {
5894
+ fontSize: string;
5895
+ color: any;
5896
+ };
5897
+ };
5898
+ };
5899
+ skeletonRoot: ({ theme }: any) => {};
5900
+ };
5901
+ };
5902
+ SCGroupTemplate: {
5903
+ styleOverrides: {
5904
+ root: ({ theme }: any) => {
5905
+ marginTop: number;
5906
+ '& .SCCategoryTemplate-feed': {
5907
+ marginTop: any;
5908
+ };
5909
+ };
5910
+ skeletonRoot: ({ theme }: any) => {
5911
+ [x: number]: {
5912
+ marginTop: number;
5913
+ };
5914
+ marginTop: number;
5915
+ };
5916
+ };
5917
+ };
5918
+ SCGroupFeedTemplate: {
5919
+ styleOverrides: {
5920
+ root: ({ theme }: any) => {
5921
+ marginTop: number;
5922
+ '& .SCGroupFeedTemplate-feed': {
5923
+ marginTop: any;
5924
+ };
5925
+ '& .SCGroupFeedTemplate-tabs': {
5926
+ '& .MuiTabs-flexContainer': {
5927
+ borderBottom: string;
5928
+ };
5929
+ '& .MuiTabs-indicator': {
5930
+ display: string;
5931
+ justifyContent: string;
5932
+ backgroundColor: string;
5933
+ };
5934
+ '& .MuiTabs-indicatorSpan': {
5935
+ maxWidth: string;
5936
+ width: string;
5937
+ backgroundColor: any;
5938
+ };
5939
+ };
5940
+ };
5941
+ tabRoot: ({ theme }: any) => {
5942
+ textTransform: string;
5943
+ fontWeight: any;
5944
+ };
5945
+ skeletonRoot: ({ theme }: any) => {
5946
+ [x: number]: {
5947
+ marginTop: number;
5948
+ };
5949
+ marginTop: number;
5950
+ };
5951
+ };
5952
+ };
5953
+ SCGroupMembersWidget: {
5954
+ styleOverrides: {
5955
+ root: ({ theme }: any) => {};
5956
+ skeletonRoot: ({ theme }: any) => {};
5957
+ dialogRoot: ({ theme }: any) => {};
5958
+ };
5959
+ };
5960
+ SCGroupRequestsWidget: {
5961
+ styleOverrides: {
5962
+ root: ({ theme }: any) => {};
5963
+ skeletonRoot: ({ theme }: any) => {};
5964
+ dialogRoot: ({ theme }: any) => {};
5965
+ };
5966
+ };
5539
5967
  };
5540
5968
  selfcommunity: {
5541
5969
  user: {
@@ -5553,6 +5981,14 @@ declare const theme: {
5553
5981
  sizeLarge: number;
5554
5982
  };
5555
5983
  };
5984
+ group: {
5985
+ avatar: {
5986
+ sizeSmall: number;
5987
+ sizeMedium: number;
5988
+ sizeLarge: number;
5989
+ sizeXLarge: number;
5990
+ };
5991
+ };
5556
5992
  };
5557
5993
  };
5558
5994
  export default theme;
package/lib/cjs/index.js CHANGED
@@ -119,6 +119,19 @@ const SCUserFeedTemplate_1 = tslib_1.__importDefault(require("./components/SCUse
119
119
  const SCChangeCoverButton_1 = tslib_1.__importDefault(require("./components/SCChangeCoverButton"));
120
120
  const SCPrivateMessageSettingsIconButton_1 = tslib_1.__importDefault(require("./components/SCPrivateMessageSettingsIconButton"));
121
121
  const SCLanguageSwitcher_1 = tslib_1.__importDefault(require("./components/SCLanguageSwitcher"));
122
+ const SCGroupHeader_1 = tslib_1.__importDefault(require("./components/SCGroupHeader"));
123
+ const SCChangeGroupCoverButton_1 = tslib_1.__importDefault(require("./components/SCChangeGroupCoverButton"));
124
+ const SCChangeGroupPictureButton_1 = tslib_1.__importDefault(require("./components/SCChangeGroupPictureButton"));
125
+ const SCGroupMembersButton_1 = tslib_1.__importDefault(require("./components/SCGroupMembersButton"));
126
+ const SCCreateGroupButton_1 = tslib_1.__importDefault(require("./components/SCCreateGroupButton"));
127
+ const SCCreateGroup_1 = tslib_1.__importDefault(require("./components/SCCreateGroup"));
128
+ const SCGroupInviteButton_1 = tslib_1.__importDefault(require("./components/SCGroupInviteButton"));
129
+ const SCGroupInfoWidget_1 = tslib_1.__importDefault(require("./components/SCGroupInfoWidget"));
130
+ const SCGroup_1 = tslib_1.__importDefault(require("./components/SCGroup"));
131
+ const SCGroupTemplate_1 = tslib_1.__importDefault(require("./components/SCGroupTemplate"));
132
+ const SCGroupFeedTemplate_1 = tslib_1.__importDefault(require("./components/SCGroupFeedTemplate"));
133
+ const SCGroupMembersWidget_1 = tslib_1.__importDefault(require("./components/SCGroupMembersWidget"));
134
+ const SCGroupRequestsWidget_1 = tslib_1.__importDefault(require("./components/SCGroupRequestsWidget"));
122
135
  /**
123
136
  * Style fragments - Imports - End
124
137
  */
@@ -168,7 +181,8 @@ const theme = {
168
181
  }
169
182
  },
170
183
  shape: {
171
- borderRadius: 20
184
+ borderRadius: 20,
185
+ borderRadiusSm: 10
172
186
  },
173
187
  spacing: 8,
174
188
  mixins: {
@@ -297,7 +311,20 @@ const theme = {
297
311
  SCNotificationFeedTemplate: SCNotificationFeedTemplate_1.default,
298
312
  SCUserFeedTemplate: SCUserFeedTemplate_1.default,
299
313
  SCChangeCoverButton: SCChangeCoverButton_1.default,
300
- SCPrivateMessageSettingsIconButton: SCPrivateMessageSettingsIconButton_1.default
314
+ SCPrivateMessageSettingsIconButton: SCPrivateMessageSettingsIconButton_1.default,
315
+ SCGroupHeader: SCGroupHeader_1.default,
316
+ SCChangeGroupCoverButton: SCChangeGroupCoverButton_1.default,
317
+ SCChangeGroupPictureButton: SCChangeGroupPictureButton_1.default,
318
+ SCGroupMembersButton: SCGroupMembersButton_1.default,
319
+ SCCreateGroupButton: SCCreateGroupButton_1.default,
320
+ SCCreateGroup: SCCreateGroup_1.default,
321
+ SCGroupInviteButton: SCGroupInviteButton_1.default,
322
+ SCGroupInfoWidget: SCGroupInfoWidget_1.default,
323
+ SCGroup: SCGroup_1.default,
324
+ SCGroupTemplate: SCGroupTemplate_1.default,
325
+ SCGroupFeedTemplate: SCGroupFeedTemplate_1.default,
326
+ SCGroupMembersWidget: SCGroupMembersWidget_1.default,
327
+ SCGroupRequestsWidget: SCGroupRequestsWidget_1.default
301
328
  },
302
329
  selfcommunity: {
303
330
  user: {
@@ -314,6 +341,14 @@ const theme = {
314
341
  sizeMedium: 40,
315
342
  sizeLarge: 50
316
343
  }
344
+ },
345
+ group: {
346
+ avatar: {
347
+ sizeSmall: 40,
348
+ sizeMedium: 60,
349
+ sizeLarge: 90,
350
+ sizeXLarge: 120
351
+ }
317
352
  }
318
353
  }
319
354
  };
@@ -0,0 +1,9 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ padding: any;
5
+ minWidth: string;
6
+ };
7
+ };
8
+ };
9
+ export default Component;
@@ -0,0 +1,9 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ padding: theme.spacing(1),
5
+ minWidth: 'auto'
6
+ })
7
+ }
8
+ };
9
+ export default Component;
@@ -0,0 +1,9 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ padding: any;
5
+ minWidth: string;
6
+ };
7
+ };
8
+ };
9
+ export default Component;
@@ -0,0 +1,9 @@
1
+ const Component = {
2
+ styleOverrides: {
3
+ root: ({ theme }) => ({
4
+ padding: theme.spacing(1),
5
+ minWidth: 'auto'
6
+ })
7
+ }
8
+ };
9
+ export default Component;
@@ -0,0 +1,85 @@
1
+ declare const Component: {
2
+ styleOverrides: {
3
+ root: ({ theme }: any) => {
4
+ '& .SCCreateGroup-cover': {
5
+ position: string;
6
+ height: number;
7
+ minHeight: number;
8
+ '& .SCCreateGroup-avatar': {
9
+ top: number;
10
+ display: string;
11
+ position: string;
12
+ transform: string;
13
+ left: string;
14
+ '& .MuiAvatar-root': {
15
+ height: any;
16
+ width: any;
17
+ borderRadius: string;
18
+ border: string;
19
+ objectFit: string;
20
+ '& img': {
21
+ height: any;
22
+ width: any;
23
+ };
24
+ };
25
+ };
26
+ '& .SCChangeGroupPictureButton-root': {
27
+ top: number;
28
+ left: string;
29
+ transform: string;
30
+ position: string;
31
+ display: string;
32
+ };
33
+ '& .SCChangeGroupCoverButton-root': {
34
+ position: string;
35
+ right: any;
36
+ bottom: any;
37
+ };
38
+ };
39
+ '& .SCCreateGroup-header': {
40
+ marginTop: any;
41
+ color: any;
42
+ };
43
+ '& .SCCreateGroup-switch': {
44
+ '& .MuiButtonBase-root': {
45
+ '&.Mui-checked': {
46
+ color: any;
47
+ '& + .MuiSwitch-track': {
48
+ backgroundColor: any;
49
+ };
50
+ };
51
+ };
52
+ };
53
+ '& .SCCreateGroup-switch-label': {
54
+ fontWeight: any;
55
+ display: string;
56
+ alignItems: string;
57
+ justifyContent: string;
58
+ gap: any;
59
+ };
60
+ '& .SCCreateGroup-active': {
61
+ color: any;
62
+ };
63
+ '& .SCCreateGroup-privacy-section': {
64
+ marginTop: any;
65
+ '& .SCCreateGroup-privacy-section-info': {
66
+ marginBottom: any;
67
+ };
68
+ };
69
+ '& .SCCreateGroup-visibility-section-info': {
70
+ marginTop: any;
71
+ };
72
+ '& .MuiDivider-root': {
73
+ marginTop: any;
74
+ border: string;
75
+ };
76
+ '& .SCCreateGroup-invite-section': {
77
+ marginTop: any;
78
+ display: string;
79
+ justifyContent: string;
80
+ alignItems: string;
81
+ };
82
+ };
83
+ };
84
+ };
85
+ export default Component;