12345678910111213141516171819202122232425262728293031 |
- import { commonConfig } from 'data-room-ui/js/config'
- export const settingConfig = {
-
- displayOption: {
- dataAllocation: {
-
- enable: false
- }
- }
- }
- const customConfig = {
- type: 'themeSwitcher',
- root: {
- version: '2023071001'
- },
- customize: {
- activeColor: '#007aff',
- inactiveColor: '#bcc9d4'
- }
- }
- export const dataConfig = {
- ...commonConfig(customConfig)
- }
|