This commit is contained in:
07akioni 2022-07-24 23:52:48 +08:00
parent dffff72469
commit 0510875769
4 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,10 @@
import { commonDark } from '../../_styles/common'
import type { Theme } from '../../_mixins'
const rowDark: Theme<'Row'> = {
name: 'Row',
common: commonDark
}
export default rowDark
export type RowTheme = typeof rowDark

View File

@ -1,3 +1,4 @@
export { default as inputLight } from './light'
export { default as rowLight } from './light'
export { default as rowDark } from './dark'
export { rowRtl } from './rtl'
export type { RowTheme } from './light'

View File

@ -56,6 +56,7 @@ import { progressDark } from '../progress/styles'
import { radioDark } from '../radio/styles'
import { rateDark } from '../rate/styles'
import { resultDark } from '../result/styles'
import { rowDark } from '../legacy-grid/styles'
import { scrollbarDark } from '../_internal/scrollbar/styles'
import { selectDark } from '../select/styles'
import { skeletonDark } from '../skeleton/styles'
@ -140,6 +141,7 @@ export const darkTheme: BuiltInGlobalTheme = {
Radio: radioDark,
Rate: rateDark,
Result: resultDark,
Row: rowDark,
Scrollbar: scrollbarDark,
Select: selectDark,
Skeleton: skeletonDark,

View File

@ -58,6 +58,7 @@ import { progressLight } from '../progress/styles'
import { radioLight } from '../radio/styles'
import { rateLight } from '../rate/styles'
import { resultLight } from '../result/styles'
import { rowLight } from '../legacy-grid/styles'
import { scrollbarLight } from '../_internal/scrollbar/styles'
import { selectLight } from '../select/styles'
import { skeletonLight } from '../skeleton/styles'
@ -141,6 +142,7 @@ export const lightTheme: BuiltInGlobalTheme = {
Progress: progressLight,
Radio: radioLight,
Rate: rateLight,
Row: rowLight,
Result: resultLight,
Scrollbar: scrollbarLight,
Skeleton: skeletonLight,