@semi-bot/semi-theme-laiye 1.0.4 → 1.0.5
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/README.md +2 -2
- package/package.json +1 -1
- package/raw.json +15 -1
- package/scss/local.scss +8 -0
- package/semi.css +555 -20
- package/semi.min.css +1 -1
package/README.md
CHANGED
|
@@ -5,11 +5,11 @@ Operator: Alim
|
|
|
5
5
|
|
|
6
6
|
## Compatibility
|
|
7
7
|
|
|
8
|
-
Compatible with Semi Foundation Version 2.
|
|
8
|
+
Compatible with Semi Foundation Version 2.92.2 or newer.
|
|
9
9
|
|
|
10
10
|
## Version Release Note
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
修改上传组件图标颜色,button组圆角、日期选择器圆角
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
## Manual
|
package/package.json
CHANGED
package/raw.json
CHANGED
|
@@ -731,7 +731,12 @@
|
|
|
731
731
|
"$color-button_secondary_borderless-text-default": "var(--semi-color-primary)"
|
|
732
732
|
},
|
|
733
733
|
"radius": {
|
|
734
|
-
"$radius-button": "8px"
|
|
734
|
+
"$radius-button": "8px",
|
|
735
|
+
"$radius-button_group": "8px",
|
|
736
|
+
"$radius-button_splitButtonGroup_first_topLeft": "8px",
|
|
737
|
+
"$radius-button_splitButtonGroup_last_topRight": "8px",
|
|
738
|
+
"$radius-button_splitButtonGroup_first_bottomLeft": "8px",
|
|
739
|
+
"$radius-button_splitButtonGroup_last_bottomRight": "8px"
|
|
735
740
|
}
|
|
736
741
|
},
|
|
737
742
|
"select": {
|
|
@@ -749,6 +754,9 @@
|
|
|
749
754
|
}
|
|
750
755
|
},
|
|
751
756
|
"upload": {
|
|
757
|
+
"color": {
|
|
758
|
+
"$color-upload_drag_area_icon": "var(--semi-color-text-2)"
|
|
759
|
+
},
|
|
752
760
|
"radius": {
|
|
753
761
|
"$radius-upload_picture_add": "8px",
|
|
754
762
|
"$radius-upload_picture_file_card_img": "8px"
|
|
@@ -764,6 +772,12 @@
|
|
|
764
772
|
"$radius-tagInput": "8px"
|
|
765
773
|
}
|
|
766
774
|
},
|
|
775
|
+
"datePicker": {
|
|
776
|
+
"radius": {
|
|
777
|
+
"$radius-datepicker_range_input": "8px",
|
|
778
|
+
"$radius-datepicker_range_input_inputWrapper": "8px"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
767
781
|
"timePicker": {
|
|
768
782
|
"radius": {
|
|
769
783
|
"$radius-timePicker_input": "8px"
|
package/scss/local.scss
CHANGED
|
@@ -23,15 +23,23 @@ $color-button_secondary-border-default: var(--semi-color-primary);
|
|
|
23
23
|
$color-button_primary_borderless-text-default: var(--semi-color-text-1);
|
|
24
24
|
$color-button_secondary_borderless-text-default: var(--semi-color-primary);
|
|
25
25
|
$radius-button: 8px;
|
|
26
|
+
$radius-button_group: 8px;
|
|
27
|
+
$radius-button_splitButtonGroup_first_topLeft: 8px;
|
|
28
|
+
$radius-button_splitButtonGroup_last_topRight: 8px;
|
|
29
|
+
$radius-button_splitButtonGroup_first_bottomLeft: 8px;
|
|
30
|
+
$radius-button_splitButtonGroup_last_bottomRight: 8px;
|
|
26
31
|
$radius-select: 8px;
|
|
27
32
|
$color-switch_checked-bg-hover: var(--semi-color-primary-hover);
|
|
28
33
|
$color-switch_checked-bg-active: var(--semi-color-primary-active);
|
|
29
34
|
$color-switch_checked-bg-default: var(--semi-color-primary);
|
|
30
35
|
$color-switch_spin_checked-bg-default: var(--semi-color-primary-hover);
|
|
31
36
|
$color-switch_checked_disabled-bg-default: var(--semi-color-info-disabled);
|
|
37
|
+
$color-upload_drag_area_icon: var(--semi-color-text-2);
|
|
32
38
|
$radius-upload_picture_add: 8px;
|
|
33
39
|
$radius-upload_picture_file_card_img: 8px;
|
|
34
40
|
$radius-cascader: 8px;
|
|
35
41
|
$radius-tagInput: 8px;
|
|
42
|
+
$radius-datepicker_range_input: 8px;
|
|
43
|
+
$radius-datepicker_range_input_inputWrapper: 8px;
|
|
36
44
|
$radius-timePicker_input: 8px;
|
|
37
45
|
$radius-treeSelect: 8px;
|