@ledvance/base 1.3.7 → 1.3.9
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/localazy.json +12 -1
- package/package.json +1 -1
- package/src/components/AdvanceCard.tsx +4 -3
- package/src/components/ApplyForDeviceItem.tsx +6 -5
- package/src/components/ApplyForDeviceList.tsx +4 -3
- package/src/components/ApplyForText.tsx +4 -3
- package/src/components/Card.tsx +4 -3
- package/src/components/ColorTempAdjustView.tsx +2 -1
- package/src/components/CustomListDialog.tsx +4 -3
- package/src/components/DeleteButton.tsx +4 -3
- package/src/components/DrawToolView.tsx +13 -12
- package/src/components/FanAdjustView.tsx +16 -15
- package/src/components/InfoText.tsx +3 -2
- package/src/components/Page.tsx +3 -2
- package/src/components/Popup.tsx +4 -3
- package/src/components/Segmented.tsx +7 -6
- package/src/components/SocketItem.tsx +4 -3
- package/src/components/Stepper.tsx +6 -5
- package/src/components/StripAdjustView.tsx +6 -6
- package/src/components/StripLightView.tsx +3 -2
- package/src/components/Summary.tsx +7 -6
- package/src/components/Tag.tsx +6 -5
- package/src/components/TextField.tsx +7 -6
- package/src/components/TextFieldStyleButton.tsx +7 -6
- package/src/components/UATabTitle.tsx +4 -3
- package/src/components/UATabs.tsx +5 -4
- package/src/components/ldvColorSlider.tsx +3 -2
- package/src/components/ldvPickerView.tsx +5 -4
- package/src/components/ldvSlider.tsx +4 -3
- package/src/components/ldvSwitch.tsx +4 -4
- package/src/components/ldvTopBar.tsx +4 -3
- package/src/components/ldvTopName.tsx +4 -3
- package/src/components/segmentControl.tsx +7 -7
- package/src/components/weekSelect.tsx +3 -3
- package/src/config/dark-theme.ts +1 -0
- package/src/config/light-theme.ts +2 -1
- package/src/i18n/strings.ts +354 -35
- package/src/res/arrow_temp_down.png +0 -0
- package/src/res/arrow_temp_down@2x.png +0 -0
- package/src/res/arrow_temp_down@3x.png +0 -0
- package/src/res/arrow_temp_up.png +0 -0
- package/src/res/arrow_temp_up@2x.png +0 -0
- package/src/res/arrow_temp_up@3x.png +0 -0
- package/src/res/index.ts +3 -1
- package/translateKey.txt +11 -0
|
@@ -84,11 +84,12 @@ const lightTheme = {
|
|
|
84
84
|
*/
|
|
85
85
|
popup: {
|
|
86
86
|
cellHeight: 48, // 列表项的高度
|
|
87
|
-
cellBg: "#
|
|
87
|
+
cellBg: "#ffffff", // 列表底色
|
|
88
88
|
titleRadius: cx(8), // 头部圆角
|
|
89
89
|
footerRadius: 0, // 底部圆角
|
|
90
90
|
titleBg: "#ffffff",
|
|
91
91
|
bottomBg: "#ffffff", // 底部栏底色
|
|
92
|
+
cellFontColor: '#333333',
|
|
92
93
|
lineColor: "#e5e5e5", // 分隔线颜色
|
|
93
94
|
tintColor: '#ff6600',
|
|
94
95
|
titleFontSize: 14, // 头部栏标题大小
|