From 4ed25b9ceb200cbd37ab72121ddc840833f780ca Mon Sep 17 00:00:00 2001 From: chaishi <974383157@qq.com> Date: Thu, 16 Nov 2023 15:57:42 +0800 Subject: [PATCH 1/4] feat(space): support lower browser --- package.json | 3 +++ src/_common | 2 +- src/space/Space.tsx | 26 +++++++++++++++++------ src/space/__tests__/space.test.tsx | 2 +- src/space/__tests__/vitest-space.test.jsx | 14 ++++++++---- src/space/space.en-US.md | 4 ++-- 6 files changed, 36 insertions(+), 15 deletions(-) diff --git a/package.json b/package.json index f517dc50c1..5c78e4bcd6 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,9 @@ "typings": "es/index.d.ts", "unpkg": "dist/tdesign.min.js", "jsdelivr": "dist/tdesign.min.js", + "engines": { + "node": ">=18" + }, "files": [ "esm", "es", diff --git a/src/_common b/src/_common index 16229778d5..8d6eae0bc9 160000 --- a/src/_common +++ b/src/_common @@ -1 +1 @@ -Subproject commit 16229778d5c97e66d81b4107171a2af00a7b262d +Subproject commit 8d6eae0bc94f8d0baf823b8c7178b563106877b8 diff --git a/src/space/Space.tsx b/src/space/Space.tsx index ad8e491dbd..105cf3ac7c 100644 --- a/src/space/Space.tsx +++ b/src/space/Space.tsx @@ -1,16 +1,20 @@ -import React, { forwardRef, useMemo } from 'react'; +import React, { CSSProperties, forwardRef, useMemo } from 'react'; import classNames from 'classnames'; import { isFragment } from 'react-is'; import useConfig from '../hooks/useConfig'; import { TdSpaceProps } from './type'; import { StyledProps } from '../common'; import { spaceDefaultProps } from './defaultProps'; +import { getFlexGapPolyFill } from '../_common/js/utils/helper'; // export for test export const SizeMap = { small: '8px', medium: '16px', large: '24px' }; +const defaultNeedPolyfill = getFlexGapPolyFill(); export interface SpaceProps extends TdSpaceProps, StyledProps { children?: React.ReactNode; + /** 强制使用 margin 间距代替 gap 属性间距(某些浏览器不支持 gap 属性) */ + forceFlexGapPolyfill?: boolean; } const toArray = (children: React.ReactNode): React.ReactElement[] => { @@ -37,6 +41,8 @@ const Space = forwardRef((props: SpaceProps, ref: React.Ref) => const { className, style, align, direction, size, breakLine, separator } = props; const { classPrefix } = useConfig(); + const needPolyfill = Boolean(props.forceFlexGapPolyfill || defaultNeedPolyfill); + const renderStyle = useMemo(() => { let renderGap = ''; if (Array.isArray(size)) { @@ -53,12 +59,16 @@ const Space = forwardRef((props: SpaceProps, ref: React.Ref) => renderGap = `${size}px`; } - return { - gap: renderGap, - ...(breakLine ? { flexWrap: 'wrap' } : {}), - ...style, - }; - }, [style, size, breakLine]) as React.CSSProperties; + const tStyle: CSSProperties = { ...style }; + if (needPolyfill) { + const [columnGap, rowGap] = renderGap.split(' '); + tStyle['--td-space-column-gap'] = columnGap; + tStyle['--td-space-row-gap'] = rowGap || columnGap; + } else { + tStyle.gap = renderGap; + } + return tStyle; + }, [style, size, needPolyfill]) as React.CSSProperties; function renderChildren() { const children = toArray(props.children); @@ -82,6 +92,8 @@ const Space = forwardRef((props: SpaceProps, ref: React.Ref) => className={classNames(`${classPrefix}-space`, className, { [`${classPrefix}-space-align-${align}`]: align, [`${classPrefix}-space-${direction}`]: direction, + [`${classPrefix}-space--break-line`]: breakLine, + [`${classPrefix}-space--polyfill`]: needPolyfill, })} > {renderChildren()} diff --git a/src/space/__tests__/space.test.tsx b/src/space/__tests__/space.test.tsx index d07ad7cc3f..4ceb65a38e 100644 --- a/src/space/__tests__/space.test.tsx +++ b/src/space/__tests__/space.test.tsx @@ -49,7 +49,7 @@ describe('Space 组件测试', () => {
, ); - expect((container.firstChild as HTMLDivElement).style.flexWrap).toBe('wrap'); + expect((container.firstChild as HTMLDivElement).classList.contains('t-space--break-line')).toBeTruthy(); }); test('separator', async () => { diff --git a/src/space/__tests__/vitest-space.test.jsx b/src/space/__tests__/vitest-space.test.jsx index 426b867f5c..eed437f43c 100644 --- a/src/space/__tests__/vitest-space.test.jsx +++ b/src/space/__tests__/vitest-space.test.jsx @@ -16,10 +16,16 @@ describe('Space Component', () => { }); }); - it(`props.breakLine is equal to true`, () => { - const { container } = getSpaceDefaultMount(Space, { breakLine: true }); - const domWrapper = container.firstChild; - expect(domWrapper.style.flexWrap).toBe('wrap'); + it('props.breakLine works fine', () => { + // breakLine default value is false + const { container: container1 } = getSpaceDefaultMount(Space); + expect(container1.querySelector(`.${'t-space--break-line'}`)).toBeFalsy(); + // breakLine = true + const { container: container2 } = getSpaceDefaultMount(Space, { breakLine: true }); + expect(container2.firstChild).toHaveClass('t-space--break-line'); + // breakLine = false + const { container: container3 } = getSpaceDefaultMount(Space, { breakLine: false }); + expect(container3.querySelector(`.${'t-space--break-line'}`)).toBeFalsy(); }); ['vertical', 'horizontal'].forEach((item) => { diff --git a/src/space/space.en-US.md b/src/space/space.en-US.md index 3968fa95f2..9d1b5222d4 100644 --- a/src/space/space.en-US.md +++ b/src/space/space.en-US.md @@ -7,8 +7,8 @@ name | type | default | description | required -- | -- | -- | -- | -- className | String | - | 类名 | N style | Object | - | 样式,Typescript:`React.CSSProperties` | N -align | String | - | alignment。options:start/end/center/baseline | N +align | String | - | alignment。options: start/end/center/baseline | N breakLine | Boolean | false | Whether to wrap, valid only in horizontal | N -direction | String | horizontal | Spacing direction。options:vertical/horizontal | N +direction | String | horizontal | Spacing direction。options: vertical/horizontal | N separator | TNode | - | separator。Typescript:`string \| TNode`。[see more ts definition](https://github.com/Tencent/tdesign-react/blob/develop/src/common.ts) | N size | String / Number / Array | 'medium' | Spacing。Typescript:`SpaceSize \| SpaceSize[]` `type SpaceSize = number \| string \| SizeEnum`。[see more ts definition](https://github.com/Tencent/tdesign-react/blob/develop/src/common.ts)。[see more ts definition](https://github.com/Tencent/tdesign-react/blob/develop/src/space/type.ts) | N From 8899d8848da7e7bf26ecfefc6bc8757db1689a2f Mon Sep 17 00:00:00 2001 From: chaishi <974383157@qq.com> Date: Tue, 21 Nov 2023 15:31:21 +0800 Subject: [PATCH 2/4] feat: update common --- src/_common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_common b/src/_common index 8d6eae0bc9..95b4e8ecd3 160000 --- a/src/_common +++ b/src/_common @@ -1 +1 @@ -Subproject commit 8d6eae0bc94f8d0baf823b8c7178b563106877b8 +Subproject commit 95b4e8ecd34a9ebd91973c8c211cb7b04f7394f4 From 539569daf953d23b37dcaa5213fbd7f66d4801fd Mon Sep 17 00:00:00 2001 From: Uyarn Date: Fri, 24 Nov 2023 19:43:46 +0800 Subject: [PATCH 3/4] chore: update common --- package.json | 3 --- src/_common | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index 5c78e4bcd6..f517dc50c1 100644 --- a/package.json +++ b/package.json @@ -9,9 +9,6 @@ "typings": "es/index.d.ts", "unpkg": "dist/tdesign.min.js", "jsdelivr": "dist/tdesign.min.js", - "engines": { - "node": ">=18" - }, "files": [ "esm", "es", diff --git a/src/_common b/src/_common index 95b4e8ecd3..c31a009819 160000 --- a/src/_common +++ b/src/_common @@ -1 +1 @@ -Subproject commit 95b4e8ecd34a9ebd91973c8c211cb7b04f7394f4 +Subproject commit c31a0098192ca4cd14185ab0baf0d03559beb6eb From ae1159f78eb7745894dbadfd6ab43cb5f5c36989 Mon Sep 17 00:00:00 2001 From: Uyarn Date: Fri, 24 Nov 2023 19:49:11 +0800 Subject: [PATCH 4/4] chore: update snapshot --- test/snap/__snapshots__/csr.test.jsx.snap | 484 +++++++++++----------- test/snap/__snapshots__/ssr.test.jsx.snap | 164 ++++---- 2 files changed, 324 insertions(+), 324 deletions(-) diff --git a/test/snap/__snapshots__/csr.test.jsx.snap b/test/snap/__snapshots__/csr.test.jsx.snap index c9b10d7b7c..a49e79852f 100644 --- a/test/snap/__snapshots__/csr.test.jsx.snap +++ b/test/snap/__snapshots__/csr.test.jsx.snap @@ -207,7 +207,7 @@ exports[`csr snapshot test > csr test src/alert/_example/base.jsx 1`] = `
csr test src/alert/_example/base.jsx 1`] = ` "container":
csr test src/alert/_example/operation.jsx 1`] = `
csr test src/alert/_example/operation.jsx 1`] = ` "container":
csr test src/auto-complete/_example/base.jsx 1`] =
csr test src/auto-complete/_example/base.jsx 1`] = "container":
csr test src/auto-complete/_example/filter.jsx 1`]
csr test src/auto-complete/_example/filter.jsx 1`] "container":
csr test src/auto-complete/_example/size.jsx 1`] =
csr test src/auto-complete/_example/size.jsx 1`] = "container":
csr test src/auto-complete/_example/status.jsx 1`]
csr test src/auto-complete/_example/status.jsx 1`] "container":
csr test src/button/_example/block.jsx 1`] = `
csr test src/button/_example/block.jsx 1`] = ` "container":
csr test src/calendar/_example/first-day-of-week.js
csr test src/calendar/_example/first-day-of-week.js
csr test src/calendar/_example/mode.jsx 1`] = `
csr test src/calendar/_example/mode.jsx 1`] = `
csr test src/color-picker/_example/color-mode.jsx 1 />
csr test src/color-picker/_example/color-mode.jsx 1 , "container":
csr test src/comment/_example/reply-form.jsx 1`] = >
csr test src/comment/_example/reply-form.jsx 1`] = >
csr test src/dialog/_example/warning.jsx 1`] = ` />
csr test src/dialog/_example/warning.jsx 1`] = ` , "container":
csr test src/grid/_example/responsive.jsx 1`] = `
csr test src/grid/_example/responsive.jsx 1`] = ` "container":
csr test src/icon/_example/IconExample.jsx 1`] = ` class="t-space-item" >
csr test src/icon/_example/IconExample.jsx 1`] = ` class="t-space-item" >
csr test src/icon/_example/IconExample.jsx 1`] = ` class="t-space-item" >
csr test src/icon/_example/IconExample.jsx 1`] = ` class="t-space-item" >
csr test src/icon/_example/IconFontExample.jsx 1`] class="t-space-item" >
csr test src/icon/_example/IconFontExample.jsx 1`] class="t-space-item" >
csr test src/icon/_example/SvgSpriteExample.jsx 1`] class="t-space-item" >
csr test src/icon/_example/SvgSpriteExample.jsx 1`] class="t-space-item" >
csr test src/image/_example/fill-mode.jsx 1`] = ` />
csr test src/image/_example/fill-mode.jsx 1`] = ` , "container":
csr test src/image/_example/fill-position.jsx 1`] =
csr test src/image/_example/fill-position.jsx 1`] = class="t-space-item" >
csr test src/image/_example/fill-position.jsx 1`] = class="t-space-item" >
csr test src/image/_example/fill-position.jsx 1`] = class="t-space-item" >
csr test src/image/_example/fill-position.jsx 1`] = "container":
csr test src/image/_example/fill-position.jsx 1`] = class="t-space-item" >
csr test src/image/_example/fill-position.jsx 1`] = class="t-space-item" >
csr test src/image/_example/fill-position.jsx 1`] = class="t-space-item" >
csr test src/image/_example/lazy-list.jsx 1`] = ` class="t-space-item" >
csr test src/image/_example/lazy-list.jsx 1`] = ` class="t-space-item" >
csr test src/image-viewer/_example/album.jsx 1`] = />
csr test src/image-viewer/_example/album.jsx 1`] = , "container":
csr test src/image-viewer/_example/albumIcons.jsx 1 />
csr test src/image-viewer/_example/albumIcons.jsx 1 , "container":
csr test src/image-viewer/_example/base.jsx 1`] = ` />
csr test src/image-viewer/_example/base.jsx 1`] = ` , "container":
csr test src/image-viewer/_example/block.jsx 1`] = />
csr test src/image-viewer/_example/block.jsx 1`] = , "container":
csr test src/image-viewer/_example/modeless.jsx 1`] />
csr test src/image-viewer/_example/modeless.jsx 1`] , "container":
csr test src/image-viewer/_example/multiple.jsx 1`] />
csr test src/image-viewer/_example/multiple.jsx 1`] , "container":
csr test src/input/_example/align.jsx 1`] = `
csr test src/input/_example/align.jsx 1`] = ` "container":
csr test src/input/_example/base.jsx 1`] = `
csr test src/input/_example/base.jsx 1`] = ` "container":
csr test src/input/_example/max-length-count.jsx 1`
csr test src/input/_example/max-length-count.jsx 1` "container":
csr test src/input/_example/size.jsx 1`] = `
csr test src/input/_example/size.jsx 1`] = ` "container":
csr test src/input-adornment/_example/text.jsx 1`]
csr test src/input-adornment/_example/text.jsx 1`] "container":
csr test src/list/_example/operation.jsx 1`] = `
csr test src/list/_example/operation.jsx 1`] = ` "container":
csr test src/message/_example/offset.jsx 1`] = ` >
csr test src/message/_example/offset.jsx 1`] = ` >
csr test src/progress/_example/circle.jsx 1`] = ` >
csr test src/progress/_example/circle.jsx 1`] = ` >
csr test src/progress/_example/circle.jsx 1`] = ` >
csr test src/progress/_example/circle.jsx 1`] = ` >
csr test src/progress/_example/circle.jsx 1`] = ` >
csr test src/progress/_example/circle.jsx 1`] = ` >
csr test src/progress/_example/line.jsx 1`] = `
csr test src/progress/_example/line.jsx 1`] = ` >
csr test src/progress/_example/line.jsx 1`] = ` "container":
csr test src/progress/_example/line.jsx 1`] = ` >
csr test src/rate/_example/status.jsx 1`] = `
csr test src/rate/_example/status.jsx 1`] = ` "container":
csr test src/select/_example/collapsed.jsx 1`] = ` />
csr test src/select/_example/collapsed.jsx 1`] = ` , "container":
csr test src/select/_example/filterable.jsx 1`] = ` />
csr test src/select/_example/filterable.jsx 1`] = ` , "container":
csr test src/select/_example/group.jsx 1`] = ` />
csr test src/select/_example/group.jsx 1`] = ` , "container":
csr test src/select/_example/label-in-value.jsx 1`]
csr test src/select/_example/label-in-value.jsx 1`] "container":
csr test src/select/_example/multiple.jsx 1`] = ` />
csr test src/select/_example/multiple.jsx 1`] = ` , "container":
csr test src/select/_example/size.jsx 1`] = ` />
csr test src/select/_example/size.jsx 1`] = ` , "container":
csr test src/space/_example/align.jsx 1`] = ` />
csr test src/space/_example/align.jsx 1`] = ` >
csr test src/space/_example/align.jsx 1`] = ` >
csr test src/space/_example/align.jsx 1`] = ` >
csr test src/space/_example/align.jsx 1`] = ` , "container":
csr test src/space/_example/align.jsx 1`] = ` >
csr test src/space/_example/align.jsx 1`] = ` >
csr test src/space/_example/align.jsx 1`] = ` >
csr test src/space/_example/break-line.jsx 1`] = ` />
csr test src/space/_example/break-line.jsx 1`] = ` , "container":
csr test src/steps/_example/sequence.jsx 1`] = `
csr test src/steps/_example/sequence.jsx 1`] = ` "container":
csr test src/steps/_example/status.jsx 1`] = `
csr test src/steps/_example/status.jsx 1`] = ` "container":
csr test src/swiper/_example/current.jsx 1`] = `
csr test src/swiper/_example/current.jsx 1`] = ` "container":
csr test src/table/_example/affix.jsx 1`] = `
csr test src/table/_example/affix.jsx 1`] = ` "container":
csr test src/table/_example/custom-col.jsx 1`] = `
csr test src/table/_example/custom-col.jsx 1`] = ` "container":
csr test src/table/_example/expandable.jsx 1`] = `
csr test src/table/_example/expandable.jsx 1`] = ` "container":
csr test src/table/_example/fixed-column.jsx 1`] =
csr test src/table/_example/fixed-column.jsx 1`] = "container":
csr test src/table/_example/fixed-header-col.jsx 1`
csr test src/table/_example/fixed-header-col.jsx 1` "container":
csr test src/table/_example/multi-header.jsx 1`] =
csr test src/table/_example/multi-header.jsx 1`] = "container":
csr test src/table/_example/pagination.jsx 1`] = `
csr test src/table/_example/pagination.jsx 1`] = ` "container":
csr test src/tabs/_example/ban.jsx 1`] = `
csr test src/tabs/_example/ban.jsx 1`] = ` "container":
csr test src/tabs/_example/base.jsx 1`] = `
csr test src/tabs/_example/base.jsx 1`] = ` "container":
csr test src/tabs/_example/combination.jsx 1`] = `
csr test src/tabs/_example/combination.jsx 1`] = ` "container":
csr test src/tabs/_example/drag-sort.jsx 1`] = `
csr test src/tabs/_example/drag-sort.jsx 1`] = ` "container":
csr test src/tabs/_example/icon.jsx 1`] = `
csr test src/tabs/_example/icon.jsx 1`] = ` "container":
csr test src/tabs/_example/position.jsx 1`] = `
csr test src/tabs/_example/position.jsx 1`] = ` "container":
csr test src/tabs/_example/size.jsx 1`] = `
csr test src/tabs/_example/size.jsx 1`] = ` "container":
csr test src/tabs/_example/theme.jsx 1`] = `
csr test src/tabs/_example/theme.jsx 1`] = ` "container":
csr test src/tag-input/_example/base.jsx 1`] = `
csr test src/tag-input/_example/base.jsx 1`] = ` "container":
csr test src/tag-input/_example/collapsed.jsx 1`] =
csr test src/tag-input/_example/collapsed.jsx 1`] = "container":
csr test src/tag-input/_example/custom-tag.jsx 1`]
csr test src/tag-input/_example/custom-tag.jsx 1`] "container":
csr test src/tag-input/_example/draggable.jsx 1`] =
csr test src/tag-input/_example/draggable.jsx 1`] = "container":
csr test src/tag-input/_example/excess.jsx 1`] = `
csr test src/tag-input/_example/excess.jsx 1`] = ` "container":
csr test src/tag-input/_example/size.jsx 1`] = `
csr test src/tag-input/_example/size.jsx 1`] = ` "container":
csr test src/tag-input/_example/status.jsx 1`] = `
csr test src/tag-input/_example/status.jsx 1`] = ` "container":
csr test src/tag-input/_example/theme.jsx 1`] = `
csr test src/tag-input/_example/theme.jsx 1`] = ` "container":
csr test src/textarea/_example/base.jsx 1`] = `
csr test src/textarea/_example/base.jsx 1`] = ` "container":
csr test src/textarea/_example/maxlength.jsx 1`] =
csr test src/textarea/_example/maxlength.jsx 1`] = "container":
csr test src/textarea/_example/status.jsx 1`] = `
csr test src/textarea/_example/status.jsx 1`] = ` "container":
csr test src/textarea/_example/type.jsx 1`] = `
csr test src/textarea/_example/type.jsx 1`] = ` "container":
csr test src/tree/_example/filter.jsx 1`] = `
csr test src/tree/_example/filter.jsx 1`] = ` "container":
csr test src/tree/_example/operations.jsx 1`] = ` class="t-space-item" >
csr test src/tree/_example/operations.jsx 1`] = ` class="t-space-item" >
csr test src/tree/_example/sync.jsx 1`] = `
csr test src/tree/_example/sync.jsx 1`] = ` "container":
csr test src/tree-select/_example/collapsed.jsx 1`]
csr test src/tree-select/_example/collapsed.jsx 1`] "container":
csr test src/tree-select/_example/filterable.jsx 1`
csr test src/tree-select/_example/filterable.jsx 1` "container":
csr test src/tree-select/_example/panelContent.jsx
csr test src/tree-select/_example/panelContent.jsx "container":
csr test src/tree-select/_example/valuedisplay.jsx
csr test src/tree-select/_example/valuedisplay.jsx "container":
csr test src/tree-select/_example/valuetype.jsx 1`]
csr test src/tree-select/_example/valuetype.jsx 1`] "container":
csr test src/upload/_example/file-flow-list.jsx 1`] class="t-space-item" >
csr test src/upload/_example/file-flow-list.jsx 1`] class="t-space-item" >
ssr test src/affix/_example/base.jsx 1`] = `"
< exports[`ssr snapshot test > ssr test src/affix/_example/container.jsx 1`] = `"
"`; -exports[`ssr snapshot test > ssr test src/alert/_example/base.jsx 1`] = `"
这是一条成功的消息提示
这是一条普通的消息提示
这是一条警示消息
高危操作/出错信息提示
"`; +exports[`ssr snapshot test > ssr test src/alert/_example/base.jsx 1`] = `"
这是一条成功的消息提示
这是一条普通的消息提示
这是一条警示消息
高危操作/出错信息提示
"`; exports[`ssr snapshot test > ssr test src/alert/_example/close.jsx 1`] = `"
这是一条成功的消息提示
这是一条普通的消息提示
关闭
这是一条警示消息
知道了
高危操作/出错信息提示
自定义关闭
"`; @@ -12,7 +12,7 @@ exports[`ssr snapshot test > ssr test src/alert/_example/collapse.jsx 1`] = `" ssr test src/alert/_example/icon.jsx 1`] = `"
这是一条成功的消息提示
这是一条普通的消息提示
这是一条警示消息
高危操作/出错信息提示
"`; -exports[`ssr snapshot test > ssr test src/alert/_example/operation.jsx 1`] = `"
这是一条成功的消息提示
相关操作
这是一条普通的消息提示
相关操作
这是一条警示消息
相关操作
高危操作/出错信息提示
相关操作
"`; +exports[`ssr snapshot test > ssr test src/alert/_example/operation.jsx 1`] = `"
这是一条成功的消息提示
相关操作
这是一条普通的消息提示
相关操作
这是一条警示消息
相关操作
高危操作/出错信息提示
相关操作
"`; exports[`ssr snapshot test > ssr test src/alert/_example/swiper.jsx 1`] = `"
这是一条成功的消息提示
这是一条普通的消息提示
这是一条警示消息
高危操作/出错信息提示
"`; @@ -34,15 +34,15 @@ exports[`ssr snapshot test > ssr test src/anchor/_example/small.jsx 1`] = `"
ssr test src/anchor/_example/target.jsx 1`] = `"

基础锚点

多级锚点

尺寸大小

指定容器

"`; -exports[`ssr snapshot test > ssr test src/auto-complete/_example/base.jsx 1`] = `"
"`; +exports[`ssr snapshot test > ssr test src/auto-complete/_example/base.jsx 1`] = `"
"`; -exports[`ssr snapshot test > ssr test src/auto-complete/_example/filter.jsx 1`] = `"
"`; +exports[`ssr snapshot test > ssr test src/auto-complete/_example/filter.jsx 1`] = `"
"`; exports[`ssr snapshot test > ssr test src/auto-complete/_example/option.jsx 1`] = `"
"`; -exports[`ssr snapshot test > ssr test src/auto-complete/_example/size.jsx 1`] = `"
小尺寸:
中尺寸:
大尺寸:
"`; +exports[`ssr snapshot test > ssr test src/auto-complete/_example/size.jsx 1`] = `"
小尺寸:
中尺寸:
大尺寸:
"`; -exports[`ssr snapshot test > ssr test src/auto-complete/_example/status.jsx 1`] = `"
这是禁用状态
这是只读状态
这是普通状态
这是告警状态
这是错误状态
这是成功状态
"`; +exports[`ssr snapshot test > ssr test src/auto-complete/_example/status.jsx 1`] = `"
这是禁用状态
这是只读状态
这是普通状态
这是告警状态
这是错误状态
这是成功状态
"`; exports[`ssr snapshot test > ssr test src/auto-complete/_example/trigger-element.jsx 1`] = `"
"`; @@ -102,7 +102,7 @@ exports[`ssr snapshot test > ssr test src/breadcrumb/_example/width.jsx 1`] = `" exports[`ssr snapshot test > ssr test src/button/_example/base.jsx 1`] = `"
"`; -exports[`ssr snapshot test > ssr test src/button/_example/block.jsx 1`] = `"
"`; +exports[`ssr snapshot test > ssr test src/button/_example/block.jsx 1`] = `"
"`; exports[`ssr snapshot test > ssr test src/button/_example/custom-element.jsx 1`] = `""`; @@ -134,11 +134,11 @@ exports[`ssr snapshot test > ssr test src/calendar/_example/events.jsx 1`] = `"< exports[`ssr snapshot test > ssr test src/calendar/_example/filter.jsx 1`] = `"
请选择
请选择
隐藏周末
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
01
02
03
04
"`; -exports[`ssr snapshot test > ssr test src/calendar/_example/first-day-of-week.jsx 1`] = `"
请选择
请选择
隐藏周末
25
26
27
28
29
30
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
01
02
03
04
05
"`; +exports[`ssr snapshot test > ssr test src/calendar/_example/first-day-of-week.jsx 1`] = `"
请选择
请选择
隐藏周末
25
26
27
28
29
30
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
01
02
03
04
05
"`; exports[`ssr snapshot test > ssr test src/calendar/_example/head.jsx 1`] = `"
🗓 TDesign开发计划
请选择
请选择
隐藏周末
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
01
02
03
04
"`; -exports[`ssr snapshot test > ssr test src/calendar/_example/mode.jsx 1`] = `"
请选择
请选择
隐藏周末
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
01
02
03
04
"`; +exports[`ssr snapshot test > ssr test src/calendar/_example/mode.jsx 1`] = `"
请选择
请选择
隐藏周末
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
01
02
03
04
"`; exports[`ssr snapshot test > ssr test src/calendar/_example/range.jsx 1`] = `"
请选择
请选择
隐藏周末
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
01
02
03
04
"`; @@ -228,7 +228,7 @@ exports[`ssr snapshot test > ssr test src/collapse/_example/other.jsx 1`] = `" ssr test src/collapse/_example/rightSlot.jsx 1`] = `"
这是一个折叠标题
这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
这是一个折叠标题
这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
这是一个折叠标题
这部分是每个折叠面板折叠或展开的内容,可根据不同业务或用户的使用诉求,进行自定义填充。可以是纯文本、图文、子列表等内容形式。
"`; -exports[`ssr snapshot test > ssr test src/color-picker/_example/color-mode.jsx 1`] = `"
默认(单色 + 线性渐变)
#0052d9
仅单色模式
#0052d9
仅线性渐变模式
linear-gradient(45deg, #4facfe 0%, #00f2fe 100%)
"`; +exports[`ssr snapshot test > ssr test src/color-picker/_example/color-mode.jsx 1`] = `"
默认(单色 + 线性渐变)
#0052d9
仅单色模式
#0052d9
仅线性渐变模式
linear-gradient(45deg, #4facfe 0%, #00f2fe 100%)
"`; exports[`ssr snapshot test > ssr test src/color-picker/_example/enable-alpha.jsx 1`] = `"
请选择

最近使用颜色

    系统预设颜色

    "`; @@ -254,7 +254,7 @@ exports[`ssr snapshot test > ssr test src/comment/_example/quote.jsx 1`] = `" ssr test src/comment/_example/reply.jsx 1`] = `"
    \\"\\"
    评论作者名A今天16:38
    A评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
    \\"\\"
    评论作者名B评论作者名A今天16:38
    B评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容评论内容。
    "`; -exports[`ssr snapshot test > ssr test src/comment/_example/reply-form.jsx 1`] = `"
    \\"\\"
    "`; +exports[`ssr snapshot test > ssr test src/comment/_example/reply-form.jsx 1`] = `"
    \\"\\"
    "`; exports[`ssr snapshot test > ssr test src/config-provider/_example/calendar.jsx 1`] = `"
    please select
    please select
    Hide Weekend
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    1
    2
    3
    4
    "`; @@ -312,7 +312,7 @@ exports[`ssr snapshot test > ssr test src/dialog/_example/plugin.jsx 1`] = `" ssr test src/dialog/_example/position.jsx 1`] = `""`; -exports[`ssr snapshot test > ssr test src/dialog/_example/warning.jsx 1`] = `"
    "`; +exports[`ssr snapshot test > ssr test src/dialog/_example/warning.jsx 1`] = `"
    "`; exports[`ssr snapshot test > ssr test src/divider/_example/base.jsx 1`] = `"

    通过高效广告平台,协助品牌和市场营销者触达数以亿计的中国消费者通过金融科技及企业服务,促进合作伙伴业务发展,助力实现数字化升级,我们大力投资于人才队伍和推动科技创新,积极参与互联网行业协同发展。

    通过高效广告平台,协助品牌和市场营销者触达数以亿计的中国消费者通过金融科技及企业服务,促进合作伙伴业务发展,助力实现数字化升级,我们大力投资于人才队伍和推动科技创新,积极参与互联网行业协同发展。

    通过高效广告平台,协助品牌和市场营销者触达数以亿计的中国消费者通过金融科技及企业服务,促进合作伙伴业务发展,助力实现数字化升级,我们大力投资于人才队伍和推动科技创新,积极参与互联网行业协同发展。

    "`; @@ -406,7 +406,7 @@ exports[`ssr snapshot test > ssr test src/grid/_example/offset.jsx 1`] = `"
    ssr test src/grid/_example/order.jsx 1`] = `"
    通过 \`order\` 来改变元素的排序。
    1 col-order-4
    2 col-order-3
    3 col-order-2
    4 col-order-1
    1 col-order-responsive
    2 col-order-responsive
    3 col-order-responsive
    4 col-order-responsive
    "`; -exports[`ssr snapshot test > ssr test src/grid/_example/responsive.jsx 1`] = `"
    宽度响应式
    Col
    Col
    其他属性响应式(支持span,offset,order,pull,push)
    Col
    "`; +exports[`ssr snapshot test > ssr test src/grid/_example/responsive.jsx 1`] = `"
    宽度响应式
    Col
    Col
    其他属性响应式(支持span,offset,order,pull,push)
    Col
    "`; exports[`ssr snapshot test > ssr test src/grid/_example/sort.jsx 1`] = `"
    通过 \`pull\` \`push\` 进行排序
    col-9 col-push-3
    col-3 col-pull-9
    col-8 col-push-4
    col-4 col-pull-8
    "`; @@ -424,15 +424,15 @@ exports[`ssr snapshot test > ssr test src/guide/_example/popup-dialog.jsx 1`] = exports[`ssr snapshot test > ssr test src/icon/_example/Enhanced.jsx 1`] = `"


    "`; -exports[`ssr snapshot test > ssr test src/icon/_example/IconExample.jsx 1`] = `"
    "`; +exports[`ssr snapshot test > ssr test src/icon/_example/IconExample.jsx 1`] = `"
    "`; exports[`ssr snapshot test > ssr test src/icon/_example/IconFontEnhanced.jsx 1`] = `"


    "`; -exports[`ssr snapshot test > ssr test src/icon/_example/IconFontExample.jsx 1`] = `"

    How do you feel today?

    What is your favourite food?

    How much icons does TDesign Icon includes?

    "`; +exports[`ssr snapshot test > ssr test src/icon/_example/IconFontExample.jsx 1`] = `"

    How do you feel today?

    What is your favourite food?

    How much icons does TDesign Icon includes?

    "`; exports[`ssr snapshot test > ssr test src/icon/_example/IconSelect.jsx 1`] = `"
    "`; -exports[`ssr snapshot test > ssr test src/icon/_example/SvgSpriteExample.jsx 1`] = `"

    How do you feel today?

    What is your favourite food?

    How much icons does TDesign Icon includes?

    "`; +exports[`ssr snapshot test > ssr test src/icon/_example/SvgSpriteExample.jsx 1`] = `"

    How do you feel today?

    What is your favourite food?

    How much icons does TDesign Icon includes?

    "`; exports[`ssr snapshot test > ssr test src/image/_example/avif.jsx 1`] = `"
    图片加载中
    "`; @@ -440,13 +440,13 @@ exports[`ssr snapshot test > ssr test src/image/_example/extra-always.jsx 1`] = exports[`ssr snapshot test > ssr test src/image/_example/extra-hover.jsx 1`] = `"
    图片加载中
    预览
    "`; -exports[`ssr snapshot test > ssr test src/image/_example/fill-mode.jsx 1`] = `"
    图片加载中
    fill
    图片加载中
    contain
    图片加载中
    cover
    图片加载中
    none
    图片加载中
    scale-down
    "`; +exports[`ssr snapshot test > ssr test src/image/_example/fill-mode.jsx 1`] = `"
    图片加载中
    fill
    图片加载中
    contain
    图片加载中
    cover
    图片加载中
    none
    图片加载中
    scale-down
    "`; -exports[`ssr snapshot test > ssr test src/image/_example/fill-position.jsx 1`] = `"
    图片加载中
    cover center
    图片加载中
    cover left
    图片加载中
    cover right
    图片加载中
    cover top
    图片加载中
    cover bottom
    图片加载中
    contain top
    图片加载中
    contain bottom
    图片加载中
    contain center
    图片加载中
    contain left
    图片加载中
    contain right
    "`; +exports[`ssr snapshot test > ssr test src/image/_example/fill-position.jsx 1`] = `"
    图片加载中
    cover center
    图片加载中
    cover left
    图片加载中
    cover right
    图片加载中
    cover top
    图片加载中
    cover bottom
    图片加载中
    contain top
    图片加载中
    contain bottom
    图片加载中
    contain center
    图片加载中
    contain left
    图片加载中
    contain right
    "`; exports[`ssr snapshot test > ssr test src/image/_example/gallery-cover.jsx 1`] = `"
    图片加载中
    标签一
    "`; -exports[`ssr snapshot test > ssr test src/image/_example/lazy-list.jsx 1`] = `"
    "`; +exports[`ssr snapshot test > ssr test src/image/_example/lazy-list.jsx 1`] = `"
    "`; exports[`ssr snapshot test > ssr test src/image/_example/lazy-single.jsx 1`] = `"
    "`; @@ -454,29 +454,29 @@ exports[`ssr snapshot test > ssr test src/image/_example/placeholder.jsx 1`] = ` exports[`ssr snapshot test > ssr test src/image/_example/shape.jsx 1`] = `"
    图片加载中
    square
    图片加载中
    round
    图片加载中
    circle
    "`; -exports[`ssr snapshot test > ssr test src/image-viewer/_example/album.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    相册封面标题
    "`; +exports[`ssr snapshot test > ssr test src/image-viewer/_example/album.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    相册封面标题
    "`; -exports[`ssr snapshot test > ssr test src/image-viewer/_example/albumIcons.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    相册封面标题
    "`; +exports[`ssr snapshot test > ssr test src/image-viewer/_example/albumIcons.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    相册封面标题
    "`; -exports[`ssr snapshot test > ssr test src/image-viewer/_example/base.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    "`; +exports[`ssr snapshot test > ssr test src/image-viewer/_example/base.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    "`; -exports[`ssr snapshot test > ssr test src/image-viewer/_example/block.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    \\"test\\"/
    图片加载中
    预览
    "`; +exports[`ssr snapshot test > ssr test src/image-viewer/_example/block.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    \\"test\\"/
    图片加载中
    预览
    "`; exports[`ssr snapshot test > ssr test src/image-viewer/_example/button.jsx 1`] = `""`; exports[`ssr snapshot test > ssr test src/image-viewer/_example/error.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    \\"test\\"/
    图片加载中
    预览
    \\"test\\"/
    图片加载中
    预览
    \\"test\\"/
    图片加载中
    预览
    "`; -exports[`ssr snapshot test > ssr test src/image-viewer/_example/modeless.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    "`; +exports[`ssr snapshot test > ssr test src/image-viewer/_example/modeless.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    "`; -exports[`ssr snapshot test > ssr test src/image-viewer/_example/multiple.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    \\"test\\"/
    图片加载中
    预览
    \\"test\\"/
    图片加载中
    预览
    "`; +exports[`ssr snapshot test > ssr test src/image-viewer/_example/multiple.jsx 1`] = `"
    \\"test\\"/
    图片加载中
    预览
    \\"test\\"/
    图片加载中
    预览
    \\"test\\"/
    图片加载中
    预览
    "`; exports[`ssr snapshot test > ssr test src/input/_example/addon.jsx 1`] = `"
    http://
    http://
    .com
    "`; -exports[`ssr snapshot test > ssr test src/input/_example/align.jsx 1`] = `"
    "`; +exports[`ssr snapshot test > ssr test src/input/_example/align.jsx 1`] = `"
    "`; exports[`ssr snapshot test > ssr test src/input/_example/auto-width.jsx 1`] = `"
    宽度自适应
    "`; -exports[`ssr snapshot test > ssr test src/input/_example/base.jsx 1`] = `"
    "`; +exports[`ssr snapshot test > ssr test src/input/_example/base.jsx 1`] = `"
    "`; exports[`ssr snapshot test > ssr test src/input/_example/clearable.jsx 1`] = `"
    "`; @@ -486,11 +486,11 @@ exports[`ssr snapshot test > ssr test src/input/_example/format.jsx 1`] = `"
    ssr test src/input/_example/group.jsx 1`] = `"
     - 
    "`; -exports[`ssr snapshot test > ssr test src/input/_example/max-length-count.jsx 1`] = `"
    0/10
    0/10
    0/5
    0/5
    "`; +exports[`ssr snapshot test > ssr test src/input/_example/max-length-count.jsx 1`] = `"
    0/10
    0/10
    0/5
    0/5
    "`; exports[`ssr snapshot test > ssr test src/input/_example/password.jsx 1`] = `"
    "`; -exports[`ssr snapshot test > ssr test src/input/_example/size.jsx 1`] = `"
    "`; +exports[`ssr snapshot test > ssr test src/input/_example/size.jsx 1`] = `"
    "`; exports[`ssr snapshot test > ssr test src/input/_example/status.jsx 1`] = `"
    这是普通文本提示
    校验通过文本提示
    校验不通过文本提示
    校验存在严重问题文本提示
    "`; @@ -498,7 +498,7 @@ exports[`ssr snapshot test > ssr test src/input/_example/textarea.jsx 1`] = `" ssr test src/input-adornment/_example/select.jsx 1`] = `"
    please select
    please select
    please select
    please select
    "`; -exports[`ssr snapshot test > ssr test src/input-adornment/_example/text.jsx 1`] = `"
    http://
    please enter
    .com
    http://
    .com
    "`; +exports[`ssr snapshot test > ssr test src/input-adornment/_example/text.jsx 1`] = `"
    http://
    please enter
    .com
    http://
    .com
    "`; exports[`ssr snapshot test > ssr test src/input-number/_example/align.jsx 1`] = `"
    "`; @@ -554,7 +554,7 @@ exports[`ssr snapshot test > ssr test src/list/_example/image-text.jsx 1`] = `"< exports[`ssr snapshot test > ssr test src/list/_example/multiline.jsx 1`] = `"
    • 列表主内容

      列表内容列表内容列表内容

    • 列表主内容

      列表内容列表内容列表内容

    • 列表主内容

      列表内容列表内容列表内容

    • 列表主内容

      列表内容列表内容列表内容

    "`; -exports[`ssr snapshot test > ssr test src/list/_example/operation.jsx 1`] = `"
    • \\"\\"/

      列表主内容

      列表内容列表内容

    • \\"\\"/

      列表主内容

      列表内容列表内容

    "`; +exports[`ssr snapshot test > ssr test src/list/_example/operation.jsx 1`] = `"
    • \\"\\"/

      列表主内容

      列表内容列表内容

    • \\"\\"/

      列表主内容

      列表内容列表内容

    "`; exports[`ssr snapshot test > ssr test src/list/_example/scroll.jsx 1`] = `"
      "`; @@ -614,7 +614,7 @@ exports[`ssr snapshot test > ssr test src/message/_example/loading.jsx 1`] = `"< exports[`ssr snapshot test > ssr test src/message/_example/methods.jsx 1`] = `"
      "`; -exports[`ssr snapshot test > ssr test src/message/_example/offset.jsx 1`] = `"
      "`; +exports[`ssr snapshot test > ssr test src/message/_example/offset.jsx 1`] = `"
      "`; exports[`ssr snapshot test > ssr test src/notification/_example/base.jsx 1`] = `"
      标题名称
      这是一条消息通知
      "`; @@ -688,9 +688,9 @@ exports[`ssr snapshot test > ssr test src/popup/_example/trigger-element.jsx 1`] exports[`ssr snapshot test > ssr test src/popup/_example/visible.jsx 1`] = `"
      这是popup内容
      "`; -exports[`ssr snapshot test > ssr test src/progress/_example/circle.jsx 1`] = `"
      默认样式
      0%
      不显示数字
      自定义内容
      75 day
      进度完成
      进度发生错误
      进度被中断
      自定义颜色
      小尺寸
      0%
      默认尺寸
      0%
      大尺寸
      0%
      自定义尺寸
      0%
      "`; +exports[`ssr snapshot test > ssr test src/progress/_example/circle.jsx 1`] = `"
      默认样式
      0%
      不显示数字
      自定义内容
      75 day
      进度完成
      进度发生错误
      进度被中断
      自定义颜色
      小尺寸
      0%
      默认尺寸
      0%
      大尺寸
      0%
      自定义尺寸
      0%
      "`; -exports[`ssr snapshot test > ssr test src/progress/_example/line.jsx 1`] = `"

      默认在线形外展示进度和状态

      默认样式
      0%
      进度被中断
      进度状态发生重大错误
      进度正常更新
      0%
      不显示数字
      自定义内容
      自定义文本
      自定义颜色与高度
      0%
      进度条渐变色
      0%
      0%
      0%

      可以在线形内展示进度信息

      默认样式
      30%
      进度0-10%时数字数字位置出现在目前进度的右边区域
      5%
      "`; +exports[`ssr snapshot test > ssr test src/progress/_example/line.jsx 1`] = `"

      默认在线形外展示进度和状态

      默认样式
      0%
      进度被中断
      进度状态发生重大错误
      进度正常更新
      0%
      不显示数字
      自定义内容
      自定义文本
      自定义颜色与高度
      0%
      进度条渐变色
      0%
      0%
      0%

      可以在线形内展示进度信息

      默认样式
      30%
      进度0-10%时数字数字位置出现在目前进度的右边区域
      5%
      "`; exports[`ssr snapshot test > ssr test src/progress/_example/plump.jsx 1`] = `"
      默认样式
      30%
      进度0-10%时数字数字位置出现在目前进度的右边区域
      5%
      100%
      100%
      success
      100%
      warning
      30%
      error
      30%
      active
      30%
      不显示数字
      自定义颜色与尺寸
      30%
      进度条渐变色
      30%

      30%

      30%
      "`; @@ -718,13 +718,13 @@ exports[`ssr snapshot test > ssr test src/rate/_example/icon.jsx 1`] = `"
      ssr test src/rate/_example/size.jsx 1`] = `"

      16px

      24px

      "`; -exports[`ssr snapshot test > ssr test src/rate/_example/status.jsx 1`] = `"

      未评分状态

      满分状态

      半星状态

      "`; +exports[`ssr snapshot test > ssr test src/rate/_example/status.jsx 1`] = `"

      未评分状态

      满分状态

      半星状态

      "`; exports[`ssr snapshot test > ssr test src/rate/_example/texts.jsx 1`] = `"
      满意
      "`; exports[`ssr snapshot test > ssr test src/select/_example/base.jsx 1`] = `"
      "`; -exports[`ssr snapshot test > ssr test src/select/_example/collapsed.jsx 1`] = `"
      please select
      please select
      "`; +exports[`ssr snapshot test > ssr test src/select/_example/collapsed.jsx 1`] = `"
      please select
      please select
      "`; exports[`ssr snapshot test > ssr test src/select/_example/creatable.jsx 1`] = `"
      "`; @@ -734,17 +734,17 @@ exports[`ssr snapshot test > ssr test src/select/_example/custom-selected.jsx 1` exports[`ssr snapshot test > ssr test src/select/_example/disabled.jsx 1`] = `"
      "`; -exports[`ssr snapshot test > ssr test src/select/_example/filterable.jsx 1`] = `"
      -请选择-
      "`; +exports[`ssr snapshot test > ssr test src/select/_example/filterable.jsx 1`] = `"
      -请选择-
      "`; -exports[`ssr snapshot test > ssr test src/select/_example/group.jsx 1`] = `"
      please select
      "`; +exports[`ssr snapshot test > ssr test src/select/_example/group.jsx 1`] = `"
      please select
      "`; exports[`ssr snapshot test > ssr test src/select/_example/keys.jsx 1`] = `"
      please select
      "`; -exports[`ssr snapshot test > ssr test src/select/_example/label-in-value.jsx 1`] = `"
      please select
      "`; +exports[`ssr snapshot test > ssr test src/select/_example/label-in-value.jsx 1`] = `"
      please select
      "`; exports[`ssr snapshot test > ssr test src/select/_example/max.jsx 1`] = `"
      please select
      "`; -exports[`ssr snapshot test > ssr test src/select/_example/multiple.jsx 1`] = `"
      please select
      请选择云产品
      "`; +exports[`ssr snapshot test > ssr test src/select/_example/multiple.jsx 1`] = `"
      please select
      请选择云产品
      "`; exports[`ssr snapshot test > ssr test src/select/_example/noborder.jsx 1`] = `"
      "`; @@ -762,7 +762,7 @@ exports[`ssr snapshot test > ssr test src/select/_example/scroll-bottom.jsx 1`] exports[`ssr snapshot test > ssr test src/select/_example/scroll-top.jsx 1`] = `"
      "`; -exports[`ssr snapshot test > ssr test src/select/_example/size.jsx 1`] = `"
      "`; +exports[`ssr snapshot test > ssr test src/select/_example/size.jsx 1`] = `"
      "`; exports[`ssr snapshot test > ssr test src/select/_example/status.jsx 1`] = `"
      "`; @@ -822,11 +822,11 @@ exports[`ssr snapshot test > ssr test src/slider/_example/vertical.jsx 1`] = `"< exports[`ssr snapshot test > ssr test src/slider/_example/vertical-marks.jsx 1`] = `"
      0°C
      12°C
      37°C
      0°C
      8°C
      37°C
      50°C
      70°C
      "`; -exports[`ssr snapshot test > ssr test src/space/_example/align.jsx 1`] = `"
      start
      center
      end
      baseline
      "`; +exports[`ssr snapshot test > ssr test src/space/_example/align.jsx 1`] = `"
      start
      center
      end
      baseline
      "`; exports[`ssr snapshot test > ssr test src/space/_example/base.jsx 1`] = `"
      "`; -exports[`ssr snapshot test > ssr test src/space/_example/break-line.jsx 1`] = `"
      "`; +exports[`ssr snapshot test > ssr test src/space/_example/break-line.jsx 1`] = `"
      "`; exports[`ssr snapshot test > ssr test src/space/_example/separator.jsx 1`] = `"
      "`; @@ -840,9 +840,9 @@ exports[`ssr snapshot test > ssr test src/steps/_example/icon.jsx 1`] = `"
      ssr test src/steps/_example/no-sequence.jsx 1`] = `"
      已完成的步骤
      这里是提示文字
      进行中的步骤
      这里是提示文字
      未进行的步骤
      这里是提示文字
      未进行的步骤
      这里是提示文字
      "`; -exports[`ssr snapshot test > ssr test src/steps/_example/sequence.jsx 1`] = `"
      已完成的步骤
      这里是提示文字
      2
      进行中的步骤
      这里是提示文字
      3
      未进行的步骤
      这里是提示文字
      4
      未进行的步骤
      这里是提示文字
      已完成的步骤
      这里是提示文字
      已完成的步骤
      这里是提示文字
      3
      进行中的步骤
      这里是提示文字
      4
      未进行的步骤
      这里是提示文字
      "`; +exports[`ssr snapshot test > ssr test src/steps/_example/sequence.jsx 1`] = `"
      已完成的步骤
      这里是提示文字
      2
      进行中的步骤
      这里是提示文字
      3
      未进行的步骤
      这里是提示文字
      4
      未进行的步骤
      这里是提示文字
      已完成的步骤
      这里是提示文字
      已完成的步骤
      这里是提示文字
      3
      进行中的步骤
      这里是提示文字
      4
      未进行的步骤
      这里是提示文字
      "`; -exports[`ssr snapshot test > ssr test src/steps/_example/status.jsx 1`] = `"
      已完成的步骤
      这里是提示文字
      2
      进行中的步骤
      这里是提示文字
      3
      未进行的步骤
      这里是提示文字
      4
      未进行的步骤
      这里是提示文字
      已完成的步骤
      这里是提示文字
      2
      进行中的步骤
      这里是提示文字
      错误的步骤
      优先展示\`t-step\`中设置的 status
      4
      未进行的步骤
      这里是提示文字
      "`; +exports[`ssr snapshot test > ssr test src/steps/_example/status.jsx 1`] = `"
      已完成的步骤
      这里是提示文字
      2
      进行中的步骤
      这里是提示文字
      3
      未进行的步骤
      这里是提示文字
      4
      未进行的步骤
      这里是提示文字
      已完成的步骤
      这里是提示文字
      2
      进行中的步骤
      这里是提示文字
      错误的步骤
      优先展示\`t-step\`中设置的 status
      4
      未进行的步骤
      这里是提示文字
      "`; exports[`ssr snapshot test > ssr test src/steps/_example/vertical-no-sequence.jsx 1`] = `"
      已完成的步骤
      这里是提示文字
      进行中的步骤
      这里是提示文字
      未进行的步骤
      这里是提示文字
      未进行的步骤
      这里是提示文字
      未进行的步骤
      这里是提示文字
      进行中的步骤
      这里是提示文字
      已完成的步骤
      这里是提示文字
      已完成的步骤
      这里是提示文字
      "`; @@ -858,7 +858,7 @@ exports[`ssr snapshot test > ssr test src/swiper/_example/base.jsx 1`] = `"
      ssr test src/swiper/_example/card.jsx 1`] = `"
      1
      2
      3
      4
      5
      6
      "`; -exports[`ssr snapshot test > ssr test src/swiper/_example/current.jsx 1`] = `"
      1
      2
      3
      4
      5
      6
      1
      "`; +exports[`ssr snapshot test > ssr test src/swiper/_example/current.jsx 1`] = `"
      1
      2
      3
      4
      5
      6
      1
      "`; exports[`ssr snapshot test > ssr test src/swiper/_example/fade.jsx 1`] = `"
      1
      2
      3
      4
      5
      6
      1
      "`; @@ -878,7 +878,7 @@ exports[`ssr snapshot test > ssr test src/switch/_example/size.jsx 1`] = `"
      ssr test src/switch/_example/status.jsx 1`] = `"
      "`; -exports[`ssr snapshot test > ssr test src/table/_example/affix.jsx 1`] = `"
      Total 38 items
      please select
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      "`; +exports[`ssr snapshot test > ssr test src/table/_example/affix.jsx 1`] = `"
      Total 38 items
      please select
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      "`; exports[`ssr snapshot test > ssr test src/table/_example/async-loading.jsx 1`] = `"
      申请人
      申请状态
      签署方式
      邮箱地址
      申请时间
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      loading...
      "`; @@ -886,7 +886,7 @@ exports[`ssr snapshot test > ssr test src/table/_example/base.jsx 1`] = `"
      ssr test src/table/_example/custom-cell.jsx 1`] = `"
      申请人
      审批状态
      申请事项
      邮箱地址
      申请时间
      贾明
      审批通过
      宣传物料制作费用
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      algolia 服务报销
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      相关周边制作费
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      激励奖品快递费
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      宣传物料制作费用
      r.nmgw@peurezgn.sl
      2022-01-01
      "`; -exports[`ssr snapshot test > ssr test src/table/_example/custom-col.jsx 1`] = `"
      申请人
      申请状态
      签署方式
      邮箱地址
      申请时间
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      Total 100 items
      please select
      • 1
      • 2
      • 3
      • 4
      • 5
      • 20
      "`; +exports[`ssr snapshot test > ssr test src/table/_example/custom-col.jsx 1`] = `"
      申请人
      申请状态
      签署方式
      邮箱地址
      申请时间
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      Total 100 items
      please select
      • 1
      • 2
      • 3
      • 4
      • 5
      • 20
      "`; exports[`ssr snapshot test > ssr test src/table/_example/custom-col-button.jsx 1`] = `"
      申请人
      申请状态
      签署方式
      邮箱地址
      申请时间
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      Total 100 items
      please select
      • 1
      • 2
      • 3
      • 4
      • 5
      • 20
      "`; @@ -910,15 +910,15 @@ exports[`ssr snapshot test > ssr test src/table/_example/ellipsis.jsx 1`] = `" ssr test src/table/_example/empty.jsx 1`] = `"
      项目名称
      管理员
      所属公司
      Empty Data
      项目名称
      管理员
      所属公司
      😄 it is empty. 😁
      "`; -exports[`ssr snapshot test > ssr test src/table/_example/expandable.jsx 1`] = `"
      申请人
      申请状态
      签署方式
      邮箱地址
      申请时间
      操作
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01查看详情
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01再次申请
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01再次申请
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01查看详情
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01再次申请
      "`; +exports[`ssr snapshot test > ssr test src/table/_example/expandable.jsx 1`] = `"
      申请人
      申请状态
      签署方式
      邮箱地址
      申请时间
      操作
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-01-01查看详情
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01再次申请
      王芳
      审批过期
      纸质签署
      p.cumx@rampblpa.ru
      2022-03-01再次申请
      贾明
      审批通过
      电子签署
      w.cezkdudy@lhll.au
      2022-04-01查看详情
      张三
      审批失败
      纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01再次申请
      "`; exports[`ssr snapshot test > ssr test src/table/_example/filter-controlled.jsx 1`] = `"
      已选筛选条件:{"lastName":[]}
      申请人
      申请状态
      签署方式
      Email
      Date
      贾明
      审批通过
      电子签署w.cezkdudy@lhll.au2022-01-01
      张三
      审批失败
      纸质签署r.nmgw@peurezgn.sl2022-02-01
      王芳
      审批过期
      纸质签署p.cumx@rampblpa.ru2022-03-01
      贾明
      审批通过
      电子签署w.cezkdudy@lhll.au2022-04-01
      张三
      审批失败
      纸质签署r.nmgw@peurezgn.sl2022-01-01
      Total 0 items
      please select
      • 1
      jump to
      / 1
      "`; -exports[`ssr snapshot test > ssr test src/table/_example/fixed-column.jsx 1`] = `"
      申请人
      审批状态
      邮箱地址
      申请事项
      申请日期
      操作
      贾明
      审批通过
      w.cezkdudy@lhll.au宣传物料制作费用2022-01-01查看详情
      张三
      审批失败
      r.nmgw@peurezgn.slalgolia 服务报销2022-02-01再次申请
      王芳
      审批过期
      p.cumx@rampblpa.ru相关周边制作费2022-03-01再次申请
      贾明
      审批通过
      w.cezkdudy@lhll.au激励奖品快递费2022-04-01查看详情
      张三
      审批失败
      r.nmgw@peurezgn.sl宣传物料制作费用2022-01-01再次申请
      "`; +exports[`ssr snapshot test > ssr test src/table/_example/fixed-column.jsx 1`] = `"
      申请人
      审批状态
      邮箱地址
      申请事项
      申请日期
      操作
      贾明
      审批通过
      w.cezkdudy@lhll.au宣传物料制作费用2022-01-01查看详情
      张三
      审批失败
      r.nmgw@peurezgn.slalgolia 服务报销2022-02-01再次申请
      王芳
      审批过期
      p.cumx@rampblpa.ru相关周边制作费2022-03-01再次申请
      贾明
      审批通过
      w.cezkdudy@lhll.au激励奖品快递费2022-04-01查看详情
      张三
      审批失败
      r.nmgw@peurezgn.sl宣传物料制作费用2022-01-01再次申请
      "`; exports[`ssr snapshot test > ssr test src/table/_example/fixed-header.jsx 1`] = `"
      申请人
      审批状态
      申请事项
      邮箱地址
      申请日期
      操作
      贾明
      审批通过
      宣传物料制作费用
      w.cezkdudy@lhll.au
      2022-01-01查看详情
      张三
      审批失败
      algolia 服务报销
      r.nmgw@peurezgn.sl
      2022-02-01再次申请
      王芳
      审批过期
      相关周边制作费
      p.cumx@rampblpa.ru
      2022-03-01再次申请
      贾明
      审批通过
      激励奖品快递费
      w.cezkdudy@lhll.au
      2022-04-01查看详情
      张三
      审批失败
      宣传物料制作费用
      r.nmgw@peurezgn.sl
      2022-01-01再次申请
      王芳
      审批过期
      algolia 服务报销
      p.cumx@rampblpa.ru
      2022-02-01再次申请
      贾明
      审批通过
      相关周边制作费
      w.cezkdudy@lhll.au
      2022-03-01查看详情
      张三
      审批失败
      激励奖品快递费
      r.nmgw@peurezgn.sl
      2022-04-01再次申请
      王芳
      审批过期
      宣传物料制作费用
      p.cumx@rampblpa.ru
      2022-01-01再次申请
      贾明
      审批通过
      algolia 服务报销
      w.cezkdudy@lhll.au
      2022-02-01查看详情
      张三
      审批失败
      相关周边制作费
      r.nmgw@peurezgn.sl
      2022-03-01再次申请
      王芳
      审批过期
      激励奖品快递费
      p.cumx@rampblpa.ru
      2022-04-01再次申请
      贾明
      审批通过
      宣传物料制作费用
      w.cezkdudy@lhll.au
      2022-01-01查看详情
      张三
      审批失败
      algolia 服务报销
      r.nmgw@peurezgn.sl
      2022-02-01再次申请
      王芳
      审批过期
      相关周边制作费
      p.cumx@rampblpa.ru
      2022-03-01再次申请
      贾明
      审批通过
      激励奖品快递费
      w.cezkdudy@lhll.au
      2022-04-01查看详情
      张三
      审批失败
      宣传物料制作费用
      r.nmgw@peurezgn.sl
      2022-01-01再次申请
      王芳
      审批过期
      algolia 服务报销
      p.cumx@rampblpa.ru
      2022-02-01再次申请
      贾明
      审批通过
      相关周边制作费
      w.cezkdudy@lhll.au
      2022-03-01查看详情
      张三
      审批失败
      激励奖品快递费
      r.nmgw@peurezgn.sl
      2022-04-01再次申请
      ------
      "`; -exports[`ssr snapshot test > ssr test src/table/_example/fixed-header-col.jsx 1`] = `"
      申请人
      审批状态
      签署方式
      申请事项
      邮箱地址
      申请日期
      操作
      贾明
      审批通过
      电子签署宣传物料制作费用w.cezkdudy@lhll.au2022-01-01查看详情
      张三
      审批失败
      纸质签署algolia 服务报销r.nmgw@peurezgn.sl2022-02-01再次申请
      王芳
      审批过期
      纸质签署相关周边制作费p.cumx@rampblpa.ru2022-03-01再次申请
      贾明
      审批通过
      电子签署激励奖品快递费w.cezkdudy@lhll.au2022-04-01查看详情
      张三
      审批失败
      纸质签署宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01再次申请
      王芳
      审批过期
      纸质签署algolia 服务报销p.cumx@rampblpa.ru2022-02-01再次申请
      贾明
      审批通过
      电子签署相关周边制作费w.cezkdudy@lhll.au2022-03-01查看详情
      张三
      审批失败
      纸质签署激励奖品快递费r.nmgw@peurezgn.sl2022-04-01再次申请
      王芳
      审批过期
      纸质签署宣传物料制作费用p.cumx@rampblpa.ru2022-01-01再次申请
      贾明
      审批通过
      电子签署algolia 服务报销w.cezkdudy@lhll.au2022-02-01查看详情
      张三
      审批失败
      纸质签署相关周边制作费r.nmgw@peurezgn.sl2022-03-01再次申请
      王芳
      审批过期
      纸质签署激励奖品快递费p.cumx@rampblpa.ru2022-04-01再次申请
      贾明
      审批通过
      电子签署宣传物料制作费用w.cezkdudy@lhll.au2022-01-01查看详情
      张三
      审批失败
      纸质签署algolia 服务报销r.nmgw@peurezgn.sl2022-02-01再次申请
      王芳
      审批过期
      纸质签署相关周边制作费p.cumx@rampblpa.ru2022-03-01再次申请
      贾明
      审批通过
      电子签署激励奖品快递费w.cezkdudy@lhll.au2022-04-01查看详情
      张三
      审批失败
      纸质签署宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01再次申请
      王芳
      审批过期
      纸质签署algolia 服务报销p.cumx@rampblpa.ru2022-02-01再次申请
      贾明
      审批通过
      电子签署相关周边制作费w.cezkdudy@lhll.au2022-03-01查看详情
      张三
      审批失败
      纸质签署激励奖品快递费r.nmgw@peurezgn.sl2022-04-01再次申请
      共20条----
      "`; +exports[`ssr snapshot test > ssr test src/table/_example/fixed-header-col.jsx 1`] = `"
      申请人
      审批状态
      签署方式
      申请事项
      邮箱地址
      申请日期
      操作
      贾明
      审批通过
      电子签署宣传物料制作费用w.cezkdudy@lhll.au2022-01-01查看详情
      张三
      审批失败
      纸质签署algolia 服务报销r.nmgw@peurezgn.sl2022-02-01再次申请
      王芳
      审批过期
      纸质签署相关周边制作费p.cumx@rampblpa.ru2022-03-01再次申请
      贾明
      审批通过
      电子签署激励奖品快递费w.cezkdudy@lhll.au2022-04-01查看详情
      张三
      审批失败
      纸质签署宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01再次申请
      王芳
      审批过期
      纸质签署algolia 服务报销p.cumx@rampblpa.ru2022-02-01再次申请
      贾明
      审批通过
      电子签署相关周边制作费w.cezkdudy@lhll.au2022-03-01查看详情
      张三
      审批失败
      纸质签署激励奖品快递费r.nmgw@peurezgn.sl2022-04-01再次申请
      王芳
      审批过期
      纸质签署宣传物料制作费用p.cumx@rampblpa.ru2022-01-01再次申请
      贾明
      审批通过
      电子签署algolia 服务报销w.cezkdudy@lhll.au2022-02-01查看详情
      张三
      审批失败
      纸质签署相关周边制作费r.nmgw@peurezgn.sl2022-03-01再次申请
      王芳
      审批过期
      纸质签署激励奖品快递费p.cumx@rampblpa.ru2022-04-01再次申请
      贾明
      审批通过
      电子签署宣传物料制作费用w.cezkdudy@lhll.au2022-01-01查看详情
      张三
      审批失败
      纸质签署algolia 服务报销r.nmgw@peurezgn.sl2022-02-01再次申请
      王芳
      审批过期
      纸质签署相关周边制作费p.cumx@rampblpa.ru2022-03-01再次申请
      贾明
      审批通过
      电子签署激励奖品快递费w.cezkdudy@lhll.au2022-04-01查看详情
      张三
      审批失败
      纸质签署宣传物料制作费用r.nmgw@peurezgn.sl2022-01-01再次申请
      王芳
      审批过期
      纸质签署algolia 服务报销p.cumx@rampblpa.ru2022-02-01再次申请
      贾明
      审批通过
      电子签署相关周边制作费w.cezkdudy@lhll.au2022-03-01查看详情
      张三
      审批失败
      纸质签署激励奖品快递费r.nmgw@peurezgn.sl2022-04-01再次申请
      共20条----
      "`; exports[`ssr snapshot test > ssr test src/table/_example/lazy.jsx 1`] = `"
      申请人
      申请状态
      申请事项
      邮箱地址
      申请时间
      "`; @@ -926,11 +926,11 @@ exports[`ssr snapshot test > ssr test src/table/_example/loading.jsx 1`] = `" ssr test src/table/_example/merge-cells.jsx 1`] = `"
      申请人
      申请状态
      审批事项
      邮箱地址
      其他信息
      "`; -exports[`ssr snapshot test > ssr test src/table/_example/multi-header.jsx 1`] = `"
      申请人
      申请汇总
      住宿费
      交通费
      物料费
      奖品激励费
      审批汇总
      申请时间
      申请状态
      申请渠道和金额
      审批状态
      说明
      类型
      申请耗时(天)
      审批单号
      邮箱地址
      贾明
      审批通过
      电子签署3100100100100组长审批审批单号001
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署2200200200200部门审批审批单号002
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署4400400400400财务审批审批单号003
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署1500500500500组长审批审批单号004
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署3100100100100部门审批审批单号005
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署2200200200200财务审批审批单号006
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署4400400400400组长审批审批单号007
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署1500500500500部门审批审批单号008
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署3100100100100财务审批审批单号009
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署2200200200200组长审批审批单号0010
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署4400400400400部门审批审批单号0011
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署1500500500500财务审批审批单号0012
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署3100100100100组长审批审批单号0013
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署2200200200200部门审批审批单号0014
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署4400400400400财务审批审批单号0015
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署1500500500500组长审批审批单号0016
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署3100100100100部门审批审批单号0017
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署2200200200200财务审批审批单号0018
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署4400400400400组长审批审批单号0019
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署1500500500500部门审批审批单号0020
      r.nmgw@peurezgn.sl
      2022-04-01
      "`; +exports[`ssr snapshot test > ssr test src/table/_example/multi-header.jsx 1`] = `"
      申请人
      申请汇总
      住宿费
      交通费
      物料费
      奖品激励费
      审批汇总
      申请时间
      申请状态
      申请渠道和金额
      审批状态
      说明
      类型
      申请耗时(天)
      审批单号
      邮箱地址
      贾明
      审批通过
      电子签署3100100100100组长审批审批单号001
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署2200200200200部门审批审批单号002
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署4400400400400财务审批审批单号003
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署1500500500500组长审批审批单号004
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署3100100100100部门审批审批单号005
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署2200200200200财务审批审批单号006
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署4400400400400组长审批审批单号007
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署1500500500500部门审批审批单号008
      r.nmgw@peurezgn.sl
      2022-04-01
      王芳
      审批过期
      纸质签署3100100100100财务审批审批单号009
      p.cumx@rampblpa.ru
      2022-01-01
      贾明
      审批通过
      电子签署2200200200200组长审批审批单号0010
      w.cezkdudy@lhll.au
      2022-02-01
      张三
      审批失败
      纸质签署4400400400400部门审批审批单号0011
      r.nmgw@peurezgn.sl
      2022-03-01
      王芳
      审批过期
      纸质签署1500500500500财务审批审批单号0012
      p.cumx@rampblpa.ru
      2022-04-01
      贾明
      审批通过
      电子签署3100100100100组长审批审批单号0013
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      纸质签署2200200200200部门审批审批单号0014
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      纸质签署4400400400400财务审批审批单号0015
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      电子签署1500500500500组长审批审批单号0016
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      纸质签署3100100100100部门审批审批单号0017
      r.nmgw@peurezgn.sl
      2022-01-01
      王芳
      审批过期
      纸质签署2200200200200财务审批审批单号0018
      p.cumx@rampblpa.ru
      2022-02-01
      贾明
      审批通过
      电子签署4400400400400组长审批审批单号0019
      w.cezkdudy@lhll.au
      2022-03-01
      张三
      审批失败
      纸质签署1500500500500部门审批审批单号0020
      r.nmgw@peurezgn.sl
      2022-04-01
      "`; exports[`ssr snapshot test > ssr test src/table/_example/multiple-sort.jsx 1`] = `"
      排序方式:[{"sortBy":"status","descending":true},{"sortBy":"survivalTime","descending":false}]
      申请人
      申请状态
      申请耗时(天)
      签署方式
      邮箱地址
      申请时间
      贾明
      审批通过
      2电子签署
      w.cezkdudy@lhll.au
      2022-01-01
      张三
      审批失败
      3纸质签署
      r.nmgw@peurezgn.sl
      2022-02-01
      王芳
      审批过期
      1纸质签署
      p.cumx@rampblpa.ru
      2022-03-01
      贾明
      审批通过
      4电子签署
      w.cezkdudy@lhll.au
      2022-04-01
      张三
      审批失败
      2纸质签署
      r.nmgw@peurezgn.sl
      2022-01-01
      "`; -exports[`ssr snapshot test > ssr test src/table/_example/pagination.jsx 1`] = `"
      序号
      申请人
      申请状态
      签署方式
      申请时间
      6贾明
      审批通过
      电子签署2022-01-01
      7张三
      审批失败
      纸质签署2022-02-01
      8王芳
      审批过期
      纸质签署2022-03-01
      9贾明
      审批通过
      电子签署2022-04-01
      10张三
      审批失败
      纸质签署2022-01-01
      11王芳
      审批过期
      纸质签署2022-02-01
      12贾明
      审批通过
      电子签署2022-03-01
      13张三
      审批失败
      纸质签署2022-04-01
      14王芳
      审批过期
      纸质签署2022-01-01
      15贾明
      审批通过
      电子签署2022-02-01
      16张三
      审批失败
      纸质签署2022-03-01
      17王芳
      审批过期
      纸质签署2022-04-01
      18贾明
      审批通过
      电子签署2022-01-01
      19张三
      审批失败
      纸质签署2022-02-01
      20王芳
      审批过期
      纸质签署2022-03-01
      21贾明
      审批通过
      电子签署2022-04-01
      22张三
      审批失败
      纸质签署2022-01-01
      23王芳
      审批过期
      纸质签署2022-02-01
      24贾明
      审批通过
      电子签署2022-03-01
      25张三
      审批失败
      纸质签署2022-04-01
      26王芳
      审批过期
      纸质签署2022-01-01
      27贾明
      审批通过
      电子签署2022-02-01
      28张三
      审批失败
      纸质签署2022-03-01
      29王芳
      审批过期
      纸质签署2022-04-01
      30贾明
      审批通过
      电子签署2022-01-01
      31张三
      审批失败
      纸质签署2022-02-01
      32王芳
      审批过期
      纸质签署2022-03-01
      33贾明
      审批通过
      电子签署2022-04-01
      34张三
      审批失败
      纸质签署2022-01-01
      35王芳
      审批过期
      纸质签署2022-02-01
      36贾明
      审批通过
      电子签署2022-03-01
      37张三
      审批失败
      纸质签署2022-04-01
      38王芳
      审批过期
      纸质签署2022-01-01
      39贾明
      审批通过
      电子签署2022-02-01
      40张三
      审批失败
      纸质签署2022-03-01
      41王芳
      审批过期
      纸质签署2022-04-01
      42贾明
      审批通过
      电子签署2022-01-01
      43张三
      审批失败
      纸质签署2022-02-01
      44王芳
      审批过期
      纸质签署2022-03-01
      45贾明
      审批通过
      电子签署2022-04-01
      46张三
      审批失败
      纸质签署2022-01-01
      47王芳
      审批过期
      纸质签署2022-02-01
      48贾明
      审批通过
      电子签署2022-03-01
      49张三
      审批失败
      纸质签署2022-04-01
      50王芳
      审批过期
      纸质签署2022-01-01
      51贾明
      审批通过
      电子签署2022-02-01
      52张三
      审批失败
      纸质签署2022-03-01
      53王芳
      审批过期
      纸质签署2022-04-01
      54贾明
      审批通过
      电子签署2022-01-01
      55张三
      审批失败
      纸质签署2022-02-01
      56王芳
      审批过期
      纸质签署2022-03-01
      57贾明
      审批通过
      电子签署2022-04-01
      58张三
      审批失败
      纸质签署2022-01-01
      59王芳
      审批过期
      纸质签署2022-02-01
      60贾明
      审批通过
      电子签署2022-03-01
      61张三
      审批失败
      纸质签署2022-04-01
      62王芳
      审批过期
      纸质签署2022-01-01
      63贾明
      审批通过
      电子签署2022-02-01
      64张三
      审批失败
      纸质签署2022-03-01
      Total 59 items
      please select
      • 1
      • 2
      • 3
      • 4
      • 5
      • 12
      jump to
      / 12
      "`; +exports[`ssr snapshot test > ssr test src/table/_example/pagination.jsx 1`] = `"
      序号
      申请人
      申请状态
      签署方式
      申请时间
      6贾明
      审批通过
      电子签署2022-01-01
      7张三
      审批失败
      纸质签署2022-02-01
      8王芳
      审批过期
      纸质签署2022-03-01
      9贾明
      审批通过
      电子签署2022-04-01
      10张三
      审批失败
      纸质签署2022-01-01
      11王芳
      审批过期
      纸质签署2022-02-01
      12贾明
      审批通过
      电子签署2022-03-01
      13张三
      审批失败
      纸质签署2022-04-01
      14王芳
      审批过期
      纸质签署2022-01-01
      15贾明
      审批通过
      电子签署2022-02-01
      16张三
      审批失败
      纸质签署2022-03-01
      17王芳
      审批过期
      纸质签署2022-04-01
      18贾明
      审批通过
      电子签署2022-01-01
      19张三
      审批失败
      纸质签署2022-02-01
      20王芳
      审批过期
      纸质签署2022-03-01
      21贾明
      审批通过
      电子签署2022-04-01
      22张三
      审批失败
      纸质签署2022-01-01
      23王芳
      审批过期
      纸质签署2022-02-01
      24贾明
      审批通过
      电子签署2022-03-01
      25张三
      审批失败
      纸质签署2022-04-01
      26王芳
      审批过期
      纸质签署2022-01-01
      27贾明
      审批通过
      电子签署2022-02-01
      28张三
      审批失败
      纸质签署2022-03-01
      29王芳
      审批过期
      纸质签署2022-04-01
      30贾明
      审批通过
      电子签署2022-01-01
      31张三
      审批失败
      纸质签署2022-02-01
      32王芳
      审批过期
      纸质签署2022-03-01
      33贾明
      审批通过
      电子签署2022-04-01
      34张三
      审批失败
      纸质签署2022-01-01
      35王芳
      审批过期
      纸质签署2022-02-01
      36贾明
      审批通过
      电子签署2022-03-01
      37张三
      审批失败
      纸质签署2022-04-01
      38王芳
      审批过期
      纸质签署2022-01-01
      39贾明
      审批通过
      电子签署2022-02-01
      40张三
      审批失败
      纸质签署2022-03-01
      41王芳
      审批过期
      纸质签署2022-04-01
      42贾明
      审批通过
      电子签署2022-01-01
      43张三
      审批失败
      纸质签署2022-02-01
      44王芳
      审批过期
      纸质签署2022-03-01
      45贾明
      审批通过
      电子签署2022-04-01
      46张三
      审批失败
      纸质签署2022-01-01
      47王芳
      审批过期
      纸质签署2022-02-01
      48贾明
      审批通过
      电子签署2022-03-01
      49张三
      审批失败
      纸质签署2022-04-01
      50王芳
      审批过期
      纸质签署2022-01-01
      51贾明
      审批通过
      电子签署2022-02-01
      52张三
      审批失败
      纸质签署2022-03-01
      53王芳
      审批过期
      纸质签署2022-04-01
      54贾明
      审批通过
      电子签署2022-01-01
      55张三
      审批失败
      纸质签署2022-02-01
      56王芳
      审批过期
      纸质签署2022-03-01
      57贾明
      审批通过
      电子签署2022-04-01
      58张三
      审批失败
      纸质签署2022-01-01
      59王芳
      审批过期
      纸质签署2022-02-01
      60贾明
      审批通过
      电子签署2022-03-01
      61张三
      审批失败
      纸质签署2022-04-01
      62王芳
      审批过期
      纸质签署2022-01-01
      63贾明
      审批通过
      电子签署2022-02-01
      64张三
      审批失败
      纸质签署2022-03-01
      Total 59 items
      please select
      • 1
      • 2
      • 3
      • 4
      • 5
      • 12
      jump to
      / 12
      "`; exports[`ssr snapshot test > ssr test src/table/_example/pagination-ajax.jsx 1`] = `"
      申请人
      申请状态
      邮箱
      Empty Data
      Total 0 items
      please select
      • 1
      jump to
      / 1
      "`; @@ -948,25 +948,25 @@ exports[`ssr snapshot test > ssr test src/table/_example/tree-select.jsx 1`] = ` exports[`ssr snapshot test > ssr test src/table/_example/virtual-scroll.jsx 1`] = `"
      序号
      申请人
      申请状态
      申请事项
      邮箱地址
      申请时间
      Empty Data
      "`; -exports[`ssr snapshot test > ssr test src/tabs/_example/ban.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3
      选项卡1内容区
      "`; +exports[`ssr snapshot test > ssr test src/tabs/_example/ban.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3
      选项卡1内容区
      "`; -exports[`ssr snapshot test > ssr test src/tabs/_example/base.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3

      选项卡1的内容,使用 TabPanel 渲染

      选项卡一
      选项卡二
      选项卡三

      这是选项卡一的内容,使用 Tabs 渲染

      "`; +exports[`ssr snapshot test > ssr test src/tabs/_example/base.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3

      选项卡1的内容,使用 TabPanel 渲染

      选项卡一
      选项卡二
      选项卡三

      这是选项卡一的内容,使用 Tabs 渲染

      "`; -exports[`ssr snapshot test > ssr test src/tabs/_example/combination.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3
      选项卡4
      选项卡5
      选项卡6
      选项卡7
      选项卡8
      选项卡9
      选项卡10
      选项卡11
      选项卡12
      选项卡13
      选项卡14
      选项卡15
      选项卡16
      选项卡17
      选项卡18
      选项卡19
      选项卡20
      选项卡1内容区
      "`; +exports[`ssr snapshot test > ssr test src/tabs/_example/combination.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3
      选项卡4
      选项卡5
      选项卡6
      选项卡7
      选项卡8
      选项卡9
      选项卡10
      选项卡11
      选项卡12
      选项卡13
      选项卡14
      选项卡15
      选项卡16
      选项卡17
      选项卡18
      选项卡19
      选项卡20
      选项卡1内容区
      "`; exports[`ssr snapshot test > ssr test src/tabs/_example/custom.jsx 1`] = `"
      选项卡 1
      选项卡 2
      选项卡 3
      选项卡 4
      选项卡 5
      选项卡 6
      选项卡 7
      选项卡 8
      选项卡 9
      选项卡 10
      选项卡 1内容区
      "`; -exports[`ssr snapshot test > ssr test src/tabs/_example/drag-sort.jsx 1`] = `"
      选项卡一
      选项卡二
      选项卡三

      这是选项卡一的内容,使用 Tabs 渲染

      选项卡一
      选项卡二
      选项卡三

      这是选项卡一的内容,使用 Tabs 渲染

      "`; +exports[`ssr snapshot test > ssr test src/tabs/_example/drag-sort.jsx 1`] = `"
      选项卡一
      选项卡二
      选项卡三

      这是选项卡一的内容,使用 Tabs 渲染

      选项卡一
      选项卡二
      选项卡三

      这是选项卡一的内容,使用 Tabs 渲染

      "`; -exports[`ssr snapshot test > ssr test src/tabs/_example/icon.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3
      选项卡1内容区
      "`; +exports[`ssr snapshot test > ssr test src/tabs/_example/icon.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3
      选项卡1内容区
      "`; exports[`ssr snapshot test > ssr test src/tabs/_example/operation.jsx 1`] = `"
      选项卡1
      选项卡1
      "`; -exports[`ssr snapshot test > ssr test src/tabs/_example/position.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3
      选项卡1内容区
      "`; +exports[`ssr snapshot test > ssr test src/tabs/_example/position.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡3
      选项卡1内容区
      "`; -exports[`ssr snapshot test > ssr test src/tabs/_example/size.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡1内容区
      选项卡1
      选项卡2
      选项卡1内容区
      "`; +exports[`ssr snapshot test > ssr test src/tabs/_example/size.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡1内容区
      选项卡1
      选项卡2
      选项卡1内容区
      "`; -exports[`ssr snapshot test > ssr test src/tabs/_example/theme.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡1内容区
      选项卡1
      选项卡2
      选项卡1内容区
      "`; +exports[`ssr snapshot test > ssr test src/tabs/_example/theme.jsx 1`] = `"
      选项卡1
      选项卡2
      选项卡1内容区
      选项卡1
      选项卡2
      选项卡1内容区
      "`; exports[`ssr snapshot test > ssr test src/tag/_example/base.jsx 1`] = `"
      标签一
      标签一
      标签二
      标签三
      标签四
      灰标签
      标签一
      标签二
      标签三
      标签四
      灰标签
      标签一
      标签二
      标签三
      标签四
      灰标签
      标签一
      标签二
      标签三
      标签四
      "`; @@ -986,33 +986,33 @@ exports[`ssr snapshot test > ssr test src/tag/_example/size.jsx 1`] = `"
      ssr test src/tag-input/_example/auto-width.jsx 1`] = `"
      Vue
      React
      "`; -exports[`ssr snapshot test > ssr test src/tag-input/_example/base.jsx 1`] = `"
      Vue
      React
      Angular
      Controlled:
      Vue
      React
      UnControlled:
      Vue
      React
      "`; +exports[`ssr snapshot test > ssr test src/tag-input/_example/base.jsx 1`] = `"
      Vue
      React
      Angular
      Controlled:
      Vue
      React
      UnControlled:
      Vue
      React
      "`; -exports[`ssr snapshot test > ssr test src/tag-input/_example/collapsed.jsx 1`] = `"
      Vue
      +4
      Vue
      React
      Miniprogram
      More(2)
      "`; +exports[`ssr snapshot test > ssr test src/tag-input/_example/collapsed.jsx 1`] = `"
      Vue
      +4
      Vue
      React
      Miniprogram
      More(2)
      "`; -exports[`ssr snapshot test > ssr test src/tag-input/_example/custom-tag.jsx 1`] = `"
      StudentA
      StudentB
      +1


      StudentA
      StudentB
      StudentC
      "`; +exports[`ssr snapshot test > ssr test src/tag-input/_example/custom-tag.jsx 1`] = `"
      StudentA
      StudentB
      +1


      StudentA
      StudentB
      StudentC
      "`; -exports[`ssr snapshot test > ssr test src/tag-input/_example/draggable.jsx 1`] = `"
      Vue
      React
      Angular
      Controlled:
      Vue
      React
      Angular
      Miniprogram
      "`; +exports[`ssr snapshot test > ssr test src/tag-input/_example/draggable.jsx 1`] = `"
      Vue
      React
      Angular
      Controlled:
      Vue
      React
      Angular
      Miniprogram
      "`; -exports[`ssr snapshot test > ssr test src/tag-input/_example/excess.jsx 1`] = `"
      Scroll:
      Vue
      React
      BreakLine:
      Vue
      React
      "`; +exports[`ssr snapshot test > ssr test src/tag-input/_example/excess.jsx 1`] = `"
      Scroll:
      Vue
      React
      BreakLine:
      Vue
      React
      "`; exports[`ssr snapshot test > ssr test src/tag-input/_example/max.jsx 1`] = `"
      最多只能输入 3 个标签
      "`; -exports[`ssr snapshot test > ssr test src/tag-input/_example/size.jsx 1`] = `"
      Vue
      React
      Vue
      React
      Vue
      React
      "`; +exports[`ssr snapshot test > ssr test src/tag-input/_example/size.jsx 1`] = `"
      Vue
      React
      Vue
      React
      Vue
      React
      "`; -exports[`ssr snapshot test > ssr test src/tag-input/_example/status.jsx 1`] = `"
      Vue
      React
      Miniprogram
      Vue
      React
      Miniprogram
      这是普通文本提示
      Vue
      React
      Miniprogram
      校验通过文本提示
      Vue
      React
      Miniprogram
      校验不通过文本提示
      Vue
      React
      Miniprogram
      校验存在严重问题文本提示
      "`; +exports[`ssr snapshot test > ssr test src/tag-input/_example/status.jsx 1`] = `"
      Vue
      React
      Miniprogram
      Vue
      React
      Miniprogram
      这是普通文本提示
      Vue
      React
      Miniprogram
      校验通过文本提示
      Vue
      React
      Miniprogram
      校验不通过文本提示
      Vue
      React
      Miniprogram
      校验存在严重问题文本提示
      "`; -exports[`ssr snapshot test > ssr test src/tag-input/_example/theme.jsx 1`] = `"
      Vue
      React
      Miniprogram
      Vue
      React
      Miniprogram
      Vue
      React
      Miniprogram
      Vue
      React
      Miniprogram
      "`; +exports[`ssr snapshot test > ssr test src/tag-input/_example/theme.jsx 1`] = `"
      Vue
      React
      Miniprogram
      Vue
      React
      Miniprogram
      Vue
      React
      Miniprogram
      Vue
      React
      Miniprogram
      "`; -exports[`ssr snapshot test > ssr test src/textarea/_example/base.jsx 1`] = `"
      "`; +exports[`ssr snapshot test > ssr test src/textarea/_example/base.jsx 1`] = `"
      "`; exports[`ssr snapshot test > ssr test src/textarea/_example/events.jsx 1`] = `"
      "`; -exports[`ssr snapshot test > ssr test src/textarea/_example/maxlength.jsx 1`] = `"
      这里可以放一些提示文字
      0/20
      0/20
      0/20
      0/20
      "`; +exports[`ssr snapshot test > ssr test src/textarea/_example/maxlength.jsx 1`] = `"
      这里可以放一些提示文字
      0/20
      0/20
      0/20
      0/20
      "`; -exports[`ssr snapshot test > ssr test src/textarea/_example/status.jsx 1`] = `"
      正常提示
      成功提示
      警告提示
      错误提示
      "`; +exports[`ssr snapshot test > ssr test src/textarea/_example/status.jsx 1`] = `"
      正常提示
      成功提示
      警告提示
      错误提示
      "`; -exports[`ssr snapshot test > ssr test src/textarea/_example/type.jsx 1`] = `"
      "`; +exports[`ssr snapshot test > ssr test src/textarea/_example/type.jsx 1`] = `"
      "`; exports[`ssr snapshot test > ssr test src/time-picker/_example/disabled.jsx 1`] = `"

      禁用整个选择器

      禁用指定时间

      "`; @@ -1084,7 +1084,7 @@ exports[`ssr snapshot test > ssr test src/tree/_example/expand-level.jsx 1`] = ` exports[`ssr snapshot test > ssr test src/tree/_example/expand-mutex.jsx 1`] = `"
      Tree Empty Data
      "`; -exports[`ssr snapshot test > ssr test src/tree/_example/filter.jsx 1`] = `"
      filter:
      Tree Empty Data
      filter:
      Tree Empty Data
      "`; +exports[`ssr snapshot test > ssr test src/tree/_example/filter.jsx 1`] = `"
      filter:
      Tree Empty Data
      filter:
      Tree Empty Data
      "`; exports[`ssr snapshot test > ssr test src/tree/_example/icon.jsx 1`] = `"

      render 1:

      Tree Empty Data

      render 2:

      Tree Empty Data
      "`; @@ -1096,33 +1096,33 @@ exports[`ssr snapshot test > ssr test src/tree/_example/line.jsx 1`] = `"
      ssr test src/tree/_example/load.jsx 1`] = `"
      Tree Empty Data
      "`; -exports[`ssr snapshot test > ssr test src/tree/_example/operations.jsx 1`] = `"

      render:

      Tree Empty Data

      api:

      filter:
      Tree Empty Data

      api:

      "`; +exports[`ssr snapshot test > ssr test src/tree/_example/operations.jsx 1`] = `"

      render:

      Tree Empty Data

      api:

      filter:
      Tree Empty Data

      api:

      "`; exports[`ssr snapshot test > ssr test src/tree/_example/state.jsx 1`] = `"

      state:

      Tree Empty Data

      api:

      "`; -exports[`ssr snapshot test > ssr test src/tree/_example/sync.jsx 1`] = `"
      checked:
      expanded:
      actived:
      Tree Empty Data
      "`; +exports[`ssr snapshot test > ssr test src/tree/_example/sync.jsx 1`] = `"
      checked:
      expanded:
      actived:
      Tree Empty Data
      "`; exports[`ssr snapshot test > ssr test src/tree/_example/vscroll.jsx 1`] = `"
      Tree Empty Data
      "`; exports[`ssr snapshot test > ssr test src/tree-select/_example/base.jsx 1`] = `"
      "`; -exports[`ssr snapshot test > ssr test src/tree-select/_example/collapsed.jsx 1`] = `"
      广州市
      +1
      广州市
      更多...
      "`; +exports[`ssr snapshot test > ssr test src/tree-select/_example/collapsed.jsx 1`] = `"
      广州市
      +1
      广州市
      更多...
      "`; -exports[`ssr snapshot test > ssr test src/tree-select/_example/filterable.jsx 1`] = `"
      请选择
      "`; +exports[`ssr snapshot test > ssr test src/tree-select/_example/filterable.jsx 1`] = `"
      请选择
      "`; exports[`ssr snapshot test > ssr test src/tree-select/_example/lazy.jsx 1`] = `"
      "`; exports[`ssr snapshot test > ssr test src/tree-select/_example/multiple.jsx 1`] = `"
      广州市
      深圳市
      "`; -exports[`ssr snapshot test > ssr test src/tree-select/_example/panelContent.jsx 1`] = `"
      "`; +exports[`ssr snapshot test > ssr test src/tree-select/_example/panelContent.jsx 1`] = `"
      "`; exports[`ssr snapshot test > ssr test src/tree-select/_example/prefix.jsx 1`] = `"
      "`; exports[`ssr snapshot test > ssr test src/tree-select/_example/props.jsx 1`] = `"
      "`; -exports[`ssr snapshot test > ssr test src/tree-select/_example/valuedisplay.jsx 1`] = `"
      广州市(guangzhou)
      广州市(guangzhou)
      深圳市(shenzhen)
      "`; +exports[`ssr snapshot test > ssr test src/tree-select/_example/valuedisplay.jsx 1`] = `"
      广州市(guangzhou)
      广州市(guangzhou)
      深圳市(shenzhen)
      "`; -exports[`ssr snapshot test > ssr test src/tree-select/_example/valuetype.jsx 1`] = `"
      广州市
      深圳市
      "`; +exports[`ssr snapshot test > ssr test src/tree-select/_example/valuetype.jsx 1`] = `"
      广州市
      深圳市
      "`; exports[`ssr snapshot test > ssr test src/upload/_example/base.jsx 1`] = `"

      要求文件大小在 1M 以内
      文件上传失败示例
      "`; @@ -1130,7 +1130,7 @@ exports[`ssr snapshot test > ssr test src/upload/_example/custom-drag.jsx 1`] = exports[`ssr snapshot test > ssr test src/upload/_example/draggable.jsx 1`] = `"
      是否自动上传:

      Upload  /  Drag file to this area to upload
      默认文件
      size1.0 KBdate2022-09-25
      "`; -exports[`ssr snapshot test > ssr test src/upload/_example/file-flow-list.jsx 1`] = `"

      支持批量上传文件,文件格式不限,最多只能上传 10 份文件
      Click "Upload" or Drag file to this area to upload
      Cancel
      Upload
      "`; +exports[`ssr snapshot test > ssr test src/upload/_example/file-flow-list.jsx 1`] = `"

      支持批量上传文件,文件格式不限,最多只能上传 10 份文件
      Click "Upload" or Drag file to this area to upload
      Cancel
      Upload
      "`; exports[`ssr snapshot test > ssr test src/upload/_example/image.jsx 1`] = `"

      • 请选择图片

      请选择单张图片文件上传(上传成功状态演示)
      • Click to upload

      单张图片文件上传(上传失败状态演示)
      • Click to upload

      允许选择多张图片文件上传,最多只能上传 3 张图片
      "`;