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

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 +181 -128
  20. package/lib/cjs/components/SCEditCourse.js +191 -137
  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 +517 -152
  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 +181 -128
  58. package/lib/esm/components/SCEditCourse.js +191 -137
  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 +517 -152
  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,35 @@ 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;
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
+ };
3473
3643
  };
3474
- '& .SCEditCourse-options-divider': {
3475
- marginTop: string;
3644
+ '& .SCCourseForm-paywalls-configurator-wrap': {
3476
3645
  marginBottom: any;
3477
- };
3478
- '& .SCEditCourse-options-button-wrapper': {
3479
- alignItems: string;
3480
- maxWidth: string;
3481
- margin: string;
3646
+ '& .SCPaywallsConfigurator-content-access-type': {
3647
+ fontSize: string;
3648
+ padding: any;
3649
+ };
3482
3650
  };
3483
3651
  };
3484
3652
  };
@@ -3519,30 +3687,39 @@ declare const theme: {
3519
3687
  gap: any;
3520
3688
  };
3521
3689
  };
3522
- '& .SCEditCourse-lessons-sections-wrapper': {
3523
- flexDirection: string;
3524
- alignItems: string;
3525
- justifyContent: string;
3526
- marginTop: string;
3527
- padding: any;
3690
+ '& .SCEditCourse-lessons-inner-wrapper': {
3691
+ [x: number]: {
3692
+ padding: any;
3693
+ };
3528
3694
  border: string;
3529
3695
  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': {
3696
+ backgroundColor: any;
3697
+ marginTop: string;
3698
+ padding: any;
3699
+ '& .SCEditCourse-lessons-sections-wrapper': {
3543
3700
  flexDirection: string;
3701
+ alignItems: string;
3544
3702
  justifyContent: string;
3545
- gap: string;
3703
+ padding: any;
3704
+ border: string;
3705
+ borderRadius: string;
3706
+ };
3707
+ '& .SCEditCourse-table-container': {
3708
+ width: string;
3709
+ border: string;
3710
+ borderBottomLeftRadius: string;
3711
+ borderBottomRightRadius: string;
3712
+ '& .SCEditCourse-margin': {
3713
+ margin: string;
3714
+ };
3715
+ '& .SCEditCourse-margin-left': {
3716
+ marginLeft: string;
3717
+ };
3718
+ '& .SCEditCourse-actions-wrapper': {
3719
+ flexDirection: string;
3720
+ justifyContent: string;
3721
+ gap: string;
3722
+ };
3546
3723
  };
3547
3724
  };
3548
3725
  '& .SCEditCourse-users-status-wrapper': {
@@ -3551,19 +3728,25 @@ declare const theme: {
3551
3728
  marginTop: string;
3552
3729
  marginBottom: any;
3553
3730
  };
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;
3731
+ '& .SCEditCourse-options-container': {
3732
+ border: string;
3733
+ borderRadius: string;
3734
+ paddingBottom: string;
3735
+ backgroundColor: any;
3736
+ '& .SCEditCourse-options-wrapper': {
3737
+ gap: any;
3738
+ maxWidth: string;
3739
+ margin: string;
3740
+ };
3741
+ '& .SCEditCourse-options-divider': {
3742
+ marginTop: string;
3743
+ marginBottom: any;
3744
+ };
3745
+ '& .SCEditCourse-options-button-wrapper': {
3746
+ alignItems: string;
3747
+ maxWidth: string;
3748
+ margin: string;
3749
+ };
3567
3750
  };
3568
3751
  };
3569
3752
  };
@@ -4330,9 +4513,7 @@ declare const theme: {
4330
4513
  textAlign: string;
4331
4514
  color: any;
4332
4515
  marginBottom: any;
4333
- fontWeight: any; /**
4334
- * Style assets - Exports - End
4335
- */
4516
+ fontWeight: any;
4336
4517
  fontSize: string;
4337
4518
  };
4338
4519
  '& .SCFeedObject-poll-object-voters .MuiTypography-root': {
@@ -4630,6 +4811,9 @@ declare const theme: {
4630
4811
  height: any;
4631
4812
  width: any;
4632
4813
  };
4814
+ '& .MuiIcon-root': {
4815
+ color: any;
4816
+ };
4633
4817
  };
4634
4818
  };
4635
4819
  '& .SCChangeGroupPictureButton-root': {
@@ -5306,7 +5490,9 @@ declare const theme: {
5306
5490
  backgroundColor: any;
5307
5491
  };
5308
5492
  '& .SCLessonDrawer-header': {
5309
- minHeight: string;
5493
+ [x: number]: {
5494
+ minHeight: string;
5495
+ };
5310
5496
  display: string;
5311
5497
  padding: any;
5312
5498
  };
@@ -5502,11 +5688,12 @@ declare const theme: {
5502
5688
  marginLeft: string;
5503
5689
  };
5504
5690
  };
