@selfcommunity/react-theme-default 0.4.5-payments.222 → 0.4.5-payments.224

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.
@@ -124,6 +124,13 @@ declare const Component: {
124
124
  };
125
125
  '& .SCFeedObject-info-section': {
126
126
  padding: any;
127
+ '& .SCFeedObject-vote': {
128
+ width: string;
129
+ justifyContent: string;
130
+ '& > button:first-of-type': {
131
+ margin: string;
132
+ };
133
+ };
127
134
  };
128
135
  '& .SCFeedObject-activity-at': {
129
136
  textDecoration: string;
@@ -504,14 +511,14 @@ declare const Component: {
504
511
  paddingRight: number;
505
512
  };
506
513
  };
507
- actionsRoot: ({ theme }: any) => {
514
+ actionsRoot: () => {
508
515
  margin: string;
509
516
  color: string;
510
517
  '& .SCFeedObject-actions-action': {
511
518
  textAlign: string;
512
519
  };
513
520
  };
514
- actionCommentRoot: ({ theme }: any) => {
521
+ actionCommentRoot: () => {
515
522
  display: string;
516
523
  justifyContent: string;
517
524
  alignItems: string;
@@ -538,7 +545,7 @@ declare const Component: {
538
545
  };
539
546
  };
540
547
  };
541
- actionShareRoot: ({ theme }: any) => {
548
+ actionShareRoot: () => {
542
549
  display: string;
543
550
  justifyContent: string;
544
551
  alignItems: string;
@@ -554,7 +561,7 @@ declare const Component: {
554
561
  whiteSpace: string;
555
562
  };
556
563
  };
557
- actionVoteRoot: ({ theme }: any) => {
564
+ actionVoteRoot: () => {
558
565
  display: string;
559
566
  justifyContent: string;
560
567
  alignItems: string;
@@ -567,7 +574,7 @@ declare const Component: {
567
574
  borderBottom: number;
568
575
  };
569
576
  };
570
- activitiesRoot: ({ theme }: any) => {
577
+ activitiesRoot: () => {
571
578
  width: string;
572
579
  };
573
580
  activitiesMenuRoot: ({ theme }: any) => {
@@ -607,7 +614,7 @@ declare const Component: {
607
614
  lineHeight: string;
608
615
  };
609
616
  };
610
- contributorsSkeletonRoot: ({ theme }: any) => {};
617
+ contributorsSkeletonRoot: () => {};
611
618
  pollObjectRoot: ({ theme }: any) => {
612
619
  marginTop: any;
613
620
  marginBottom: any;
@@ -744,10 +751,10 @@ declare const Component: {
744
751
  };
745
752
  };
746
753
  };
747
- activityCommentRoot: ({ theme }: any) => {};
748
- activityFollowRoot: ({ theme }: any) => {};
749
- activityPollVoteRoot: ({ theme }: any) => {};
750
- activityVoteUpRoot: ({ theme }: any) => {};
754
+ activityCommentRoot: () => {};
755
+ activityFollowRoot: () => {};
756
+ activityPollVoteRoot: () => {};
757
+ activityVoteUpRoot: () => {};
751
758
  };
752
759
  };
753
760
  export default Component;
@@ -126,7 +126,14 @@ const Component = {
126
126
  padding: theme.spacing(0.2, 2)
127
127
  },
128
128
  '& .SCFeedObject-info-section': {
129
- padding: theme.spacing(0, 2)
129
+ padding: theme.spacing(0, 2),
130
+ '& .SCFeedObject-vote': {
131
+ width: '100%',
132
+ justifyContent: 'space-between',
133
+ '& > button:first-of-type': {
134
+ margin: 'auto'
135
+ }
136
+ }
130
137
  },
131
138
  '& .SCFeedObject-activity-at': {
132
139
  textDecoration: 'none',
@@ -505,14 +512,14 @@ const Component = {
505
512
  paddingRight: 0
506
513
  }
507
514
  }),
