mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
c591ab4381
* 尝试使用 vite 跑开发环境 * 尝试使用 vite 跑开发环境 * 尝试使用 vite 跑开发环境 * 尝试使用 vite 跑开发环境 * 样式文档调整 * 修复有多个 __inline 时的报错 * scirpt 调整 * feat:chart接入事件动作 (#5669) * chore: input-group 没有 name 不应该报 warning (#5667) * chore: 处理编译TS Warning,调整TableStore中label解析的顺序 (#5670) * feat: timeline时间轴支持自定义图标 (#5668) * fix:折叠器Collapse自定义图标&inputNumber对含后缀生效 * 修改 * 正则修改 * 正则修改 * 正则修改 * feat:将默认px替换为rem 2px===0.125rem * feat:timeline时间轴支持自定义图标 Co-authored-by: xujiahao01 <xujiahao01@baidu.com> * fix: 调整echarts-stat使用方式,兼容vite打包异步非esm模块 (#5672) * feat: chart 支持配置加载 geojson 及百度地图 (#5674) * feat: chart 支持配置 geoURL 及 geoName * 增加百度地图配置 * chore: 修复 coverage 运行报错 (#5678) * chore: coverage 执行换成 v8 解决内存问题 (#5679) * 尝试使用 vite 跑开发环境 * amis-formula 也添加 esm 模块 * 代码合并有问题,做些调整 Co-authored-by: hsm-lv <80095014+hsm-lv@users.noreply.github.com> Co-authored-by: 吴多益 <wuduoyi@baidu.com> Co-authored-by: RUNZE LU <36724300+lurunze1226@users.noreply.github.com> Co-authored-by: 徐佳豪 <1440054388@qq.com> Co-authored-by: xujiahao01 <xujiahao01@baidu.com> Co-authored-by: 刘丹 <365533093@qq.com>
700 lines
17 KiB
TypeScript
700 lines
17 KiB
TypeScript
import React from 'react';
|
|
import {Switch} from 'react-router-dom';
|
|
import {navigations2route} from './App';
|
|
import makeMarkdownRenderer from './MdRenderer';
|
|
function wrapDoc(doc: any) {
|
|
return {
|
|
default: makeMarkdownRenderer(doc)
|
|
};
|
|
}
|
|
|
|
export const cssDocs = [
|
|
{
|
|
label: '开始',
|
|
children: [
|
|
{
|
|
label: '快速开始',
|
|
path: '/zh-CN/style/index',
|
|
component: React.lazy(() =>
|
|
import('../../docs/zh-CN/style/index.md').then(wrapDoc)
|
|
)
|
|
},
|
|
{
|
|
label: 'CSS 变量',
|
|
path: '/zh-CN/style/css-vars',
|
|
component: React.lazy(() =>
|
|
import('../../docs/zh-CN/style/css-vars.md').then(wrapDoc)
|
|
)
|
|
},
|
|
{
|
|
label: '辅助类 - 响应式设计',
|
|
path: '/zh-CN/style/responsive-design',
|
|
component: React.lazy(() =>
|
|
import('../../docs/zh-CN/style/responsive-design.md').then(wrapDoc)
|
|
)
|
|
},
|
|
{
|
|
label: '辅助类 - 状态样式',
|
|
path: '/zh-CN/style/state',
|
|
component: React.lazy(() =>
|
|
import('../../docs/zh-CN/style/state.md').then(wrapDoc)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
// prefix: ({classnames: cx}) => <li className={cx('AsideNav-divider')} />,
|
|
label: 'Layout',
|
|
children: [
|
|
{
|
|
label: 'Box Sizing',
|
|
path: '/zh-CN/style/layout/box-sizing',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/layout/_box-sizing.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Display',
|
|
path: '/zh-CN/style/layout/display',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/layout/_display.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Floats',
|
|
path: '/zh-CN/style/layout/floats',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/layout/_float.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Clear',
|
|
path: '/zh-CN/style/layout/clear',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/layout/_clear.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Overflow',
|
|
path: '/zh-CN/style/layout/overflow',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/layout/_overflow.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Position',
|
|
path: '/zh-CN/style/layout/position',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/layout/_position.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Top / Right / Bottom / Left',
|
|
path: '/zh-CN/style/layout/top-right-bottom-left',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/layout/_top-right-bottom-left.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Visibility',
|
|
path: '/zh-CN/style/layout/visibility',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/layout/_visibility.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Z-Index',
|
|
path: '/zh-CN/style/layout/z-index',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/layout/_z-index.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Flexbox',
|
|
children: [
|
|
{
|
|
label: 'Flex Direction',
|
|
path: '/zh-CN/style/flex/direction',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/flex/_direction.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Flex Wrap',
|
|
path: '/zh-CN/style/flex/wrap',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/flex/_wrap.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Flex',
|
|
path: '/zh-CN/style/flex/flex',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/flex/_flex.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Flex Grow',
|
|
path: '/zh-CN/style/flex/grow',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/flex/_grow.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Flex Shrink',
|
|
path: '/zh-CN/style/flex/shrink',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/flex/_shrink.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Flex Order',
|
|
path: '/zh-CN/style/flex/order',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/flex/_order.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Grid',
|
|
children: [
|
|
{
|
|
label: 'Grid Template Columns',
|
|
path: '/zh-CN/style/grid/columns',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/grid/_columns.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
{
|
|
label: 'Grid Column Start / End',
|
|
path: '/zh-CN/style/grid/column-start-end',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/grid/_column-start-end.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
{
|
|
label: 'Grid Template Rows',
|
|
path: '/zh-CN/style/grid/rows',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/grid/_rows.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
{
|
|
label: 'Grid Row Start / End',
|
|
path: '/zh-CN/style/grid/row-start-end',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/grid/_row-start-end.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
{
|
|
label: 'Grid Auto Flow',
|
|
path: '/zh-CN/style/grid/auto-flow',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/grid/_auto-flow.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
{
|
|
label: 'Grid Auto Columns',
|
|
path: '/zh-CN/style/grid/auto-columns',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/grid/_auto-columns.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
{
|
|
label: 'Grid Auto Rows',
|
|
path: '/zh-CN/style/grid/auto-rows',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/grid/_auto-rows.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
{
|
|
label: 'Gap',
|
|
path: '/zh-CN/style/grid/gap',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/grid/_gap.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
{
|
|
label: 'Box Alignment',
|
|
children: [
|
|
{
|
|
label: 'Justify Content',
|
|
path: '/zh-CN/style/box-alignment/justify-content',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/box-alignment/_justify-content.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Justify Items',
|
|
path: '/zh-CN/style/box-alignment/justify-items',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/box-alignment/_justify-items.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Justify Self',
|
|
path: '/zh-CN/style/box-alignment/justify-self',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/box-alignment/_justify-self.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Align Content',
|
|
path: '/zh-CN/style/box-alignment/align-content',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/box-alignment/_align-content.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Align Items',
|
|
path: '/zh-CN/style/box-alignment/align-items',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/box-alignment/_align-items.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Align Self',
|
|
path: '/zh-CN/style/box-alignment/align-self',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/box-alignment/_align-self.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Place Content',
|
|
path: '/zh-CN/style/box-alignment/place-content',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/box-alignment/_place-content.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Place Items',
|
|
path: '/zh-CN/style/box-alignment/place-items',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/box-alignment/_place-items.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Place Self',
|
|
path: '/zh-CN/style/box-alignment/place-self',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/box-alignment/_place-self.md'
|
|
).then(wrapDoc)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Spacing',
|
|
children: [
|
|
{
|
|
label: 'Padding',
|
|
path: '/zh-CN/style/spacing/padding',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/spacing/_padding.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Margin',
|
|
path: '/zh-CN/style/spacing/margin',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/spacing/_margin.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Space Between',
|
|
path: '/zh-CN/style/spacing/space-between',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/spacing/_space-between.md'
|
|
).then(wrapDoc)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Sizing',
|
|
children: [
|
|
{
|
|
label: 'Width',
|
|
path: '/zh-CN/style/sizing/width',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/sizing/_width.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
},
|
|
{
|
|
label: 'Height',
|
|
path: '/zh-CN/style/sizing/height',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/sizing/_height.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Typography',
|
|
children: [
|
|
{
|
|
label: 'Font Family',
|
|
path: '/zh-CN/style/typography/font-family',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_font-family.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Font Size',
|
|
path: '/zh-CN/style/typography/font-size',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_font-size.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Font style',
|
|
path: '/zh-CN/style/typography/font-style',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_font-style.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Font Weight',
|
|
path: '/zh-CN/style/typography/font-weight',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_font-weight.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Letter Spacing',
|
|
path: '/zh-CN/style/typography/letter-spacing',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_letter-spacing.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Line Height',
|
|
path: '/zh-CN/style/typography/line-height',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_line-height.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'List Style Type',
|
|
path: '/zh-CN/style/typography/list-style-type',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_list-style-type.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Text Alignment',
|
|
path: '/zh-CN/style/typography/text-align',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_text-align.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Text Color',
|
|
path: '/zh-CN/style/typography/text-color',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_text-color.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Text Decoration',
|
|
path: '/zh-CN/style/typography/text-decoration',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_text-decoration.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Text Transform',
|
|
path: '/zh-CN/style/typography/text-transform',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_text-transform.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Vertical Alignment',
|
|
path: '/zh-CN/style/typography/vertical-align',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_vertical-align.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Whitespace',
|
|
path: '/zh-CN/style/typography/whitespace',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_whitespace.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Word Break',
|
|
path: '/zh-CN/style/typography/word-break',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/typography/_word-break.md'
|
|
).then(wrapDoc)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Backgrounds',
|
|
children: [
|
|
{
|
|
label: 'Background Color',
|
|
path: '/zh-CN/style/background/background-color',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/background/_background-color.md'
|
|
).then(wrapDoc)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'BORDERS',
|
|
children: [
|
|
{
|
|
label: 'Border Radius',
|
|
path: '/zh-CN/style/border/border-radius',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/border/_border-radius.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Border Width',
|
|
path: '/zh-CN/style/border/border-width',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/border/_border-width.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Border Color',
|
|
path: '/zh-CN/style/border/border-color',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/border/_border-color.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Border Style',
|
|
path: '/zh-CN/style/border/border-style',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/border/_border-style.md'
|
|
).then(wrapDoc)
|
|
)
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Effect',
|
|
children: [
|
|
{
|
|
label: 'Box Shadow',
|
|
path: '/zh-CN/style/effect/box-shadow',
|
|
component: React.lazy(() =>
|
|
import(
|
|
'../../packages/amis-ui/scss/helper/effect/_box-shadow.md'
|
|
).then(wrapDoc)
|
|
)
|
|
},
|
|
|
|
{
|
|
label: 'Opacity',
|
|
path: '/zh-CN/style/effect/opacity',
|
|
component: React.lazy(() =>
|
|
import('../../packages/amis-ui/scss/helper/effect/_opacity.md').then(
|
|
wrapDoc
|
|
)
|
|
)
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
export default class CSSDocs extends React.PureComponent<any> {
|
|
componentDidMount() {
|
|
this.props.setNavigations(cssDocs);
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
this.props.setNavigations(cssDocs, false);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Switch>
|
|
{navigations2route(cssDocs, {
|
|
theme: this.props.theme,
|
|
classPrefix: this.props.classPrefix,
|
|
locale: this.props.locale,
|
|
viewMode: this.props.viewMode,
|
|
offScreen: this.props.offScreen
|
|
})}
|
|
{/* {React.cloneElement(this.props.children as any, {
|
|
...(this.props.children as any).props,
|
|
theme: this.props.theme,
|
|
classPrefix: this.props.classPrefix,
|
|
locale: this.props.locale,
|
|
viewMode: this.props.viewMode,
|
|
offScreen: this.props.offScreen
|
|
})} */}
|
|
</Switch>
|
|
);
|
|
}
|
|
}
|