@selfcommunity/react-theme-default 0.4.2-courses.188 → 0.4.2-courses.190
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.
- package/lib/cjs/components/SCCourseDashboard.d.ts +3 -5
- package/lib/cjs/components/SCCourseDashboard.js +3 -5
- package/lib/cjs/components/SCCourseForm.d.ts +7 -0
- package/lib/cjs/components/SCCourseForm.js +8 -1
- package/lib/cjs/components/SCCourseUsersTable.d.ts +4 -2
- package/lib/cjs/components/SCCourseUsersTable.js +4 -2
- package/lib/cjs/components/SCEditCourse.d.ts +128 -109
- package/lib/cjs/components/SCEditCourse.js +133 -114
- package/lib/cjs/components/SCLessonObject.d.ts +4 -0
- package/lib/cjs/components/SCLessonObject.js +5 -1
- package/lib/cjs/index.d.ts +146 -116
- package/lib/esm/components/SCCourseDashboard.d.ts +3 -5
- package/lib/esm/components/SCCourseDashboard.js +3 -5
- package/lib/esm/components/SCCourseForm.d.ts +7 -0
- package/lib/esm/components/SCCourseForm.js +8 -1
- package/lib/esm/components/SCCourseUsersTable.d.ts +4 -2
- package/lib/esm/components/SCCourseUsersTable.js +4 -2
- package/lib/esm/components/SCEditCourse.d.ts +128 -109
- package/lib/esm/components/SCEditCourse.js +133 -114
- package/lib/esm/components/SCLessonObject.d.ts +4 -0
- package/lib/esm/components/SCLessonObject.js +5 -1
- package/lib/esm/index.d.ts +146 -116
- package/lib/umd/react-theme-default.js +1 -1
- package/package.json +2 -2
package/lib/esm/index.d.ts
CHANGED
|
@@ -2163,13 +2163,12 @@ declare const theme: {
|
|
|
2163
2163
|
};
|
|
2164
2164
|
'& .SCCourseDashboard-comments-container': {
|
|
2165
2165
|
[x: number]: {
|
|
2166
|
-
|
|
2167
|
-
paddingRight: string;
|
|
2166
|
+
padding: any;
|
|
2168
2167
|
};
|
|
2169
2168
|
backgroundColor: any;
|
|
2170
2169
|
border: string;
|
|
2171
2170
|
borderRadius: string;
|
|
2172
|
-
padding:
|
|
2171
|
+
padding: any;
|
|
2173
2172
|
'& .SCCourseDashboard-outer-wrapper': {
|
|
2174
2173
|
marginTop: string;
|
|
2175
2174
|
marginBottom: string;
|
|
@@ -2215,12 +2214,11 @@ declare const theme: {
|
|
|
2215
2214
|
alignItems: string;
|
|
2216
2215
|
justifyContent: string;
|
|
2217
2216
|
backgroundColor: any;
|
|
2217
|
+
padding: string;
|
|
2218
2218
|
'& .SCCourseDashboard-user': {
|
|
2219
2219
|
flexDirection: string;
|
|
2220
2220
|
alignItems: string;
|
|
2221
2221
|
gap: string;
|
|
2222
|
-
marginTop: string;
|
|
2223
|
-
marginBottom: string;
|
|
2224
2222
|
'& .SCCourseDashboard-avatar': {
|
|
2225
2223
|
width: string;
|
|
2226
2224
|
height: string;
|
|
@@ -2589,12 +2587,16 @@ declare const theme: {
|
|
|
2589
2587
|
padding: any;
|
|
2590
2588
|
};
|
|
2591
2589
|
'& .SCCourseForm-form': {
|
|
2590
|
+
[x: number]: {
|
|
2591
|
+
padding: any;
|
|
2592
|
+
};
|
|
2592
2593
|
border: string;
|
|
2593
2594
|
borderBottom: string;
|
|
2594
2595
|
borderRadius: string;
|
|
2595
2596
|
borderBottomLeftRadius: string;
|
|
2596
2597
|
borderBottomRightRadius: string;
|
|
2597
2598
|
backgroundColor: any;
|
|
2599
|
+
padding: any;
|
|
2598
2600
|
'& .SCCourseForm-name': {
|
|
2599
2601
|
marginTop: any;
|
|
2600
2602
|
};
|
|
@@ -2695,6 +2697,9 @@ declare const theme: {
|
|
|
2695
2697
|
color: any;
|
|
2696
2698
|
};
|
|
2697
2699
|
'& .SCCourseForm-actions': {
|
|
2700
|
+
[x: number]: {
|
|
2701
|
+
padding: any;
|
|
2702
|
+
};
|
|
2698
2703
|
border: string;
|
|
2699
2704
|
borderTop: string;
|
|
2700
2705
|
borderRadius: string;
|
|
@@ -2859,10 +2864,12 @@ declare const theme: {
|
|
|
2859
2864
|
root: ({ theme }: {
|
|
2860
2865
|
theme: any;
|
|
2861
2866
|
}) => {
|
|
2867
|
+
[x: number]: {
|
|
2868
|
+
padding: any;
|
|
2869
|
+
};
|
|
2862
2870
|
border: string;
|
|
2863
|
-
borderTop: string;
|
|
2864
2871
|
borderRadius: string;
|
|
2865
|
-
|
|
2872
|
+
padding: any;
|
|
2866
2873
|
backgroundColor: any;
|
|
2867
2874
|
'& .SCCourseUsersTable-search': {
|
|
2868
2875
|
'& > .MuiInputBase-root': {
|
|
@@ -3446,112 +3453,121 @@ declare const theme: {
|
|
|
3446
3453
|
'& .SCEditCourse-empty-status-button': {
|
|
3447
3454
|
marginTop: string;
|
|
3448
3455
|
};
|
|
3449
|
-
'& .SCEditCourse-lessons-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
marginTop: string;
|
|
3454
|
-
padding: any;
|
|
3456
|
+
'& .SCEditCourse-lessons-inner-wrapper': {
|
|
3457
|
+
[x: number]: {
|
|
3458
|
+
padding: any;
|
|
3459
|
+
};
|
|
3455
3460
|
border: string;
|
|
3456
|
-
|
|
3457
|
-
borderTopLeftRadius: string;
|
|
3458
|
-
borderTopRightRadius: string;
|
|
3461
|
+
borderRadius: string;
|
|
3459
3462
|
backgroundColor: any;
|
|
3460
|
-
|
|
3463
|
+
marginTop: string;
|
|
3464
|
+
padding: any;
|
|
3465
|
+
'& .SCEditCourse-lessons-sections-wrapper': {
|
|
3461
3466
|
flexDirection: string;
|
|
3462
3467
|
alignItems: string;
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
border: string;
|
|
3481
|
-
borderBottomLeftRadius: string;
|
|
3482
|
-
borderBottomRightRadius: string;
|
|
3483
|
-
backgroundColor: any;
|
|
3484
|
-
'& .SCEditCourse-table': {
|
|
3485
|
-
'& .SCEditCourse-cell-width': {
|
|
3486
|
-
width: string;
|
|
3487
|
-
};
|
|
3488
|
-
'& .SCEditCourse-cell-align-center': {
|
|
3489
|
-
textAlign: string;
|
|
3490
|
-
};
|
|
3491
|
-
'& .SCEditCourse-cell-align-right': {
|
|
3492
|
-
textAlign: string;
|
|
3493
|
-
};
|
|
3494
|
-
'& .SCEditCourse-cell-padding': {
|
|
3495
|
-
paddingRight: number;
|
|
3496
|
-
};
|
|
3497
|
-
'& .MuiTableCell-root': {
|
|
3498
|
-
textWrapMode: string;
|
|
3468
|
+
justifyContent: string;
|
|
3469
|
+
padding: any;
|
|
3470
|
+
border: string;
|
|
3471
|
+
borderBottom: string;
|
|
3472
|
+
borderTopLeftRadius: string;
|
|
3473
|
+
borderTopRightRadius: string;
|
|
3474
|
+
backgroundColor: any;
|
|
3475
|
+
'& .SCEditCourse-lessons-sections': {
|
|
3476
|
+
flexDirection: string;
|
|
3477
|
+
alignItems: string;
|
|
3478
|
+
gap: string;
|
|
3479
|
+
'& .SCEditCourse-circle': {
|
|
3480
|
+
width: string;
|
|
3481
|
+
height: string;
|
|
3482
|
+
borderRadius: number;
|
|
3483
|
+
backgroundColor: any;
|
|
3484
|
+
};
|
|
3499
3485
|
};
|
|
3500
|
-
'& .SCEditCourse-
|
|
3501
|
-
|
|
3486
|
+
'& .SCEditCourse-section-button': {
|
|
3487
|
+
alignItems: string;
|
|
3488
|
+
'& .SCEditCourse-section-button-typography': {
|
|
3502
3489
|
textTransform: string;
|
|
3503
3490
|
};
|
|
3504
3491
|
};
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3492
|
+
};
|
|
3493
|
+
'& .SCEditCourse-table-container': {
|
|
3494
|
+
width: string;
|
|
3495
|
+
border: string;
|
|
3496
|
+
borderBottomLeftRadius: string;
|
|
3497
|
+
borderBottomRightRadius: string;
|
|
3498
|
+
backgroundColor: any;
|
|
3499
|
+
'& .SCEditCourse-table': {
|
|
3500
|
+
'& .SCEditCourse-cell-width': {
|
|
3501
|
+
width: string;
|
|
3510
3502
|
};
|
|
3511
|
-
'& .SCEditCourse-
|
|
3512
|
-
|
|
3503
|
+
'& .SCEditCourse-cell-align-center': {
|
|
3504
|
+
textAlign: string;
|
|
3513
3505
|
};
|
|
3514
|
-
'& .SCEditCourse-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
padding: string;
|
|
3506
|
+
'& .SCEditCourse-cell-align-right': {
|
|
3507
|
+
textAlign: string;
|
|
3508
|
+
};
|
|
3509
|
+
'& .SCEditCourse-cell-padding': {
|
|
3510
|
+
paddingRight: number;
|
|
3511
|
+
};
|
|
3512
|
+
'& .MuiTableCell-root': {
|
|
3513
|
+
textWrapMode: string;
|
|
3514
|
+
};
|
|
3515
|
+
'& .SCEditCourse-table-header': {
|
|
3516
|
+
'& .SCEditCourse-table-header-typography': {
|
|
3517
|
+
textTransform: string;
|
|
3527
3518
|
};
|
|
3528
3519
|
};
|
|
3529
|
-
'& .SCEditCourse-
|
|
3530
|
-
|
|
3520
|
+
'& .SCEditCourse-table-body': {
|
|
3521
|
+
'& .SCEditCourse-table-body-icon-wrapper': {
|
|
3522
|
+
flexDirection: string;
|
|
3523
|
+
alignItems: string;
|
|
3531
3524
|
gap: string;
|
|
3532
3525
|
};
|
|
3533
|
-
|
|
3534
|
-
flexDirection: string;
|
|
3535
|
-
alignItems: string;
|
|
3536
|
-
gap: string;
|
|
3537
|
-
'& .SCEditCourse-change-lesson-status-published-wrapper': {
|
|
3538
|
-
color: any;
|
|
3526
|
+
'& .SCEditCourse-table-body-accordion': {
|
|
3539
3527
|
backgroundColor: any;
|
|
3540
|
-
|
|
3528
|
+
};
|
|
3529
|
+
'& .SCEditCourse-edit-mode-wrapper': {
|
|
3530
|
+
flexDirection: string;
|
|
3531
|
+
alignItems: string;
|
|
3532
|
+
gap: string;
|
|
3533
|
+
'& .SCEditCourse-edit-mode-save-button': {
|
|
3534
|
+
minWidth: string;
|
|
3535
|
+
borderRadius: string;
|
|
3536
|
+
padding: string;
|
|
3537
|
+
};
|
|
3538
|
+
'& .SCEditCourse-edit-mode-close-button': {
|
|
3539
|
+
border: string;
|
|
3540
|
+
borderRadius: string;
|
|
3541
|
+
padding: string;
|
|
3542
|
+
};
|
|
3543
|
+
};
|
|
3544
|
+
'& .SCEditCourse-actions-wrapper': {
|
|
3545
|
+
[x: number]: {
|
|
3546
|
+
gap: string;
|
|
3547
|
+
};
|
|
3548
|
+
display: string;
|
|
3549
|
+
flexDirection: string;
|
|
3550
|
+
alignItems: string;
|
|
3551
|
+
gap: string;
|
|
3552
|
+
'& .SCEditCourse-change-lesson-status-published-wrapper': {
|
|
3541
3553
|
color: any;
|
|
3554
|
+
backgroundColor: any;
|
|
3555
|
+
'& .MuiIcon-root': {
|
|
3556
|
+
color: any;
|
|
3557
|
+
};
|
|
3558
|
+
};
|
|
3559
|
+
'& .SCEditCourse-change-lesson-status-icon-draft': {
|
|
3560
|
+
width: string;
|
|
3561
|
+
height: string;
|
|
3562
|
+
borderRadius: number;
|
|
3563
|
+
backgroundColor: any;
|
|
3542
3564
|
};
|
|
3543
3565
|
};
|
|
3544
|
-
'& .SCEditCourse-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
borderRadius: number;
|
|
3548
|
-
backgroundColor: any;
|
|
3566
|
+
'& .SCEditCourse-table-body-collapse-wrapper': {
|
|
3567
|
+
padding: number;
|
|
3568
|
+
border: number;
|
|
3549
3569
|
};
|
|
3550
3570
|
};
|
|
3551
|
-
'& .SCEditCourse-table-body-collapse-wrapper': {
|
|
3552
|
-
padding: number;
|
|
3553
|
-
border: number;
|
|
3554
|
-
};
|
|
3555
3571
|
};
|
|
3556
3572
|
};
|
|
3557
3573
|
};
|
|
@@ -3564,9 +3580,12 @@ declare const theme: {
|
|
|
3564
3580
|
marginBottom: any;
|
|
3565
3581
|
};
|
|
3566
3582
|
'& .SCEditCourse-options-container': {
|
|
3583
|
+
[x: number]: {
|
|
3584
|
+
padding: any;
|
|
3585
|
+
};
|
|
3567
3586
|
border: string;
|
|
3568
3587
|
borderRadius: string;
|
|
3569
|
-
padding:
|
|
3588
|
+
padding: any;
|
|
3570
3589
|
backgroundColor: any;
|
|
3571
3590
|
'& .SCEditCourse-options-wrapper': {
|
|
3572
3591
|
gap: any;
|
|
@@ -3580,7 +3599,7 @@ declare const theme: {
|
|
|
3580
3599
|
'& .SCEditCourse-options-button-wrapper': {
|
|
3581
3600
|
alignItems: string;
|
|
3582
3601
|
maxWidth: string;
|
|
3583
|
-
margin:
|
|
3602
|
+
margin: any;
|
|
3584
3603
|
};
|
|
3585
3604
|
};
|
|
3586
3605
|
};
|
|
@@ -3622,32 +3641,39 @@ declare const theme: {
|
|
|
3622
3641
|
gap: any;
|
|
3623
3642
|
};
|
|
3624
3643
|
};
|
|
3625
|
-
'& .SCEditCourse-lessons-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
marginTop: string;
|
|
3630
|
-
padding: any;
|
|
3644
|
+
'& .SCEditCourse-lessons-inner-wrapper': {
|
|
3645
|
+
[x: number]: {
|
|
3646
|
+
padding: any;
|
|
3647
|
+
};
|
|
3631
3648
|
border: string;
|
|
3632
3649
|
borderRadius: string;
|
|
3633
3650
|
backgroundColor: any;
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
border: string;
|
|
3638
|
-
borderBottomLeftRadius: string;
|
|
3639
|
-
borderBottomRightRadius: string;
|
|
3640
|
-
backgroundColor: any;
|
|
3641
|
-
'& .SCEditCourse-margin': {
|
|
3642
|
-
margin: string;
|
|
3643
|
-
};
|
|
3644
|
-
'& .SCEditCourse-margin-left': {
|
|
3645
|
-
marginLeft: string;
|
|
3646
|
-
};
|
|
3647
|
-
'& .SCEditCourse-actions-wrapper': {
|
|
3651
|
+
marginTop: string;
|
|
3652
|
+
padding: any;
|
|
3653
|
+
'& .SCEditCourse-lessons-sections-wrapper': {
|
|
3648
3654
|
flexDirection: string;
|
|
3655
|
+
alignItems: string;
|
|
3649
3656
|
justifyContent: string;
|
|
3650
|
-
|
|
3657
|
+
padding: any;
|
|
3658
|
+
border: string;
|
|
3659
|
+
borderRadius: string;
|
|
3660
|
+
};
|
|
3661
|
+
'& .SCEditCourse-table-container': {
|
|
3662
|
+
width: string;
|
|
3663
|
+
border: string;
|
|
3664
|
+
borderBottomLeftRadius: string;
|
|
3665
|
+
borderBottomRightRadius: string;
|
|
3666
|
+
'& .SCEditCourse-margin': {
|
|
3667
|
+
margin: string;
|
|
3668
|
+
};
|
|
3669
|
+
'& .SCEditCourse-margin-left': {
|
|
3670
|
+
marginLeft: string;
|
|
3671
|
+
};
|
|
3672
|
+
'& .SCEditCourse-actions-wrapper': {
|
|
3673
|
+
flexDirection: string;
|
|
3674
|
+
justifyContent: string;
|
|
3675
|
+
gap: string;
|
|
3676
|
+
};
|
|
3651
3677
|
};
|
|
3652
3678
|
};
|
|
3653
3679
|
'& .SCEditCourse-users-status-wrapper': {
|
|
@@ -5778,8 +5804,12 @@ declare const theme: {
|
|
|
5778
5804
|
};
|
|
5779
5805
|
};
|
|
5780
5806
|
'& .SCLessonObject-medias-section': {
|
|
5807
|
+
'& .SCLessonObject-files': {
|
|
5808
|
+
display: string;
|
|
5809
|
+
};
|
|
5781
5810
|
'& .SCLessonFilePreview-root': {
|
|
5782
5811
|
marginBottom: any;
|
|
5812
|
+
maxWidth: string;
|
|
5783
5813
|
};
|
|
5784
5814
|
'& .SCMediaLink-display-root': {
|
|
5785
5815
|
marginBottom: any;
|