5505
- marginTop: any;
5691
+ marginTop: string;
5506
5692
  marginBottom: number;
5507
5693
  };
5508
5694
  '& .infinite-scroll-component__outerdiv': {
5509
5695
  overflowY: string;
5696
+ marginBottom: any;
5510
5697
  '& .infinite-scroll-component': {
5511
5698
  '& .MuiList-root ': {
5512
5699
  padding: number;
@@ -5520,6 +5707,7 @@ declare const theme: {
5520
5707
  skeletonRoot: ({ theme }: any) => {
5521
5708
  width: string;
5522
5709
  backgroundColor: string;
5710
+ padding: any;
5523
5711
  };
5524
5712
  };
5525
5713
  };
@@ -5615,6 +5803,11 @@ declare const theme: {
5615
5803
  justifyContent: string;
5616
5804
  marginBottom: any;
5617
5805
  };
5806
+ '& .SCLessonTemplate-preview-info': {
5807
+ justifyContent: string;
5808
+ borderRadius: number;
5809
+ marginBottom: any;
5810
+ };
5618
5811
  '& .SCLessonTemplate-button': {
5619
5812
  alignSelf: string;
5620
5813
  marginTop: string;
@@ -5660,9 +5853,12 @@ declare const theme: {
5660
5853
  };
5661
5854
  };
5662
5855
  '& .SCLessonObject-medias-section': {
5663
- display: string;
5856
+ '& .SCLessonObject-files': {
5857
+ display: string;
5858
+ };
5664
5859
  '& .SCLessonFilePreview-root': {
5665
5860
  marginBottom: any;
5861
+ maxWidth: string;
5666
5862
  };
5667
5863
  '& .SCMediaLink-display-root': {
5668
5864
  marginBottom: any;
@@ -6937,6 +7133,28 @@ declare const theme: {
6937
7133
  maxWidth: string;
6938
7134
  };
6939
7135
  };
7136
+ courseRoot: ({ theme }: any) => {
7137
+ '& .SCNotification-username, & a': {
7138
+ fontWeight: any;
7139
+ };
7140
+ '& .SCNotificationItem-primary': {
7141
+ '& .SCCourse-root': {
7142
+ width: string;
7143
+ '& .SCCourse-snippet-root': {
7144
+ paddingLeft: string;
7145
+ };
7146
+ };
7147
+ };
7148
+ '& .SCNotificationItem-secondary': {
7149
+ textTransform: string;
7150
+ };
7151
+ '& .SCNotification-snippet-time': {
7152
+ paddingLeft: any;
7153
+ };
7154
+ '& .SCCourse-snippet-root': {
7155
+ backgroundColor: string;
7156
+ };
7157
+ };
6940
7158
  eventRoot: ({ theme }: any) => {
6941
7159
  '& .SCNotification-username, & a': {
6942
7160
  fontWeight: any;
@@ -7606,9 +7824,6 @@ declare const theme: {
7606
7824
  display: string;
7607
7825
  flexDirection: string;
7608
7826
  alignItems: string;
7609
- /**
7610
- * Style assets - Imports - Start
7611
- */
7612
7827
  '& .SCOnBoardingWidget-app-image': {
7613
7828
  width: string;
7614
7829
  };
@@ -10625,6 +10840,7 @@ declare const theme: {
10625
10840
  gap: string;
10626
10841
  padding: any;
10627
10842
  marginTop: string;
10843
+ backgroundColor: any;
10628
10844
  '& .SCEmptyStatus-box': {
10629
10845
  width: string;
10630
10846
  height: string;
@@ -11560,6 +11776,155 @@ declare const theme: {
11560
11776
  };
11561
11777
  };
11562
11778
  };
11779
+ SCPaywallsConfigurator: {
11780
+ styleOverrides: {
11781
+ root: ({ theme }: any) => {
11782
+ "& .SCPaywallsConfigurator-new-product": {
11783
+ background: string;
11784
+ padding: any;
11785
+ marginTop: any;
11786
+ borderRadius: any;
11787
+ };
11788
+ "& .SCPaywallsConfigurator-no-product": {
11789
+ textDecoration: string;
11790
+ paddingLeft: number;
11791
+ color: "#bdbdbd";
11792
+ };
11793
+ "& .SCPaywallsConfigurator-content-access-type": {
11794
+ '& > p': {
11795
+ marginBottom: any;
11796
+ };
11797
+ '& .MuiPaper-root': {
11798
+ borderColor: string;
11799
+ };
11800
+ '& .MuiAccordion-root:first-of-type': {
11801
+ borderTopLeftRadius: number;
11802
+ borderTopRightRadius: number;
11803
+ };
11804
+ '& .MuiAccordion-root:last-of-type': {
11805
+ borderBottomLeftRadius: number;
11806
+ borderBottomRightRadius: number;
11807
+ };
11808
+ "& .SCPaywallsConfigurator-selected-payment-products-list": {
11809
+ borderTop: string;
11810
+ marginTop: number;
11811
+ };
11812
+ "& .SCPaywallsConfigurator-add-payment-product": {
11813
+ position: string;
11814
+ left: number;
11815
+ '& .MuiButton-startIcon': {
11816
+ fontSize: string;
11817
+ };
11818
+ };
11819
+ };
11820
+ };
11821
+ paymentProductsAutocompletePopperRoot: ({ theme }: any) => {
11822
+ "& .MuiAutocomplete-paper": {
11823
+ boxShadow: string;
11824
+ margin: number;
11825
+ color: string;
11826
+ fontSize: number;
11827
+ };
11828
+ "& .MuiAutocomplete-listbox": {
11829
+ backgroundColor: string;
11830
+ padding: number;
11831
+ "& .MuiAutocomplete-option": {
11832
+ minHeight: string;
11833
+ alignItems: string;
11834
+ padding: number;
11835
+ borderBottom: string;
11836
+ '&[aria-selected="true"]': {
11837
+ backgroundColor: string;
11838
+ };
11839
+ "&.MuiAutocomplete-focused, &.MuiAutocomplete-focused[aria-selected=\"true\"]": {
11840
+ backgroundColor: any;
11841
+ };
11842
+ };
11843
+ };
11844
+ "&.MuiAutocomplete-popperDisablePortal": {
11845
+ position: string;
11846
+ };
11847
+ "& .SCPaywallsConfigurator-product-check-icon": {
11848
+ width: number;
11849
+ height: number;
11850
+ margin: string;
11851
+ };
11852
+ "& .SCPaywallsConfigurator-product-card-icon": {
11853
+ width: number;
11854
+ height: number;
11855
+ flexShrink: number;
11856
+ borderRadius: string;
11857
+ marginRight: any;
11858
+ marginTop: string;
11859
+ padding: string;
11860
+ backgroundColor: string;
11861
+ color: string;
11862
+ };
11863
+ "& .SCPaywallsConfigurator-product-content": {
11864
+ flexGrow: number;
11865
+ '& span': {
11866
+ color: string;
11867
+ };
11868
+ };
11869
+ "& .SCPaywallsConfigurator-product-remove-icon": {
11870
+ opacity: number;
11871
+ width: number;
11872
+ height: number;
11873
+ };
11874
+ "& .SCPaywallsConfigurator-autocomplete-footer": {
11875
+ backgroundColor: "#bdbdbd";
11876
+ };
11877
+ };
11878
+ paymentProductsPopperRoot: ({ theme }: any) => {
11879
+ border: string;
11880
+ boxShadow: string;
11881
+ borderRadius: number;
11882
+ width: number;
11883
+ zIndex: any;
11884
+ fontSize: number;
11885
+ color: string;
11886
+ backgroundColor: string;
11887
+ '& .MuiPaper-root': {
11888
+ borderRadius: number;
11889
+ };
11890
+ "& .SCPaywallsConfigurator-payment-products-popper-title": {
11891
+ borderBottom: string;
11892
+ padding: string;
11893
+ fontWeight: number;
11894
+ };
11895
+ "& .SCPaywallsConfigurator-payment-products-popper-footer": {
11896
+ borderTop: string;
11897
+ padding: string;
11898
+ display: string;
11899
+ alignItems: string;
11900
+ justifyContent: string;
11901
+ '& button': {
11902
+ padding: string;
11903
+ '& .MuiIcon-root': {
11904
+ fontSize: number;
11905
+ };
11906
+ };
11907
+ };
11908
+ };
11909
+ filterInputRoot: ({ theme }: any) => {
11910
+ padding: number;
11911
+ width: string;
11912
+ borderBottom: string;
11913
+ '& input': {
11914
+ borderRadius: number;
11915
+ backgroundColor: string;
11916
+ padding: number;
11917
+ transition: any;
11918
+ border: string;
11919
+ fontSize: number;
11920
+ '&:focus': {
11921
+ boxShadow: string;
11922
+ borderColor: string;
11923
+ };
11924
+ };
11925
+ };
11926
+ };
11927
+ };
11563
11928
  };
11564
11929
  selfcommunity: {
11565
11930
  user: {