编译问题

This commit is contained in:
2betop 2021-01-21 19:10:25 +08:00
parent 94fcb285ed
commit fb37cca942
2 changed files with 3 additions and 3 deletions

View File

@ -430,7 +430,7 @@
--Checkbox-inner-size: calc(var(--Checkbox-size) / 2);
--Checkbox-onHover-color: var(--info);
--Checkbox-onDisabled-gb: #{$gray500};
--Checkbxo-onDisabled-color: lighten($info, 5%);
--Checkbxo-onDisabled-color: #{lighten($info, 5%)};
--Checkbox-size: #{px2rem(20px)};
--ColorPicker-bg: var(--white);

View File

@ -6,7 +6,7 @@ import NumberInput from '../NumberInput';
import DatePicker from '../DatePicker';
import Select from '../Select';
import Switch from '../Switch';
import {LocaleProps} from '../../locale';
import {localeable, LocaleProps} from '../../locale';
export interface ValueProps extends ThemeProps, LocaleProps {
value: any;
@ -100,4 +100,4 @@ export class Value extends React.Component<ValueProps> {
}
}
export default themeable(Value);
export default themeable(localeable(Value));