508
- actionsRoot: ({ theme }) => ({
515
+ actionsRoot: () => ({
509
516
  margin: '0px 0px',
510
517
  color: '#3A3A3A',
511
518
  '& .SCFeedObject-actions-action': {
512
519
  textAlign: 'center'
513
520
  }
514
521
  }),
515
- actionCommentRoot: ({ theme }) => ({
522
+ actionCommentRoot: () => ({
516
523
  display: 'flex',
517
524
  justifyContent: 'center',
518
525
  alignItems: 'center',
@@ -539,7 +546,7 @@ const Component = {
539
546
  }
540
547
  }
541
548
  }),
542
- actionShareRoot: ({ theme }) => ({
549
+ actionShareRoot: () => ({
543
550
  display: 'flex',
544
551
  justifyContent: 'center',
545
552
  alignItems: 'center',
@@ -555,7 +562,7 @@ const Component = {
555
562
  whiteSpace: 'nowrap'
556
563
  }
557
564
  }),
558
- actionVoteRoot: ({ theme }) => ({
565
+ actionVoteRoot: () => ({
559
566
  display: 'flex',
560
567
  justifyContent: 'center',
561
568
  alignItems: 'center',
@@ -568,7 +575,7 @@ const Component = {
568
575
  borderBottom: 0
569
576
  }
570
577
  }),
571
- activitiesRoot: ({ theme }) => ({
578
+ activitiesRoot: () => ({
572
579
  width: '100%'
573
580
  }),
574
581
  activitiesMenuRoot: ({ theme }) => ({
@@ -608,7 +615,7 @@ const Component = {
608
615
  lineHeight: '24px'
609
616
  }
610
617
  }),
611
- contributorsSkeletonRoot: ({ theme }) => ({
618
+ contributorsSkeletonRoot: () => ({
612
619
  // [`& .${classes.btnParticipants}`]: {
613
620
  // marginLeft: -10
614
621
  // }
@@ -751,10 +758,10 @@ const Component = {
751
758
  }
752
759
  }
753
760
  }),
754
- activityCommentRoot: ({ theme }) => ({}),
755
- activityFollowRoot: ({ theme }) => ({}),
756
- activityPollVoteRoot: ({ theme }) => ({}),
757
- activityVoteUpRoot: ({ theme }) => ({})
761
+ activityCommentRoot: () => ({}),
762
+ activityFollowRoot: () => ({}),
763
+ activityPollVoteRoot: () => ({}),
764
+ activityVoteUpRoot: () => ({})
758
765
  }
759
766
  };
760
767
  exports.default = Component;
@@ -4031,6 +4031,13 @@ declare const theme: {
4031
4031
  };
4032
4032
  '& .SCFeedObject-info-section': {
4033
4033
  padding: any;
4034
+ '& .SCFeedObject-vote': {
4035
+ width: string;
4036
+ justifyContent: string;
4037
+ '& > button:first-of-type': {
4038
+ margin: string;
4039
+ };
4040
+ };
4034
4041
  };
4035
4042
  '& .SCFeedObject-activity-at': {
4036
4043
  textDecoration: string;
@@ -4363,7 +4370,9 @@ declare const theme: {
4363
4370
  };
4364
4371
  };
4365
4372
  };
4366
- };
4373
+ }; /**
4374
+ * Export default theme
4375
+ */
4367
4376
  };
4368
4377
  };
4369
4378
  '&.SCFeedObject-snippet': {
@@ -4411,14 +4420,14 @@ declare const theme: {
4411
4420
  paddingRight: number;
4412
4421
  };
4413
4422
  };
4414
- actionsRoot: ({ theme }: any) => {
4423
+ actionsRoot: () => {
4415
4424
  margin: string;
4416
4425
  color: string;
4417
4426
  '& .SCFeedObject-actions-action': {
4418
4427
  textAlign: string;
4419
4428
  };
4420
4429
  };
4421
- actionCommentRoot: ({ theme }: any) => {
4430
+ actionCommentRoot: () => {
4422
4431
  display: string;
4423
4432
  justifyContent: string;
4424
4433
  alignItems: string;
@@ -4445,7 +4454,7 @@ declare const theme: {
4445
4454
  };
4446
4455
  };
4447
4456
  };
4448
- actionShareRoot: ({ theme }: any) => {
4457
+ actionShareRoot: () => {
4449
4458
  display: string;
4450
4459
  justifyContent: string;
4451
4460
  alignItems: string;
@@ -4461,7 +4470,7 @@ declare const theme: {
4461
4470
  whiteSpace: string;
4462
4471
  };
4463
4472
  };
4464
- actionVoteRoot: ({ theme }: any) => {
4473
+ actionVoteRoot: () => {
4465
4474
  display: string;
4466
4475
  justifyContent: string;
4467
4476
  alignItems: string;
@@ -4474,7 +4483,7 @@ declare const theme: {
4474
4483
  borderBottom: number;
4475
4484
  };
4476
4485
  };
4477
- activitiesRoot: ({ theme }: any) => {
4486
+ activitiesRoot: () => {
4478
4487
  width: string;
4479
4488
  };
4480
4489
  activitiesMenuRoot: ({ theme }: any) => {
@@ -4514,7 +4523,7 @@ declare const theme: {
4514
4523
  lineHeight: string;
4515
4524
  };
4516
4525
  };
4517
- contributorsSkeletonRoot: ({ theme }: any) => {};
4526
+ contributorsSkeletonRoot: () => {};
4518
4527
  pollObjectRoot: ({ theme }: any) => {
4519
4528
  marginTop: any;
4520
4529
  marginBottom: any;
@@ -4651,10 +4660,10 @@ declare const theme: {
4651
4660
  };
4652
4661
  };
4653
4662
  };
4654
- activityCommentRoot: ({ theme }: any) => {};
4655
- activityFollowRoot: ({ theme }: any) => {};
4656
- activityPollVoteRoot: ({ theme }: any) => {};
4657
- activityVoteUpRoot: ({ theme }: any) => {};
4663
+ activityCommentRoot: () => {};
4664
+ activityFollowRoot: () => {};
4665
+ activityPollVoteRoot: () => {};
4666
+ activityVoteUpRoot: () => {};
4658
4667
  };
4659
4668
  };
4660
4669
  SCFeedObjectDetailTemplate: {
@@ -124,6 +124,13 @@ declare const Component: {
124
124
  };
125
125
  '& .SCFeedObject-info-section': {
126
126
  padding: any;
127
+ '& .SCFeedObject-vote': {
128
+ width: string;
129
+ justifyContent: string;
130
+ '& > button:first-of-type': {
131
+ margin: string;
132
+ };
133
+ };
127
134
  };
128
135
  '& .SCFeedObject-activity-at': {
129
136
  textDecoration: string;
@@ -504,14 +511,14 @@ declare const Component: {
504
511
  paddingRight: number;
505
512
  };
506
513
  };
507
- actionsRoot: ({ theme }: any) => {
514
+ actionsRoot: () => {
508
515
  margin: string;
509
516
  color: string;
510
517
  '& .SCFeedObject-actions-action': {
511
518
  textAlign: string;
512
519
  };
513
520
  };
514
- actionCommentRoot: ({ theme }: any) => {
521
+ actionCommentRoot: () => {
515
522
  display: string;
516
523
  justifyContent: string;
517
524
  alignItems: string;
@@ -538,7 +545,7 @@ declare const Component: {
538
545
  };
539
546
  };
540
547
  };
541
- actionShareRoot: ({ theme }: any) => {
548
+ actionShareRoot: () => {
542
549
  display: string;
543
550
  justifyContent: string;
544
551
  alignItems: string;
@@ -554,7 +561,7 @@ declare const Component: {
554
561
  whiteSpace: string;
555
562
  };
556
563
  };
557
- actionVoteRoot: ({ theme }: any) => {
564
+ actionVoteRoot: () => {
558
565
  display: string;
559
566
  justifyContent: string;
560
567
  alignItems: string;
@@ -567,7 +574,7 @@ declare const Component: {
567
574
  borderBottom: number;
568
575
  };
569
576
  };
570
- activitiesRoot: ({ theme }: any) => {
577
+ activitiesRoot: () => {
571
578
  width: string;
572
579
  };
573
580
  activitiesMenuRoot: ({ theme }: any) => {
@@ -607,7 +614,7 @@ declare const Component: {
607
614
  lineHeight: string;
608
615
  };
609
616
  };
610
- contributorsSkeletonRoot: ({ theme }: any) => {};
617
+ contributorsSkeletonRoot: () => {};
611
618
  pollObjectRoot: ({ theme }: any) => {
612
619
  marginTop: any;
613
620
  marginBottom: any;
@@ -744,10 +751,10 @@ declare const Component: {
744
751
  };
745
752
  };
746
753
  };
747
- activityCommentRoot: ({ theme }: any) => {};
748
- activityFollowRoot: ({ theme }: any) => {};
749
- activityPollVoteRoot: ({ theme }: any) => {};
750
- activityVoteUpRoot: ({ theme }: any) => {};
754
+ activityCommentRoot: () => {};
755
+ activityFollowRoot: () => {};
756
+ activityPollVoteRoot: () => {};
757
+ activityVoteUpRoot: () => {};
751
758
  };
752
759
  };
753
760
  export default Component;
@@ -124,7 +124,14 @@ const Component = {
124
124
  padding: theme.spacing(0.2, 2)
125
125
  },
126
126
  '& .SCFeedObject-info-section': {
127
- padding: theme.spacing(0, 2)
127
+ padding: theme.spacing(0, 2),
128
+ '& .SCFeedObject-vote': {
129
+ width: '100%',
130
+ justifyContent: 'space-between',
131
+ '& > button:first-of-type': {
132
+ margin: 'auto'
133
+ }
134
+ }
128
135
  },
129
136
  '& .SCFeedObject-activity-at': {
130
137
  textDecoration: 'none',
@@ -503,14 +510,14 @@ const Component = {
503
510
  paddingRight: 0
504
511
  }
505
512
  }),
506
- actionsRoot: ({ theme }) => ({
513
+ actionsRoot: () => ({
507
514
  margin: '0px 0px',
508
515
  color: '#3A3A3A',
509
516
  '& .SCFeedObject-actions-action': {
510
517
  textAlign: 'center'
511
518
  }
512
519
  }),
513
- actionCommentRoot: ({ theme }) => ({
520
+ actionCommentRoot: () => ({
514
521
  display: 'flex',
515
522
  justifyContent: 'center',
516
523
  alignItems: 'center',
@@ -537,7 +544,7 @@ const Component = {
537
544
  }
538
545
  }
539
546
  }),
540
- actionShareRoot: ({ theme }) => ({
547
+ actionShareRoot: () => ({
541
548
  display: 'flex',
542
549
  justifyContent: 'center',
543
550
  alignItems: 'center',
@@ -553,7 +560,7 @@ const Component = {
553
560
  whiteSpace: 'nowrap'
554
561
  }
555
562
  }),
556
- actionVoteRoot: ({ theme }) => ({
563
+ actionVoteRoot: () => ({
557
564
  display: 'flex',
558
565
  justifyContent: 'center',
559
566
  alignItems: 'center',
@@ -566,7 +573,7 @@ const Component = {
566
573
  borderBottom: 0
567
574
  }
568
575
  }),
569
- activitiesRoot: ({ theme }) => ({
576
+ activitiesRoot: () => ({
570
577
  width: '100%'
571
578
  }),
572
579
  activitiesMenuRoot: ({ theme }) => ({
@@ -606,7 +613,7 @@ const Component = {
606
613
  lineHeight: '24px'
607
614
  }
608
615
  }),
609
- contributorsSkeletonRoot: ({ theme }) => ({
616
+ contributorsSkeletonRoot: () => ({
610
617
  // [`& .${classes.btnParticipants}`]: {
611
618
  // marginLeft: -10
612
619
  // }
@@ -749,10 +756,10 @@ const Component = {
749
756
  }
750
757
  }
751
758
  }),
752
- activityCommentRoot: ({ theme }) => ({}),
753
- activityFollowRoot: ({ theme }) => ({}),
754
- activityPollVoteRoot: ({ theme }) => ({}),
755
- activityVoteUpRoot: ({ theme }) => ({})
759
+ activityCommentRoot: () => ({}),
760
+ activityFollowRoot: () => ({}),
761
+ activityPollVoteRoot: () => ({}),
762
+ activityVoteUpRoot: () => ({})
756
763
  }
757
764
  };
758
765
  export default Component;
@@ -4031,6 +4031,13 @@ declare const theme: {
4031
4031
  };
4032
4032
  '& .SCFeedObject-info-section': {
4033
4033
  padding: any;
4034
+ '& .SCFeedObject-vote': {
4035
+ width: string;
4036
+ justifyContent: string;
4037
+ '& > button:first-of-type': {
4038
+ margin: string;
4039
+ };
4040
+ };
4034
4041
  };
4035
4042
  '& .SCFeedObject-activity-at': {
4036
4043
  textDecoration: string;
@@ -4363,7 +4370,9 @@ declare const theme: {
4363
4370
  };
4364
4371
  };
4365
4372
  };
4366
- };
4373
+ }; /**
4374
+ * Export default theme
4375
+ */
4367
4376
  };
4368
4377
  };
4369
4378
  '&.SCFeedObject-snippet': {
@@ -4411,14 +4420,14 @@ declare const theme: {
4411
4420
  paddingRight: number;
4412
4421
  };
4413
4422
  };
4414
- actionsRoot: ({ theme }: any) => {
4423
+ actionsRoot: () => {
4415
4424
  margin: string;
4416
4425
  color: string;
4417
4426
  '& .SCFeedObject-actions-action': {
4418
4427
  textAlign: string;
4419
4428
  };
4420
4429
  };
4421
- actionCommentRoot: ({ theme }: any) => {
4430
+ actionCommentRoot: () => {
4422
4431
  display: string;
4423
4432
  justifyContent: string;
4424
4433
  alignItems: string;
@@ -4445,7 +4454,7 @@ declare const theme: {
4445
4454
  };
4446
4455
  };
4447
4456
  };
4448
- actionShareRoot: ({ theme }: any) => {
4457
+ actionShareRoot: () => {
4449
4458
  display: string;
4450
4459
  justifyContent: string;
4451
4460
  alignItems: string;
@@ -4461,7 +4470,7 @@ declare const theme: {
4461
4470
  whiteSpace: string;
4462
4471
  };
4463
4472
  };
4464
- actionVoteRoot: ({ theme }: any) => {
4473
+ actionVoteRoot: () => {
4465
4474
  display: string;
4466
4475
  justifyContent: string;
4467
4476
  alignItems: string;
@@ -4474,7 +4483,7 @@ declare const theme: {
4474
4483
  borderBottom: number;
4475
4484
  };
4476
4485
  };
4477
- activitiesRoot: ({ theme }: any) => {
4486
+ activitiesRoot: () => {
4478
4487
  width: string;
4479
4488
  };
4480
4489
  activitiesMenuRoot: ({ theme }: any) => {
@@ -4514,7 +4523,7 @@ declare const theme: {
4514
4523
  lineHeight: string;
4515
4524
  };
4516
4525
  };
4517
- contributorsSkeletonRoot: ({ theme }: any) => {};
4526
+ contributorsSkeletonRoot: () => {};
4518
4527
  pollObjectRoot: ({ theme }: any) => {
4519
4528
  marginTop: any;
4520
4529
  marginBottom: any;
@@ -4651,10 +4660,10 @@ declare const theme: {
4651
4660
  };
4652
4661
  };
4653
4662
  };
4654
- activityCommentRoot: ({ theme }: any) => {};
4655
- activityFollowRoot: ({ theme }: any) => {};
4656
- activityPollVoteRoot: ({ theme }: any) => {};
4657
- activityVoteUpRoot: ({ theme }: any) => {};
4663
+ activityCommentRoot: () => {};
4664
+ activityFollowRoot: () => {};
4665
+ activityPollVoteRoot: () => {};
4666
+ activityVoteUpRoot: () => {};
4658
4667
  };
4659
4668
  };
4660
4669
  SCFeedObjectDetailTemplate: {