@selfcommunity/react-theme-default 0.4.5-payments.168 → 0.4.5-payments.169

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 (78) hide show
  1. package/lib/cjs/components/SCAccordionLessons.d.ts +15 -0
  2. package/lib/cjs/components/SCAccordionLessons.js +16 -1
  3. package/lib/cjs/components/SCAddUsersButton.d.ts +7 -1
  4. package/lib/cjs/components/SCAddUsersButton.js +6 -1
  5. package/lib/cjs/components/SCCourse.d.ts +4 -1
  6. package/lib/cjs/components/SCCourse.js +4 -1
  7. package/lib/cjs/components/SCCourseContentMenu.d.ts +3 -1
  8. package/lib/cjs/components/SCCourseContentMenu.js +3 -1
  9. package/lib/cjs/components/SCCourseDashboard.d.ts +18 -4
  10. package/lib/cjs/components/SCCourseDashboard.js +23 -8
  11. package/lib/cjs/components/SCCourseForm.d.ts +50 -3
  12. package/lib/cjs/components/SCCourseForm.js +52 -7
  13. package/lib/cjs/components/SCCourseTypePopover.d.ts +23 -0
  14. package/lib/cjs/components/SCCourseTypePopover.js +24 -0
  15. package/lib/cjs/components/SCCourseUsersTable.d.ts +16 -0
  16. package/lib/cjs/components/SCCourseUsersTable.js +16 -0
  17. package/lib/cjs/components/SCCourses.d.ts +10 -5
  18. package/lib/cjs/components/SCCourses.js +11 -6
  19. package/lib/cjs/components/SCEditCourse.d.ts +176 -130
  20. package/lib/cjs/components/SCEditCourse.js +185 -138
  21. package/lib/cjs/components/SCEmptyStatus.d.ts +1 -0
  22. package/lib/cjs/components/SCEmptyStatus.js +1 -0
  23. package/lib/cjs/components/SCGroupForm.d.ts +3 -0
  24. package/lib/cjs/components/SCGroupForm.js +3 -0
  25. package/lib/cjs/components/SCLessonCommentObjects.d.ts +3 -1
  26. package/lib/cjs/components/SCLessonCommentObjects.js +4 -2
  27. package/lib/cjs/components/SCLessonDrawer.d.ts +3 -1
  28. package/lib/cjs/components/SCLessonDrawer.js +3 -1
  29. package/lib/cjs/components/SCLessonObject.d.ts +4 -1
  30. package/lib/cjs/components/SCLessonObject.js +5 -2
  31. package/lib/cjs/components/SCLessonTemplate.d.ts +5 -0
  32. package/lib/cjs/components/SCLessonTemplate.js +4 -0
  33. package/lib/cjs/components/SCNotification.d.ts +22 -0
  34. package/lib/cjs/components/SCNotification.js +22 -0
  35. package/lib/cjs/components/SCPaywallsConfigurator.d.ts +150 -0
  36. package/lib/cjs/components/SCPaywallsConfigurator.js +153 -0
  37. package/lib/cjs/index.d.ts +512 -154
  38. package/lib/cjs/index.js +5 -1
  39. package/lib/esm/components/SCAccordionLessons.d.ts +15 -0
  40. package/lib/esm/components/SCAccordionLessons.js +16 -1
  41. package/lib/esm/components/SCAddUsersButton.d.ts +7 -1
  42. package/lib/esm/components/SCAddUsersButton.js +6 -1
  43. package/lib/esm/components/SCCourse.d.ts +4 -1
  44. package/lib/esm/components/SCCourse.js +4 -1
  45. package/lib/esm/components/SCCourseContentMenu.d.ts +3 -1
  46. package/lib/esm/components/SCCourseContentMenu.js +3 -1
  47. package/lib/esm/components/SCCourseDashboard.d.ts +18 -4
  48. package/lib/esm/components/SCCourseDashboard.js +23 -8
  49. package/lib/esm/components/SCCourseForm.d.ts +50 -3
  50. package/lib/esm/components/SCCourseForm.js +49 -4
  51. package/lib/esm/components/SCCourseTypePopover.d.ts +23 -0
  52. package/lib/esm/components/SCCourseTypePopover.js +22 -0
  53. package/lib/esm/components/SCCourseUsersTable.d.ts +16 -0
  54. package/lib/esm/components/SCCourseUsersTable.js +16 -0
  55. package/lib/esm/components/SCCourses.d.ts +10 -5
  56. package/lib/esm/components/SCCourses.js +11 -6
  57. package/lib/esm/components/SCEditCourse.d.ts +176 -130
  58. package/lib/esm/components/SCEditCourse.js +185 -138
  59. package/lib/esm/components/SCEmptyStatus.d.ts +1 -0
  60. package/lib/esm/components/SCEmptyStatus.js +1 -0
  61. package/lib/esm/components/SCGroupForm.d.ts +3 -0
  62. package/lib/esm/components/SCGroupForm.js +3 -0
  63. package/lib/esm/components/SCLessonCommentObjects.d.ts +3 -1
  64. package/lib/esm/components/SCLessonCommentObjects.js +4 -2
  65. package/lib/esm/components/SCLessonDrawer.d.ts +3 -1
  66. package/lib/esm/components/SCLessonDrawer.js +3 -1
  67. package/lib/esm/components/SCLessonObject.d.ts +4 -1
  68. package/lib/esm/components/SCLessonObject.js +5 -2
  69. package/lib/esm/components/SCLessonTemplate.d.ts +5 -0
  70. package/lib/esm/components/SCLessonTemplate.js +4 -0
  71. package/lib/esm/components/SCNotification.d.ts +22 -0
  72. package/lib/esm/components/SCNotification.js +22 -0
  73. package/lib/esm/components/SCPaywallsConfigurator.d.ts +150 -0
  74. package/lib/esm/components/SCPaywallsConfigurator.js +151 -0
  75. package/lib/esm/index.d.ts +512 -154
  76. package/lib/esm/index.js +5 -1
  77. package/lib/umd/react-theme-default.js +1 -1
  78. package/package.json +2 -2
