@semi-bot/semi-theme-fn-music 1.0.26 → 1.0.28
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/package.json +1 -1
- package/raw.json +29 -2
- package/scss/global.scss +1 -0
- package/scss/local.scss +7 -0
- package/semi.css +26 -25
- package/semi.min.css +1 -1
package/package.json
CHANGED
package/raw.json
CHANGED
|
@@ -561,6 +561,7 @@
|
|
|
561
561
|
"tertiary/--semi-color-tertiary-active": "rgba(0,0,0,0.16)",
|
|
562
562
|
"secondary/--semi-color-secondary-hover": "rgba(var(--semi-light-blue-6), 1)",
|
|
563
563
|
"secondary/--semi-color-secondary-active": "rgba(var(--semi-light-blue-7), 1)",
|
|
564
|
+
"tertiary/--semi-color-tertiary-disabled": "rgba(0,0,0,0.04)",
|
|
564
565
|
"info-light/--semi-color-info-light-hover": "rgba(var(--semi-blue-1), 1)",
|
|
565
566
|
"info-light/--semi-color-info-light-active": "rgba(var(--semi-blue-2), 1)",
|
|
566
567
|
"secondary/--semi-color-secondary-disabled": "rgba(var(--semi-light-blue-2), 1)",
|
|
@@ -709,7 +710,33 @@
|
|
|
709
710
|
"easeInOut": "cubic-bezier(0.4, 0, 0.2, 1)"
|
|
710
711
|
}
|
|
711
712
|
},
|
|
712
|
-
"components": {
|
|
713
|
+
"components": {
|
|
714
|
+
"input": {
|
|
715
|
+
"radius": {
|
|
716
|
+
"$radius-input_wrapper": "10px"
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
"modal": {
|
|
720
|
+
"color": {
|
|
721
|
+
"$color-modal-bg": "var(--semi-color-modal-bg)",
|
|
722
|
+
"$color-modal_mask-bg": "var(--semi-color-pop-mask)"
|
|
723
|
+
}
|
|
724
|
+
},
|
|
725
|
+
"button": {
|
|
726
|
+
"color": {
|
|
727
|
+
"$color-button_light-bg-default": "var(--semi-color-fill-0)"
|
|
728
|
+
},
|
|
729
|
+
"height": {
|
|
730
|
+
"$height-button_large": "44px"
|
|
731
|
+
},
|
|
732
|
+
"radius": {
|
|
733
|
+
"$radius-button": "8px"
|
|
734
|
+
},
|
|
735
|
+
"spacing": {
|
|
736
|
+
"$spacing-button_iconOnly_content-marginLeft": "4px"
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
},
|
|
713
740
|
"typography": {
|
|
714
741
|
"Header": {
|
|
715
742
|
"header-1": {
|
|
@@ -788,7 +815,7 @@
|
|
|
788
815
|
"wordSpace": 0,
|
|
789
816
|
"fontFamily": "Helvetica, 'Helvetica Neue','PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif,'Inter'",
|
|
790
817
|
"letterSpace": 0,
|
|
791
|
-
"baseFontSize": "
|
|
818
|
+
"baseFontSize": "13px",
|
|
792
819
|
"lineHeightMultiplier": 1.4
|
|
793
820
|
},
|
|
794
821
|
"globalScssVariables": {}
|
package/scss/global.scss
CHANGED
|
@@ -92,6 +92,7 @@ body, body[theme-mode="dark"] .semi-always-light, :host, :host .semi-always-ligh
|
|
|
92
92
|
--semi-color-tertiary-active: rgba(0,0,0,0.16);
|
|
93
93
|
--semi-color-secondary-hover: rgba(var(--semi-light-blue-6), 1);
|
|
94
94
|
--semi-color-secondary-active: rgba(var(--semi-light-blue-7), 1);
|
|
95
|
+
--semi-color-tertiary-disabled: rgba(0,0,0,0.04);
|
|
95
96
|
--semi-color-info-light-hover: rgba(var(--semi-blue-1), 1);
|
|
96
97
|
--semi-color-info-light-active: rgba(var(--semi-blue-2), 1);
|
|
97
98
|
--semi-color-secondary-disabled: rgba(var(--semi-light-blue-2), 1);
|
package/scss/local.scss
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
$radius-input_wrapper: 10px;
|
|
2
|
+
$color-modal-bg: var(--semi-color-modal-bg);
|
|
3
|
+
$color-modal_mask-bg: var(--semi-color-pop-mask);
|
|
4
|
+
$color-button_light-bg-default: var(--semi-color-fill-0);
|
|
5
|
+
$height-button_large: 44px;
|
|
6
|
+
$radius-button: 8px;
|
|
7
|
+
$spacing-button_iconOnly_content-marginLeft: 4px;
|
package/semi.css
CHANGED
|
@@ -442,6 +442,7 @@ body, body[theme-mode=dark] .semi-always-light, :host, :host .semi-always-light
|
|
|
442
442
|
--semi-color-tertiary-active: rgba(0,0,0,0.16);
|
|
443
443
|
--semi-color-secondary-hover: rgba(var(--semi-light-blue-6), 1);
|
|
444
444
|
--semi-color-secondary-active: rgba(var(--semi-light-blue-7), 1);
|
|
445
|
+
--semi-color-tertiary-disabled: rgba(0,0,0,0.04);
|
|
445
446
|
--semi-color-info-light-hover: rgba(var(--semi-blue-1), 1);
|
|
446
447
|
--semi-color-info-light-active: rgba(var(--semi-blue-2), 1);
|
|
447
448
|
--semi-color-secondary-disabled: rgba(var(--semi-light-blue-2), 1);
|
|
@@ -3345,7 +3346,7 @@ body, :host {
|
|
|
3345
3346
|
cursor: pointer;
|
|
3346
3347
|
user-select: none;
|
|
3347
3348
|
border: 0 transparent solid;
|
|
3348
|
-
border-radius:
|
|
3349
|
+
border-radius: 8px;
|
|
3349
3350
|
padding-left: 12px;
|
|
3350
3351
|
padding-right: 12px;
|
|
3351
3352
|
padding-top: 6px;
|
|
@@ -3614,7 +3615,7 @@ body, :host {
|
|
|
3614
3615
|
font-weight: 600;
|
|
3615
3616
|
}
|
|
3616
3617
|
.semi-button-size-large {
|
|
3617
|
-
height:
|
|
3618
|
+
height: 44px;
|
|
3618
3619
|
padding-top: 10px;
|
|
3619
3620
|
padding-bottom: 10px;
|
|
3620
3621
|
padding-left: 16px;
|
|
@@ -3814,7 +3815,7 @@ body, :host {
|
|
|
3814
3815
|
}
|
|
3815
3816
|
.semi-rtl .semi-button-content-right,
|
|
3816
3817
|
.semi-portal-rtl .semi-button-content-right {
|
|
3817
|
-
margin-right:
|
|
3818
|
+
margin-right: 4px;
|
|
3818
3819
|
margin-left: 0;
|
|
3819
3820
|
}
|
|
3820
3821
|
|
|
@@ -14608,7 +14609,7 @@ img[src=""], img:not([src]) {
|
|
|
14608
14609
|
line-height: 20px;
|
|
14609
14610
|
background-color: var(--semi-color-fill-0);
|
|
14610
14611
|
border: 1px transparent solid;
|
|
14611
|
-
border-radius:
|
|
14612
|
+
border-radius: 10px;
|
|
14612
14613
|
width: 100%;
|
|
14613
14614
|
outline: none;
|
|
14614
14615
|
cursor: text;
|
|
@@ -14731,7 +14732,7 @@ img[src=""], img:not([src]) {
|
|
|
14731
14732
|
}
|
|
14732
14733
|
.semi-input-wrapper .semi-input-clearbtn:focus-visible,
|
|
14733
14734
|
.semi-input-wrapper .semi-input-modebtn:focus-visible {
|
|
14734
|
-
border-radius:
|
|
14735
|
+
border-radius: 10px;
|
|
14735
14736
|
outline: 2px solid var(--semi-color-primary-light-active);
|
|
14736
14737
|
outline-offset: -1px;
|
|
14737
14738
|
}
|
|
@@ -14744,14 +14745,14 @@ img[src=""], img:not([src]) {
|
|
|
14744
14745
|
justify-content: center;
|
|
14745
14746
|
}
|
|
14746
14747
|
.semi-input-wrapper.semi-input-wrapper__with-append-only .semi-input {
|
|
14747
|
-
border-radius: 0
|
|
14748
|
+
border-radius: 0 10px 10px 0;
|
|
14748
14749
|
}
|
|
14749
14750
|
.semi-input-wrapper.semi-input-wrapper__with-append-only .semi-input:not(:last-child) {
|
|
14750
14751
|
border-right-style: none;
|
|
14751
14752
|
border-radius: 0;
|
|
14752
14753
|
}
|
|
14753
14754
|
.semi-input-wrapper.semi-input-wrapper__with-prepend-only .semi-input {
|
|
14754
|
-
border-radius:
|
|
14755
|
+
border-radius: 10px 0 0 10px;
|
|
14755
14756
|
}
|
|
14756
14757
|
.semi-input-wrapper.semi-input-wrapper__with-prepend-only .semi-input:not(:last-child) {
|
|
14757
14758
|
border-right-style: none;
|
|
@@ -14794,7 +14795,7 @@ img[src=""], img:not([src]) {
|
|
|
14794
14795
|
}
|
|
14795
14796
|
.semi-input-wrapper.semi-input-wrapper__with-prepend .semi-input:focus + .semi-input-clearbtn, .semi-input-wrapper.semi-input-wrapper__with-append .semi-input:focus + .semi-input-clearbtn {
|
|
14796
14797
|
border: 1px var(--semi-color-focus-border) solid;
|
|
14797
|
-
border-radius: 0
|
|
14798
|
+
border-radius: 0 10px 10px 0;
|
|
14798
14799
|
border-left-style: none;
|
|
14799
14800
|
}
|
|
14800
14801
|
.semi-input-wrapper.semi-input-wrapper__with-prepend .semi-input:focus + .semi-input-clearbtn:not(:last-child), .semi-input-wrapper.semi-input-wrapper__with-append .semi-input:focus + .semi-input-clearbtn:not(:last-child) {
|
|
@@ -14802,7 +14803,7 @@ img[src=""], img:not([src]) {
|
|
|
14802
14803
|
}
|
|
14803
14804
|
.semi-input-wrapper.semi-input-wrapper__with-prepend .semi-input:focus ~ .semi-input-modebtn, .semi-input-wrapper.semi-input-wrapper__with-append .semi-input:focus ~ .semi-input-modebtn {
|
|
14804
14805
|
border: 1px var(--semi-color-focus-border) solid;
|
|
14805
|
-
border-radius: 0
|
|
14806
|
+
border-radius: 0 10px 10px 0;
|
|
14806
14807
|
border-left-style: none;
|
|
14807
14808
|
}
|
|
14808
14809
|
.semi-input-wrapper.semi-input-wrapper__with-prepend .semi-input:focus ~ .semi-input-modebtn:not(:last-child), .semi-input-wrapper.semi-input-wrapper__with-append .semi-input:focus ~ .semi-input-modebtn:not(:last-child) {
|
|
@@ -14818,7 +14819,7 @@ img[src=""], img:not([src]) {
|
|
|
14818
14819
|
background-color: var(--semi-color-fill-0);
|
|
14819
14820
|
}
|
|
14820
14821
|
.semi-input-wrapper.semi-input-wrapper__with-prepend .semi-input-clearbtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-prepend .semi-input-modebtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-prepend .semi-input-clearbtn:hover:last-child, .semi-input-wrapper.semi-input-wrapper__with-prepend .semi-input-modebtn:hover:last-child, .semi-input-wrapper.semi-input-wrapper__with-append .semi-input-clearbtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-append .semi-input-modebtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-append .semi-input-clearbtn:hover:last-child, .semi-input-wrapper.semi-input-wrapper__with-append .semi-input-modebtn:hover:last-child {
|
|
14821
|
-
border-radius: 0
|
|
14822
|
+
border-radius: 0 10px 10px 0;
|
|
14822
14823
|
}
|
|
14823
14824
|
.semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-error, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-error {
|
|
14824
14825
|
border-color: transparent;
|
|
@@ -14853,7 +14854,7 @@ img[src=""], img:not([src]) {
|
|
|
14853
14854
|
background-color: var(--semi-color-danger-light-default);
|
|
14854
14855
|
}
|
|
14855
14856
|
.semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-error .semi-input-clearbtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-error .semi-input-modebtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-error .semi-input-clearbtn:hover:last-child, .semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-error .semi-input-modebtn:hover:last-child, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-error .semi-input-clearbtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-error .semi-input-modebtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-error .semi-input-clearbtn:hover:last-child, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-error .semi-input-modebtn:hover:last-child {
|
|
14856
|
-
border-radius: 0
|
|
14857
|
+
border-radius: 0 10px 10px 0;
|
|
14857
14858
|
}
|
|
14858
14859
|
.semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-warning, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-warning {
|
|
14859
14860
|
border-color: transparent;
|
|
@@ -14888,7 +14889,7 @@ img[src=""], img:not([src]) {
|
|
|
14888
14889
|
background-color: var(--semi-color-warning-light-default);
|
|
14889
14890
|
}
|
|
14890
14891
|
.semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-warning .semi-input-clearbtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-warning .semi-input-modebtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-warning .semi-input-clearbtn:hover:last-child, .semi-input-wrapper.semi-input-wrapper__with-prepend.semi-input-wrapper-warning .semi-input-modebtn:hover:last-child, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-warning .semi-input-clearbtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-warning .semi-input-modebtn:last-child, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-warning .semi-input-clearbtn:hover:last-child, .semi-input-wrapper.semi-input-wrapper__with-append.semi-input-wrapper-warning .semi-input-modebtn:hover:last-child {
|
|
14891
|
-
border-radius: 0
|
|
14892
|
+
border-radius: 0 10px 10px 0;
|
|
14892
14893
|
}
|
|
14893
14894
|
.semi-input-wrapper-disabled {
|
|
14894
14895
|
cursor: not-allowed;
|
|
@@ -15012,11 +15013,11 @@ img[src=""], img:not([src]) {
|
|
|
15012
15013
|
padding: 0 12px;
|
|
15013
15014
|
}
|
|
15014
15015
|
.semi-input-append {
|
|
15015
|
-
border-radius: 0
|
|
15016
|
+
border-radius: 0 10px 10px 0;
|
|
15016
15017
|
border-left: 1px transparent solid;
|
|
15017
15018
|
}
|
|
15018
15019
|
.semi-input-prepend {
|
|
15019
|
-
border-radius:
|
|
15020
|
+
border-radius: 10px 0 0 10px;
|
|
15020
15021
|
border-right: 1px transparent solid;
|
|
15021
15022
|
}
|
|
15022
15023
|
.semi-input-disabled::placeholder {
|
|
@@ -15038,13 +15039,13 @@ img[src=""], img:not([src]) {
|
|
|
15038
15039
|
.semi-input-group .semi-tagInput:first-child,
|
|
15039
15040
|
.semi-input-group .semi-cascader:first-child,
|
|
15040
15041
|
.semi-input-group .semi-tree-select:first-child, .semi-input-group > .semi-input-wrapper:first-child {
|
|
15041
|
-
border-radius:
|
|
15042
|
+
border-radius: 10px 0 0 10px;
|
|
15042
15043
|
}
|
|
15043
15044
|
.semi-input-group .semi-select:last-child,
|
|
15044
15045
|
.semi-input-group .semi-tagInput:last-child,
|
|
15045
15046
|
.semi-input-group .semi-cascader:last-child,
|
|
15046
15047
|
.semi-input-group .semi-tree-select:last-child, .semi-input-group > .semi-input-wrapper:last-child {
|
|
15047
|
-
border-radius: 0
|
|
15048
|
+
border-radius: 0 10px 10px 0;
|
|
15048
15049
|
}
|
|
15049
15050
|
.semi-input-group .semi-select:not(:last-child),
|
|
15050
15051
|
.semi-input-group .semi-tagInput:not(:last-child),
|
|
@@ -15085,7 +15086,7 @@ img[src=""], img:not([src]) {
|
|
|
15085
15086
|
.semi-input-group .semi-timepicker:first-child .semi-datepicker-range-input,
|
|
15086
15087
|
.semi-input-group .semi-autocomplete:first-child .semi-input-wrapper,
|
|
15087
15088
|
.semi-input-group .semi-autocomplete:first-child .semi-datepicker-range-input {
|
|
15088
|
-
border-radius:
|
|
15089
|
+
border-radius: 10px 0 0 10px;
|
|
15089
15090
|
}
|
|
15090
15091
|
.semi-input-group .semi-input-number:last-child .semi-input-wrapper,
|
|
15091
15092
|
.semi-input-group .semi-input-number:last-child .semi-datepicker-range-input,
|
|
@@ -15095,7 +15096,7 @@ img[src=""], img:not([src]) {
|
|
|
15095
15096
|
.semi-input-group .semi-timepicker:last-child .semi-datepicker-range-input,
|
|
15096
15097
|
.semi-input-group .semi-autocomplete:last-child .semi-input-wrapper,
|
|
15097
15098
|
.semi-input-group .semi-autocomplete:last-child .semi-datepicker-range-input {
|
|
15098
|
-
border-radius: 0
|
|
15099
|
+
border-radius: 0 10px 10px 0;
|
|
15099
15100
|
}
|
|
15100
15101
|
.semi-input-group .semi-input-number:not(:last-child),
|
|
15101
15102
|
.semi-input-group .semi-datepicker:not(:last-child),
|
|
@@ -15723,7 +15724,7 @@ img[src=""], img:not([src]) {
|
|
|
15723
15724
|
right: 0;
|
|
15724
15725
|
left: 0;
|
|
15725
15726
|
bottom: 0;
|
|
15726
|
-
background-color: var(--semi-color-
|
|
15727
|
+
background-color: var(--semi-color-pop-mask);
|
|
15727
15728
|
backdrop-filter: none;
|
|
15728
15729
|
height: 100%;
|
|
15729
15730
|
z-index: 1000;
|
|
@@ -15765,7 +15766,7 @@ img[src=""], img:not([src]) {
|
|
|
15765
15766
|
width: 100%;
|
|
15766
15767
|
box-sizing: border-box;
|
|
15767
15768
|
flex-direction: column;
|
|
15768
|
-
background-color: var(--semi-color-bg
|
|
15769
|
+
background-color: var(--semi-color-modal-bg);
|
|
15769
15770
|
backdrop-filter: none;
|
|
15770
15771
|
border: 1px solid var(--semi-color-border);
|
|
15771
15772
|
border-radius: var(--semi-border-radius-large);
|
|
@@ -26477,7 +26478,7 @@ p.semi-typography-extended,
|
|
|
26477
26478
|
align-items: center;
|
|
26478
26479
|
}
|
|
26479
26480
|
.semi-button-content-right {
|
|
26480
|
-
margin-left:
|
|
26481
|
+
margin-left: 4px;
|
|
26481
26482
|
display: flex;
|
|
26482
26483
|
align-items: center;
|
|
26483
26484
|
}
|
|
@@ -26583,7 +26584,7 @@ p.semi-typography-extended,
|
|
|
26583
26584
|
}
|
|
26584
26585
|
.semi-rtl .semi-button-content-right,
|
|
26585
26586
|
.semi-portal-rtl .semi-button-content-right {
|
|
26586
|
-
margin-right:
|
|
26587
|
+
margin-right: 4px;
|
|
26587
26588
|
margin-left: 0;
|
|
26588
26589
|
}
|
|
26589
26590
|
|
|
@@ -26593,7 +26594,7 @@ p.semi-typography-extended,
|
|
|
26593
26594
|
position: relative;
|
|
26594
26595
|
width: 100%;
|
|
26595
26596
|
border: 1px transparent solid;
|
|
26596
|
-
border-radius:
|
|
26597
|
+
border-radius: 10px;
|
|
26597
26598
|
vertical-align: bottom;
|
|
26598
26599
|
background-color: var(--semi-color-fill-0);
|
|
26599
26600
|
transition: background-color var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none), border var(--semi-transition_duration-none) var(--semi-transition_function-easeIn) var(--semi-transition_delay-none);
|
|
@@ -26791,7 +26792,7 @@ p.semi-typography-extended,
|
|
|
26791
26792
|
text-align: right;
|
|
26792
26793
|
user-select: none;
|
|
26793
26794
|
min-width: 36px;
|
|
26794
|
-
border-radius:
|
|
26795
|
+
border-radius: 10px 0 0 10px;
|
|
26795
26796
|
overflow-y: auto;
|
|
26796
26797
|
overflow-x: hidden;
|
|
26797
26798
|
scrollbar-width: none;
|
|
@@ -26812,7 +26813,7 @@ p.semi-typography-extended,
|
|
|
26812
26813
|
box-sizing: border-box;
|
|
26813
26814
|
}
|
|
26814
26815
|
.semi-input-textarea-wrapper-withLineNumber .semi-input-textarea {
|
|
26815
|
-
border-radius: 0
|
|
26816
|
+
border-radius: 0 10px 10px 0;
|
|
26816
26817
|
line-height: 1.5;
|
|
26817
26818
|
flex: 1;
|
|
26818
26819
|
}
|