mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
refactor(dialog): new theme
This commit is contained in:
parent
e11c97453b
commit
41d62c15b9
@ -2,12 +2,11 @@
|
|||||||
<div
|
<div
|
||||||
class="n-dialog"
|
class="n-dialog"
|
||||||
:class="{
|
:class="{
|
||||||
[`n-${mergedTheme}-theme`]: mergedTheme,
|
|
||||||
'n-dialog--bordered': bordered,
|
'n-dialog--bordered': bordered,
|
||||||
[`n-dialog--icon-${mergedIconPlacement}`]: true,
|
[`n-dialog--icon-${mergedIconPlacement}`]: true,
|
||||||
[`n-dialog--${type}-type`]: type
|
[`n-dialog--${type}-type`]: type
|
||||||
}"
|
}"
|
||||||
:style="mergedStyle"
|
:style="cssVars"
|
||||||
>
|
>
|
||||||
<n-icon v-if="closable" class="n-dialog__close" @click="handleCloseClick">
|
<n-icon v-if="closable" class="n-dialog__close" @click="handleCloseClick">
|
||||||
<close-icon />
|
<close-icon />
|
||||||
@ -46,7 +45,7 @@
|
|||||||
<slot name="action">
|
<slot name="action">
|
||||||
<n-button
|
<n-button
|
||||||
v-if="negativeText"
|
v-if="negativeText"
|
||||||
:theme="theme"
|
:theme="'light'"
|
||||||
ghost
|
ghost
|
||||||
size="small"
|
size="small"
|
||||||
@click="handleNegativeClick"
|
@click="handleNegativeClick"
|
||||||
@ -54,7 +53,7 @@
|
|||||||
<render :render="negativeText" />
|
<render :render="negativeText" />
|
||||||
</n-button>
|
</n-button>
|
||||||
<n-button
|
<n-button
|
||||||
:theme="theme"
|
:theme="'light'"
|
||||||
:disabled="loading === true"
|
:disabled="loading === true"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
size="small"
|
size="small"
|
||||||
@ -69,8 +68,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { configurable, themeable, withCssr } from '../../_mixins'
|
import { defineComponent, computed } from 'vue'
|
||||||
import { render } from '../../_utils'
|
import { useTheme } from '../../_mixins'
|
||||||
|
import { render, createKey } from '../../_utils'
|
||||||
import { NIcon } from '../../icon'
|
import { NIcon } from '../../icon'
|
||||||
import { NButton } from '../../button'
|
import { NButton } from '../../button'
|
||||||
import {
|
import {
|
||||||
@ -80,9 +80,10 @@ import {
|
|||||||
WarningIcon,
|
WarningIcon,
|
||||||
ErrorIcon
|
ErrorIcon
|
||||||
} from '../../_base/icons'
|
} from '../../_base/icons'
|
||||||
import styles from './styles/index.js'
|
import { dialogLight } from '../styles'
|
||||||
|
import style from './styles/index.cssr.js'
|
||||||
|
|
||||||
export default {
|
export default defineComponent({
|
||||||
name: 'Dialog',
|
name: 'Dialog',
|
||||||
alias: [
|
alias: [
|
||||||
'NimbusConfirmCard', // deprecated
|
'NimbusConfirmCard', // deprecated
|
||||||
@ -98,7 +99,6 @@ export default {
|
|||||||
InfoIcon,
|
InfoIcon,
|
||||||
render
|
render
|
||||||
},
|
},
|
||||||
mixins: [configurable, themeable, withCssr(styles)],
|
|
||||||
props: {
|
props: {
|
||||||
icon: {
|
icon: {
|
||||||
type: Function,
|
type: Function,
|
||||||
@ -157,6 +157,66 @@ export default {
|
|||||||
default: undefined
|
default: undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
setup (props) {
|
||||||
|
const themeRef = useTheme('Dialog', 'Dialog', style, dialogLight, props)
|
||||||
|
return {
|
||||||
|
cssVars: computed(() => {
|
||||||
|
const { type, iconPlacement } = props
|
||||||
|
const {
|
||||||
|
common: { cubicBezierEaseInOut },
|
||||||
|
self: {
|
||||||
|
fontSize,
|
||||||
|
lineHeight,
|
||||||
|
border,
|
||||||
|
titleTextColor,
|
||||||
|
textColor,
|
||||||
|
color,
|
||||||
|
closeColor,
|
||||||
|
closeColorHover,
|
||||||
|
closeColorPressed,
|
||||||
|
borderRadius,
|
||||||
|
titleFontWeight,
|
||||||
|
titleFontSize,
|
||||||
|
padding,
|
||||||
|
iconSize,
|
||||||
|
actionSpace,
|
||||||
|
contentMargin,
|
||||||
|
closeSize,
|
||||||
|
[iconPlacement === 'top'
|
||||||
|
? 'iconMarginIconTop'
|
||||||
|
: 'iconMargin']: iconMargin,
|
||||||
|
[iconPlacement === 'top'
|
||||||
|
? 'closeMarginIconTop'
|
||||||
|
: 'closeMargin']: closeMargin,
|
||||||
|
[createKey('iconColor', type)]: iconColor
|
||||||
|
}
|
||||||
|
} = themeRef.value
|
||||||
|
return {
|
||||||
|
'--font-size': fontSize,
|
||||||
|
'--icon-color': iconColor,
|
||||||
|
'--bezier': cubicBezierEaseInOut,
|
||||||
|
'--close-margin': closeMargin,
|
||||||
|
'--icon-margin': iconMargin,
|
||||||
|
'--icon-size': iconSize,
|
||||||
|
'--close-size': closeSize,
|
||||||
|
'--close-color': closeColor,
|
||||||
|
'--close-color-hover': closeColorHover,
|
||||||
|
'--close-color-pressed': closeColorPressed,
|
||||||
|
'--color': color,
|
||||||
|
'--text-color': textColor,
|
||||||
|
'--border-radius': borderRadius,
|
||||||
|
'--padding': padding,
|
||||||
|
'--line-height': lineHeight,
|
||||||
|
'--border': border,
|
||||||
|
'--content-margin': contentMargin,
|
||||||
|
'--title-font-size': titleFontSize,
|
||||||
|
'--title-font-weight': titleFontWeight,
|
||||||
|
'--title-text-color': titleTextColor,
|
||||||
|
'--action-space': actionSpace
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
mergedIconPlacement () {
|
mergedIconPlacement () {
|
||||||
return (
|
return (
|
||||||
@ -193,5 +253,5 @@ export default {
|
|||||||
if (onClose) onClose()
|
if (onClose) onClose()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
</script>
|
</script>
|
||||||
|
@ -28,10 +28,11 @@
|
|||||||
<script>
|
<script>
|
||||||
// use absolute path to make sure no circular ref of style
|
// use absolute path to make sure no circular ref of style
|
||||||
// this -> modal-index -> modal-style
|
// this -> modal-index -> modal-style
|
||||||
|
import { defineComponent } from 'vue'
|
||||||
import NModal from '../../modal/src/Modal'
|
import NModal from '../../modal/src/Modal'
|
||||||
import NDialog from './Dialog.vue'
|
import NDialog from './Dialog.vue'
|
||||||
|
|
||||||
export default {
|
export default defineComponent({
|
||||||
name: 'DialogEnvironment',
|
name: 'DialogEnvironment',
|
||||||
components: {
|
components: {
|
||||||
NModal,
|
NModal,
|
||||||
@ -107,5 +108,5 @@ export default {
|
|||||||
this.show = false
|
this.show = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,17 +1,11 @@
|
|||||||
import { Fragment, ref, h, reactive } from 'vue'
|
import { defineComponent, Fragment, ref, h, reactive } from 'vue'
|
||||||
import { createId } from 'seemly'
|
import { createId } from 'seemly'
|
||||||
import { omit } from '../../_utils'
|
import { omit } from '../../_utils'
|
||||||
import DialogEnvironment from './DialogEnvironment.vue'
|
import DialogEnvironment from './DialogEnvironment.vue'
|
||||||
import { useClicked, useClickPosition } from 'vooks'
|
import { useClicked, useClickPosition } from 'vooks'
|
||||||
|
|
||||||
export default {
|
export default defineComponent({
|
||||||
name: 'DialogProvider',
|
name: 'DialogProvider',
|
||||||
props: {
|
|
||||||
to: {
|
|
||||||
type: [String, Object],
|
|
||||||
default: undefined
|
|
||||||
}
|
|
||||||
},
|
|
||||||
provide () {
|
provide () {
|
||||||
return {
|
return {
|
||||||
dialog: {
|
dialog: {
|
||||||
@ -23,6 +17,12 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
props: {
|
||||||
|
to: {
|
||||||
|
type: [String, Object],
|
||||||
|
default: undefined
|
||||||
|
}
|
||||||
|
},
|
||||||
setup () {
|
setup () {
|
||||||
const dialogListRef = ref([])
|
const dialogListRef = ref([])
|
||||||
return {
|
return {
|
||||||
@ -75,4 +75,4 @@ export default {
|
|||||||
this.$slots.default()
|
this.$slots.default()
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
|
124
src/dialog/src/styles/index.cssr.js
Normal file
124
src/dialog/src/styles/index.cssr.js
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
import { c, cB, cE, cM, insideModal } from '../../../_utils/cssr'
|
||||||
|
|
||||||
|
// vars:
|
||||||
|
// --icon-color
|
||||||
|
// --bezier
|
||||||
|
// --close-margin
|
||||||
|
// --icon-margin
|
||||||
|
// --icon-size
|
||||||
|
// --close-size
|
||||||
|
// --close-color
|
||||||
|
// --close-color-hover
|
||||||
|
// --close-color-pressed
|
||||||
|
// --color
|
||||||
|
// --text-color
|
||||||
|
// --border-radius
|
||||||
|
// --padding
|
||||||
|
// --line-height
|
||||||
|
// --border
|
||||||
|
// --content-margin
|
||||||
|
// --title-font-size
|
||||||
|
// --title-font-weight
|
||||||
|
// --title-text-color
|
||||||
|
// --action-space
|
||||||
|
export default c([
|
||||||
|
cB(
|
||||||
|
'dialog', `
|
||||||
|
line-height: var(--line-height);
|
||||||
|
position: relative;
|
||||||
|
background: var(--color);
|
||||||
|
color: var(--text-color);
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin: auto;
|
||||||
|
border-radius: var(--border-radius);
|
||||||
|
padding: var(--padding);
|
||||||
|
transition:
|
||||||
|
border-color .3s var(--bezier),
|
||||||
|
background-color .3s var(--bezier),
|
||||||
|
color .3s var(--bezier);
|
||||||
|
`,
|
||||||
|
[
|
||||||
|
cE('icon', {
|
||||||
|
color: 'var(--icon-color)'
|
||||||
|
}),
|
||||||
|
cM('bordered', {
|
||||||
|
border: 'var(--border)'
|
||||||
|
}),
|
||||||
|
cM('icon-top', [
|
||||||
|
cE('close', {
|
||||||
|
margin: 'var(--close-margin)'
|
||||||
|
}),
|
||||||
|
cE('icon', {
|
||||||
|
margin: 'var(--icon-margin)'
|
||||||
|
}),
|
||||||
|
cE('content', {
|
||||||
|
textAlign: 'center'
|
||||||
|
}),
|
||||||
|
cE('title', {
|
||||||
|
justifyContent: 'center'
|
||||||
|
}),
|
||||||
|
cE('action', {
|
||||||
|
justifyContent: 'center'
|
||||||
|
})
|
||||||
|
]),
|
||||||
|
cM('icon-left', [
|
||||||
|
cE('icon', {
|
||||||
|
margin: 'var(--icon-margin)'
|
||||||
|
})
|
||||||
|
]),
|
||||||
|
cE('close', `
|
||||||
|
font-size: var(--close-size);
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
color: var(--close-color);
|
||||||
|
margin: var(--close-margin);
|
||||||
|
transition: .3s color var(--bezier);
|
||||||
|
`,
|
||||||
|
[
|
||||||
|
c('&:hover', {
|
||||||
|
color: 'var(--close-color-hover)'
|
||||||
|
}),
|
||||||
|
c('&:active', {
|
||||||
|
color: 'var(--close-color-pressed)'
|
||||||
|
})
|
||||||
|
]),
|
||||||
|
cE('content', `
|
||||||
|
font-size: var(--font-size);
|
||||||
|
margin: var(--content-margin);
|
||||||
|
position: relative;
|
||||||
|
`),
|
||||||
|
cE('action', `
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
`, [
|
||||||
|
c('> *:not(:last-child)', {
|
||||||
|
marginRight: 'var(--action-space)'
|
||||||
|
})
|
||||||
|
]),
|
||||||
|
cE('icon', {
|
||||||
|
fontSize: 'var(--icon-size)',
|
||||||
|
transition: 'color .3s var(--bezier)'
|
||||||
|
}),
|
||||||
|
cE('title', `
|
||||||
|
transition: color .3s var(--bezier);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: var(--title-font-size);
|
||||||
|
font-weight: var(--title-font-weight);
|
||||||
|
color: var(--title-text-color);
|
||||||
|
`),
|
||||||
|
cB('dialog-icon-container', {
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'center'
|
||||||
|
})
|
||||||
|
]
|
||||||
|
),
|
||||||
|
insideModal(
|
||||||
|
cB('dialog', `
|
||||||
|
width: 446px;
|
||||||
|
max-width: calc(100vw - 32px);
|
||||||
|
`)
|
||||||
|
)
|
||||||
|
])
|
@ -1,9 +0,0 @@
|
|||||||
import baseStyle from './themed-base.cssr.js'
|
|
||||||
|
|
||||||
export default [
|
|
||||||
{
|
|
||||||
key: 'mergedTheme',
|
|
||||||
watch: ['mergedTheme'],
|
|
||||||
CNode: baseStyle
|
|
||||||
}
|
|
||||||
]
|
|
@ -1,158 +0,0 @@
|
|||||||
import { c, cTB, cB, cE, cM, createKey } from '../../../_utils/cssr'
|
|
||||||
|
|
||||||
export default c([
|
|
||||||
({ props }) => {
|
|
||||||
const {
|
|
||||||
$global: {
|
|
||||||
cubicBezierEaseInOut
|
|
||||||
},
|
|
||||||
$local
|
|
||||||
} = props
|
|
||||||
const {
|
|
||||||
actionSpace,
|
|
||||||
contentMargin,
|
|
||||||
iconSize,
|
|
||||||
iconMargin,
|
|
||||||
iconMarginIconTop,
|
|
||||||
padding,
|
|
||||||
headerTextColor,
|
|
||||||
textColor,
|
|
||||||
color,
|
|
||||||
border,
|
|
||||||
borderRadius,
|
|
||||||
headerFontWeight,
|
|
||||||
headerFontSize,
|
|
||||||
closeSize,
|
|
||||||
closeMargin,
|
|
||||||
closeMarginIconTop,
|
|
||||||
closeColor,
|
|
||||||
closeColorHover,
|
|
||||||
closeColorPressed,
|
|
||||||
fontSize,
|
|
||||||
lineHeight
|
|
||||||
} = $local
|
|
||||||
const dialogStyle = cTB(
|
|
||||||
'dialog',
|
|
||||||
{
|
|
||||||
raw: `
|
|
||||||
line-height: ${lineHeight};
|
|
||||||
position: relative;
|
|
||||||
background: ${color};
|
|
||||||
color: ${textColor};
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: auto;
|
|
||||||
border-radius: ${borderRadius};
|
|
||||||
padding: ${padding};
|
|
||||||
transition:
|
|
||||||
border-color .3s ${cubicBezierEaseInOut},
|
|
||||||
background-color .3s ${cubicBezierEaseInOut},
|
|
||||||
color .3s ${cubicBezierEaseInOut};
|
|
||||||
`
|
|
||||||
},
|
|
||||||
[
|
|
||||||
[
|
|
||||||
'info',
|
|
||||||
'success',
|
|
||||||
'warning',
|
|
||||||
'error'
|
|
||||||
].map(type => cM(`${type}-type`, [
|
|
||||||
cE('icon', {
|
|
||||||
color: $local[createKey('iconColor', type)]
|
|
||||||
})
|
|
||||||
])),
|
|
||||||
cM('bordered', {
|
|
||||||
border
|
|
||||||
}),
|
|
||||||
cM('icon-top', [
|
|
||||||
cE('close', {
|
|
||||||
margin: closeMarginIconTop
|
|
||||||
}),
|
|
||||||
cE('icon', {
|
|
||||||
margin: iconMarginIconTop
|
|
||||||
}),
|
|
||||||
cE('content', {
|
|
||||||
textAlign: 'center'
|
|
||||||
}),
|
|
||||||
cE('title', {
|
|
||||||
justifyContent: 'center'
|
|
||||||
}),
|
|
||||||
cE('action', {
|
|
||||||
justifyContent: 'center'
|
|
||||||
})
|
|
||||||
]),
|
|
||||||
cM('icon-left', [
|
|
||||||
cE('icon', {
|
|
||||||
margin: iconMargin
|
|
||||||
})
|
|
||||||
]),
|
|
||||||
cE('close', {
|
|
||||||
raw: `
|
|
||||||
font-size: ${closeSize};
|
|
||||||
margin: ${padding};
|
|
||||||
cursor: pointer;
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 0;
|
|
||||||
color: ${closeColor};
|
|
||||||
margin: ${closeMargin};
|
|
||||||
transition: .3s color ${cubicBezierEaseInOut};
|
|
||||||
`
|
|
||||||
},
|
|
||||||
[
|
|
||||||
c('&:hover', {
|
|
||||||
color: closeColorHover
|
|
||||||
}),
|
|
||||||
c('&:active', {
|
|
||||||
color: closeColorPressed
|
|
||||||
})
|
|
||||||
]),
|
|
||||||
cE('content', {
|
|
||||||
raw: `
|
|
||||||
font-size: ${fontSize};
|
|
||||||
margin: ${contentMargin};
|
|
||||||
position: relative;
|
|
||||||
`
|
|
||||||
}),
|
|
||||||
cE('action', {
|
|
||||||
raw: `
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
`
|
|
||||||
}, [
|
|
||||||
c('> *:not(:last-child)', {
|
|
||||||
marginRight: actionSpace
|
|
||||||
})
|
|
||||||
]),
|
|
||||||
cE('icon', {
|
|
||||||
fontSize: iconSize,
|
|
||||||
transition: `color .3s ${cubicBezierEaseInOut}`
|
|
||||||
}),
|
|
||||||
cE('title', {
|
|
||||||
raw: `
|
|
||||||
transition: color .3s ${cubicBezierEaseInOut};
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
font-size: ${headerFontSize};
|
|
||||||
font-weight: ${headerFontWeight};
|
|
||||||
color: ${headerTextColor}
|
|
||||||
`
|
|
||||||
}),
|
|
||||||
cB('dialog-icon-container', {
|
|
||||||
display: 'flex',
|
|
||||||
justifyContent: 'center'
|
|
||||||
})
|
|
||||||
]
|
|
||||||
)
|
|
||||||
return [
|
|
||||||
dialogStyle,
|
|
||||||
cB('modal', [
|
|
||||||
cB('dialog', {
|
|
||||||
raw: `
|
|
||||||
width: 446px;
|
|
||||||
max-width: calc(100vw - 32px);
|
|
||||||
`
|
|
||||||
})
|
|
||||||
])
|
|
||||||
]
|
|
||||||
}
|
|
||||||
])
|
|
@ -1,5 +1,5 @@
|
|||||||
export default {
|
export default {
|
||||||
headerFontSize: '18px',
|
titleFontSize: '18px',
|
||||||
padding: '16px 28px 20px 28px',
|
padding: '16px 28px 20px 28px',
|
||||||
iconSize: '28px',
|
iconSize: '28px',
|
||||||
actionSpace: '12px',
|
actionSpace: '12px',
|
||||||
|
@ -1,14 +1,16 @@
|
|||||||
import create from '../../_styles/utils/create-component-base'
|
|
||||||
import commonVars from './_common'
|
import commonVars from './_common'
|
||||||
import { baseDark } from '../../_styles/base'
|
|
||||||
import { iconDark } from '../../icon/styles'
|
import { iconDark } from '../../icon/styles'
|
||||||
import { buttonDark } from '../../button/styles'
|
import { buttonDark } from '../../button/styles'
|
||||||
|
import { commonDark } from '../../_styles/new-common'
|
||||||
|
|
||||||
export default create({
|
export default {
|
||||||
theme: 'dark',
|
|
||||||
name: 'Dialog',
|
name: 'Dialog',
|
||||||
peer: [baseDark, iconDark, buttonDark],
|
common: commonDark,
|
||||||
getLocalVars (vars) {
|
peers: {
|
||||||
|
Icon: iconDark,
|
||||||
|
Button: buttonDark
|
||||||
|
},
|
||||||
|
self (vars) {
|
||||||
const {
|
const {
|
||||||
textColor1Overlay,
|
textColor1Overlay,
|
||||||
textColor2Overlay,
|
textColor2Overlay,
|
||||||
@ -31,7 +33,7 @@ export default create({
|
|||||||
fontSize,
|
fontSize,
|
||||||
lineHeight,
|
lineHeight,
|
||||||
border: `1px solid ${dividerColorOverlay}`,
|
border: `1px solid ${dividerColorOverlay}`,
|
||||||
headerTextColor: textColor1Overlay,
|
titleTextColor: textColor1Overlay,
|
||||||
textColor: textColor2Overlay,
|
textColor: textColor2Overlay,
|
||||||
color: modalColor,
|
color: modalColor,
|
||||||
closeColor: closeColorOverlay,
|
closeColor: closeColorOverlay,
|
||||||
@ -42,7 +44,7 @@ export default create({
|
|||||||
iconColorWarning: warningColor,
|
iconColorWarning: warningColor,
|
||||||
iconColorError: errorColor,
|
iconColorError: errorColor,
|
||||||
borderRadius,
|
borderRadius,
|
||||||
headerFontWeight: fontWeightStrong
|
titleFontWeight: fontWeightStrong
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
@ -1,14 +1,16 @@
|
|||||||
import create from '../../_styles/utils/create-component-base'
|
|
||||||
import commonVars from './_common'
|
import commonVars from './_common'
|
||||||
import { baseLight } from '../../_styles/base'
|
|
||||||
import { iconLight } from '../../icon/styles'
|
import { iconLight } from '../../icon/styles'
|
||||||
import { buttonLight } from '../../button/styles'
|
import { buttonLight } from '../../button/styles'
|
||||||
|
import { commonLight } from '../../_styles/new-common'
|
||||||
|
|
||||||
export default create({
|
export default {
|
||||||
theme: 'light',
|
|
||||||
name: 'Dialog',
|
name: 'Dialog',
|
||||||
peer: [baseLight, iconLight, buttonLight],
|
common: commonLight,
|
||||||
getLocalVars (vars) {
|
peers: {
|
||||||
|
Icon: iconLight,
|
||||||
|
Button: buttonLight
|
||||||
|
},
|
||||||
|
self (vars) {
|
||||||
const {
|
const {
|
||||||
textColor1,
|
textColor1,
|
||||||
textColor2,
|
textColor2,
|
||||||
@ -31,7 +33,7 @@ export default create({
|
|||||||
fontSize,
|
fontSize,
|
||||||
lineHeight,
|
lineHeight,
|
||||||
border: `1px solid ${dividerColor}`,
|
border: `1px solid ${dividerColor}`,
|
||||||
headerTextColor: textColor1,
|
titleTextColor: textColor1,
|
||||||
textColor: textColor2,
|
textColor: textColor2,
|
||||||
color: cardColor,
|
color: cardColor,
|
||||||
closeColor: closeColor,
|
closeColor: closeColor,
|
||||||
@ -42,7 +44,7 @@ export default create({
|
|||||||
iconColorWarning: warningColor,
|
iconColorWarning: warningColor,
|
||||||
iconColorError: errorColor,
|
iconColorError: errorColor,
|
||||||
borderRadius,
|
borderRadius,
|
||||||
headerFontWeight: fontWeightStrong
|
titleFontWeight: fontWeightStrong
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
@ -34,7 +34,7 @@ export { baseDark, baseLight } from './_styles/base'
|
|||||||
// export { dataTableDark, dataTableLight } from './data-table/styles'
|
// export { dataTableDark, dataTableLight } from './data-table/styles'
|
||||||
// export { datePickerDark, datePickerLight } from './date-picker/styles'
|
// export { datePickerDark, datePickerLight } from './date-picker/styles'
|
||||||
// export { descriptionsDark, descriptionsLight } from './descriptions/styles'
|
// export { descriptionsDark, descriptionsLight } from './descriptions/styles'
|
||||||
export { dialogDark, dialogLight } from './dialog/styles'
|
// export { dialogDark, dialogLight } from './dialog/styles'
|
||||||
// export { dividerDark, dividerLight } from './divider/styles'
|
// export { dividerDark, dividerLight } from './divider/styles'
|
||||||
export { drawerDark, drawerLight } from './drawer/styles'
|
export { drawerDark, drawerLight } from './drawer/styles'
|
||||||
export { dropdownDark, dropdownLight } from './dropdown/styles'
|
export { dropdownDark, dropdownLight } from './dropdown/styles'
|
||||||
|
@ -9,7 +9,6 @@ import { badgeDark } from './badge/styles'
|
|||||||
import { breadcrumbDark } from './breadcrumb/styles'
|
import { breadcrumbDark } from './breadcrumb/styles'
|
||||||
import { buttonDark } from './button/styles'
|
import { buttonDark } from './button/styles'
|
||||||
import { cardDark } from './card/styles'
|
import { cardDark } from './card/styles'
|
||||||
import { dividerDark } from './divider/styles'
|
|
||||||
import { cascaderDark } from './cascader/styles'
|
import { cascaderDark } from './cascader/styles'
|
||||||
import { checkboxDark } from './checkbox/styles'
|
import { checkboxDark } from './checkbox/styles'
|
||||||
import { codeDark } from './code/styles'
|
import { codeDark } from './code/styles'
|
||||||
@ -17,6 +16,8 @@ import { collapseDark } from './collapse/styles'
|
|||||||
import { dataTableDark } from './data-table/styles'
|
import { dataTableDark } from './data-table/styles'
|
||||||
import { datePickerDark } from './date-picker/styles'
|
import { datePickerDark } from './date-picker/styles'
|
||||||
import { descriptionsDark } from './descriptions/styles'
|
import { descriptionsDark } from './descriptions/styles'
|
||||||
|
import { dialogDark } from './dialog/styles'
|
||||||
|
import { dividerDark } from './divider/styles'
|
||||||
|
|
||||||
export const darkTheme = {
|
export const darkTheme = {
|
||||||
common: commonDark,
|
common: commonDark,
|
||||||
@ -37,5 +38,6 @@ export const darkTheme = {
|
|||||||
DataTable: dataTableDark,
|
DataTable: dataTableDark,
|
||||||
DatePicker: datePickerDark,
|
DatePicker: datePickerDark,
|
||||||
Descriptions: descriptionsDark,
|
Descriptions: descriptionsDark,
|
||||||
|
Dialog: dialogDark,
|
||||||
Divider: dividerDark
|
Divider: dividerDark
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user