@@ -238,6 +238,7 @@ declare const theme: {
238
238
  root: ({ theme }: {
239
239
  theme: any;
240
240
  }) => {
241
+ backgroundColor: any;
241
242
  border: string;
242
243
  borderRadius: string;
243
244
  '& .SCAccordionLessons-empty': {
@@ -253,6 +254,11 @@ declare const theme: {
253
254
  '& .MuiAccordionSummary-content': {
254
255
  justifyContent: string;
255
256
  margin: number;
257
+ '& .SCAccordionLessons-name-wrapper': {
258
+ flexDirection: string;
259
+ alignItems: string;
260
+ gap: string;
261
+ };
256
262
  };
257
263
  };
258
264
  '& .SCAccordionLessons-details': {
@@ -270,6 +276,15 @@ declare const theme: {
270
276
  borderRadius: string;
271
277
  backgroundColor: any;
272
278
  };
279
+ '& .SCAccordionLessons-link': {
280
+ textDecoration: string;
281
+ padding: number;
282
+ justifyContent: string;
283
+ '&:hover': {
284
+ backgroundColor: string;
285
+ textDecoration: string;
286
+ };
287
+ };
273
288
  };
274
289
  };
275
290
  };
@@ -353,7 +368,13 @@ declare const theme: {
353
368
  };
354
369
  SCAddUsersButton: {
355
370
  styleOverrides: {
356
- root: () => {};
371
+ root: ({ theme }: {
372
+ theme: any;
373
+ }) => {
374
+ '&.SCAddUsersButton-contrast-color': {
375
+ color: any;
376
+ };
377
+ };
357
378
  dialogRoot: () => {
358
379
  '& .MuiDialogActions-root': {
359
380
  marginTop: string;
@@ -1886,7 +1907,10 @@ declare const theme: {
1886
1907
  height: any;
1887
1908
  };
1888
1909
  '& .MuiChip-root': {
1889
- marginRight: any;
1910
+ [x: number]: {
1911
+ maxWidth: any;
1912
+ };
1913
+ margin: any;
1890
1914
  };
1891
1915
  };
1892
1916
  };
@@ -2016,6 +2040,9 @@ declare const theme: {
2016
2040
  backgroundColor: any;
2017
2041
  };
2018
2042
  };
2043
+ '& .MuiButtonBase-root': {
2044
+ paddingLeft: any;
2045
+ };
2019
2046
  };
2020
2047
  '& .SCCourseContentMenu-list-item': {
2021
2048
  '&:hover, &:focus, &:active': {
@@ -2027,7 +2054,6 @@ declare const theme: {
2027
2054
  color: any;
2028
2055
  };
2029
2056
  '& .SCCourseContentMenu-item': {
2030
- padding: any;
2031
2057
  '& .MuiListItemText-primary': {
2032
2058
  fontWeight: any;
2033
2059
  };
@@ -2055,6 +2081,9 @@ declare const theme: {
2055
2081
  [x: number]: {
2056
2082
  marginBottom: string;
2057
2083
  };
2084
+ '& .SCCourseDashboard-contrast-color': {
2085
+ color: any;
2086
+ };
2058
2087
  '& .SCCourseDashboard-header': {
2059
2088
  [x: number]: {
2060
2089
  paddingLeft: string;
@@ -2070,6 +2099,8 @@ declare const theme: {
2070
2099
  borderBottomLeftRadius: string;
2071
2100
  borderBottomRightRadius: string;
2072
2101
  marginBottom: string;
2102
+ objectFit: string;
2103
+ objectPosition: string;
2073
2104
  };
2074
2105
  '& .SCCourseDashboard-header-outer-wrapper': {
2075
2106
  [x: number]: {
@@ -2119,6 +2150,7 @@ declare const theme: {
2119
2150
  border: string;
2120
2151
  borderRadius: string;
2121
2152
  padding: any;
2153
+ backgroundColor: any;
2122
2154
  '& .SCCourseParticipantsButton-root': {
2123
2155
  justifyContent: string;
2124
2156
  padding: number;
@@ -2146,9 +2178,12 @@ declare const theme: {
2146
2178
  };
2147
2179
  '& .SCCourseDashboard-comments-container': {
2148
2180
  [x: number]: {
2149
- paddingLeft: string;
2150
- paddingRight: string;
2181
+ padding: any;
2151
2182
  };
2183
+ backgroundColor: any;
2184
+ border: string;
2185
+ borderRadius: string;
2186
+ padding: any;
2152
2187
  '& .SCCourseDashboard-outer-wrapper': {
2153
2188
  marginTop: string;
2154
2189
  marginBottom: string;
@@ -2182,6 +2217,9 @@ declare const theme: {
2182
2217
  };
2183
2218
  };
2184
2219
  '&.SCCourseDashboard-student-container': {
2220
+ '& .SCCourseDashboard-description': {
2221
+ whiteSpace: string;
2222
+ };
2185
2223
  '& .SCCourseDashboard-accordion': {
2186
2224
  borderTopLeftRadius: string;
2187
2225
  borderTopRightRadius: string;
@@ -2190,12 +2228,12 @@ declare const theme: {
2190
2228
  flexDirection: string;
2191
2229
  alignItems: string;
2192
2230
  justifyContent: string;
2231
+ backgroundColor: any;
2232
+ padding: string;
2193
2233
  '& .SCCourseDashboard-user': {
2194
2234
  flexDirection: string;
2195
2235
  alignItems: string;
2196
2236
  gap: string;
2197
- marginTop: string;
2198
- marginBottom: string;
2199
2237
  '& .SCCourseDashboard-avatar': {
2200
2238
  width: string;
2201
2239
  height: string;
@@ -2226,6 +2264,7 @@ declare const theme: {
2226
2264
  borderTopLeftRadius: string;
2227
2265
  borderTopRightRadius: string;
2228
2266
  padding: string;
2267
+ backgroundColor: any;
2229
2268
  '& .SCCourseDashboard-circle': {
2230
2269
  width: string;
2231
2270
  height: string;
@@ -2242,6 +2281,7 @@ declare const theme: {
2242
2281
  border: string;
2243
2282
  borderRadius: string;
2244
2283
  padding: string;
2284
+ backgroundColor: any;
2245
2285
  };
2246
2286
  '& .SCCourseDashboard-percentage-wrapper': {
2247
2287
  [x: number]: {
@@ -2502,10 +2542,15 @@ declare const theme: {
2502
2542
  };
2503
2543
  };
2504
2544
  };
2505
- '& .SCCourses-show-more': {
2506
- paddingLeft: any;
2507
- '&.Mui-selected, &:hover': {
2508
- backgroundColor: string;
2545
+ '& .SCCourses-end-message': {
2546
+ display: string;
2547
+ alignItems: string;
2548
+ justifyContent: string;
2549
+ '& .MuiButtonBase-root': {
2550
+ paddingLeft: any;
2551
+ '&.Mui-selected, &:hover': {
2552
+ backgroundColor: string;
2553
+ };
2509
2554
  };
2510
2555
  };
2511
2556
  };
@@ -2517,7 +2562,7 @@ declare const theme: {
2517
2562
  };
2518
2563
  };
2519
2564
  };
2520
- coursesChipRoot: ({ theme, showForMe, showMyCourses }: any) => {
2565
+ coursesChipRoot: ({ theme, showMine, showManagedCourses }: any) => {
2521
2566
  height: any;
2522
2567
  borderRadius: any;
2523
2568
  color: any;
@@ -2530,7 +2575,12 @@ declare const theme: {
2530
2575
  };
2531
2576
  SCCourseForm: {
2532
2577
  styleOverrides: {
2533
- root: ({ theme }: any) => {
2578
+ root: ({ theme }: {
2579
+ theme: any;
2580
+ }) => {
2581
+ '& .SCCourseForm-contrast-color': {
2582
+ color: any;
2583
+ };
2534
2584
  '& .SCCourseForm-cover': {
2535
2585
  position: string;
2536
2586
  height: number;
@@ -2548,8 +2598,20 @@ declare const theme: {
2548
2598
  marginTop: any;
2549
2599
  color: any;
2550
2600
  };
2601
+ '& h5': {
2602
+ padding: any;
2603
+ };
2551
2604
  '& .SCCourseForm-form': {
2552
- '& h5': {
2605
+ '&.SCCourseForm-step-customization': {
2606
+ [x: number]: {
2607
+ padding: any;
2608
+ };
2609
+ backgroundColor: any;
2610
+ border: string;
2611
+ borderBottom: string;
2612
+ borderRadius: string;
2613
+ borderBottomLeftRadius: string;
2614
+ borderBottomRightRadius: string;
2553
2615
  padding: any;
2554
2616
  };
2555
2617
  '& .SCCourseForm-name': {
@@ -2559,6 +2621,7 @@ declare const theme: {
2559
2621
  marginTop: any;
2560
2622
  };
2561
2623
  '& .SCCourseForm-edit-root': {
2624
+ backgroundColor: any;
2562
2625
  marginTop: any;
2563
2626
  '& .SCCourseForm-edit-card': {
2564
2627
  display: string;
@@ -2607,6 +2670,13 @@ declare const theme: {
2607
2670
  '& .SCCourseForm-edit-privacy-item-info': {
2608
2671
  marginLeft: any;
2609
2672
  };
2673
+ '& .SCCourseForm-disabled': {
2674
+ opacity: number;
2675
+ };
2676
+ '& .SCCourseForm-edit-card': {
2677
+ alignItems: string;
2678
+ margin: any;
2679
+ };
2610
2680
  };
2611
2681
  };
2612
2682
  };
@@ -2623,6 +2693,10 @@ declare const theme: {
2623
2693
  backgroundColor: string;
2624
2694
  };
2625
2695
  };
2696
+ '& .SCCourseForm-disabled': {
2697
+ pointerEvents: string;
2698
+ opacity: number;
2699
+ };
2626
2700
  '& .MuiCard-root': {
2627
2701
  boxShadow: string;
2628
2702
  border: string;
@@ -2637,6 +2711,13 @@ declare const theme: {
2637
2711
  '& .MuiTypography-body2': {
2638
2712
  whiteSpace: string;
2639
2713
  };
2714
+ '& .SCCourseForm-card-title': {
2715
+ display: string;
2716
+ justifyContent: string;
2717
+ '& .MuiChip-root': {
2718
+ borderRadius: number;
2719
+ };
2720
+ };
2640
2721
  };
2641
2722
  };
2642
2723
  };
@@ -2644,10 +2725,21 @@ declare const theme: {
2644
2725
  color: any;
2645
2726
  };
2646
2727
  '& .SCCourseForm-actions': {
2647
- marginTop: any;
2648
2728
  display: string;
2649
2729
  justifyContent: string;
2650
2730
  gap: any;
2731
+ '&.SCCourseForm-step-customization': {
2732
+ [x: number]: {
2733
+ padding: any;
2734
+ };
2735
+ backgroundColor: any;
2736
+ border: string;
2737
+ borderTop: string;
2738
+ borderRadius: string;
2739
+ borderTopLeftRadius: string;
2740
+ borderTopRightRadius: string;
2741
+ padding: any;
2742
+ };
2651
2743
  '& button': {
2652
2744
  width: string;
2653
2745
  };
@@ -2775,16 +2867,54 @@ declare const theme: {
2775
2867
  };
2776
2868
  };
2777
2869
  };
2870
+ SCCourseTypePopover: {
2871
+ styleOverrides: {
2872
+ root: ({ theme }: {
2873
+ theme: any;
2874
+ }) => {
2875
+ flexDirection: string;
2876
+ alignItems: string;
2877
+ gap: any;
2878
+ '&.SCCourseTypePopover-contrast-color': {
2879
+ color: any;
2880
+ };
2881
+ '& .SCCourseTypePopover-button': {
2882
+ padding: number;
2883
+ textDecoration: string;
2884
+ '&:hover': {
2885
+ backgroundColor: string;
2886
+ textDecoration: string;
2887
+ };
2888
+ };
2889
+ };
2890
+ };
2891
+ };
2778
2892
  SCCourseUsersTable: {
2779
2893
  styleOverrides: {
2780
2894
  root: ({ theme }: {
2781
2895
  theme: any;
2782
2896
  }) => {
2897
+ [x: number]: {
2898
+ padding: any;
2899
+ };
2900
+ border: string;
2901
+ borderRadius: string;
2902
+ padding: any;
2903
+ backgroundColor: any;
2783
2904
  '& .SCCourseUsersTable-search': {
2784
2905
  '& > .MuiInputBase-root': {
2785
2906
  borderBottomLeftRadius: string;
2786
2907
  borderBottomRightRadius: string;
2787
2908
  };
2909
+ '& .SCCourseUsersTable-end-adornment-wrapper': {
2910
+ flexDirection: string;
2911
+ '& .SCCourseUsersTable-search-button': {
2912
+ minWidth: string;
2913
+ width: string;
2914
+ height: string;
2915
+ padding: any;
2916
+ };
2917
+ };
2788
2918
  };
2789
2919
  '& .SCCourseUsersTable-avatar-wrapper': {
2790
2920
  flexDirection: string;
@@ -3298,6 +3428,9 @@ declare const theme: {
3298
3428
  [x: number]: {
3299
3429
  marginBottom: string;
3300
3430
  };
3431
+ '& .SCEditCourse-contrast-color': {
3432
+ color: any;
3433
+ };
3301
3434
  '& .SCEditCourse-header': {
3302
3435
  [x: number]: {
3303
3436
  paddingLeft: any;
@@ -3343,6 +3476,14 @@ declare const theme: {
3343
3476
  };
3344
3477
  '& .SCEditCourse-status': {
3345
3478
  borderRadius: any;
3479
+ '& .MuiButtonBase-root': {
3480
+ padding: number;
3481
+ textDecoration: string;
3482
+ '&:hover': {
3483
+ backgroundColor: string;
3484
+ textDecoration: string;
3485
+ };
3486
+ };
3346
3487
  };
3347
3488
  '& .SCEditCourse-lesson-empty-status': {
3348
3489
  border: string;
@@ -3351,110 +3492,121 @@ declare const theme: {
3351
3492
  '& .SCEditCourse-empty-status-button': {
3352
3493
  marginTop: string;
3353
3494
  };
3354
- '& .SCEditCourse-lessons-sections-wrapper': {
3355
- flexDirection: string;
3356
- alignItems: string;
3357
- justifyContent: string;
3495
+ '& .SCEditCourse-lessons-inner-wrapper': {
3496
+ [x: number]: {
3497
+ padding: any;
3498
+ };
3499
+ border: string;
3500
+ borderRadius: string;
3501
+ backgroundColor: any;
3358
3502
  marginTop: string;
3359
3503
  padding: any;
3360
- border: string;
3361
- borderBottom: string;
3362
- borderTopLeftRadius: string;
3363
- borderTopRightRadius: string;
3364
- '& .SCEditCourse-lessons-sections': {
3504
+ '& .SCEditCourse-lessons-sections-wrapper': {
3365
3505
  flexDirection: string;
3366
3506
  alignItems: string;
3367
- gap: string;
3368
- '& .SCEditCourse-circle': {
3369
- width: string;
3370
- height: string;
3371
- borderRadius: number;
3372
- backgroundColor: any;
3373
- };
3374
- };
3375
- '& .SCEditCourse-section-button': {
3376
- alignItems: string;
3377
- '& .SCEditCourse-section-button-typography': {
3378
- textTransform: string;
3379
- };
3380
- };
3381
- };
3382
- '& .SCEditCourse-table-container': {
3383
- width: string;
3384
- border: string;
3385
- borderBottomLeftRadius: string;
3386
- borderBottomRightRadius: string;
3387
- '& .SCEditCourse-table': {
3388
- '& .SCEditCourse-cell-width': {
3389
- width: string;
3390
- };
3391
- '& .SCEditCourse-cell-align-center': {
3392
- textAlign: string;
3393
- };
3394
- '& .SCEditCourse-cell-align-right': {
3395
- textAlign: string;
3396
- };
3397
- '& .SCEditCourse-cell-padding': {
3398
- paddingRight: number;
3399
- };
3400
- '& .MuiTableCell-root': {
3401
- textWrapMode: string;
3507
+ justifyContent: string;
3508
+ padding: any;
3509
+ border: string;
3510
+ borderBottom: string;
3511
+ borderTopLeftRadius: string;
3512
+ borderTopRightRadius: string;
3513
+ backgroundColor: any;
3514
+ '& .SCEditCourse-lessons-sections': {
3515
+ flexDirection: string;
3516
+ alignItems: string;
3517
+ gap: string;
3518
+ '& .SCEditCourse-circle': {
3519
+ width: string;
3520
+ height: string;
3521
+ borderRadius: number;
3522
+ backgroundColor: any;
3523
+ };
3402
3524
  };
3403
- '& .SCEditCourse-table-header': {
3404
- '& .SCEditCourse-table-header-typography': {
3525
+ '& .SCEditCourse-section-button': {
3526
+ alignItems: string;
3527
+ '& .SCEditCourse-section-button-typography': {
3405
3528
  textTransform: string;
3406
3529
  };
3407
3530
  };
3408
- '& .SCEditCourse-table-body': {
3409
- '& .SCEditCourse-table-body-icon-wrapper': {
3410
- flexDirection: string;
3411
- alignItems: string;
3412
- gap: string;
3531
+ };
3532
+ '& .SCEditCourse-table-container': {
3533
+ width: string;
3534
+ border: string;
3535
+ borderBottomLeftRadius: string;
3536
+ borderBottomRightRadius: string;
3537
+ backgroundColor: any;
3538
+ '& .SCEditCourse-table': {
3539
+ '& .SCEditCourse-cell-width': {
3540
+ width: string;
3413
3541
  };
3414
- '& .SCEditCourse-table-body-accordion': {
3415
- backgroundColor: any;
3542
+ '& .SCEditCourse-cell-align-center': {
3543
+ textAlign: string;
3416
3544
  };
3417
- '& .SCEditCourse-edit-mode-wrapper': {
3418
- flexDirection: string;
3419
- alignItems: string;
3420
- gap: string;
3421
- '& .SCEditCourse-edit-mode-save-button': {
3422
- minWidth: string;
3423
- borderRadius: string;
3424
- padding: string;
3425
- };
3426
- '& .SCEditCourse-edit-mode-close-button': {
3427
- border: string;
3428
- borderRadius: string;
3429
- padding: string;
3545
+ '& .SCEditCourse-cell-align-right': {
3546
+ textAlign: string;
3547
+ };
3548
+ '& .SCEditCourse-cell-padding': {
3549
+ paddingRight: number;
3550
+ };
3551
+ '& .MuiTableCell-root': {
3552
+ textWrapMode: string;
3553
+ };
3554
+ '& .SCEditCourse-table-header': {
3555
+ '& .SCEditCourse-table-header-typography': {
3556
+ textTransform: string;
3430
3557
  };
3431
3558
  };
3432
- '& .SCEditCourse-actions-wrapper': {
3433
- [x: number]: {
3559
+ '& .SCEditCourse-table-body': {
3560
+ '& .SCEditCourse-table-body-icon-wrapper': {
3561
+ flexDirection: string;
3562
+ alignItems: string;
3434
3563
  gap: string;
3435
3564
  };
3436
- display: string;
3437
- flexDirection: string;
3438
- alignItems: string;
3439
- gap: string;
3440
- '& .SCEditCourse-change-lesson-status-published-wrapper': {
3441
- color: any;
3565
+ '& .SCEditCourse-table-body-accordion': {
3442
3566
  backgroundColor: any;
3443
- '& .MuiIcon-root': {
3567
+ };
3568
+ '& .SCEditCourse-edit-mode-wrapper': {
3569
+ flexDirection: string;
3570
+ alignItems: string;
3571
+ gap: string;
3572
+ '& .SCEditCourse-edit-mode-save-button': {
3573
+ minWidth: string;
3574
+ borderRadius: string;
3575
+ padding: string;
3576
+ };
3577
+ '& .SCEditCourse-edit-mode-close-button': {
3578
+ border: string;
3579
+ borderRadius: string;
3580
+ padding: string;
3581
+ };
3582
+ };
3583
+ '& .SCEditCourse-actions-wrapper': {
3584
+ [x: number]: {
3585
+ gap: string;
3586
+ };
3587
+ display: string;
3588
+ flexDirection: string;
3589
+ alignItems: string;
3590
+ gap: string;
3591
+ '& .SCEditCourse-change-lesson-status-published-wrapper': {
3444
3592
  color: any;
3593
+ backgroundColor: any;
3594
+ '& .MuiIcon-root': {
3595
+ color: any;
3596
+ };
3597
+ };
3598
+ '& .SCEditCourse-change-lesson-status-icon-draft': {
3599
+ width: string;
3600
+ height: string;
3601
+ borderRadius: number;
3602
+ backgroundColor: any;
3445
3603
  };
3446
3604
  };
3447
- '& .SCEditCourse-change-lesson-status-icon-draft': {
3448
- width: string;
3449
- height: string;
3450
- borderRadius: number;
3451
- backgroundColor: any;
3605
+ '& .SCEditCourse-table-body-collapse-wrapper': {
3606
+ padding: number;
3607
+ border: number;
3452
3608
  };
3453
3609
  };
3454
- '& .SCEditCourse-table-body-collapse-wrapper': {
3455
- padding: number;
3456
- border: number;
3457
- };
3458
3610
  };
3459
3611
  };
3460
3612
  };
@@ -3466,19 +3618,28 @@ declare const theme: {
3466
3618
  marginTop: string;
3467
3619
  marginBottom: any;
3468
3620
  };
3469
- '& .SCEditCourse-options-wrapper': {
3470
- gap: any;
3471
- maxWidth: string;
3472
- margin: string;
3473
- };
3474
- '& .SCEditCourse-options-divider': {
3475
- marginTop: string;
3476
- marginBottom: any;
3477
- };
3478
- '& .SCEditCourse-options-button-wrapper': {
3479
- alignItems: string;
3480
- maxWidth: string;
3481
- margin: string;
3621
+ '& .SCEditCourse-options-container': {
3622
+ [x: number]: {
3623
+ padding: any;
3624
+ };
3625
+ border: string;
3626
+ borderRadius: string;
3627
+ padding: any;
3628
+ backgroundColor: any;
3629
+ '& .SCEditCourse-options-wrapper': {
3630
+ gap: any;
3631
+ maxWidth: string;
3632
+ margin: string;
3633
+ };
3634
+ '& .SCEditCourse-options-divider': {
3635
+ marginTop: string;
3636
+ marginBottom: any;
3637
+ };
3638
+ '& .SCEditCourse-options-button-wrapper': {
3639
+ alignItems: string;
3640
+ maxWidth: string;
3641
+ margin: any;
3642
+ };
3482
3643
  };
3483
3644
  };
3484
3645
  };
@@ -3519,30 +3680,39 @@ declare const theme: {
3519
3680
  gap: any;
3520
3681
  };
3521
3682
  };
3522
- '& .SCEditCourse-lessons-sections-wrapper': {
3523
- flexDirection: string;
3524
- alignItems: string;
3525
- justifyContent: string;
3526
- marginTop: string;
3527
- padding: any;
3683
+ '& .SCEditCourse-lessons-inner-wrapper': {
3684
+ [x: number]: {
3685
+ padding: any;
3686
+ };
3528
3687
  border: string;
3529
3688
  borderRadius: string;
3530
- };
3531
- '& .SCEditCourse-table-container': {
3532
- width: string;
3533
- border: string;
3534
- borderBottomLeftRadius: string;
3535
- borderBottomRightRadius: string;
3536
- '& .SCEditCourse-margin': {
3537
- margin: string;
3538
- };
3539
- '& .SCEditCourse-margin-left': {
3540
- marginLeft: string;
3541
- };
3542
- '& .SCEditCourse-actions-wrapper': {
3689
+ backgroundColor: any;
3690
+ marginTop: string;
3691
+ padding: any;
3692
+ '& .SCEditCourse-lessons-sections-wrapper': {
3543
3693
  flexDirection: string;
3694
+ alignItems: string;
3544
3695
  justifyContent: string;
3545
- gap: string;
3696
+ padding: any;
3697
+ border: string;
3698
+ borderRadius: string;
3699
+ };
3700
+ '& .SCEditCourse-table-container': {
3701
+ width: string;
3702
+ border: string;
3703
+ borderBottomLeftRadius: string;
3704
+ borderBottomRightRadius: string;
3705
+ '& .SCEditCourse-margin': {
3706
+ margin: string;
3707
+ };
3708
+ '& .SCEditCourse-margin-left': {
3709
+ marginLeft: string;
3710
+ };
3711
+ '& .SCEditCourse-actions-wrapper': {
3712
+ flexDirection: string;
3713
+ justifyContent: string;
3714
+ gap: string;
3715
+ };
3546
3716
  };
3547
3717
  };
3548
3718
  '& .SCEditCourse-users-status-wrapper': {
@@ -3551,19 +3721,25 @@ declare const theme: {
3551
3721
  marginTop: string;
3552
3722
  marginBottom: any;
3553
3723
  };
3554
- '& .SCEditCourse-options-wrapper': {
3555
- gap: any;
3556
- maxWidth: string;
3557
- margin: string;
3558
- };
3559
- '& .SCEditCourse-options-divider': {
3560
- marginTop: string;
3561
- marginBottom: any;
3562
- };
3563
- '& .SCEditCourse-options-button-wrapper': {
3564
- alignItems: string;
3565
- maxWidth: string;
3566
- margin: string;
3724
+ '& .SCEditCourse-options-container': {
3725
+ border: string;
3726
+ borderRadius: string;
3727
+ paddingBottom: string;
3728
+ backgroundColor: any;
3729
+ '& .SCEditCourse-options-wrapper': {
3730
+ gap: any;
3731
+ maxWidth: string;
3732
+ margin: string;
3733
+ };
3734
+ '& .SCEditCourse-options-divider': {
3735
+ marginTop: string;
3736
+ marginBottom: any;
3737
+ };
3738
+ '& .SCEditCourse-options-button-wrapper': {
3739
+ alignItems: string;
3740
+ maxWidth: string;
3741
+ margin: string;
3742
+ };
3567
3743
  };
3568
3744
  };
3569
3745
  };
@@ -4330,9 +4506,7 @@ declare const theme: {
4330
4506
  textAlign: string;
4331
4507
  color: any;
4332
4508
  marginBottom: any;
4333
- fontWeight: any; /**
4334
- * Style assets - Exports - End
4335
- */
4509
+ fontWeight: any;
4336
4510
  fontSize: string;
4337
4511
  };
4338
4512
  '& .SCFeedObject-poll-object-voters .MuiTypography-root': {
@@ -4630,6 +4804,9 @@ declare const theme: {
4630
4804
  height: any;
4631
4805
  width: any;
4632
4806
  };
4807
+ '& .MuiIcon-root': {
4808
+ color: any;
4809
+ };
4633
4810
  };
4634
4811
  };
4635
4812
  '& .SCChangeGroupPictureButton-root': {
@@ -5306,7 +5483,9 @@ declare const theme: {
5306
5483
  backgroundColor: any;
5307
5484
  };
5308
5485
  '& .SCLessonDrawer-header': {
5309
- minHeight: string;
5486
+ [x: number]: {
5487
+ minHeight: string;
5488
+ };
5310
5489
  display: string;
5311
5490
  padding: any;
5312
5491
  };
@@ -5502,11 +5681,12 @@ declare const theme: {
5502
5681
  marginLeft: string;
5503
5682
  };
5504
5683
  };
5505
- marginTop: any;
5684
+ marginTop: string;
5506
5685
  marginBottom: number;
5507
5686
  };
5508
5687
  '& .infinite-scroll-component__outerdiv': {
5509
5688
  overflowY: string;
5689
+ marginBottom: any;
5510
5690
  '& .infinite-scroll-component': {
5511
5691
  '& .MuiList-root ': {
5512
5692
  padding: number;
@@ -5520,6 +5700,7 @@ declare const theme: {
5520
5700
  skeletonRoot: ({ theme }: any) => {
5521
5701
  width: string;
5522
5702
  backgroundColor: string;
5703
+ padding: any;
5523
5704
  };
5524
5705
  };
5525
5706
  };
@@ -5615,6 +5796,11 @@ declare const theme: {
5615
5796
  justifyContent: string;
5616
5797
  marginBottom: any;
5617
5798
  };
5799
+ '& .SCLessonTemplate-preview-info': {
5800
+ justifyContent: string;
5801
+ borderRadius: number;
5802
+ marginBottom: any;
5803
+ };
5618
5804
  '& .SCLessonTemplate-button': {
5619
5805
  alignSelf: string;
5620
5806
  marginTop: string;
@@ -5660,9 +5846,12 @@ declare const theme: {
5660
5846
  };
5661
5847
  };
5662
5848
  '& .SCLessonObject-medias-section': {
5663
- display: string;
5849
+ '& .SCLessonObject-files': {
5850
+ display: string;
5851
+ };
5664
5852
  '& .SCLessonFilePreview-root': {
5665
5853
  marginBottom: any;
5854
+ maxWidth: string;
5666
5855
  };
5667
5856
  '& .SCMediaLink-display-root': {
5668
5857
  marginBottom: any;
@@ -6937,6 +7126,28 @@ declare const theme: {
6937
7126
  maxWidth: string;
6938
7127
  };
6939
7128
  };
7129
+ courseRoot: ({ theme }: any) => {
7130
+ '& .SCNotification-username, & a': {
7131
+ fontWeight: any;
7132
+ };
7133
+ '& .SCNotificationItem-primary': {
7134
+ '& .SCCourse-root': {
7135
+ width: string;
7136
+ '& .SCCourse-snippet-root': {
7137
+ paddingLeft: string;
7138
+ };
7139
+ };
7140
+ };
7141
+ '& .SCNotificationItem-secondary': {
7142
+ textTransform: string;
7143
+ };
7144
+ '& .SCNotification-snippet-time': {
7145
+ paddingLeft: any;
7146
+ };
7147
+ '& .SCCourse-snippet-root': {
7148
+ backgroundColor: string;
7149
+ };
7150
+ };
6940
7151
  eventRoot: ({ theme }: any) => {
6941
7152
  '& .SCNotification-username, & a': {
6942
7153
  fontWeight: any;
@@ -7606,9 +7817,6 @@ declare const theme: {
7606
7817
  display: string;
7607
7818
  flexDirection: string;
7608
7819
  alignItems: string;
7609
- /**
7610
- * Style assets - Imports - Start
7611
- */
7612
7820
  '& .SCOnBoardingWidget-app-image': {
7613
7821
  width: string;
7614
7822
  };
@@ -10625,6 +10833,7 @@ declare const theme: {
10625
10833
  gap: string;
10626
10834
  padding: any;
10627
10835
  marginTop: string;
10836
+ backgroundColor: any;
10628
10837
  '& .SCEmptyStatus-box': {
10629
10838
  width: string;
10630
10839
  height: string;
@@ -11560,6 +11769,155 @@ declare const theme: {
11560
11769
  };
11561
11770
  };
11562
11771
  };
11772
+ SCPaywallsConfigurator: {
11773
+ styleOverrides: {
11774
+ root: ({ theme }: any) => {
11775
+ "& .SCPaywallsConfigurator-new-product": {
11776
+ background: string;
11777
+ padding: any;
11778
+ marginTop: any;
11779
+ borderRadius: any;
11780
+ };
11781
+ "& .SCPaywallsConfigurator-no-product": {
11782
+ textDecoration: string;
11783
+ paddingLeft: number;
11784
+ color: "#bdbdbd";
11785
+ };
11786
+ "& .SCPaywallsConfigurator-content-access-type": {
11787
+ '& > p': {
11788
+ marginBottom: any;
11789
+ };
11790
+ '& .MuiPaper-root': {
11791
+ borderColor: string;
11792
+ };
11793
+ '& .MuiAccordion-root:first-of-type': {
11794
+ borderTopLeftRadius: number;
11795
+ borderTopRightRadius: number;
11796
+ };
11797
+ '& .MuiAccordion-root:last-of-type': {
11798
+ borderBottomLeftRadius: number;
11799
+ borderBottomRightRadius: number;
11800
+ };
11801
+ "& .SCPaywallsConfigurator-selected-payment-products-list": {
11802
+ borderTop: string;
11803
+ marginTop: number;
11804
+ };
11805
+ "& .SCPaywallsConfigurator-add-payment-product": {
11806
+ position: string;
11807
+ left: number;
11808
+ '& .MuiButton-startIcon': {
11809
+ fontSize: string;
11810
+ };
11811
+ };
11812
+ };
11813
+ };
11814
+ paymentProductsAutocompletePopperRoot: ({ theme }: any) => {
11815
+ "& .MuiAutocomplete-paper": {
11816
+ boxShadow: string;
11817
+ margin: number;
11818
+ color: string;
11819
+ fontSize: number;
11820
+ };
11821
+ "& .MuiAutocomplete-listbox": {
11822
+ backgroundColor: string;
11823
+ padding: number;
11824
+ "& .MuiAutocomplete-option": {
11825
+ minHeight: string;
11826
+ alignItems: string;
11827
+ padding: number;
11828
+ borderBottom: string;
11829
+ '&[aria-selected="true"]': {
11830
+ backgroundColor: string;
11831
+ };
11832
+ "&.MuiAutocomplete-focused, &.MuiAutocomplete-focused[aria-selected=\"true\"]": {
11833
+ backgroundColor: any;
11834
+ };
11835
+ };
11836
+ };
11837
+ "&.MuiAutocomplete-popperDisablePortal": {
11838
+ position: string;
11839
+ };
11840
+ "& .SCPaywallsConfigurator-product-check-icon": {
11841
+ width: number;
11842
+ height: number;
11843
+ margin: string;
11844
+ };
11845
+ "& .SCPaywallsConfigurator-product-card-icon": {
11846
+ width: number;
11847
+ height: number;
11848
+ flexShrink: number;
11849
+ borderRadius: string;
11850
+ marginRight: any;
11851
+ marginTop: string;
11852
+ padding: string;
11853
+ backgroundColor: string;
11854
+ color: string;
11855
+ };
11856
+ "& .SCPaywallsConfigurator-product-content": {
11857
+ flexGrow: number;
11858
+ '& span': {
11859
+ color: string;
11860
+ };
11861
+ };
11862
+ "& .SCPaywallsConfigurator-product-remove-icon": {
11863
+ opacity: number;
11864
+ width: number;
11865
+ height: number;
11866
+ };
11867
+ "& .SCPaywallsConfigurator-autocomplete-footer": {
11868
+ backgroundColor: "#bdbdbd";
11869
+ };
11870
+ };
11871
+ paymentProductsPopperRoot: ({ theme }: any) => {
11872
+ border: string;
11873
+ boxShadow: string;
11874
+ borderRadius: number;
11875
+ width: number;
11876
+ zIndex: any;
11877
+ fontSize: number;
11878
+ color: string;
11879
+ backgroundColor: string;
11880
+ '& .MuiPaper-root': {
11881
+ borderRadius: number;
11882
+ };
11883
+ "& .SCPaywallsConfigurator-payment-products-popper-title": {
11884
+ borderBottom: string;
11885
+ padding: string;
11886
+ fontWeight: number;
11887
+ };
11888
+ "& .SCPaywallsConfigurator-payment-products-popper-footer": {
11889
+ borderTop: string;
11890
+ padding: string;
11891
+ display: string;
11892
+ alignItems: string;
11893
+ justifyContent: string;
11894
+ '& button': {
11895
+ padding: string;
11896
+ '& .MuiIcon-root': {
11897
+ fontSize: number;
11898
+ };
11899
+ };
11900
+ };
11901
+ };
11902
+ filterInputRoot: ({ theme }: any) => {
11903
+ padding: number;
11904
+ width: string;
11905
+ borderBottom: string;
11906
+ '& input': {
11907
+ borderRadius: number;
11908
+ backgroundColor: string;
11909
+ padding: number;
11910
+ transition: any;
11911
+ border: string;
11912
+ fontSize: number;
11913
+ '&:focus': {
11914
+ boxShadow: string;
11915
+ borderColor: string;
11916
+ };
11917
+ };
11918
+ };
11919
+ };
11920
+ };
11563
11921
  };
11564
11922
  selfcommunity: {
11565
11923
  user: {